Update README.md
Browse files
README.md
CHANGED
@@ -82,7 +82,7 @@ The model can be applied in any scenario where it's important to distinguish bet
|
|
82 |
### Limitations
|
83 |
|
84 |
- **Domain Specificity**: The model was trained on Steam reviews and may not generalize well outside gaming.
|
85 |
-
- **Dataset Imbalance**: The training data has an approximate **63%-
|
86 |
|
87 |
<hr>
|
88 |
|
@@ -130,4 +130,9 @@ classifier = pipeline(
|
|
130 |
|
131 |
review = "Review: I think this is a great game but it still has some room for improvement., Playtime: 12, Voted Up: True, Upvotes: 1, Votes Funny: 0"
|
132 |
result = classifier(review)
|
133 |
-
print(result)
|
|
|
|
|
|
|
|
|
|
|
|
82 |
### Limitations
|
83 |
|
84 |
- **Domain Specificity**: The model was trained on Steam reviews and may not generalize well outside gaming.
|
85 |
+
- **Dataset Imbalance**: The training data has an approximate **63.04%-36.96%** split between non-constructive and constructive reviews.
|
86 |
|
87 |
<hr>
|
88 |
|
|
|
130 |
|
131 |
review = "Review: I think this is a great game but it still has some room for improvement., Playtime: 12, Voted Up: True, Upvotes: 1, Votes Funny: 0"
|
132 |
result = classifier(review)
|
133 |
+
print(result)
|
134 |
+
```
|
135 |
+
|
136 |
+
## License
|
137 |
+
|
138 |
+
This model is licensed under the *[MIT License](https://mit-license.org/)*, allowing open and flexible use of the model for both academic and commercial purposes.
|