Instructions to use cssupport/bert-news-class with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use cssupport/bert-news-class with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="cssupport/bert-news-class")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("cssupport/bert-news-class") model = AutoModelForMaskedLM.from_pretrained("cssupport/bert-news-class") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -122,4 +122,4 @@ Pytorch and HuggingFace
|
|
| 122 |
|
| 123 |
Misra, Rishabh. "News Category Dataset." arXiv preprint arXiv:2209.11429 (2022).
|
| 124 |
Misra, Rishabh and Jigyasa Grover. "Sculpting Data for ML: The first act of Machine Learning." ISBN 9798585463570 (2021).
|
| 125 |
-
Tandon, Karan. "This LLM is based on BERT (2018) a bidirectional Transformer.
|
|
|
|
| 122 |
|
| 123 |
Misra, Rishabh. "News Category Dataset." arXiv preprint arXiv:2209.11429 (2022).
|
| 124 |
Misra, Rishabh and Jigyasa Grover. "Sculpting Data for ML: The first act of Machine Learning." ISBN 9798585463570 (2021).
|
| 125 |
+
Tandon, Karan. "This LLM is based on BERT (2018) a bidirectional Transformer. **cssupport/bert-news-class** was finetuned using AdamW with the help of NVIDIA AMP and trained in 45 minutes on one P6000 GPU. This model accepts news summary/news headlines/news article and classifies into one of 40 categories"
|