thanakritbright's picture
dummy
32acb8c verified
raw
history blame contribute delete
338 Bytes
from transformers import pipeline
# สร้างตัวดำเนินการสำหรับการจำแนกประเภทข้อความ
classifier = pipeline("text-classification")
# ทำนายประเภทข้อความ
result = classifier("This is a text to classify")
print(result)