-
I'm trying to save the evaluation results after an experience. For 5-task Split-MNIST this gives me a sequence of experience (Task) accuracies, where only the last one should be considered with having the task-accuracies of all experiences: However, I want to directly be able to access the stream accuracy, but in |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Yes @Mattdl! Check out the eval_plugin.py example and let me know if this fix your issue. |
Beta Was this translation helpful? Give feedback.
-
From the example, |
Beta Was this translation helpful? Give feedback.
From the example,
all_metrics = cl_strategy.evaluator.all_metrics
gives indeed access to all the metrics! Thanks!