futin commited on
Commit
76951c8
1 Parent(s): 933b31e

Update feed.py

Browse files
Files changed (1) hide show
  1. feed.py +16 -2
feed.py CHANGED
@@ -19,7 +19,9 @@ _TEXT = {
19
  "sen_vi": [" thất vọng", " bình thường", " hài lòng"],
20
  "sen_en": [" negative", " neutral", " positive"],
21
  "top_vi": [" giảng viên", " môn học", " phòng học", " tổng thể"],
22
- "top_en": [" lecturer", " curriculum", " facility", " general"]
 
 
23
  }
24
 
25
  class Config(datasets.BuilderConfig):
@@ -62,6 +64,16 @@ class Guess(datasets.GeneratorBasedBuilder):
62
  name="sen_en",
63
  data_url=_DATA_ENG,
64
  description="data",
 
 
 
 
 
 
 
 
 
 
65
  )
66
  ]
67
 
@@ -138,7 +150,9 @@ class Guess(datasets.GeneratorBasedBuilder):
138
  "sen_vi": f'{_text} Cảm thấy ',
139
  "sen_en": f'{_text} The sentiment of this sentence is ',
140
  "top_vi": f'Nói về ',
141
- "top_en": f'Comment about '
 
 
142
  }
143
 
144
  for _cl in TEXT_:
 
19
  "sen_vi": [" thất vọng", " bình thường", " hài lòng"],
20
  "sen_en": [" negative", " neutral", " positive"],
21
  "top_vi": [" giảng viên", " môn học", " phòng học", " tổng thể"],
22
+ "top_en": [" lecturer", " curriculum", " facility", " general"],
23
+ "top_en_": ["lecturer", "curriculum", "facility", "general"],
24
+ "sen_en_": ["negative", "neutral", "positive"],
25
  }
26
 
27
  class Config(datasets.BuilderConfig):
 
64
  name="sen_en",
65
  data_url=_DATA_ENG,
66
  description="data",
67
+ ),
68
+ Config(
69
+ name="sen_en_",
70
+ data_url=_DATA_ENG,
71
+ description="data",
72
+ ),
73
+ Config(
74
+ name="top_en_",
75
+ data_url=_DATA_ENG,
76
+ description="data",
77
  )
78
  ]
79
 
 
150
  "sen_vi": f'{_text} Cảm thấy ',
151
  "sen_en": f'{_text} The sentiment of this sentence is ',
152
  "top_vi": f'Nói về ',
153
+ "top_en": f'Comment about ',
154
+ "sen_en_": f'{_text} The sentiment of this sentence is ',
155
+ "top_en_": f'Comment about ',
156
  }
157
 
158
  for _cl in TEXT_: