File size: 338 Bytes
32acb8c
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from transformers import pipeline

# สร้างตัวดำเนินการสำหรับการจำแนกประเภทข้อความ
classifier = pipeline("text-classification")

# ทำนายประเภทข้อความ
result = classifier("This is a text to classify")

print(result)