Pointnet2_PyTorch
Pointnet2_PyTorch copied to clipboard
python pointnet2/train.py task=cls
Issues when running python pointnet2/train.py task=cls curl: (60) server certificate verification failed. CAfile: /etc/ssl/certs/ca-certificates.crt CRLfile: none how can i solve it?
Same issue here
Solved it by downloading the folder from https://shapenet.cs.stanford.edu/media/modelnet40_normal_resampled.zip manually and unziped it in pointnet2/data
Alternatively, add --insecure to the curl command. i.e. find the curl line and change it to
shlex.split("curl {} -o {} --insecure".format(self.url, zipfile))