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
When computing non-tabular features, like one-hot-encoding, the to_csv method in the Dataset class fails. I think this is the correct behavior as pandas can only save tabular data to CSV files.
However, I think we should support saving/loading other types of data.
In the case of one-hot-encodings a simple save/load with numpy should do the trick:
When computing non-tabular features, like one-hot-encoding, the
to_csv
method in theDataset
class fails. I think this is the correct behavior as pandas can only save tabular data to CSV files.However, I think we should support saving/loading other types of data.
In the case of one-hot-encodings a simple save/load with numpy should do the trick:
For other types of data other alternatives should be explored and implemented.
The text was updated successfully, but these errors were encountered: