Update README.md
Browse files
README.md
CHANGED
|
@@ -44,11 +44,26 @@ evaluation_results:
|
|
| 44 |
Future: 727
|
| 45 |
Past: 577
|
| 46 |
Present: 694
|
| 47 |
-
---
|
| 48 |
|
| 49 |
## Model Overview
|
| 50 |
|
| 51 |
-
This model is a text classification model trained to predict the tense of English sentences: Past, Present, or Future
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
|
| 53 |
## Training Details
|
| 54 |
|
|
@@ -58,12 +73,25 @@ The model was fine-tuned on the `ProfessorLeVesseur/EnglishTense` dataset, which
|
|
| 58 |
|
| 59 |
The model achieves a perfect accuracy of 1.00 on the test set, with precision, recall, and F1-scores also at 1.00 for all classes. These results indicate excellent performance in classifying sentence tenses.
|
| 60 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 61 |
## Intended Use
|
| 62 |
|
| 63 |
This model can be used in applications such as:
|
| 64 |
-
- Predicting future plans or intentions based on sentence structure.
|
| 65 |
- Identifying if statements are discussing past needs, motivations, products, etc.
|
| 66 |
- Determining current events or situations in text.
|
|
|
|
| 67 |
|
| 68 |
### Limitations
|
| 69 |
|
|
|
|
| 44 |
Future: 727
|
| 45 |
Past: 577
|
| 46 |
Present: 694
|
| 47 |
+
---
|
| 48 |
|
| 49 |
## Model Overview
|
| 50 |
|
| 51 |
+
This model is a **text classification model** trained to **predict the tense of English sentences: Past, Present, or Future**. It is based on the `bert-base-uncased` architecture.
|
| 52 |
+
|
| 53 |
+
## Intended Use
|
| 54 |
+
|
| 55 |
+
This model can be used in applications such as:
|
| 56 |
+
- Identifying if statements are discussing past needs, motivations, products, etc.
|
| 57 |
+
- Determining current events or situations in text.
|
| 58 |
+
- Predicting future plans or intentions based on sentence structure.
|
| 59 |
+
|
| 60 |
+
### Example Sentences and Labels
|
| 61 |
+
|
| 62 |
+
| Sentence | Label |
|
| 63 |
+
|--------------------------------------------------------------------------|---------|
|
| 64 |
+
| the fishermen had caught a variety of fish including bass and perch | Past |
|
| 65 |
+
| medical professionals are researching the impact of social determinants on health | Present |
|
| 66 |
+
| in the future robotic surgical systems will have been empowering surgeons to perform increasingly complex procedures | Future |
|
| 67 |
|
| 68 |
## Training Details
|
| 69 |
|
|
|
|
| 73 |
|
| 74 |
The model achieves a perfect accuracy of 1.00 on the test set, with precision, recall, and F1-scores also at 1.00 for all classes. These results indicate excellent performance in classifying sentence tenses.
|
| 75 |
|
| 76 |
+
### Classification Report
|
| 77 |
+
|
| 78 |
+
### Classification Report
|
| 79 |
+
|
| 80 |
+
| Class | Precision | Recall | F1-Score | Support |
|
| 81 |
+
|-------------|-----------|--------|----------|---------|
|
| 82 |
+
| Future | 1.00 | 1.00 | 1.00 | 727 |
|
| 83 |
+
| Past | 1.00 | 1.00 | 1.00 | 577 |
|
| 84 |
+
| Present | 1.00 | 1.00 | 1.00 | 694 |
|
| 85 |
+
| **Accuracy**| | | 1.00 | 1998 |
|
| 86 |
+
| **Macro Avg** | 1.00 | 1.00 | 1.00 | 1998 |
|
| 87 |
+
| **Weighted Avg** | 1.00 | 1.00 | 1.00 | 1998 |
|
| 88 |
+
|
| 89 |
## Intended Use
|
| 90 |
|
| 91 |
This model can be used in applications such as:
|
|
|
|
| 92 |
- Identifying if statements are discussing past needs, motivations, products, etc.
|
| 93 |
- Determining current events or situations in text.
|
| 94 |
+
- Predicting future plans or intentions based on sentence structure.
|
| 95 |
|
| 96 |
### Limitations
|
| 97 |
|