Spaces:
Runtime error
Runtime error
FFatih
commited on
Commit
·
fab55d2
0
Parent(s):
Synchronisation Fatih
Browse files- README.md +37 -0
- app.py +7 -0
- 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,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
def greet(name):
|
4 |
+
return "Hello " + name + "!!"
|
5 |
+
|
6 |
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
7 |
+
iface.launch()
|
requirements.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
gradio
|