Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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:
|
| 25 |
|
| 26 |
-
This app showcases STACC, a collection of SetFit-based Comment classifiers
|
|
|
|
|
|
|
|
|
|
| 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()
|