Update README.md
Browse files
README.md
CHANGED
@@ -6,6 +6,14 @@ language:
|
|
6 |
base_model:
|
7 |
- nicholasKluge/TeenyTinyLlama-460m
|
8 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
## Categorias:
|
10 |
```json
|
11 |
"0": "Analise e Interpretação",
|
@@ -16,4 +24,5 @@ base_model:
|
|
16 |
"5": "Informação Geral",
|
17 |
"6": "Programação e Desenvolvimento",
|
18 |
"7": "Suporte e Ajuda"
|
19 |
-
```
|
|
|
|
6 |
base_model:
|
7 |
- nicholasKluge/TeenyTinyLlama-460m
|
8 |
---
|
9 |
+
|
10 |
+
|
11 |
+
```python
|
12 |
+
from transformers import pipeline
|
13 |
+
|
14 |
+
pipe = pipeline("text-classification", model="J-LAB/Classificador_de_prompt")
|
15 |
+
pipe("Prompt")
|
16 |
+
```
|
17 |
## Categorias:
|
18 |
```json
|
19 |
"0": "Analise e Interpretação",
|
|
|
24 |
"5": "Informação Geral",
|
25 |
"6": "Programação e Desenvolvimento",
|
26 |
"7": "Suporte e Ajuda"
|
27 |
+
```
|
28 |
+
Accuracy: 88,80%
|