Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ generator = pipeline('text-generation', model='gpt2')
|
|
8 |
# Optionnel : Fixer une graine aléatoire pour la reproductibilit
|
9 |
|
10 |
# Fonction de génération de texte
|
11 |
-
@spaces.GPU
|
12 |
def generate_text(prompt):
|
13 |
response = generator(prompt, max_length=100, num_return_sequences=1, truncation=True)
|
14 |
return response[0]['generated_text']
|
|
|
8 |
# Optionnel : Fixer une graine aléatoire pour la reproductibilit
|
9 |
|
10 |
# Fonction de génération de texte
|
11 |
+
@spaces.GPU
|
12 |
def generate_text(prompt):
|
13 |
response = generator(prompt, max_length=100, num_return_sequences=1, truncation=True)
|
14 |
return response[0]['generated_text']
|