Ramendra commited on
Commit
e2308cd
·
1 Parent(s): c2d74e2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -6,6 +6,7 @@ Automatically generated by Colaboratory.
6
  Original file is located at
7
  https://colab.research.google.com/drive/13X2E9v7GxryXyT39R5CzxrNwxfA6KMFJ
8
  """
 
9
  import gradio as gr
10
  from PIL import Image
11
  from timeit import default_timer as timer
@@ -39,7 +40,7 @@ predict('/content/cat.1505.jpg')
39
  # Create title, description and article strings
40
  example_list = [["examples/" + example] for example in os.listdir("examples")]
41
  title = "Classification Demo"
42
- description = "Cat/Dog classification Tensorflow model with Augmentted small dataset"
43
 
44
  # Create the Gradio demo
45
  demo = gr.Interface(fn=predict, # mapping function from input to output
 
6
  Original file is located at
7
  https://colab.research.google.com/drive/13X2E9v7GxryXyT39R5CzxrNwxfA6KMFJ
8
  """
9
+ import os
10
  import gradio as gr
11
  from PIL import Image
12
  from timeit import default_timer as timer
 
40
  # Create title, description and article strings
41
  example_list = [["examples/" + example] for example in os.listdir("examples")]
42
  title = "Classification Demo"
43
+ description = "Cat/Dog classification Tensorflow model with Augmented small dataset"
44
 
45
  # Create the Gradio demo
46
  demo = gr.Interface(fn=predict, # mapping function from input to output