gpucce commited on
Commit
57f74cd
·
1 Parent(s): c54a645

prettier output

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -18,9 +18,13 @@ tokenizer = AutoTokenizer.from_pretrained(model_name_or_path)
18
 
19
 
20
  def classify(text):
21
- return reverse_map[
22
- model(**tokenizer(text, return_tensors="pt")).logits.argmax(-1).item()
23
- ]
 
 
 
 
24
 
25
 
26
  iface = gr.Interface(fn=classify, inputs="text", outputs="text")
 
18
 
19
 
20
  def classify(text):
21
+ return (
22
+ reverse_map[
23
+ model(**tokenizer(text, return_tensors="pt")).logits.argmax(-1).item()
24
+ ]
25
+ .replace("_", " ")
26
+ .capitalize()
27
+ )
28
 
29
 
30
  iface = gr.Interface(fn=classify, inputs="text", outputs="text")