Override some training parameters in train
call
#563
Unanswered
AndreaCossu
asked this question in
Feature Request
Replies: 3 comments 12 replies
-
Yes, it would be nice to have this feature. Should be also easy to implement via the propagation of optional parameters we have already. |
Beta Was this translation helpful? Give feedback.
0 replies
-
I think it's a really interesting feature, and this is exactly what I need for my experiments :) |
Beta Was this translation helpful? Give feedback.
0 replies
-
I think the easiest way is to override the base class or use a plugin. For example:
Probably we can add an example/how-to guide to show this explicitly for the most common cases. |
Beta Was this translation helpful? Give feedback.
12 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It could be useful to provide to the user the possibility to specify some training parameters like
train_epochs
ortrain_mb_size
in thetrain
(and/ortrain_exp
) call. In this way, it would be possible to specify different parameters for different experiences. For example, the first experience may contain a larger number of patterns, thus requiring more epochs or larger minibatch sizes.These additional parameters should override the ones passed at strategy object creation, so that if the user does not pass anything, default ones are used.
What do you think?
Beta Was this translation helpful? Give feedback.
All reactions