[Theory] Determining the Type of Scenario #603
-
Hi all, I have a doubt identifying the type of {'1': [0,1,2], '2': [3,4,5], '3': [6,7,8], '4': [9,10,11], '5': [12,13,14]} I am unclear about the following questions in this experiment.
I need some suggestions regarding what kind of scenario does this type of task division comes under. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi Akash, that’s an interesting problem! I would say that the problem you describe is a mixture of domain-incremental learning and class-incremental learning. I think a useful way to look at it is that there are two “incremental axes” in your task set: (1) the first incremental axis is at the level of the labels, as the first task contains the labels ‘0’ and ‘1’, while the other tasks only contain the label ‘1’ (this incremental aspect of your data makes that your problem is partly class-incremental); and (2) the second incremental axis is at the level of the inputs, as the input distribution corresponding to label ‘1’ changes between tasks (this incremental aspect of your data makes that your problem is partly domain-incremental). |
Beta Was this translation helpful? Give feedback.
-
Regarding the implementation in Avalanche, the way you describe your implementation sounds reasonable to me, although it might be good if someone with more experience with creating custom datasets in Avalanche could confirm this. |
Beta Was this translation helpful? Give feedback.
Regarding the implementation in Avalanche, the way you describe your implementation sounds reasonable to me, although it might be good if someone with more experience with creating custom datasets in Avalanche could confirm this.
My understanding is that Avalanche will always provide you with the
task_labels
, also at test time, so you would have to make sure yourself that they are not used, at least not at test time. (From your problem description it is not clear whether you assume knowledge of thetask_labels
during training, but either way could work.)