minghanqin / LangSplat

Official implementation of the paper "LangSplat: 3D Language Gaussian Splatting" [CVPR2024 Highlight]
https://langsplat.github.io/
Other
674 stars 72 forks source link

Problems encountered when processing my own scene #56

Open king1111sadjfoisja opened 4 months ago

king1111sadjfoisja commented 4 months ago

Dear Author,Thank you for open-source such a great work Following README.md,I have successfully completed the configuration of the environment. But problems occoured when I tried to process my own scene:

Step 2: Train the Autoencoder and get the lower-dims Feature.

 #train the autoencoder
cd autoencoder
python train.py --dataset_name $dataset_path --encoder_dims 256 128 64 32 3 --decoder_dims 16 32 64 128 256 256 512 --lr 0.0007 --output ae_ckpt
#get the 3-dims language feature of the scene
python test.py --dataset_name $dataset_path --output

Firstly,there seems to be issues with the command you give: python train.py --dataset_name $dataset_path --encoder_dims 256 128 64 32 3 --decoder_dims 16 32 64 128 256 256 512 --lr 0.0007 --output ae_ckpt When I enter this command in the terminal, the following error message appears: image So I modified this command to: python train.py --dataset_path ./dataset/413/input/ --encoder_dims 256 128 64 32 3 --decoder_dims 16 32 64 128 256 256 512 --lr 0.0007 --dataset_name 413(But I'm not sure if this modification is correct.) After running this command,New error messages have appeared: image It seems the issue is in the dataset.py file. !!!Has anyone encountered this issue before? How should it be resolved? Any help would be appreciated!!!

NagaPadma commented 4 months ago

I am facing the similar problem.