File size: 116 Bytes
b5567db | 1 2 3 4 5 6 7 | import pickle
path = "results/dna.pkl"
with open(path, "rb") as f:
results = pickle.load(f)
print(results) |
b5567db | 1 2 3 4 5 6 7 | import pickle
path = "results/dna.pkl"
with open(path, "rb") as f:
results = pickle.load(f)
print(results) |