Instructions to use bamertl/nlp_deep_project with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use bamertl/nlp_deep_project with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="bamertl/nlp_deep_project")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("bamertl/nlp_deep_project") model = AutoModelForSequenceClassification.from_pretrained("bamertl/nlp_deep_project") - Notebooks
- Google Colab
- Kaggle
# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("bamertl/nlp_deep_project")
model = AutoModelForSequenceClassification.from_pretrained("bamertl/nlp_deep_project")Quick Links
No model card
- Downloads last month
- 2
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="bamertl/nlp_deep_project")