mdj1412 commited on
Commit
d6fbd75
1 Parent(s): 1751f18

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
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
- imdb_dataset = load_dataset('imdb')
30
- examples = []
31
- # examples = ["the greatest musicians ", "cold movie "]
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
 
 
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