thanakritbright commited on
Commit
32acb8c
1 Parent(s): 727fc9c
Files changed (1) hide show
  1. dummy +9 -0
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)