Commit
•
c210e88
1
Parent(s):
5a1a5b6
Add basic configuration for textcat
Browse files- README.md +2 -2
- app.py +4 -0
- requirements.txt +1 -0
README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
---
|
2 |
-
title: Text Classification
|
3 |
-
emoji:
|
4 |
colorFrom: indigo
|
5 |
colorTo: indigo
|
6 |
sdk: gradio
|
|
|
1 |
---
|
2 |
+
title: Gradio Annotator - Text Classification
|
3 |
+
emoji: 🙌
|
4 |
colorFrom: indigo
|
5 |
colorTo: indigo
|
6 |
sdk: gradio
|
app.py
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from dataset_viber import AnnotatorInterFace
|
2 |
+
|
3 |
+
interface = AnnotatorInterFace.for_text_classification()
|
4 |
+
interface.launch()
|
requirements.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
dataset-viber==0.2.0rc2
|