-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Relationship between maxTrialNum and population_size #1481
Comments
Hello @martsalz. And the If you set Thank you for your questions~ And feel free to ask me anything. |
Thanks. At which point is an experiment completed? Is there a maximum number of generations per experiment that can be set? |
Hello @martsalz. The Thank you. |
At which point is an trial completed? Is there a maximum number of generations per trial that can be set? (for Evolution as tuner) |
I am not sure I understand your question totally. But I try to answer it. In nni, So the "Is there a maximum number of generations per trial that can be set" --> For this question, if you want to ask how to set the number of mutation trial in one iteration, I think you could set Thank you~ |
Assume Models are trained -> individuals are selected from the population -> crossover / mutation -> insert into the population. How often is this process performed? Thanks |
@martsalz The process of Naive Evolution Tuner: NNI does mutation when it generates parameter from config so the frequency of this process is related to The implementation is based on the paper Large-Scale Evolution of Image Classifiers. |
Short summary about the issue/question:
What is the difference between
maxTrialNum
andpopulation_size
in theEvolution
tuner?Assuming:
maxTrialNum = 5
andpopulation_size = 10
Is there an initial population of 10 available for each of the 5 experiments?
The text was updated successfully, but these errors were encountered: