Update README.md
Browse files
README.md
CHANGED
@@ -5,11 +5,8 @@ tags:
|
|
5 |
- distilbert
|
6 |
- pytorch
|
7 |
- text-classification
|
8 |
-
- mobile
|
9 |
-
- app
|
10 |
-
- descriptions
|
11 |
- playstore
|
12 |
-
- classification
|
13 |
license: "mit"
|
14 |
inference: true
|
15 |
---
|
@@ -37,10 +34,10 @@ model = AutoModelForSequenceClassification.from_pretrained("nsi319/distilbert-ba
|
|
37 |
|
38 |
classifier = pipeline('sentiment-analysis', model=model, tokenizer=tokenizer)
|
39 |
|
40 |
-
classifier("
|
41 |
|
42 |
'''Output'''
|
43 |
-
[{'label': '
|
44 |
```
|
45 |
|
46 |
## Limitations
|
|
|
5 |
- distilbert
|
6 |
- pytorch
|
7 |
- text-classification
|
8 |
+
- mobile app descriptions
|
|
|
|
|
9 |
- playstore
|
|
|
10 |
license: "mit"
|
11 |
inference: true
|
12 |
---
|
|
|
34 |
|
35 |
classifier = pipeline('sentiment-analysis', model=model, tokenizer=tokenizer)
|
36 |
|
37 |
+
classifier("Disney+ has something for everyone and every mood, all in one place. With endless entertainment from Disney, Pixar, Marvel, Star Wars, National Geographic and Star, there's always something exciting to watch. Watch the latest releases, Original series and movies, classic films, throwbacks and so much more.")
|
38 |
|
39 |
'''Output'''
|
40 |
+
[{'label': 'Entertainment', 'score': 0.9014402031898499}]
|
41 |
```
|
42 |
|
43 |
## Limitations
|