dataset_checker / README.md
thanakritbright's picture
Create README.md
727fc9c verified
metadata
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)