Update app.py
Browse files
app.py
CHANGED
|
@@ -1,11 +1,6 @@
|
|
| 1 |
-
|
| 2 |
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
return "Your app content here."
|
| 6 |
|
| 7 |
-
|
| 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)
|
|
|
|
|
|
|
|
|
|
|
|