osanseviero HF staff commited on
Commit
eb1448f
1 Parent(s): b100fa1
Files changed (4) hide show
  1. .gitattributes +1 -0
  2. README.md +32 -0
  3. model.pkl +3 -0
  4. pyproject.toml +3 -0
.gitattributes CHANGED
@@ -26,3 +26,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
26
  *.zip filter=lfs diff=lfs merge=lfs -text
27
  *.zstandard filter=lfs diff=lfs merge=lfs -text
28
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
26
  *.zip filter=lfs diff=lfs merge=lfs -text
27
  *.zstandard filter=lfs diff=lfs merge=lfs -text
28
  *tfevents* filter=lfs diff=lfs merge=lfs -text
29
+ model.pkl filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - fastai
4
+ ---
5
+
6
+ # Amazing!
7
+
8
+ Congratulations on hosting your fastai model on the Hugging Face Hub!
9
+
10
+ # Some next steps
11
+ 1. Fill out this model card with more information (template below and [documentation here](https://huggingface.co/docs/hub/model-repos))!
12
+
13
+ 2. Create a demo in Gradio or Streamlit using the 🤗Spaces ([documentation here](https://huggingface.co/docs/hub/spaces)).
14
+
15
+ 3. Join our fastai community on the Hugging Face Discord!
16
+
17
+ Greetings fellow fastlearner 🤝!
18
+
19
+
20
+ ---
21
+
22
+
23
+ # Model card
24
+
25
+ ## Model description
26
+ More information needed
27
+
28
+ ## Intended uses & limitations
29
+ More information needed
30
+
31
+ ## Training and evaluation data
32
+ More information needed
model.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:da312d02baa829ec679e90bd824b694712b2d9081a18e290d521a9ada1db7801
3
+ size 87549163
pyproject.toml ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools>=40.8.0", "wheel", "python=3.7.13", "fastai=2.5.6", "fastcore=1.4.2"]
3
+ build-backend = "setuptools.build_meta:__legacy__"