Spaces:
Running
Running
JaphetHernandez
commited on
Commit
•
d8ad394
1
Parent(s):
f3ca165
Update app.py
Browse files
app.py
CHANGED
@@ -14,16 +14,19 @@ tokenizer = AutoTokenizer.from_pretrained(model_name)
|
|
14 |
|
15 |
# Texto de entrada para la generación
|
16 |
input_text = "Tu texto aquí"
|
17 |
-
|
18 |
|
19 |
-
#
|
|
|
|
|
|
|
20 |
outputs = model.generate(
|
21 |
-
input_ids,
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
)
|
28 |
|
29 |
# Decodificar el texto generado
|
|
|
14 |
|
15 |
# Texto de entrada para la generación
|
16 |
input_text = "Tu texto aquí"
|
17 |
+
inputs = tokenizer(input_text, return_tensors="pt", padding=True)
|
18 |
|
19 |
+
# Establecer el id del token de padding
|
20 |
+
pad_token_id = tokenizer.pad_token_id
|
21 |
+
|
22 |
+
# Establecer la generación con máscara de atención
|
23 |
outputs = model.generate(
|
24 |
+
inputs['input_ids'],
|
25 |
+
attention_mask=inputs['attention_mask'],
|
26 |
+
max_length=100,
|
27 |
+
pad_token_id=pad_token_id,
|
28 |
+
do_sample=True,
|
29 |
+
temperature=0.7
|
30 |
)
|
31 |
|
32 |
# Decodificar el texto generado
|