-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
assert(context.shape[1] == self.num_points*self.context_dim) shapes don't match #51
Comments
could you try changing this two line
to
I guess it's because the original code cap the maximum number of points as 10k (which is not necessary when using none point-flow dataset): as a result, the input for the model is 10k points instead of 100k points. btw, I never try generating 100k points (usually we using 2048 points per shape) before: just curious, are you able to fit to the GPU memory? |
@ZENGXH Thanks for prompt reply! 👍 These are the training screenshots for generating 2048 (default setting, but with a changed data root path). As the decoding and latent point are set to 2048, the final results are unable to capture the model pattern. step:0step:134400Q: Able to fit to the GPU memory?A: I ran all my tests (2048pt; batch 20 and 100k pts//1 batch) with 2 4090Ti GPUs settings (48GB memory), and the out-of-memory issues have not been found. :D After chnaging to
x_list return [ ] from breakpoint () debugger set from trainers/base_trainer.py
before with :
After changing log file
|
Hi @kg571852741, I see your dataset is some sort of outdoor scene. Can you elaborate on how you prepare your custom dataset? Thanks in advance. |
Hi @aldinorizaldy. Sorry for the late reply. The work was done a very long time ago and I really cannot remember the setting, but I think I followed the organized data folders structure with the 'cifar10' ? |
Hi @ZENGXH , Thanks for your hard work. I am testing out custom dataset with
(1076, 200000, 3), 200k size point cloud data. I've adjust few code line in
pointflow_datasets.py
. However, the final shape don't match inmodels/latent_points_ada.py:
Any way to solve it or suggestions?self.te_sample_size = min(5000, te_sample_size)
and
train_vae_sh
settingsRevised few line codes
The text was updated successfully, but these errors were encountered: