aalkaswan commited on
Commit
f0728e0
Β·
1 Parent(s): f2a293e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -21,7 +21,10 @@ iface = gr.Interface(fn=classify,
21
  inputs=["text", gr.inputs.Dropdown(model_names, label='class')],
22
  outputs="text",
23
  title='STACC',
24
- description='''# STACC: Sentence-Transformers Assisted code Comment Classifiers
25
 
26
- This app showcases STACC, a collection of SetFit-based Comment classifiers, which were created for the [NLBSE-2023 tool competition](https://nlbse2023.github.io/tools/). More details on the tool itself can be found in the [GitHub repo](https://github.com/AISE-TUDelft/STACC) ''')
 
 
 
27
  iface.launch()
 
21
  inputs=["text", gr.inputs.Dropdown(model_names, label='class')],
22
  outputs="text",
23
  title='STACC',
24
+ description='''# STACC: a set of SentenceTransformer Assisted Comment Classifiers πŸ“š
25
 
26
+ This app showcases STACC, a collection of SetFit-based Comment classifiers created for the [NLBSE-2023 tool competition](https://nlbse2023.github.io/tools/). More details on the tool itself can be found in the [GitHub repo.](https://github.com/AISE-TUDelft/STACC)
27
+
28
+ To use the app, write a comment in the text box, and select the class you wish to test. Press Submit and watch the magic happen ✨
29
+ ''')
30
  iface.launch()