We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Please refer to the issue here
Testing PL Callback results in HTTP error 403 (similar to this issue). There are simple workarounds in test_pl_callback using urllib such as:
test_pl_callback
urllib
def set_header_for(self): opener = urllib.request.build_opener() opener.addheaders = [("User-agent", "Mozilla/5.0")] urllib.request.install_opener(opener) def prepare_data(self): self.set_header_for() # download only MNIST( "/tmp/keepsake-test-mnist",
However it breaks the overall build, hence further investigation is needed.
The text was updated successfully, but these errors were encountered:
Thanks! This is the real fix: #551
Sorry, something went wrong.
Fix broken PyTorch Lightning test
afd04e2
Closes #547 Ref #551 Signed-off-by: Ben Firshman <[email protected]>
00dacb5
95fd2b2
Successfully merging a pull request may close this issue.
Please refer to the issue here
Testing PL Callback results in HTTP error 403 (similar to this issue). There are simple workarounds in
test_pl_callback
usingurllib
such as:However it breaks the overall build, hence further investigation is needed.
The text was updated successfully, but these errors were encountered: