We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d4ccd3 commit e9de40eCopy full SHA for e9de40e
rl/analytics.py
@@ -317,9 +317,10 @@ def compose_data(trial):
317
}
318
319
# param variables for independent vars of trials
320
+ default_param = trial.experiment_spec['param']
321
param_variables = {
- pv: trial.experiment_spec['param'][pv] for
322
- pv in trial.param_variables}
+ pv: default_param[pv] for
323
+ pv in trial.param_variables if pv in default_param}
324
325
trial.data['metrics'].update(metrics)
326
trial.data['param_variables'] = param_variables
0 commit comments