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
Is it possible to specify the number of classes for each task? Because in the code, I only found the possibility of specifying the --nc-first-task (number of classes of the first task) and --num-tasks (total number of tasks).
Thank you in advance !!
The text was updated successfully, but these errors were encountered:
the way that we handled that setting is by using multiple dataset entries. You can just have different entries in the dataset_config.py, each with a different number of classes, and then you pass all of those dataset key names after the argument --datasets.
This can also be used to have a varying number of classes for the same dataset by creating multiple entries dataset-name-task1, dataset-name-task2, ... , dataset-name-taskN which each has all the same specifications except for a different number of classes, specified with the 'class_order': key followed by the list of classes specific on that task.
Hello !
In Class-incremental learning: survey and performance evaluation on image classification, large domain shift is studied. In this section, the number of classes varies among the tasks (i.e., starting with 102 classes then adding 67 classes then 200, etc.).
Is it possible to specify the number of classes for each task? Because in the code, I only found the possibility of specifying the --nc-first-task (number of classes of the first task) and --num-tasks (total number of tasks).
Thank you in advance !!
The text was updated successfully, but these errors were encountered: