File size: 915 Bytes
211a2df 8b695af 4e0d83b 8b695af 4e0d83b 8b695af bc4938e 8b695af |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
---
license: apache-2.0
datasets:
- gexai/inquisitiveqg
language:
- en
metrics:
- accuracy
base_model:
- distilbert/distilbert-base-uncased
pipeline_tag: text-classification
---
## Model Details
Text classification model for ambiguity in questions. Classifies questions as ambiguous or clear.
Based on distilbert/distilbert-base-uncased.
**Example:**
"Did he do it?" {'label': 'AMBIG', 'score': 0.9029870629310608}
"Did Peter win the game?" {'label': 'CLEAR', 'score': 0.8900136351585388}
## Out-of-Scope Use
The model was only trained to classify single questions. Other kinds of data are not tested.
### Training Data
I manually labeled a small part of the inquisitiveqg dataset mixed with a private dataset to train the model to recognize ambiguity in questions. A satisfactory model with 85.5% accuracy was created.
#### Metrics
"eval_accuracy": 0.8551401869158879,
"eval_loss": 0.3658725619316101, |