Open SantiDiazC opened 10 months ago
Hi, i do not know do you have this problem anymore, but when using this tutorial it is coded in windows and if you are using a Ubuntu distribution you have to change some lines of code. Because the file system uses \ in windows, but / in Ubuntu and macOS. And cannot find your folders because of that. In this file for example change these
space_dict.update({space.split('\\')[-1] : segments})
area_dict.update({area.split('\\')[-1] : space_dict})
cat = CATEGORIES[seg_path.split('\\')[-1].split('_')[0]]
to these
space_dict.update({space.split('/')[-1] : segments})
area_dict.update({area.split('/')[-1] : space_dict})
cat = CATEGORIES[seg_path.split('/')[-1].split('_')[0]]
There are other files in the tutorial you will encounter similar problem. And also you should use numpy-1.26.0. I ran to some issues while using numpy-2.0.0
Hi, Thanks for your work. I am following your tutorial on https://towardsdatascience.com/point-net-for-semantic-segmentation-3eea48715a62. According to that before training the model I need to reduce the data using the notebook
s3dis_raw_explorer.ipynb
https://github.com/itberrios/3D/blob/main/s3dis_raw_explorer.ipynb. However, I have a problem running the following cell:The error is the following:
I set the paths like this (Relative path working on Ubuntu 22.04):
But when I used the full path for all the three folders:
I get this error:
How Can I set the paths such I don't get any error like these? Thank you in advance!