Hu Zhu

Results 4 comments of Hu Zhu

I also met this issue, I guess it is the file directories causes this error, change the line 74 in `run_server.py` to ` model_arg.add_argument('--model', type=str, default=f'{code_dir}/models/indoor/', help='model file or directory')`,...

Hello, have you run this code successfully? if you are still interested in this code, can we communicate with you?

Hi @nmerrill67 , Thanks for your great work! Could you send me the network weights to [email protected], please? Thank you very much.

原因是 matplotlib 新版本将 3D 绘图进行了更新. 修改方法 - matplotlib 版本3.2.2可以用, 降级 matplotlib - 修改源码: - https://github.com/geatpy-dev/geatpy/blob/28835af9a7069823211cbe83d4c1bc2311e7970b/geatpy/visualization/PointScatter.py#L90 - https://github.com/geatpy-dev/geatpy/blob/28835af9a7069823211cbe83d4c1bc2311e7970b/geatpy/visualization/PointScatter.py#L135 - 都改成`self.ax = self.fig.add_subplot(111, projection='3d') # 创建绘图区域`