-
Notifications
You must be signed in to change notification settings - Fork 3.4k
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
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
What is hparams exactly? #651
Comments
hparams is just a dict that contains your hyperparameters for easy logging and experiments. It is optional, but does make loading models more tedious. |
It should be an |
@s-rog Thanks, but it's not a dict :-) |
oh yeah I keep forgetting, you're right! |
Yes, there's a complete overhaul of the docs in progress. We'll make sure this gets in there. |
thanks for the input! |
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
Hi, thanks for the nice product again.
From #525 and #599, I could guess that
hparams
is required to load a saved model (which I think should be mentioned somewhere in the doc btw). And from the examples, seems likehparams
may beargparse.Namespace
. Unfortunately though, it was not so easy to understand the concept.What is
hparams
exactly? What kind of information it should/can/should not include to work properly? Is it recommended to usehyperparameter argument parser
? Say, if I'm not into hyperparameter search at the moment and just want to be able to load the checkpoint model, what is the requirement on the hparams?The text was updated successfully, but these errors were encountered: