Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,7 @@
|
|
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)
|
|
|
1 |
from datasets import load_dataset
|
2 |
|
3 |
+
ds = load_dataset("keremberke/german-traffic-sign-detection", name="full", trust_remote_code=True)
|
4 |
+
|
5 |
example = ds['train'][0]
|
6 |
|
7 |
print(example)
|