dalexanderch commited on
Commit
6585887
1 Parent(s): 35143f5

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -80,13 +80,13 @@ def fn(glycan, model):
80
  pred = np.exp(pred)/sum(np.exp(pred)) # Softmax
81
  pred = [float(x) for x in pred]
82
  pred = {class_list[i]:pred[i] for i in range(15)}
83
- return "graph.png", pred
84
 
85
 
86
  demo = gr.Interface(
87
  fn=fn,
88
  inputs=[gr.Textbox(label="Glycan sequence"), gr.Radio(label="Model",choices=["No data augmentation", "Random node deletion", "Ensemble"])],
89
- outputs=[gr.Image(label="Glycan graph"), gr.Label(num_top_classes=15, label="Prediction")],
90
  allow_flagging="never",
91
  title="SweetNet demo",
92
  examples=[["GlcOSN(a1-4)GlcA(b1-4)GlcOSN(a1-4)GlcAOS(b1-4)GlcOSN(a1-4)GlcOSN", "No data augmentation"],
 
80
  pred = np.exp(pred)/sum(np.exp(pred)) # Softmax
81
  pred = [float(x) for x in pred]
82
  pred = {class_list[i]:pred[i] for i in range(15)}
83
+ return pred, "graph.png"
84
 
85
 
86
  demo = gr.Interface(
87
  fn=fn,
88
  inputs=[gr.Textbox(label="Glycan sequence"), gr.Radio(label="Model",choices=["No data augmentation", "Random node deletion", "Ensemble"])],
89
+ outputs=[gr.Label(num_top_classes=15, label="Prediction"), gr.Image(label="Glycan graph")],
90
  allow_flagging="never",
91
  title="SweetNet demo",
92
  examples=[["GlcOSN(a1-4)GlcA(b1-4)GlcOSN(a1-4)GlcAOS(b1-4)GlcOSN(a1-4)GlcOSN", "No data augmentation"],