1littlecoder commited on
Commit
dba3502
1 Parent(s): 8614172

fixed dedup examples

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -81,9 +81,9 @@ def create_gradio_interface():
81
  )
82
  examples_dedup = gr.Examples(
83
  examples=[
84
- ["apple, apple, orange, banana", 0.8],
85
- ["cat, dog, cat, bird, dog", 0.9],
86
- ["text, text, more text, text", 0.7]
87
  ],
88
  inputs=[candidates_dedup, threshold_dedup],
89
  )
 
81
  )
82
  examples_dedup = gr.Examples(
83
  examples=[
84
+ ["apple, apple", 0.8],
85
+ ["delhi, new delhi", 0.9],
86
+ ["text, textual", 0.7]
87
  ],
88
  inputs=[candidates_dedup, threshold_dedup],
89
  )