Text Classification
Transformers
TensorFlow
roberta
generated_from_keras_callback
text-embeddings-inference
Instructions to use nathanReitinger/mlcb with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use nathanReitinger/mlcb with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="nathanReitinger/mlcb")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("nathanReitinger/mlcb") model = AutoModelForSequenceClassification.from_pretrained("nathanReitinger/mlcb") - Notebooks
- Google Colab
- Kaggle
Commit ·
bf4e3be
1
Parent(s): bc5de61
Update README.md
Browse files
README.md
CHANGED
|
@@ -32,6 +32,7 @@ widget:
|
|
| 32 |
temperature: 0
|
| 33 |
max_length: 512
|
| 34 |
truncate: true
|
|
|
|
| 35 |
---
|
| 36 |
|
| 37 |
<!-- This model card has been generated automatically according to the information Keras had access to. You should
|
|
|
|
| 32 |
temperature: 0
|
| 33 |
max_length: 512
|
| 34 |
truncate: true
|
| 35 |
+
truncation: "none"
|
| 36 |
---
|
| 37 |
|
| 38 |
<!-- This model card has been generated automatically according to the information Keras had access to. You should
|