If you are not intersted in evaluating the BWT and FWT metrics, just the ACC, modify the line 721 from:
```python
for n_task in range(2, n_tasks + 1, 1):
```
to
```python
for n_task in range(n_tasks, n_tasks + 1, 1):
```
In order to calculate BWT and FWT, we need to run multiple CFA experiments, which can be time-consuming. By making this change, you force the algorithm to just run a full amalgamation of all teachers. This will give you the ACC metric, but BWT and FWT will not be valid.
## Tip 2
CFA accuracy (the student model accuracy) is really dependent on the performance of the teacher models.