FFatih commited on
Commit
99abca1
·
0 Parent(s):

Synchronisation Fatih

Browse files
Files changed (3) hide show
  1. README.md +37 -0
  2. app.py +20 -0
  3. requirements.txt +1 -0
README.md ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: SAE-GPT2
3
+ emoji: ❤️
4
+ colorFrom: indigo
5
+ colorTo: red
6
+ sdk: gradio
7
+ sdk_version: 3.50.2
8
+ app_file: app.py
9
+ pinned: false
10
+ ---
11
+
12
+ <hr/>
13
+
14
+ <h4> Environnement de développement commun </h4>
15
+
16
+ <br/>
17
+
18
+ | Nom | Lien |
19
+ |------------|-------------------------------------------------------|
20
+ | Production | https://huggingface.co/spaces/FFatih/SAE-GPT2-PROD |
21
+ | Recette | https://huggingface.co/spaces/FFatih/SAE-GPT2-RECETTE |
22
+
23
+ <hr/>
24
+
25
+ <h4> Environnement de développement personnel </h4>
26
+
27
+ <br/>
28
+
29
+ | Prenom | Lien |
30
+ |-------------------|------------------------------------------------------------|
31
+ | Fatih | https://huggingface.co/spaces/FFatih/SAE-GPT2-FATIH |
32
+ | Bastien | https://huggingface.co/spaces/BastienHot/SAE-GPT2-BASTIEN |
33
+ | Pascal | https://huggingface.co/spaces/PascalZhan/SAE-GPT2-PASCAL |
34
+ | Tamij | https://huggingface.co/spaces/Tamij/SAE-GPT2-TAMIJ |
35
+ | Kevin | https://huggingface.co/spaces/Kemasu/SAE-GPT2-KEVIN |
36
+ | Lilian | https://huggingface.co/spaces/Solialiranes/SAE-GPT2-LILIAN |
37
+ | Evan | https://huggingface.co/spaces/Evanparis240/SAE-GPT2-EVAN |
app.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def ecrire_dans_fichier(texte):
4
+ nom_fichier = "sortie.txt"
5
+ with open(nom_fichier, "w") as fichier:
6
+ fichier.write(texte)
7
+ return f"Contenu enregistré dans {nom_fichier}"
8
+
9
+ iface = gr.Interface(
10
+ fn=ecrire_dans_fichier,
11
+ inputs=gr.Textbox(),
12
+ outputs="text",
13
+ live=True,
14
+ title="Gradio - Écrire dans un fichier",
15
+ description="Saisissez du texte et appuyez sur le bouton pour l'enregistrer dans un fichier texte.",
16
+ theme="default",
17
+ allow_flagging=False,
18
+ )
19
+
20
+ iface.launch()
requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ gradio