new images of cats
Browse files- .gitattributes +1 -0
- app.py +1 -1
- cat-1.jpeg +3 -0
- cat-2.jpeg +3 -0
- 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
|
cat-2.jpeg
ADDED
Git LFS Details
|
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
|
|
|
|
|
|
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
|