IMvision12 commited on
Commit
c98c2a9
·
1 Parent(s): 4121dc0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -1
app.py CHANGED
@@ -42,4 +42,14 @@ examples = [
42
  ]
43
 
44
 
45
- gr.Interface(create_digit_samples, inputs, outputs, title=title, examples=examples, description=description, article=article, analytics_enabled=False).launch(enable_queue=True)
 
 
 
 
 
 
 
 
 
 
 
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)