Sagar commited on
Commit
e5eed51
1 Parent(s): 4775126
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -119,14 +119,17 @@ print("Mean squared error: %.2f" % np.mean((modelepw.predict(X_test) - y_test) *
119
  # temp =np.array(input.split(","), dtype=float)
120
  # y = model.predict([[temp[0],temp[1],temp[2],temp[3],temp[4],temp[5],temp[6],temp[7],temp[8],temp[9],temp[10],temp[11],temp[12],temp[13],temp[14]]])
121
  # z = modelepw.predict([[temp[0],temp[1],temp[2],temp[3],temp[4],temp[5],temp[6],temp[7],temp[8],temp[9],temp[10],temp[11],temp[12],temp[13],temp[14]]])
122
- # print(str(y),",",str(z))
 
 
123
 
124
 
125
  def greet(input):
126
  temp =np.array(input.split(","), dtype=float)
127
  y = model.predict([[temp[0],temp[1],temp[2],temp[3],temp[4],temp[5],temp[6],temp[7],temp[8],temp[9],temp[10],temp[11],temp[12],temp[13],temp[14]]])
128
  z = modelepw.predict([[temp[0],temp[1],temp[2],temp[3],temp[4],temp[5],temp[6],temp[7],temp[8],temp[9],temp[10],temp[11],temp[12],temp[13],temp[14]]])
129
- return str(str(y),",",str(z))
 
130
 
131
  textbox_x = gr.Textbox(label="Enter Input:", placeholder="25,1,10,70,3,3,3,2,3,3,3,3,2,24,2", lines=1)
132
  textbox_y = gr.Textbox(label="Variable Y:", placeholder ="5.0000000", lines=1)
 
119
  # temp =np.array(input.split(","), dtype=float)
120
  # y = model.predict([[temp[0],temp[1],temp[2],temp[3],temp[4],temp[5],temp[6],temp[7],temp[8],temp[9],temp[10],temp[11],temp[12],temp[13],temp[14]]])
121
  # z = modelepw.predict([[temp[0],temp[1],temp[2],temp[3],temp[4],temp[5],temp[6],temp[7],temp[8],temp[9],temp[10],temp[11],temp[12],temp[13],temp[14]]])
122
+ # output = str(y)+ "," +str(z)
123
+
124
+ # print(output)
125
 
126
 
127
  def greet(input):
128
  temp =np.array(input.split(","), dtype=float)
129
  y = model.predict([[temp[0],temp[1],temp[2],temp[3],temp[4],temp[5],temp[6],temp[7],temp[8],temp[9],temp[10],temp[11],temp[12],temp[13],temp[14]]])
130
  z = modelepw.predict([[temp[0],temp[1],temp[2],temp[3],temp[4],temp[5],temp[6],temp[7],temp[8],temp[9],temp[10],temp[11],temp[12],temp[13],temp[14]]])
131
+ output = str(y)+ "," +str(z)
132
+ return output
133
 
134
  textbox_x = gr.Textbox(label="Enter Input:", placeholder="25,1,10,70,3,3,3,2,3,3,3,3,2,24,2", lines=1)
135
  textbox_y = gr.Textbox(label="Variable Y:", placeholder ="5.0000000", lines=1)