You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently setup_model_and_dataset does exactly what is says, but this is somewhat wasteful in most cases. It would be better to separate this into two distinct functions in pytorch_ignite.py:
This saves the unnecessary instantiation of the model in prepare.py and rebuild_manifest.py.
Additionally this makes it easier to instantiate the datasets that we want using the setup_dataset(config, split="blah") syntax.
The text was updated successfully, but these errors were encountered:
Currently setup_model_and_dataset does exactly what is says, but this is somewhat wasteful in most cases. It would be better to separate this into two distinct functions in pytorch_ignite.py:
Then in
train.py
for instance:This saves the unnecessary instantiation of the model in
prepare.py
andrebuild_manifest.py
.Additionally this makes it easier to instantiate the datasets that we want using the
setup_dataset(config, split="blah")
syntax.The text was updated successfully, but these errors were encountered: