Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
|
2 |
+
|
3 |
+
# Charger le tokenizer et le modèle
|
4 |
+
tokenizer = AutoTokenizer.from_pretrained("papasega/wolo_generation_t5")
|
5 |
+
model = AutoModelForSeq2SeqLM.from_pretrained("papasega/wolo_generation_t5")
|
6 |
+
|
7 |
+
def generate_text(input_text, max_length=50):
|
8 |
+
# Tokeniser l'entrée
|
9 |
+
input_ids = tokenizer.encode(input_text, return_tensors="pt")
|
10 |
+
|
11 |
+
# Générer le texte
|
12 |
+
output_ids = model.generate(input_ids, max_length=max_length, num_return_sequences=1)
|
13 |
+
|
14 |
+
# Décoder le texte généré
|
15 |
+
output_text = tokenizer.decode(output_ids[0], skip_special_tokens=True)
|
16 |
+
|
17 |
+
return output_text
|
18 |
+
|
19 |
+
|
20 |
+
import gradio as gr
|
21 |
+
|
22 |
+
# Définir l'interface Gradio
|
23 |
+
iface = gr.Interface(
|
24 |
+
fn=generate_text,
|
25 |
+
inputs=[gr.inputs.Textbox(lines=2, placeholder="Entrez le texte en wolof ici..."), gr.inputs.Slider(10, 100, step=1, default=50)],
|
26 |
+
outputs="text",
|
27 |
+
title="Générateur de Texte en Wolof",
|
28 |
+
description="Entrez un texte en wolof pour générer une continuation à l'aide du modèle T5 pré-entraîné."
|
29 |
+
)
|
30 |
+
|
31 |
+
# Lancer l'interface
|
32 |
+
iface.launch(debug=True)
|
33 |
+
|