-
Notifications
You must be signed in to change notification settings - Fork 716
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minor fixes #750
Minor fixes #750
Conversation
Signed-off-by: Keith Battocchi <kebatt@microsoft.com>
1086075
to
ab9c749
Compare
faaa4bc
to
a00c4a6
Compare
@@ -224,7 +226,7 @@ jobs: | |||
steps: | |||
- run: exit 1 | |||
name: At least one check failed or was cancelled | |||
if: ${{ !(success()) }} | |||
if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't understand the reason for the change here, could you explain?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
At the step level, success is checking that each previous step succeeded, not that the required jobs succeeded, see e.g. https://github.com/py-why/EconML/actions/runs/4461230788/jobs/7835479732
@@ -899,7 +899,7 @@ def score(self, Y, T, X=None, W=None, Z=None, sample_weight=None, groups=None): | |||
nuisances = [np.zeros((n_iters * n_splits,) + nuis.shape) for nuis in nuisance_temp] | |||
|
|||
for it, nuis in enumerate(nuisance_temp): | |||
nuisances[it][i * n_iters + j] = nuis | |||
nuisances[it][j * n_iters + i] = nuis |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we link this to the inciting issue.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The name of that commit mentions it, and I'll rebase rather than squash when merging so that it will be maintained.
Signed-off-by: Keith Battocchi <kebatt@microsoft.com>
Signed-off-by: Keith Battocchi <kebatt@microsoft.com>
Signed-off-by: Keith Battocchi <kebatt@microsoft.com>
a00c4a6
to
99a3ebd
Compare
Signed-off-by: Keith Battocchi <kebatt@microsoft.com>
99a3ebd
to
4e1845b
Compare
No description provided.