bedd0dd07622e6f81f0ad51cc8b9db01aa96277f,optuna/samplers/_nsga2.py,NSGAIISampler,_collect_parent_population,#NSGAIISampler#Any#,201
Before Change
return param
def _collect_parent_population(self, study: Study) -> Tuple[int, List[FrozenTrial]]:
trials = study._storage.get_all_trials(study._study_id, deepcopy=False)
generation_to_runnings = defaultdict(list)
generation_to_population = defaultdict(list)
for trial in trials:
After Change
return param
def _collect_parent_population(self, study: Study) -> Tuple[int, List[FrozenTrial]]:
trials = study.get_trials(deepcopy=False)
generation_to_runnings = defaultdict(list)
generation_to_population = defaultdict(list)
for trial in trials:
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 4
Instances
Project Name: pfnet/optuna
Commit Name: bedd0dd07622e6f81f0ad51cc8b9db01aa96277f
Time: 2021-01-14
Author: gohome.x105.gn@gmail.com
File Name: optuna/samplers/_nsga2.py
Class Name: NSGAIISampler
Method Name: _collect_parent_population
Project Name: pfnet/optuna
Commit Name: bedd0dd07622e6f81f0ad51cc8b9db01aa96277f
Time: 2021-01-14
Author: gohome.x105.gn@gmail.com
File Name: tests/pruners_tests/test_percentile.py
Class Name:
Method Name: test_get_percentile_intermediate_result_over_trials
Project Name: pfnet/optuna
Commit Name: bedd0dd07622e6f81f0ad51cc8b9db01aa96277f
Time: 2021-01-14
Author: gohome.x105.gn@gmail.com
File Name: optuna/samplers/_search_space.py
Class Name: IntersectionSearchSpace
Method Name: calculate