File size: 1,070 Bytes
3b47bf9
23da5f3
 
 
 
3b47bf9
23da5f3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
tags:
- text-classification
- multi-label
- indoBERT
---

# IndoBERT for Multi-Label Classification

This model is fine-tuned for multi-label classification of issue types.

## Label Mapping
| Label ID   | Label Name                    |
|------------|-------------------------------|
| LABEL_0    | APP                           |
| LABEL_1    | CATER                         |
| LABEL_2    | DISCARD                       |
| LABEL_3    | GPTL                          |
| LABEL_4    | INTEGRITAS                    |
| LABEL_5    | PB                            |
| LABEL_6    | PD                            |
| LABEL_7    | PERUBAHAN DATA                |
| LABEL_8    | PS                            |
| LABEL_9    | TAGIHAN LISTRIK DAN TOKEN     |
| LABEL_10   | TUSBUNG                       |

## Usage
To use this model with the Hugging Face pipeline:

```python
from transformers import pipeline

classifier = pipeline("text-classification", model="your-username/your-model-name")
result = classifier("Mati lampu di rumah tolong perbaiki.")
print(result)