I want to train a model that perform a few-shot image classification using CIFAR-10. So I have to train the model with a small amount of classes and use the rest of the classes for the testing. I'm wondering if I have only 10 classes, how can i do the split? (For example 6 classes for training and 4 for testing, is it ok?)
            Asked
            
        
        
            Active
            
        
            Viewed 195 times
        
    1 Answers
0
            
            
        I have not completely understand your question. We have three options to say it crudely:
- Training a model from scratch
 - Fine-tuning a model
 - Use a pre-trained model and use it for few-shot learning
 
If it is the number 3 is what you are looking for, I would recommend that you look into models like CLIP and see whether they work out for your use case.
        Exploring
        
- 2,493
 - 11
 - 56
 - 97