Closed wessle closed 3 years ago
Plotter appears to group data together by the name of the agent used. This makes it difficult to run an experiment that tests multiple hyperparameter configurations for a single type of agent, for example. This seems to be because
Plotter
sns.lineplot(data=data, x='step', y='ratio', hue='agent', ci=self.confidence)
in Plotter.plot() forms groups using hue='agent'.
Plotter.plot()
hue='agent'
One flexible solution might be to group according to the name of subdirectories (e.g. AC_trials, Q_trials) instead of agents.
AC_trials
Q_trials
@DavidNKraemer
Resolved in session today.
Plotter
appears to group data together by the name of the agent used. This makes it difficult to run an experiment that tests multiple hyperparameter configurations for a single type of agent, for example. This seems to be becausein
Plotter.plot()
forms groups usinghue='agent'
.One flexible solution might be to group according to the name of subdirectories (e.g.
AC_trials
,Q_trials
) instead of agents.