viettqse150044 commited on
Commit
4758621
·
1 Parent(s): 7691e47

Create new file

Browse files
Files changed (1) hide show
  1. Readme.md +40 -0
Readme.md ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Spaces are configured through the YAML block at the top of the README.md file at the root of the repository. All the accepted parameters are listed below.
2
+
3
+ title : string
4
+ Display title for the Space.
5
+
6
+ emoji : string
7
+ Space emoji (emoji-only character allowed).
8
+
9
+ colorFrom : string
10
+ Color for Thumbnail gradient (red, yellow, green, blue, indigo, purple, pink, gray).
11
+
12
+ colorTo : string
13
+ Color for Thumbnail gradient (red, yellow, green, blue, indigo, purple, pink, gray).
14
+
15
+ sdk : string
16
+ Can be either gradio, streamlit or static.
17
+
18
+ python_version: string
19
+ Any valid Python 3.x or 3.x.x version.
20
+ Defaults to 3.8.9.
21
+
22
+ sdk_version : string
23
+ Specify the version of the selected SDK (Streamlit or Gradio).
24
+ All versions of Gradio are supported.
25
+ Streamlit versions are supported from 0.79.0 to 1.10.0.
26
+
27
+ app_file : string
28
+ Path to your main application file (which contains either gradio or streamlit Python code, or static html code).
29
+ Path is relative to the root of the repository.
30
+
31
+ models : List[string]
32
+ HF model IDs (like gpt2 or deepset/roberta-base-squad2) used in the Space.
33
+ Will be parsed automatically from your code if not specified here.
34
+
35
+ datasets : List[string]
36
+ HF dataset IDs (like common_voice or oscar-corpus/OSCAR-2109) used in the Space.
37
+ Will be parsed automatically from your code if not specified here.
38
+
39
+ pinned : boolean
40
+ Whether the Space stays on top of your profile. Can be useful if you have a lot of Spaces so you and others can quickly see your best Space.