Text Classification
Transformers
PyTorch
bert
Generated from Trainer
Eval Results (legacy)
text-embeddings-inference
Instructions to use henryscheible/bert-large-uncased_crows_pairs_finetuned with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use henryscheible/bert-large-uncased_crows_pairs_finetuned with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="henryscheible/bert-large-uncased_crows_pairs_finetuned")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("henryscheible/bert-large-uncased_crows_pairs_finetuned") model = AutoModelForSequenceClassification.from_pretrained("henryscheible/bert-large-uncased_crows_pairs_finetuned", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Commit ·
4af5ff7
1
Parent(s): 435aa39
Upload ss_ablation_stats.json with huggingface_hub
Browse files- ss_ablation_stats.json +7 -0
ss_ablation_stats.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"heads_preserved_at_max_icat": 309,
|
| 3 |
+
"icat_pruned": 50.51054860980168,
|
| 4 |
+
"ss_pruned": 50.758399521560435,
|
| 5 |
+
"icat_base": 45.934908690486644,
|
| 6 |
+
"ss_base": 51.629449136664014
|
| 7 |
+
}
|