Instructions to use ruanchaves/mdeberta-v3-base-assin-entailment with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ruanchaves/mdeberta-v3-base-assin-entailment with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="ruanchaves/mdeberta-v3-base-assin-entailment")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("ruanchaves/mdeberta-v3-base-assin-entailment") model = AutoModelForSequenceClassification.from_pretrained("ruanchaves/mdeberta-v3-base-assin-entailment", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Commit ·
ac58b95
1
Parent(s): dd117da
Upload all_results.json with huggingface_hub
Browse files- all_results.json +8 -0
all_results.json
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"epoch": 20.0,
|
| 3 |
+
"train_loss": 0.04982372024477137,
|
| 4 |
+
"train_runtime": 4408.0257,
|
| 5 |
+
"train_samples": 5000,
|
| 6 |
+
"train_samples_per_second": 22.686,
|
| 7 |
+
"train_steps_per_second": 1.416
|
| 8 |
+
}
|