Vish2005 commited on
Commit
032fb3b
·
1 Parent(s): 77a679c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -6
app.py CHANGED
@@ -74,20 +74,21 @@ def remove(element):
74
 
75
 
76
 
77
- datebox = gr.Textbox(label="Enter your date here:", placeholder="MM-DD-YYYY at HH:MM")
78
 
79
- hwbox = gr.Textbox(label="Enter your assignment name here:", placeholder="Homework")
80
 
81
- addbox = gr.Textbox(label="Add or Drop or Show:", placeholder="Add or Drop or Show (Case Sensitive)")
82
 
 
83
 
84
- ouputbox = gr.Textbox(label="List of Assignments:", placeholder="Homework is due on MM-DD-YYYY at HH:MM", lines = 10)
85
 
86
  iface = gr.Interface(
87
  fn=inputter,
88
- inputs=[datebox, hwbox, addbox],
89
  outputs=ouputbox,
90
- title="Homework Prioritzer",
91
  )
92
 
93
  iface.launch()
 
74
 
75
 
76
 
77
+ databox = gr.Textbox(label="Enter your data type here:", placeholder="e.g., images, genome, binary")
78
 
79
+ augbox = gr.Textbox(label="Enter your data augmentation methods here:", placeholder="Enter as list e.g., [flip, rotate]")
80
 
81
+ machinebox = gr.Textbox(label="Enter your machine type:", placeholder="e.g., transformer, SVM, CNN")
82
 
83
+ featurebox = gr.Textbox(label="Enter your features type:", placeholder="e.g., KL-expansion, Lagragians")
84
 
85
+ ouputbox = gr.Textbox(label=":", placeholder="Homework is due on MM-DD-YYYY at HH:MM", lines = 10)
86
 
87
  iface = gr.Interface(
88
  fn=inputter,
89
+ inputs=[databox, augbox, featurebox, machinebox],
90
  outputs=ouputbox,
91
+ title="Cancer Metapipeline",
92
  )
93
 
94
  iface.launch()