I have image dataset with 6 classes (tomato disease from Kaggle). Using a pretrained model vgg16 I extracted features then just flatten them into 1-dimensioal feature vector. After that, I used this vector as input for my SVM classifier with linear kernel.
- How to test my image dataset if it linearly separable or not ?
- Applying different kernels in SVM classifier I got the best result with linear kernel ,does it imply that my image dataset is linearly separable ?