Va1km2e commited on
Commit
329c48d
·
verified ·
1 Parent(s): 829514d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -9
app.py CHANGED
@@ -1,11 +1,6 @@
1
- import gradio as gr
2
 
3
- # Function that simulates your "colab_app" (or replace with relevant logic)
4
- def app_function():
5
- return "Your app content here."
6
 
7
- # Create the Gradio interface
8
- iface = gr.Interface(fn=app_function, inputs=[], outputs="text")
9
-
10
- # Launch the app
11
- iface.launch()
 
1
+ from datasets import load_dataset
2
 
3
+ ds = load_dataset("keremberke/german-traffic-sign-detection", name="full")
4
+ example = ds['train'][0]
 
5
 
6
+ print(example)