18 lines
396 B
Python
18 lines
396 B
Python
import pickle
|
|
|
|
gpu_data = []
|
|
with (open("freq_wattdata_1.0.pkl", "rb")) as openfile:
|
|
while True:
|
|
try:
|
|
gpu_data = pickle.load(openfile)
|
|
except EOFError:
|
|
break
|
|
|
|
#exp_data = []
|
|
#with (open("bayes_exp_data_6.pkl", "rb")) as openfile:
|
|
# while True:
|
|
# try:
|
|
# exp_data = pickle.load(openfile)
|
|
# except EOFError:
|
|
# break
|