File size: 458 Bytes
727fc9c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
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)