Tianyu Huang

Results 6 comments of Tianyu Huang

> Did you solute it? use GCC >= 9.X can solve the error

You said that you use the command "python pretraining. py", while I am not sure whether you are reproducing zero-shot classification or the image-depth pre-training. If you mean zero-shot, you...

We found a bug in the pre-training code, and have already fixed it in the latest commit. We wrongly rotate the CAD models in ShapeNet when rendering depth maps. Rotation...

The weights are learnable parameters [here](https://github.com/tyhuang0428/CLIP2Point/blob/main/models/adapter.py#L30). The initial value is 0.5.

你好,谢谢关注我们的工作。 我的python版本是3.10,igl版本是2.4.1,也许你可以试试看。 不过我并没有在windows上验证过我的代码,你也可以参考threestudio里和windows相关的issue ([link](https://github.com/threestudio-project/threestudio/issues))

> 感谢您的回复!!!对我帮助很大。我在Linux上成功运行了您的代码,并且生成的图片的效果真的很棒。然而我发现在changlog中提到可以将模型导出成obj文件,但是在生成的结果好像没有发现,想问一下如果想导出的结果为obj,需要进行一些什么设置呢 你可以试试下面的指令,“path/to/trial/dir”是你训练中log文件夹路径,找到相应位置的parsed.yaml和last.ckpt改进去应该就可以导出obj了 ```sh # this uses default mesh-exporter configurations which exports obj+mtl python launch.py --config path/to/trial/dir/configs/parsed.yaml --export --gpu 0 resume=path/to/trial/dir/ckpts/last.ckpt system.exporter_type=mesh-exporter # specify system.exporter.fmt=obj to get obj with vertex...