You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Loss metric is currently store in TrainContext / ActorCriticContext fields. SacAgent has an additional alpha_loss. Instead of another derived class, we could use a metrics dictionary in TrainContext. Holding the algorithm specific metrics. Passing the metric name to plot.Loss could then plot the chosen metric:
eg plot.Loss('alpha') or multiple losses in the same plot (if reasonable) plot.Loss(['total','critic')
The text was updated successfully, but these errors were encountered:
Loss metric is currently store in TrainContext / ActorCriticContext fields. SacAgent has an additional alpha_loss. Instead of another derived class, we could use a metrics dictionary in TrainContext. Holding the algorithm specific metrics. Passing the metric name to plot.Loss could then plot the chosen metric:
eg plot.Loss('alpha') or multiple losses in the same plot (if reasonable) plot.Loss(['total','critic')
The text was updated successfully, but these errors were encountered: