Closed congyang12345 closed 5 years ago
Hi,
Hope this helps.
I trained the wgangp model using my own voxel data(128128128). At the same time, the wgangp model was trained using your released voxel data for comparison. Then I tested the naturalness work with voxel data rendered with ShapeNet objects(size: (1, 1, 128, 128, 128)). The naturalness loss offered by both discriminators is around 1500. And I found that the generator generated the voxel model that looks like triangle. Is this wgangp model correct?
Could you clarify what you mean by "looks like triangle"?
When the training of wgangp model is completed using the code and the voxel data you offered, the validation results for each epoch were saved in the output directory, including several obj files named gen_voxel.obj and txt files named disc.txt. The voxel in the obj file is a triangular patch.
Can you send me a download link to the said .obj file?
This is part of the results saved in the output directory. https://drive.google.com/open?id=1XpTPVSzbvOt4V2_Fz2S5Q2hXsSOSxnm0
This means that your generated voxels are below the iso-surfaces threshold. You probably want to check the range of your generated voxels.
Thank you for your attention. I was recurring the results of your paper. The generated voxels above were based on your code and released data. The iso-surfaces threshold you set is 0.25. Do you mean the parameter is too small? What is the value you set in your paper? Hope your answer as I want to check the performance of the generator.
would you mind sending us a generated voxel file? Or can you print out the max/min value of the generated voxels? As WGANGP training is quite standard, I feel it would be quite weird if this is actually a training problem. I've trained several WGANGP baselines using this data and it usually gives reasonable results. @xiumingzhang any chance we can release the generator as well?
The min value of the generated voxel is infinitely close to 0, and the max value is infinitely close to 1.0. The part of the results are below. The were reproduced using your code and data. https://drive.google.com/open?id=1XpTPVSzbvOt4V2_Fz2S5Q2hXsSOSxnm0. The 0000_13_gen_vox.obj is one of the generated voxel files.
The .obj you attached looks like the isosurface was generated with a threshold lower than even the minimum of your voxels. To prevent the .obj file from being empty, we inserted this tiny triangle, which should be too small to see when the generated voxels are correctly visualized. In your case, the isosurface is not there, so you see that triangle.
I want to train the wgangp model using my own voxel data. There are two questions bothered me.