ConcatTask have the `feature_set` name wrong
Closed this issue · 2 comments
music_symbolic_features/symbolic_features/data.py
Lines 532 to 556 in 158cd0c
The feature_set
attribute of ConcatTask
is initialized to the first feature set. It should be initialized to ''.join(feature_set_names)
, as in the task.name
attribute.
Right now, the task using feature-set A as first feature-set will also include all the concatenations such as A-B, A-C, A-B-C (e.g. task including musif_native
is actually including musif_native
, musif_native-music21_native
, musif_native-jsymbolic
, musif_native-music21_native-jsymbolic
, for a total of 5 tasks)
Solving this issue would also allow for longer times in the AutoML when jobs are run on shared clusters where computing powers is scheduled according to the duration of the job