Models in Hugging face
- Explore SpaceHub
- Models: Refer Here
Embeddings from hugging face models
- Try writing a simple code using hugging face transformers for question answering
from transformers import pipeline
model_id = ''
pipeline('<nlp-question>', model=model_id, ...)
-
lets try question answering and image classification
-
Refer Here for the Colab Notebook
