Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -1,14 +1,15 @@
|
|
1 |
import gradio as gr
|
2 |
import json,pulp
|
3 |
def fx(x,y):
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
|
|
12 |
|
13 |
title = "测试WEB APP"
|
14 |
description = """
|
|
|
1 |
import gradio as gr
|
2 |
import json,pulp
|
3 |
def fx(x,y):
|
4 |
+
if x and y:
|
5 |
+
m=pulp.LpProblem()
|
6 |
+
x=list(map(int,x.split(',')))
|
7 |
+
t=[pulp.LpVariable('t'+str(i),cat=pulp.LpBinary) for i in range(len(x))]
|
8 |
+
m+=pulp.lpDot(x,t)
|
9 |
+
m+=(pulp.lpDot(x,t)==y)
|
10 |
+
m.solve()
|
11 |
+
resu={'data':[x[i] for i in range(len(t)) if pulp.value(t[i])]}
|
12 |
+
return resu
|
13 |
|
14 |
title = "测试WEB APP"
|
15 |
description = """
|