Spaces:
Runtime error
Runtime error
Commit
·
c98c2a9
1
Parent(s):
4121dc0
Update app.py
Browse files
app.py
CHANGED
@@ -42,4 +42,14 @@ examples = [
|
|
42 |
]
|
43 |
|
44 |
|
45 |
-
gr.Interface(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
]
|
43 |
|
44 |
|
45 |
+
gr.Interface(
|
46 |
+
fn=create_digit_samples,
|
47 |
+
inputs=inputs, # Resize to CIFAR
|
48 |
+
outputs=outputs,
|
49 |
+
examples=examples,
|
50 |
+
article=article,
|
51 |
+
allow_flagging="never",
|
52 |
+
analytics_enabled=False,
|
53 |
+
title=title,
|
54 |
+
description=description,
|
55 |
+
).launch(enable_queue=True)
|