jrnold commited on
Commit
c53e284
1 Parent(s): 5af3ab6

Another attempt

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -22,7 +22,8 @@ def classify_image(img):
22
 
23
  image = gr.inputs.Image(shape=(192, 192))
24
  label = gr.outputs.Label()
25
- examples = None # str(project_dir / "examples")
 
26
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label,
27
  itle = "Dog/Cat Classifier",
28
  description = "A dog/cat classifier.",
 
22
 
23
  image = gr.inputs.Image(shape=(192, 192))
24
  label = gr.outputs.Label()
25
+ examples = str((project_dir / "examples").absolute())
26
+ print(examples)
27
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label,
28
  itle = "Dog/Cat Classifier",
29
  description = "A dog/cat classifier.",