thanakritbright
commited on
Commit
•
32acb8c
1
Parent(s):
727fc9c
dummy
Browse files
dummy
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from transformers import pipeline
|
2 |
+
|
3 |
+
# สร้างตัวดำเนินการสำหรับการจำแนกประเภทข้อความ
|
4 |
+
classifier = pipeline("text-classification")
|
5 |
+
|
6 |
+
# ทำนายประเภทข้อความ
|
7 |
+
result = classifier("This is a text to classify")
|
8 |
+
|
9 |
+
print(result)
|