Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,103 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- gl
|
4 |
+
- pt
|
5 |
+
licence:
|
6 |
+
- MIT
|
7 |
+
tags:
|
8 |
+
- galician
|
9 |
+
- gpt2
|
10 |
+
license: mit
|
11 |
+
inference:
|
12 |
+
parameters:
|
13 |
+
top_k: 10
|
14 |
+
do_sample: true
|
15 |
+
temperature: 0.4
|
16 |
+
widget:
|
17 |
+
- text: |-
|
18 |
+
Responde á seguinte pregunta.
|
19 |
+
Pregunta: "Cal é a capital de Noruega?"
|
20 |
+
Resposta: "A capital de Noruega é Oslo."
|
21 |
+
----
|
22 |
+
Responde á seguinte pregunta.
|
23 |
+
Pregunta: "Cal é a moeda de Portugal"
|
24 |
+
Resposta: "A moeda de Portugal é o euro."
|
25 |
+
----
|
26 |
+
Responde á seguinte pregunta.
|
27 |
+
Pregunta: "Cal é a capital de Suecia?"
|
28 |
+
Resposta:
|
29 |
+
example_title: QA-GL
|
30 |
+
- text: |-
|
31 |
+
Cualifica como Positivo ou Negativo o sentimento da seguinte frase:
|
32 |
+
Texto: "Estou moi feliz"
|
33 |
+
Polaridade: Positivo
|
34 |
+
----
|
35 |
+
Cualifica como Positivo ou Negativo o sentimento da seguinte frase:
|
36 |
+
Texto: "Non me gusta beber cervexa"
|
37 |
+
Polaridade: Negativo
|
38 |
+
----
|
39 |
+
Cualifica como Positivo ou Negativo o sentimento da seguinte frase:
|
40 |
+
Texto: "O meu pai detesta o seu traballo"
|
41 |
+
Polaridade: Negativo
|
42 |
+
----
|
43 |
+
Cualifica como Positivo ou Negativo o sentimento da seguinte frase:
|
44 |
+
Texto: "Uxía desfruta xogando ao fútbol"
|
45 |
+
Polaridade: Positivo
|
46 |
+
----
|
47 |
+
Cualifica como Positivo ou Negativo o sentimento da seguinte frase:
|
48 |
+
Texto: "O neno non está contento coas notas"
|
49 |
+
Polaridade:
|
50 |
+
example_title: Sentiment Analysis-GL
|
51 |
+
- text: |-
|
52 |
+
Extrae as entidades nomeadas do seguinte texto:
|
53 |
+
Texto: "Chámome Wolfgang e vivo en Berlin"
|
54 |
+
Entidades: Wolfgang:PER, Berlin:LOC
|
55 |
+
----
|
56 |
+
Extrae as entidades nomeadas do seguinte texto:
|
57 |
+
Texto: "María e Miguel non teñen ningún problema"
|
58 |
+
Entidades: María:PER, Miguel:PER
|
59 |
+
----
|
60 |
+
Extrae as entidades nomeadas do seguinte texto:
|
61 |
+
Texto: "O mellor de Barcelona é o bar do meu amigo Pablo"
|
62 |
+
Entidades: Pablo:PER, Barcelona:LOC
|
63 |
+
----
|
64 |
+
Extrae as entidades nomeadas do seguinte texto:
|
65 |
+
Texto: "Carlos comparte cuarto con Marc"
|
66 |
+
Entidades:
|
67 |
+
example_title: NER-GL
|
68 |
+
- text: A receita tradicional das filloas é
|
69 |
+
example_title: Filloas
|
70 |
+
- text: O neno vivía preto de
|
71 |
+
example_title: O neno
|
72 |
+
---
|
73 |
+
|
74 |
+
# Cerebras-1.3B-PT-GL
|
75 |
+
|
76 |
+
|
77 |
+
## How to use
|
78 |
+
```python
|
79 |
+
import torch
|
80 |
+
from transformers import pipeline, AutoTokenizer, AutoModelForCausalLM
|
81 |
+
|
82 |
+
input_text = "Hoxe fai un bo día. O sol "
|
83 |
+
|
84 |
+
model_id = "proxectonos/Cerebras-1.3B-PT-GL"
|
85 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
86 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
87 |
+
generator = pipeline(
|
88 |
+
"text-generation",
|
89 |
+
model=model,
|
90 |
+
tokenizer=tokenizer,
|
91 |
+
torch_dtype=torch.bfloat16,
|
92 |
+
trust_remote_code=True,
|
93 |
+
device_map="auto",
|
94 |
+
)
|
95 |
+
generation = generator(
|
96 |
+
input_text,
|
97 |
+
do_sample=True,
|
98 |
+
top_k=10,
|
99 |
+
eos_token_id=tokenizer.eos_token_id
|
100 |
+
)
|
101 |
+
|
102 |
+
print(f"Result: {generation[0]['generated_text']}")
|
103 |
+
```
|