Instructions to use sinanyuksel/test with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use sinanyuksel/test with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="sinanyuksel/test")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("sinanyuksel/test") model = AutoModelForSequenceClassification.from_pretrained("sinanyuksel/test") - Notebooks
- Google Colab
- Kaggle
Commit ·
8b38022
1
Parent(s): 1ddb380
Update config.json
Browse files- config.json +1 -1
config.json
CHANGED
|
@@ -15,5 +15,5 @@
|
|
| 15 |
"pad_token_id": 0,
|
| 16 |
"type_vocab_size": 2,
|
| 17 |
"vocab_size": 32000,
|
| 18 |
-
problem_type": "text_classification"
|
| 19 |
}
|
|
|
|
| 15 |
"pad_token_id": 0,
|
| 16 |
"type_vocab_size": 2,
|
| 17 |
"vocab_size": 32000,
|
| 18 |
+
"problem_type": "text_classification"
|
| 19 |
}
|