Update README.md
Browse files
README.md
CHANGED
@@ -57,8 +57,8 @@ def generate(instruction, input=None):
|
|
57 |
max_new_tokens=256
|
58 |
)
|
59 |
for seq in generation_output.sequences:
|
60 |
-
output = tokenizer.decode(seq)
|
61 |
-
print(output.split("### Respuesta:")[1].strip())
|
62 |
|
63 |
generate("Escribe un correo electrónico dando la bienvenida a un nuevo empleado llamado Manolo.")
|
64 |
# Estimado Manolo,
|
|
|
57 |
max_new_tokens=256
|
58 |
)
|
59 |
for seq in generation_output.sequences:
|
60 |
+
output = tokenizer.decode(seq, skip_special_tokens)
|
61 |
+
print(output.split("### Respuesta:")[-1].strip())
|
62 |
|
63 |
generate("Escribe un correo electrónico dando la bienvenida a un nuevo empleado llamado Manolo.")
|
64 |
# Estimado Manolo,
|