Open kn-ru opened 3 years ago
In Colab notebook exactly the same
It's either a typo (self.hparams
should be self._hparams
in the initialization function) or the authors forgot to implement the setter function for the self.hparams
property (in which the property itself is defined in the parent class, but the setter function needs to be defined the each sub-class)
Getting the same issue, after spending hours to prep the environment...
@zmurez-ml , any idea on how to sort this out?
tks
So in model.py, line 93, replacing self.hparams = hparams
by self._hparams = hparams
, it fixes the issue.
Thanks @dephaniehe.
Attaching an inference with voxel size of 224 x 224 x 64 (do not have enough RAM for more). Quality is ok, although a stereo camera with a good SLAM algo does a better job I think. Would love to have the textures, need to look at that now.
So in model.py, line 93, replacing
self.hparams = hparams
byself._hparams = hparams
, it fixes the issue. Thanks @dephaniehe.Attaching an inference with voxel size of 224 x 224 x 64 (do not have enough RAM for more). Quality is ok, although a stereo camera with a good SLAM algo does a better job I think. Would love to have the textures, need to look at that now.
Hi @Tetsujinfr , sorry to bother. May I know which visualization app u are using? I tried cloudcompare and meshlab but the inference results as in the readme seems not ok for these two.
From memory I think I have used this online viewer. I just checked and it works with the .ply generated on my side (no texture).
Hi,I can run inference.py and output three files (samples1.npz, sample1.ply, sample1_attributes.npz ) with your provided data. I want to visulize sample1.ply so I use colmap, but it get error. could you give me some suggestions about how to visulize the results from model output?
Good day. Model weights are not loaded.
You can tell what could be wrong. I use the environment as required.