deepinsight / deepinsight/insightface
Google Colab [Errno 2] No such file or directory: 'property'
- Dominant language
- Python
- Stars
- 29.7k
- Forks
- 6.1k
- PR merge metrics
- No merged PRs in 30d
Description
I'm running Python 2.7 in Google Colab and downloaded the pre-trained model as well from the model zoo. While running the verification.py file I'm getting the following error:-
`IOErrorTraceback (most recent call last)
/content/insightface/src/eval/verification.py in ()
518 args = parser.parse_args()
519
--> 520 prop = face_image.load_property(args.data_dir)
521 image_size = prop.image_size
522 print('image_size', image_size)
/content/insightface/src/eval/../common/face_image.py in load_property(data_dir)
8 def load_property(data_dir):
9 prop = edict()
---> 10 for line in open(os.path.join(data_dir, 'property')):
11 vec = line.strip().split(',')
12 assert len(vec)==3
IOError: [Errno 2] No such file or directory: 'property'`
I'm new to Insightface. Can anyone help me out or tell me what additional info is needed to solve the problem?
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.