Create ML Training Error - Activity Classifier

Hi,


I have made several ML models previously with more than one feature column, always worked great.


But now in a new project I have a set of data (with multiple csv files) with a single feature column.

Create ML loads the data well, but when I try to train the model I keep getting this error message:

"Feature column Y is empty on row 0 of input data table"


Y is the name of the column, that's correct. But I have no row 0.


I tried to convert CSV files to JSON, didn't work, I keep getting the same error.

I would appreciate any help 🙂

Best Regards,
Joel Balagué

Replies

This might be a bug that you have to make your column data in format float or double. If your data is in a different type, it will be filtered out. So try to convert the data type to float or double if not. Also this issue should be fixed now.
Hi, has anyone resolved this? I have the same problem and was wondering whether it is due to negative numbers...
I got this error because my data values where not between -1 and 1. I created a script to divide my sensor data by 1000 and it worked.
  • I am very surprised that this is even a restriction. Is it even documented?

Add a Comment