snajmark commited on
Commit
157a7b8
·
1 Parent(s): 84153bd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
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