mrosinski commited on
Commit
cba9a6e
1 Parent(s): 1430324

new images of cats

Browse files
Files changed (5) hide show
  1. .gitattributes +1 -0
  2. app.py +1 -1
  3. cat-1.jpeg +3 -0
  4. cat-2.jpeg +3 -0
  5. setup.txt +7 -1
.gitattributes CHANGED
@@ -27,3 +27,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
27
  *tfevents* filter=lfs diff=lfs merge=lfs -text
28
  *.pkl filter=lfs diff=lfs merge=lfs -text
29
  *.jpg filter=lfs diff=lfs merge=lfs -text
 
 
27
  *tfevents* filter=lfs diff=lfs merge=lfs -text
28
  *.pkl filter=lfs diff=lfs merge=lfs -text
29
  *.jpg filter=lfs diff=lfs merge=lfs -text
30
+ *.jpeg filter=lfs diff=lfs merge=lfs -text
app.py CHANGED
@@ -13,7 +13,7 @@ def predict(img):
13
  title = "Pet Breed Classifier"
14
  description = "A pet breed classifier trained on the Oxford Pets dataset with fastai. Created as a demo for Gradio and HuggingFace Spaces."
15
  article="<p style='text-align: center'><a href='https://tmabraham.github.io/blog/gradio_hf_spaces_tutorial' target='_blank'>Blog post</a></p>"
16
- examples = ['ragdoll.jpg']
17
  interpretation='default'
18
  enable_queue=True
19
 
 
13
  title = "Pet Breed Classifier"
14
  description = "A pet breed classifier trained on the Oxford Pets dataset with fastai. Created as a demo for Gradio and HuggingFace Spaces."
15
  article="<p style='text-align: center'><a href='https://tmabraham.github.io/blog/gradio_hf_spaces_tutorial' target='_blank'>Blog post</a></p>"
16
+ examples = ['ragdoll.jpg', 'cat-1.jpeg', 'cat-2.jpeg']
17
  interpretation='default'
18
  enable_queue=True
19
 
cat-1.jpeg ADDED

Git LFS Details

  • SHA256: 0baafe3535a33a8ca006d8c4ba6804ea9468bbd4fe9c16dcc9fd15c303c34ba8
  • Pointer size: 130 Bytes
  • Size of remote file: 57.9 kB
cat-2.jpeg ADDED

Git LFS Details

  • SHA256: 3104d88fc82bf4b6561946cb719d39a03ba07031d8b7d4aa5c770b04778e3931
  • Pointer size: 130 Bytes
  • Size of remote file: 38.8 kB
setup.txt CHANGED
@@ -4,5 +4,11 @@ git lfs install
4
  brew install git-lfs
5
  # then in the git folder you want to use git-lfs
6
  git lfs track "*.pkl"
 
 
 
 
7
 
8
- git add .gitattributes
 
 
 
4
  brew install git-lfs
5
  # then in the git folder you want to use git-lfs
6
  git lfs track "*.pkl"
7
+ git lfs track "*.jpg"
8
+ git lfs track "*.jpeg"
9
+ git add .gitattributes
10
+ git add -A
11
 
12
+ git commit -m "update .gitattributes so git lfs will track .pkl files"
13
+
14
+ git push