In [2]:
import numpy as np
import pickle
import sys
sys.path.append('../classification')
import featureExtraction
import feature_store
sys.path.append('../gen_lightcurves')

In [3]:
with open('../gen_lightcurves/des_sn.p', 'rb') as f:
    lightcurves = pickle.load(f)


---------------------------------------------------------------------------
FileNotFoundError                         Traceback (most recent call last)
<ipython-input-3-e8e12b35b0f3> in <module>()
----> 1 with open('../des_sn.p', 'rb') as f:
      2     lightcurves = pickle.load(f)

FileNotFoundError: [Errno 2] No such file or directory: '../des_sn.p'

In [ ]: