brjathu / deepcaps

Official Implementation of "DeepCaps: Going Deeper with Capsule Networks" paper (CVPR 2019).
MIT License
151 stars 48 forks source link

Replace unix mkdir with python makedirs #6

Closed grische closed 4 years ago

grische commented 4 years ago

The current problem is that 'mkdir` does not create subfolders and throws an error.

This PR replaces the hardcoded mkdir with a python internal function which handles creation of folders OS-independent and without errors.

Fixes #5