Welcome to the "Evaluation" tutorial of the "From Zero to Hero" series. In this part we will present the functionalities offered by the evaluation module.
!pip install avalanche-lib==0.5
📈 The Evaluation Module
The evaluation module is quite straightforward: it offers all the basic functionalities to evaluate and keep track of a continual learning experiment.
This is mostly done through the Metrics: a set of classes which implement the main continual learning metrics computation like A_ccuracy_, F_orgetting_, M_emory Usage_, R_unning Times_, etc. At the moment, in Avalanche we offer a number of pre-implemented metrics you can use for your own experiments. We made sure to include all the major accuracy-based metrics but also the ones related to computation and memory.
Each metric comes with a standalone class and a set of plugin classes aimed at emitting metric values on specific moments during training and evaluation.
Standalone metric
As an example, the standalone Accuracy class can be used to monitor the average accuracy over a stream of <input,target> pairs. The class provides an update method to update the current average accuracy, a result method to print the current average accuracy and a reset method to set the current average accuracy to zero. The call to resultdoes not change the metric state.
The TaskAwareAccuracy metric keeps separate accuracy counters for different task labels. As such, it requires the task_labels parameter, which specifies which task is associated with the current patterns. The metric returns a dictionary mapping task labels to accuracy values.
# create an instance of the standalone TaskAwareAccuracy metric# initial accuracy is 0 for each taskacc_metric =TaskAwareAccuracy()print("Initial Accuracy: ", acc_metric.result())# output {}# metric updates for 2 different taskstask_label =0real_y = torch.tensor([1, 2]).long()predicted_y = torch.tensor([1, 0]).float()acc_metric.update(real_y, predicted_y, task_label)acc = acc_metric.result()print("Average Accuracy: ", acc)# output 0.5 for task 0task_label =1predicted_y = torch.tensor([1,2]).float()acc_metric.update(real_y, predicted_y, task_label)acc = acc_metric.result()print("Average Accuracy: ", acc)# output 0.75 for task 0 and 1.0 for task 1task_label =0predicted_y = torch.tensor([1,2]).float()acc_metric.update(real_y, predicted_y, task_label)acc = acc_metric.result()print("Average Accuracy: ", acc)# output 0.75 for task 0 and 1.0 for task 1# reset accuracyacc_metric.reset()print("After reset: ", acc_metric.result())# output {}
Plugin metric
If you want to integrate the available metrics automatically in the training and evaluation flow, you can use plugin metrics, like EpochAccuracy which logs the accuracy after each training epoch, or ExperienceAccuracy which logs the accuracy after each evaluation experience. Each of these metrics emits a curve composed by its values at different points in time (e.g. on different training epochs). In order to simplify the use of these metrics, we provided utility functions with which you can create different plugin metrics in one shot. The results of these functions can be passed as parameters directly to the EvaluationPlugin(see below).
We recommend to use the helper functions when creating plugin metrics.
from avalanche.evaluation.metrics import accuracy_metrics,\ loss_metrics, forgetting_metrics, bwt_metrics,\ confusion_matrix_metrics, cpu_usage_metrics,\ disk_usage_metrics, gpu_usage_metrics, MAC_metrics,\ ram_usage_metrics, timing_metrics# you may pass the result to the EvaluationPluginmetrics =accuracy_metrics(epoch=True, experience=True)
📐Evaluation Plugin
The Evaluation Plugin is the object in charge of configuring and controlling the evaluation procedure. This object can be passed to a Strategy as a "special" plugin through the evaluator attribute.
The Evaluation Plugin accepts as inputs the plugin metrics you want to track. In addition, you can add one or more loggers to print the metrics in different ways (on file, on standard output, on Tensorboard...).
It is also recommended to pass to the Evaluation Plugin the benchmark instance used in the experiment. This allows the plugin to check for consistency during metrics computation. For example, the Evaluation Plugin checks that the strategy.eval calls are performed on the same stream or sub-stream. Otherwise, same metric could refer to different portions of the stream.
These checks can be configured to raise errors (stopping computation) or only warnings.
from torch.nn import CrossEntropyLossfrom torch.optim import SGDfrom avalanche.benchmarks.classic import SplitMNISTfrom avalanche.evaluation.metrics import forgetting_metrics,\accuracy_metrics, loss_metrics, timing_metrics, cpu_usage_metrics,\confusion_matrix_metrics, disk_usage_metricsfrom avalanche.models import SimpleMLPfrom avalanche.logging import InteractiveLoggerfrom avalanche.training.plugins import EvaluationPluginfrom avalanche.training import Naivebenchmark =SplitMNIST(n_experiences=5)# MODEL CREATIONmodel =SimpleMLP(num_classes=benchmark.n_classes)# DEFINE THE EVALUATION PLUGIN# The evaluation plugin manages the metrics computation.# It takes as argument a list of metrics, collectes their results and returns# them to the strategy it is attached to.eval_plugin =EvaluationPlugin(accuracy_metrics(minibatch=True, epoch=True, experience=True, stream=True),loss_metrics(minibatch=True, epoch=True, experience=True, stream=True),timing_metrics(epoch=True),forgetting_metrics(experience=True, stream=True),cpu_usage_metrics(experience=True),confusion_matrix_metrics(num_classes=benchmark.n_classes, save_image=False, stream=True),disk_usage_metrics(minibatch=True, epoch=True, experience=True, stream=True), loggers=[InteractiveLogger()], strict_checks=False)# CREATE THE STRATEGY INSTANCE (NAIVE)cl_strategy =Naive( model, SGD(model.parameters(), lr=0.001, momentum=0.9),CrossEntropyLoss(), train_mb_size=500, train_epochs=1, eval_mb_size=100, evaluator=eval_plugin)# TRAINING LOOPprint('Starting experiment...')results = []for experience in benchmark.train_stream:# train returns a dictionary which contains all the metric values res = cl_strategy.train(experience)print('Training completed')print('Computing accuracy on the whole test set')# test also returns a dictionary which contains all the metric values results.append(cl_strategy.eval(benchmark.test_stream))
Implement your own metric
To implement a standalone metric, you have to subclass Metric class.
from avalanche.evaluation import Metric# a standalone metric implementationclassMyStandaloneMetric(Metric[float]):""" This metric will return a `float` value """def__init__(self):""" Initialize your metric here """super().__init__()passdefupdate(self):""" Update metric value here """passdefresult(self,**kwargs) ->float:""" Emit the metric result here """return0defreset(self,**kwargs):""" Reset your metric here """pass
To implement a plugin metric you have to subclass PluginMetric class
from avalanche.evaluation import PluginMetricfrom avalanche.evaluation.metrics import Accuracyfrom avalanche.evaluation.metric_results import MetricValuefrom avalanche.evaluation.metric_utils import get_metric_nameclassMyPluginMetric(PluginMetric[float]):""" This metric will return a `float` value after each training epoch """def__init__(self):""" Initialize the metric """super().__init__() self._accuracy_metric =Accuracy()defreset(self,**kwargs) ->None:""" Reset the metric """ self._accuracy_metric.reset()defresult(self,**kwargs) ->float:""" Emit the result """return self._accuracy_metric.result()defafter_training_iteration(self,strategy:'PluggableStrategy') ->None:""" Update the accuracy metric with the current predictions and targets """# task labels defined for each experience task_labels = strategy.experience.task_labelsiflen(task_labels)>1:# task labels defined for each pattern task_labels = strategy.mb_task_idelse: task_labels = task_labels[0] self._accuracy_metric.update(strategy.mb_output, strategy.mb_y, task_labels)defbefore_training_epoch(self,strategy:'PluggableStrategy') ->None:""" Reset the accuracy before the epoch begins """ self.reset()defafter_training_epoch(self,strategy:'PluggableStrategy'):""" Emit the result """return self._package_result(strategy)def_package_result(self,strategy):"""Taken from `GenericPluginMetric`, check that class out!""" metric_value = self.accuracy_metric.result() add_exp =False plot_x_position = strategy.clock.train_iterationsifisinstance(metric_value, dict): metrics = []for k, v in metric_value.items(): metric_name =get_metric_name( self, strategy, add_experience=add_exp, add_task=k) metrics.append(MetricValue(self, metric_name, v, plot_x_position))return metricselse: metric_name =get_metric_name(self, strategy, add_experience=add_exp, add_task=True)return [MetricValue(self, metric_name, metric_value, plot_x_position)]def__str__(self):""" Here you can specify the name of your metric """return"Top1_Acc_Epoch"
Accessing metric values
If you want to access all the metrics computed during training and evaluation, you have to make sure that collect_all=True is set when creating the EvaluationPlugin (default option is True). This option maintains an updated version of all metric results in the plugin, which can be retrieved by calling evaluation_plugin.get_all_metrics(). You can call this methods whenever you need the metrics.
The result is a dictionary with full metric names as keys and a tuple of two lists as values. The first list stores all the x values recorded for that metric. Each x value represents the time step at which the corresponding metric value has been computed. The second list stores metric values associated to the corresponding x value.
eval_plugin2 =EvaluationPlugin(accuracy_metrics(minibatch=True, epoch=True, experience=True, stream=True),loss_metrics(minibatch=True, epoch=True, experience=True, stream=True),forgetting_metrics(experience=True, stream=True),timing_metrics(epoch=True),cpu_usage_metrics(experience=True),confusion_matrix_metrics(num_classes=benchmark.n_classes, save_image=False, stream=True),disk_usage_metrics(minibatch=True, epoch=True, experience=True, stream=True), collect_all=True, # this is default value anyway loggers=[InteractiveLogger()])# since no training and evaluation has been performed, this will return an empty dict.metric_dict = eval_plugin2.get_all_metrics()print(metric_dict)
d = eval_plugin.get_all_metrics()d['Top1_Acc_Epoch/train_phase/train_stream/Task000']
Alternatively, the train and eval method of every strategy returns a dictionary storing, for each metric, the last value recorded for that metric. You can use these dictionaries to incrementally accumulate metrics.
print(res)
print(results[-1])
This completes the "Evaluation" tutorial for the "From Zero to Hero" series. We hope you enjoyed it!
🤝 Run it on Google Colab
You can run this chapter and play with it on Google Colaboratory: