sir i am getting error
No such file or directory: 'models/signet.pkl'
IOErrorTraceback (most recent call last)
in ()
----> 1 model = CNNModel(signet, model_weight_path)
/content/drive/My Drive/sigver_wiwd-master/cnn_model.py in __init__(self, model_factory, model_weight_path)
18 model_weights_path (str): A file containing the trained weights
19 """
---> 20 with open(model_weight_path, 'rb') as f:
21 if six.PY2:
22 model_params = cPickle.load(f)
IOError: [Errno 2] No such file or directory: 'models/signet.pkl'
sir i am getting error No such file or directory: 'models/signet.pkl'
IOErrorTraceback (most recent call last)