Text Classification
Transformers
TensorFlow
bert
generated_from_keras_callback
text-embeddings-inference
Instructions to use Mingyi/classify_title_subject with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Mingyi/classify_title_subject with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="Mingyi/classify_title_subject")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("Mingyi/classify_title_subject") model = AutoModelForSequenceClassification.from_pretrained("Mingyi/classify_title_subject") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,2 +1,4 @@
|
|
| 1 |
Given a title of YouTube video, article, or podcast episode, this model classifies it into 1 of 8 subjects: art, personal development, world, health, science, business, humanities, technology.
|
| 2 |
|
|
|
|
|
|
|
|
|
| 1 |
Given a title of YouTube video, article, or podcast episode, this model classifies it into 1 of 8 subjects: art, personal development, world, health, science, business, humanities, technology.
|
| 2 |
|
| 3 |
+
This model is fine-tuned from **distilbert-base-uncased** using ~1k labeled data.
|
| 4 |
+
|