Instructions to use Chrisneverdie/OnlySports_Classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Chrisneverdie/OnlySports_Classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Chrisneverdie/OnlySports_Classifier")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("Chrisneverdie/OnlySports_Classifier") model = AutoModelForSequenceClassification.from_pretrained("Chrisneverdie/OnlySports_Classifier") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -40,7 +40,7 @@ The classifier was trained on a balanced dataset of sports and non-sports conten
|
|
| 40 |
|
| 41 |
## Usage
|
| 42 |
|
| 43 |
-
This classifier is primarily used in the creation of the OnlySports Dataset. It can be applied to filter large text corpora for sports-related content with high accuracy.
|
| 44 |
|
| 45 |
## Integration
|
| 46 |
|
|
|
|
| 40 |
|
| 41 |
## Usage
|
| 42 |
|
| 43 |
+
This classifier is primarily used in the creation of the OnlySports Dataset, presented in this [paper](https://arxiv.org/abs/2409.00286). It can be applied to filter large text corpora for sports-related content with high accuracy.
|
| 44 |
|
| 45 |
## Integration
|
| 46 |
|