omm7 commited on
Commit
2c67057
Β·
verified Β·
1 Parent(s): fe86990

Upload app/app.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. app/app.py +6 -4
app/app.py CHANGED
@@ -163,10 +163,7 @@ with col1:
163
  if output_path and output_path.exists():
164
  output_path.unlink()
165
 
166
- # ── Ground truth (moved here) ─────────────────────────────────────────────
167
- st.divider()
168
- st.info("Ground truth label (from `.align` file)")
169
- st.code(ground_truth, language=None)
170
 
171
  # ── Column 2: Model inference ─────────────────────────────────────────────────
172
  with col2:
@@ -201,6 +198,11 @@ with col2:
201
 
202
  st.divider()
203
 
 
 
 
 
 
204
  # ── Final prediction ──────────────────────────────────────────────────────
205
  prediction = tf.strings.reduce_join(
206
  num_to_char(decoded[0])
 
163
  if output_path and output_path.exists():
164
  output_path.unlink()
165
 
166
+
 
 
 
167
 
168
  # ── Column 2: Model inference ─────────────────────────────────────────────────
169
  with col2:
 
198
 
199
  st.divider()
200
 
201
+ # ── Ground truth (moved here) ─────────────────────────────────────────────
202
+ st.divider()
203
+ st.info("Ground truth label (from `.align` file)")
204
+ st.code(ground_truth, language=None)
205
+
206
  # ── Final prediction ──────────────────────────────────────────────────────
207
  prediction = tf.strings.reduce_join(
208
  num_to_char(decoded[0])