How to create a custom data (.csv) to be the input data for the validation test in X-Cube-AI?
I'm running a Cifar10 Keras CNN Pre-trained model basically an image recognition model my labels are :
0 - airplane
1 - automobile
2 - bird
3 - cat
4 - deer
5 - dog
6 - frog
7 - horse
8 - ship
9 - truck
The image array is stored as HWC format or Height-Width-Channel, a 32x32 RGB color image with 32 x 32 x 3 = 3072 values.
how can I enter the input image in the custom data test for validation in MXCUBE (x-cube-ai package) do I need to normalize the data ?
for example cat = {226,221,195,247,241,227,246,239,227,243,237,225,243,237,222,243,236,220,241,234,218,239,229,213,237...183}
