Update app.py
Browse files
app.py
CHANGED
@@ -26,12 +26,12 @@ title = "Movie Review Score Discriminator"
|
|
26 |
description = "It is a program that classifies whether it is positive or negative by entering movie reviews. You can choose between the Korean version and the English version."
|
27 |
|
28 |
|
29 |
-
|
30 |
-
|
31 |
-
# examples = [
|
32 |
-
for i in range(3):
|
33 |
-
|
34 |
-
|
35 |
|
36 |
|
37 |
|
|
|
26 |
description = "It is a program that classifies whether it is positive or negative by entering movie reviews. You can choose between the Korean version and the English version."
|
27 |
|
28 |
|
29 |
+
examples = ["the greatest musicians ", "cold movie "]
|
30 |
+
# imdb_dataset = load_dataset('imdb')
|
31 |
+
# examples = []
|
32 |
+
# for i in range(3):
|
33 |
+
# idx = random.randrange(len(imdb_dataset['train']))
|
34 |
+
# examples.append(imdb_dataset['train'][idx]['text'])
|
35 |
|
36 |
|
37 |
|