Instructions to use Mathnub/imdb-score-predict-roberta-large-fulldata with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Mathnub/imdb-score-predict-roberta-large-fulldata with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Mathnub/imdb-score-predict-roberta-large-fulldata")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("Mathnub/imdb-score-predict-roberta-large-fulldata") model = AutoModelForSequenceClassification.from_pretrained("Mathnub/imdb-score-predict-roberta-large-fulldata") - Notebooks
- Google Colab
- Kaggle