license: unknown | |
task_categories: | |
- text-classification | |
language: | |
- th | |
tags: | |
- code | |
size_categories: | |
- 1K<n<10K | |
from transformers import pipeline | |
# สร้างตัวดำเนินการสำหรับการจำแนกประเภทข้อความ | |
classifier = pipeline("text-classification") | |
# ทำนายประเภทข้อความ | |
result = classifier("This is a text to classify") | |
print(result) | |