- Download the dataset from here
ModuleNotFoundError: No module named 'smpl.smpl_np'
Solution:
- Add paths to the system path
import sys
sys.path.append('cloth3d')
sys.path.append('cloth3d/DataReader')
sys.path.append('cloth3d/DataReader/smpl')
from DataReader.read import DataReader
reader = DataReader()
- Go to cloth3d/DataReader/read.py and change the import statement from
from smpl.smpl_np import SMPLModel
to
from smpl_np import SMPLModel