-
Notifications
You must be signed in to change notification settings - Fork 7.1k
add regnet_y_128gf factory function #5176
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
Merged
datumbox
merged 12 commits into
pytorch:main
from
kazhang:regnet_y_128gf_factory_function
Jan 13, 2022
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
7af0699
add regnet_y_128gf
kazhang 85b2ec1
fix test
kazhang 83dd16a
add expected test file
kazhang 3a94686
Merge branch 'main' into regnet_y_128gf_factory_function
kazhang d1ff8a1
update regnet factory function, add to prototype as well
kazhang cf27e0e
write torchscript to temp file instead bytesio in model test
kazhang f7e56bb
Merge branch 'main' into regnet_y_128gf_factory_function
kazhang 6985776
docs
kazhang ffcdf09
clear GPU memory
kazhang 9b608aa
no_grad
kazhang a038c85
nit
kazhang 59d56ab
Merge branch 'main' into regnet_y_128gf_factory_function
datumbox File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
import contextlib | ||
import functools | ||
import io | ||
import operator | ||
import os | ||
import pkgutil | ||
import sys | ||
import traceback | ||
import warnings | ||
from collections import OrderedDict | ||
from tempfile import TemporaryDirectory | ||
|
||
import pytest | ||
import torch | ||
|
@@ -126,16 +126,16 @@ def assert_export_import_module(m, args): | |
|
||
def get_export_import_copy(m): | ||
"""Save and load a TorchScript model""" | ||
buffer = io.BytesIO() | ||
torch.jit.save(m, buffer) | ||
buffer.seek(0) | ||
imported = torch.jit.load(buffer) | ||
with TemporaryDirectory() as dir: | ||
path = os.path.join(dir, "script.pt") | ||
Comment on lines
+129
to
+130
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
m.save(path) | ||
imported = torch.jit.load(path) | ||
return imported | ||
|
||
m_import = get_export_import_copy(m) | ||
with freeze_rng_state(): | ||
with torch.no_grad(), freeze_rng_state(): | ||
results = m(*args) | ||
with freeze_rng_state(): | ||
with torch.no_grad(), freeze_rng_state(): | ||
results_from_imported = m_import(*args) | ||
tol = 3e-4 | ||
torch.testing.assert_close(results, results_from_imported, atol=tol, rtol=tol) | ||
|
@@ -156,10 +156,10 @@ def get_export_import_copy(m): | |
|
||
sm = torch.jit.script(nn_module) | ||
|
||
with freeze_rng_state(): | ||
with torch.no_grad(), freeze_rng_state(): | ||
eager_out = nn_module(*args) | ||
|
||
with freeze_rng_state(): | ||
with torch.no_grad(), freeze_rng_state(): | ||
script_out = sm(*args) | ||
if unwrapper: | ||
script_out = unwrapper(script_out) | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Crash when saving large model to buffer.