Instructions to use NLPScholars/Roberta-Earning-Call-Transcript-Classification with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use NLPScholars/Roberta-Earning-Call-Transcript-Classification with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="NLPScholars/Roberta-Earning-Call-Transcript-Classification")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("NLPScholars/Roberta-Earning-Call-Transcript-Classification") model = AutoModelForSequenceClassification.from_pretrained("NLPScholars/Roberta-Earning-Call-Transcript-Classification") - Notebooks
- Google Colab
- Kaggle
Commit ·
e5652d6
1
Parent(s): cebaf4c
Update README.md
Browse files
README.md
CHANGED
|
@@ -48,5 +48,7 @@ model = AutoModelForSequenceClassification.from_pretrained("NLPScholars/Roberta-
|
|
| 48 |
# Contributor
|
| 49 |
|
| 50 |
*Sumit Ranjan [ sumit.ranjan819@gmail.com ]*
|
|
|
|
| 51 |
*Aanchal Varma [aanchalvarma511@gmail.com ]*
|
|
|
|
| 52 |
*Akshul Mittal [akshull.mittal@gmail.com ]*
|
|
|
|
| 48 |
# Contributor
|
| 49 |
|
| 50 |
*Sumit Ranjan [ sumit.ranjan819@gmail.com ]*
|
| 51 |
+
|
| 52 |
*Aanchal Varma [aanchalvarma511@gmail.com ]*
|
| 53 |
+
|
| 54 |
*Akshul Mittal [akshull.mittal@gmail.com ]*
|