Text Classification
Transformers
TensorFlow
bert
generated_from_keras_callback
text-embeddings-inference
Instructions to use jonaskoenig/xtremedistil-l6-h256-uncased-question-vs-statement-classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use jonaskoenig/xtremedistil-l6-h256-uncased-question-vs-statement-classifier with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="jonaskoenig/xtremedistil-l6-h256-uncased-question-vs-statement-classifier")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("jonaskoenig/xtremedistil-l6-h256-uncased-question-vs-statement-classifier") model = AutoModelForSequenceClassification.from_pretrained("jonaskoenig/xtremedistil-l6-h256-uncased-question-vs-statement-classifier", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Commit ·
11d4ed6
1
Parent(s): 4834e8a
Update README.md
Browse files
README.md
CHANGED
|
@@ -15,7 +15,7 @@ probably proofread and complete it, then remove this comment. -->
|
|
| 15 |
|
| 16 |
# xtremedistil-l6-h256-uncased-question-vs-statement-classifier
|
| 17 |
|
| 18 |
-
This model is a fine-tuned version of [microsoft/xtremedistil-l6-h256-uncased](https://huggingface.co/microsoft/xtremedistil-l6-h256-uncased) on [question-vs-statement-classifier](https://huggingface.co/datasets/jonaskoenig/Questions-vs-Statements-Classification) dataset, which is a clone of the
|
| 19 |
|
| 20 |
It achieves the following results on the evaluation set:
|
| 21 |
- Train Loss: 0.0227
|
|
|
|
| 15 |
|
| 16 |
# xtremedistil-l6-h256-uncased-question-vs-statement-classifier
|
| 17 |
|
| 18 |
+
This model is a fine-tuned version of [microsoft/xtremedistil-l6-h256-uncased](https://huggingface.co/microsoft/xtremedistil-l6-h256-uncased) on [question-vs-statement-classifier](https://huggingface.co/datasets/jonaskoenig/Questions-vs-Statements-Classification) dataset, which is a clone of the kaggle [Questions vs Statements Classification](https://www.kaggle.com/datasets/shahrukhkhan/questions-vs-statementsclassificationdataset) dataset.
|
| 19 |
|
| 20 |
It achieves the following results on the evaluation set:
|
| 21 |
- Train Loss: 0.0227
|