wostrie2 commited on
Commit
4c170e2
1 Parent(s): 5265693

added to description

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -21,7 +21,7 @@ def classify_image(img):
21
  return dict(zip(categories, map(float,probs)))
22
 
23
  title = "Lizard or Rocks Classifier"
24
- description = "This uses a model made by using fastai to finetune resnet18 using about some photos of lizards and rocks. "
25
  article="<p style='text-align: center'><a href='https://www.kaggle.com/code/billostrie2/v2-is-it-a-lizard' target='_blank'>Kaggle Notebook</a></p>"
26
 
27
 
 
21
  return dict(zip(categories, map(float,probs)))
22
 
23
  title = "Lizard or Rocks Classifier"
24
+ description = "This uses a model made by using fastai to finetune resnet18 with some photos of lizards and rocks found by searching on DuckDuckGo. It works pretty well, but since it was trained on photos where the photographer probably wanted you to see the lizard, it can fail on images found by doing a search like 'lizard camouflage'. It might be interesting to train a new model with those types of images now that I know this."
25
  article="<p style='text-align: center'><a href='https://www.kaggle.com/code/billostrie2/v2-is-it-a-lizard' target='_blank'>Kaggle Notebook</a></p>"
26
 
27