ShesterG commited on
Commit
75f174e
·
1 Parent(s): e8fe84d

added one example attached with the code

Browse files
Files changed (1) hide show
  1. app.py +7 -7
app.py CHANGED
@@ -578,16 +578,16 @@ This app uses TTIC's foundation model SHuBERT (introduced in an ACL 2025 paper,
578
  title="ASL Video to English Text Translation",
579
  description=description,
580
  article="",
581
- examples=dailymoth_pathlist,
582
- example_labels=["Officials with an EU force said they are searching for the missing."],
583
  allow_flagging="never",
584
  )
585
 
586
- # gr.Examples(
587
- # examples=dailymoth_pathlist,
588
- # inputs=video_input,
589
- # label="Click a video to try an example"
590
- # )
591
 
592
  return interface
593
 
 
578
  title="ASL Video to English Text Translation",
579
  description=description,
580
  article="",
581
+ # examples=dailymoth_pathlist,
582
+ # example_labels=["Officials with an EU force said they are searching for the missing."],
583
  allow_flagging="never",
584
  )
585
 
586
+ gr.Examples(
587
+ examples=dailymoth_pathlist,
588
+ inputs=video_input,
589
+ label="Click a video to try an example"
590
+ )
591
 
592
  return interface
593