sicara / easy-few-shot-learning

Ready-to-use code and tutorial notebooks to boost your way into few-shot learning for image classification.
MIT License
958 stars 132 forks source link

EasyFSL for text classification #150

Open VihangaAW opened 1 month ago

VihangaAW commented 1 month ago

Thanks for the awesome library. I am trying to use this library for text classification. I am wondering what sort of modifications need to be made to this library in order to perform text classification, apart from changing the backbone model from ResNet to LSTM or a preferred one.

ebennequin commented 1 month ago

Models in EasyFSL can all be applied on feature vectors so it wont change anything, however all Dataset objects (apart from FeaturesDataset are meant for images.

I don't have much experience working on few-shot text classification so I am interested in your experience.