Instructions to use TimSchopf/nlp_taxonomy_classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use TimSchopf/nlp_taxonomy_classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="TimSchopf/nlp_taxonomy_classifier")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("TimSchopf/nlp_taxonomy_classifier") model = AutoModelForSequenceClassification.from_pretrained("TimSchopf/nlp_taxonomy_classifier") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -32,7 +32,7 @@ Code: https://github.com/sebischair/Exploring-NLP-Research
|
|
| 32 |

|
| 33 |
|
| 34 |
|
| 35 |
-
## How to use the
|
| 36 |
|
| 37 |
```python
|
| 38 |
from typing import List
|
|
|
|
| 32 |

|
| 33 |
|
| 34 |
|
| 35 |
+
## How to use the fine-tuned model
|
| 36 |
|
| 37 |
```python
|
| 38 |
from typing import List
|