Update README.md
Browse files
README.md
CHANGED
|
@@ -16,6 +16,9 @@ metrics:
|
|
| 16 |
base_model: roberta-base
|
| 17 |
---
|
| 18 |
|
|
|
|
|
|
|
|
|
|
| 19 |
# RobertaPhysics: Physics Content Classifier
|
| 20 |
|
| 21 |
This model is a fine-tuned version of [roberta-base](https://huggingface.co/roberta-base) designed to distinguish between **Physics-related content** and **General/Non-Physics text**.
|
|
@@ -34,6 +37,9 @@ The model was trained for 3 epochs and achieved the following results on the val
|
|
| 34 |
| **F1-Score** | **65.93%** | Harmonic mean of precision and recall. |
|
| 35 |
| **Validation Loss** | **0.1574** | Low validation error indicating stable convergence. |
|
| 36 |
|
|
|
|
|
|
|
|
|
|
| 37 |
## 🏷️ Label Mapping
|
| 38 |
|
| 39 |
The model uses the following mapping for inference:
|
|
@@ -72,8 +78,7 @@ print(result_general)
|
|
| 72 |
# Expected Output: [{'label': 'General', 'score': 0.86}]
|
| 73 |
```
|
| 74 |
|
| 75 |
-
|
| 76 |
-

|
| 77 |
|
| 78 |
⚠️ Intended Use
|
| 79 |
Primary Use: Filtering datasets to retain physics-domain text.
|
|
|
|
| 16 |
base_model: roberta-base
|
| 17 |
---
|
| 18 |
|
| 19 |
+
|
| 20 |
+

|
| 21 |
+
|
| 22 |
# RobertaPhysics: Physics Content Classifier
|
| 23 |
|
| 24 |
This model is a fine-tuned version of [roberta-base](https://huggingface.co/roberta-base) designed to distinguish between **Physics-related content** and **General/Non-Physics text**.
|
|
|
|
| 37 |
| **F1-Score** | **65.93%** | Harmonic mean of precision and recall. |
|
| 38 |
| **Validation Loss** | **0.1574** | Low validation error indicating stable convergence. |
|
| 39 |
|
| 40 |
+
|
| 41 |
+

|
| 42 |
+
|
| 43 |
## 🏷️ Label Mapping
|
| 44 |
|
| 45 |
The model uses the following mapping for inference:
|
|
|
|
| 78 |
# Expected Output: [{'label': 'General', 'score': 0.86}]
|
| 79 |
```
|
| 80 |
|
| 81 |
+

|
|
|
|
| 82 |
|
| 83 |
⚠️ Intended Use
|
| 84 |
Primary Use: Filtering datasets to retain physics-domain text.
|