sileod commited on
Commit
068f0da
·
verified ·
1 Parent(s): 68c3408

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -9
app.py CHANGED
@@ -14,15 +14,8 @@ def zeroShotClassification(text_input, candidate_labels):
14
  # For Label component: Return raw scores (not percentage strings)
15
  results = {label: score for label, score in zip(prediction['labels'], prediction['scores'])}
16
 
17
- # For Markdown: Create detailed view with percentage formatting
18
- markdown_output = "### Results Breakdown:\n\n"
19
- for label, score in sorted(results.items(), key=lambda x: x[1], reverse=True):
20
- # Convert to percentage for display
21
- percentage = score * 100
22
- blocks = "█" * int(percentage/5) + "░" * (20 - int(percentage/5))
23
- markdown_output += f"**{label}**: {blocks} {percentage:.2f}%\n\n"
24
-
25
- return results, markdown_output
26
 
27
  # Create the interface
28
  demo = gr.Interface(
 
14
  # For Label component: Return raw scores (not percentage strings)
15
  results = {label: score for label, score in zip(prediction['labels'], prediction['scores'])}
16
 
17
+
18
+ return results, ''
 
 
 
 
 
 
 
19
 
20
  # Create the interface
21
  demo = gr.Interface(