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
I claimed to contribute to the "writing tests for log.py issue" a few weeks ago but just got started, and soon realize it might be helpful to understand argparse_hopt.py first as the Experiment class depends on it.
I have been trying to read the source code for the past two days and sort of understand the Experiment class now, but it would be great if you could kindly help offer some comments on the general purpose of the following classes in the argparse_hopt.py script... I'm not sure I entirely got what's happening in this file.
HyperOptArgumentParser class : why do you need this class to collect arguments (I guess), when you will parse the arguments in the log.py test with a parse method of the Experiment class later?
TTNamespace : what's the purpose of this class?
OptArg: is this class adjusting range of arguments?
Also, is hyperopt.py obsolete? It seems not being used anywhere or I might be missing something.
hyperopt.py is deprecated.
TTNamespace is a weird python object for holding key-value pairs.
OptArg has logic for manipulating a parameter
HyperOptArgumentParser not sure what you're asking. This class is there for convenience to the user.
Initial tests should include:
The text was updated successfully, but these errors were encountered: