Jinkun Cao
Jinkun Cao
Maybe this is the reason? https://github.com/nv-tlabs/LION/issues/66#issuecomment-2021587690. I used the pre-trained `all55` weights for priors and VAE and then fine-tune over it with my own datasets. But I use the dataset...
@ZENGXH I am facing the same problem here. what is the definition of the missing file of `datasets.neuralspline_datasets`? Also, does this mean that `unconditional/all55` checkpoint is trained by a different...
@watashihageteru Can you provide more details about how to train the model on other datasets? I tried to fine-tune it while facing some issues: https://github.com/nv-tlabs/LION/issues/68
This problem is typically caused by a mismatch of your cuda version and the torch version. You can check them by ``` nvcc --version ``` and ``` conda list |...
If so, could you please provide a code for visualizing the annotations from .json files?
Thanks @GentlesJan , However, as mentioned in the paper, I though the dataset annotations should be aligned with MANO hand parametric models. If my understanding correct? If so, how should...
Have the same question here. To add more information, the Obman dataset actually has the MANO parameter annotations, such as the hand pose and joints (see [here](https://github.com/hassony2/obman/issues/2)). However, I can't...
Hey is there any update? One way may work, you should change the function for exporting images as [see [issue](https://github.com/fyu/lsun/issues/11)] ``` def export_images(db_path, out_dir, flat=True, limit=-1): print('Exporting', db_path, 'to', out_dir)...
From a high-level perspective, my guess is - Yes. As whatever the representation is the concept behind `observation centric re-update with online-smoothing` is the same. I am not sure what...
You can refer to the implementation of `kf.update` here: https://github.com/noahcao/OC_SORT/blob/7a390a5f35dbbb45df6cd584588c216aea527248/trackers/ocsort_tracker/kalmanfilter.py#L465 Simply speaking, by calling `kf.update(None,None)`, you will refresh the `observed` status of the KF and also the related variables maintained....