Yehor commited on
Commit
5ab9924
·
verified ·
1 Parent(s): 3727315

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +18 -3
app.py CHANGED
@@ -31,7 +31,7 @@ Follow them on social networks and **contact** if you need any help or have any
31
  """.strip()
32
 
33
  examples = [
34
- ["evaluation_results.jsonl", True],
35
  ]
36
 
37
  description_head = f"""
@@ -65,10 +65,12 @@ tech_libraries = f"""
65
  - polars: {version('polars')}
66
  """.strip()
67
 
 
68
  def clean_value(x):
69
  return x.replace('’', "'").strip().lower().replace(',', '').replace('.', '').replace('?', '').replace('!', '').replace('–', '').replace('«', '').replace('»', '')
70
 
71
- def inference(file_name, clear_punctuation, progress=gr.Progress()):
 
72
  if not file_name:
73
  raise gr.Error("Please paste your JSON file.")
74
 
@@ -116,6 +118,16 @@ def inference(file_name, clear_punctuation, progress=gr.Progress()):
116
  results.append('')
117
  results.append(f"- RTF: {round(rtf, 4)}")
118
 
 
 
 
 
 
 
 
 
 
 
119
  return "\n".join(results)
120
 
121
 
@@ -136,6 +148,9 @@ with demo:
136
  clear_punctuation = gr.Checkbox(
137
  label="Clear punctuation, some chars and convert to lowercase",
138
  )
 
 
 
139
 
140
  metrics = gr.Textbox(
141
  label="Metrics",
@@ -151,7 +166,7 @@ with demo:
151
  )
152
 
153
  with gr.Row():
154
- gr.Examples(label="Choose an example", inputs=[jsonl_file, clear_punctuation], examples=examples)
155
 
156
  gr.Markdown(description_foot)
157
 
 
31
  """.strip()
32
 
33
  examples = [
34
+ ["evaluation_results.jsonl", True, False],
35
  ]
36
 
37
  description_head = f"""
 
65
  - polars: {version('polars')}
66
  """.strip()
67
 
68
+
69
  def clean_value(x):
70
  return x.replace('’', "'").strip().lower().replace(',', '').replace('.', '').replace('?', '').replace('!', '').replace('–', '').replace('«', '').replace('»', '')
71
 
72
+
73
+ def inference(file_name, clear_punctuation, show_chars, progress=gr.Progress()):
74
  if not file_name:
75
  raise gr.Error("Please paste your JSON file.")
76
 
 
118
  results.append('')
119
  results.append(f"- RTF: {round(rtf, 4)}")
120
 
121
+ if show_chars:
122
+ all_chars = set()
123
+ for pred in list(df['prediction']):
124
+ for c in pred:
125
+ all_chars.add(c)
126
+
127
+ results.append('')
128
+ results.append(f"Chars in predictions:")
129
+ results.append(f"{list(all_chars)}")
130
+
131
  return "\n".join(results)
132
 
133
 
 
148
  clear_punctuation = gr.Checkbox(
149
  label="Clear punctuation, some chars and convert to lowercase",
150
  )
151
+ show_chars = gr.Checkbox(
152
+ label="Show chars in predictions",
153
+ )
154
 
155
  metrics = gr.Textbox(
156
  label="Metrics",
 
166
  )
167
 
168
  with gr.Row():
169
+ gr.Examples(label="Choose an example", inputs=[jsonl_file, clear_punctuation, show_chars], examples=examples)
170
 
171
  gr.Markdown(description_foot)
172