Pendrokar commited on
Commit
92eafc3
β€’
1 Parent(s): 65ce3ae

flagging hidden due to longname crashing

Browse files
Files changed (1) hide show
  1. app.py +11 -7
app.py CHANGED
@@ -31,10 +31,6 @@ emoji_codes = []
31
  with open('./data/emoji_codes.json', 'r') as f:
32
  emoji_codes = json.load(f)
33
 
34
- def top_elements(array, k):
35
- ind = np.argpartition(array, -k)[-k:]
36
- return ind[np.argsort(array[ind])][::-1]
37
-
38
  maxlen = 30
39
 
40
  with open(vocab_path, 'r') as f:
@@ -44,6 +40,13 @@ st = SentenceTokenizer(vocabulary, maxlen)
44
 
45
  model = torchmoji_emojis(model_path)
46
 
 
 
 
 
 
 
 
47
  def predict(deepmoji_analysis, emoji_count):
48
  if deepmoji_analysis.strip() == '':
49
  # dotted face emoji
@@ -124,9 +127,10 @@ gradio_app = gr.Interface(
124
  title="🎭 DeepMoji 🎭",
125
  allow_duplication=True,
126
  # flagged saved to hf dataset
127
- allow_flagging="manual",
128
- flagging_options=["'🚩 sarcasm / innuendo 😏'", "'🚩 unsuitable / other'"],
129
- flagging_callback=hf_writer
 
130
  )
131
 
132
  if __name__ == "__main__":
 
31
  with open('./data/emoji_codes.json', 'r') as f:
32
  emoji_codes = json.load(f)
33
 
 
 
 
 
34
  maxlen = 30
35
 
36
  with open(vocab_path, 'r') as f:
 
40
 
41
  model = torchmoji_emojis(model_path)
42
 
43
+ def pre_hf_writer(*args):
44
+ return hf_writer(args)
45
+
46
+ def top_elements(array, k):
47
+ ind = np.argpartition(array, -k)[-k:]
48
+ return ind[np.argsort(array[ind])][::-1]
49
+
50
  def predict(deepmoji_analysis, emoji_count):
51
  if deepmoji_analysis.strip() == '':
52
  # dotted face emoji
 
127
  title="🎭 DeepMoji 🎭",
128
  allow_duplication=True,
129
  # flagged saved to hf dataset
130
+ # FIXME: gradio sends output as a saveable filename, crashing flagging
131
+ # allow_flagging="manual",
132
+ # flagging_options=["'🚩 sarcasm / innuendo 😏'", "'🚩 unsuitable / other'"],
133
+ # flagging_callback=hf_writer
134
  )
135
 
136
  if __name__ == "__main__":