Spaces:
Sleeping
Sleeping
stats-dev
commited on
Commit
•
61d8616
1
Parent(s):
be5e682
test
Browse files
app.py
CHANGED
@@ -1,7 +1,8 @@
|
|
1 |
-
|
|
|
2 |
|
3 |
-
|
4 |
-
|
|
|
|
|
5 |
|
6 |
-
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
7 |
-
iface.launch()
|
|
|
1 |
+
# Load model directly
|
2 |
+
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
3 |
|
4 |
+
tokenizer = AutoTokenizer.from_pretrained("j5ng/kcbert-formal-classifier")
|
5 |
+
model = AutoModelForSequenceClassification.from_pretrained("j5ng/kcbert-formal-classifier")
|
6 |
+
|
7 |
+
formal_classifier = pipeline(task="text-classification", model=model, tokenizer=tokenizer)
|
8 |
|
|
|
|