Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -46,6 +46,10 @@ with open("minmax_scaler_targets.pickle", "rb") as file:
|
|
46 |
with open("minmax_scaler_inputs.pickle", "rb") as file:
|
47 |
unpickler = pickle.Unpickler(file)
|
48 |
minmax_scaler_inputs = unpickler.load()
|
|
|
|
|
|
|
|
|
49 |
|
50 |
### Define space and constraints
|
51 |
|
|
|
46 |
with open("minmax_scaler_inputs.pickle", "rb") as file:
|
47 |
unpickler = pickle.Unpickler(file)
|
48 |
minmax_scaler_inputs = unpickler.load()
|
49 |
+
|
50 |
+
with open("test_data.pickle", "rb") as file:
|
51 |
+
unpickler = pickle.Unpickler(file)
|
52 |
+
test_data = unpickler.load()
|
53 |
|
54 |
### Define space and constraints
|
55 |
|