Luigi commited on
Commit
d10c1a0
·
1 Parent(s): de2e4cb

feat: initial tiny-scribe deployment

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -2697,11 +2697,10 @@ def create_interface():
2697
  gr.HTML('<div class="section-header" style="margin-top: 20px;"><span class="section-icon">🧬</span> Stage 2: Deduplication</div>')
2698
 
2699
  embedding_model = gr.Dropdown(
2700
- choices=[("granite-107m", "granite-107m"), ("granite-278m", "granite-278m"),
2701
- ("gemma-300m", "gemma-300m"), ("qwen-600m", "qwen-600m")],
2702
  value="granite-107m",
2703
  label="Embedding Model",
2704
- info="Computes semantic similarity for duplicate detection"
2705
  )
2706
 
2707
  similarity_threshold = gr.Slider(
 
2697
  gr.HTML('<div class="section-header" style="margin-top: 20px;"><span class="section-icon">🧬</span> Stage 2: Deduplication</div>')
2698
 
2699
  embedding_model = gr.Dropdown(
2700
+ choices=[("granite-107m", "granite-107m")],
 
2701
  value="granite-107m",
2702
  label="Embedding Model",
2703
+ info="Computes semantic similarity for duplicate detection (Granite-107M optimal)"
2704
  )
2705
 
2706
  similarity_threshold = gr.Slider(