tdubon commited on
Commit
a74b3c3
β€’
1 Parent(s): 7d1d252

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +58 -0
README.md ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: TFClassificationForest
3
+ emoji: πŸ‘
4
+ colorFrom: purple
5
+ colorTo: yellow
6
+ sdk: gradio
7
+ app_file: app.py
8
+ pinned: false
9
+ license: apache-2.0
10
+
11
+ tags:
12
+ - classification
13
+ - gradient boosted trees
14
+ - keras
15
+ - TensorFlow
16
+
17
+ libraries: TensorBoard
18
+
19
+ metrics:
20
+ - accuracy
21
+
22
+ ---
23
+
24
+ # Configuration
25
+
26
+ `title`: _string_
27
+ Display title for the Space
28
+
29
+ `emoji`: _string_
30
+ Space emoji (emoji-only character allowed)
31
+
32
+ `colorFrom`: _string_
33
+ Color for Thumbnail gradient (red, yellow, green, blue, indigo, purple, pink, gray)
34
+
35
+ `colorTo`: _string_
36
+ Color for Thumbnail gradient (red, yellow, green, blue, indigo, purple, pink, gray)
37
+
38
+ `sdk`: _string_
39
+ Can be either `gradio`, `streamlit`, or `static`
40
+
41
+ `sdk_version` : _string_
42
+ Only applicable for `streamlit` SDK.
43
+ See [doc](https://hf.co/docs/hub/spaces) for more info on supported versions.
44
+
45
+ `app_file`: _string_
46
+ Path to your main application file (which contains either `gradio` or `streamlit` Python code, or `static` html code).
47
+ Path is relative to the root of the repository.
48
+
49
+ `models`: _List[string]_
50
+ HF model IDs (like "gpt2" or "deepset/roberta-base-squad2") used in the Space.
51
+ Will be parsed automatically from your code if not specified here.
52
+
53
+ `datasets`: _List[string]_
54
+ HF dataset IDs (like "common_voice" or "oscar-corpus/OSCAR-2109") used in the Space.
55
+ Will be parsed automatically from your code if not specified here.
56
+
57
+ `pinned`: _boolean_
58
+ Whether the Space stays on top of your list.