Hello!
When working with custom deployment blocks, the layout of the /data directory mentioned on docs-dot-edgeimpulse-dot-com/studio/organizations/custom-blocks/custom-learning-blocks does not seem to align with reality.
Claimed:
data/
├── X_split_test.npy
├── X_split_train.npy
├── Y_split_test.npy
├── Y_split_train.npy
└── sample_id_details.json
Reality:
data/
├── X_classify_features.npy
├── X_train_samples.npy
├── X_train_features.npy
├── X_train_data_explorer.npy
├── y_samples.npy
├── y_train.npy
├── y_classify.npy
└── sample_id_details.json
As far as I can tell, some names have simply changed (“split_test”, “split_train” => replaced with simply “classify” and “train”). However, I’m not so sure about the samples vs. features part though (something to do with (pre)processing blocks?). Some clarification would be nice.