raghunc0 commited on
Commit
8d0d9cb
·
1 Parent(s): b4394be

First commit to gradio

Browse files
Files changed (2) hide show
  1. README.md +2 -0
  2. app.py +7 -0
README.md CHANGED
@@ -11,3 +11,5 @@ license: mit
11
  ---
12
 
13
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
11
  ---
12
 
13
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
14
+
15
+ This is a simple gradio page to demonstrate gradcam on CIFAR-10 datasets.
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def greet():
4
+ return "Hello! this page is to show the use of gradcam images"
5
+
6
+ iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
+ iface.launch()