11 lines
208 B
Python
11 lines
208 B
Python
import pickle
|
|
|
|
import numpy as np
|
|
|
|
with open("metrics.dat", "rb") as file:
|
|
metrics = pickle.load(file)
|
|
cors = metrics["cors"]
|
|
Y = np.array(cors)
|
|
with open("Y.dat", "wb") as file:
|
|
pickle.dump(Y, file)
|