Multi-label classification using tabular data not working

Dear all,

I was successful before to implement a multi-label classification model using images (label delimiter is ’ '). Following the same structure, I am trying to implement a multi-label classification model using tabular data containing only numerical data.
Here are the data:

Yet, when trying to create the databunch using TabularList.from_df, it doesn’t seem to be able to read the numerical columns. Reading only the target column:

I have defined the cont_names as None so that all columns expect the target column would be considered as continuous.

Can you please help?