-
Notifications
You must be signed in to change notification settings - Fork 15
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
Missing steps from installation instructions #10
Comments
Could you please offer a correct low_res_demo script? I also think there are some mistakes in low_res demo script. Thnaks a lot! |
The only change I had to make to the demo script was the
You'll have to manually run the export command at the end after everything has successfully run, pointing it at the directory containing your generated config.yml file and now trained models. It's a bit messy the way it's set up atm, but it does work. |
@Haobo-Liu some things I've noticed that might affect you:
|
Thanks a lot for your patient reply,but the error I met is a little strange. ################################################################# /home/lhb/.cache/torch/hub/netvlad/VGG16-NetVLAD-Pi 100%[==================================================================================================================>] 528.86M 741KB/s in 15m 27s 2023-09-21 18:49:39 (584 KB/s) - ‘/home/lhb/.cache/torch/hub/netvlad/VGG16-NetVLAD-Pitts30K.mat’ saved [554551295/554551295] 100%|██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 40/40 [00:03<00:00, 12.02it/s] Set the environment variable HYDRA_FULL_ERROR=1 for a complete stack trace. |
This sounds like you missed some steps in the install instructions, did you fully follow the AutoDecomp installation guide linked from the AutoRecon install instructions? |
I appreciate a lot,I have done my problems. |
why it always shows that "OSError: could not read bytes",my script is the following: Coarse decompositionpython third_party/AutoDecomp/auto_decomp/cli/inference_transformer.py --config-name=cvpr can you help me?plz |
Describe the bug
I just set this project up, but the installation instructions were incomplete.
I'm not sure if this should go in the AutoRecon or the AutoDecomp docs, so I figured I'd make an issue rather than a PR.
There are 2 steps missing from the installation instructions to get this working: COLMAP and the LoFTR pretrained models.
COLMAP can, if it isn't already be present, be installed through
conda install -y -c conda-forge colmap
, but the package doesn't always play very nice with conda, so it may be preferred to doconda install -y -c conda-forge mamba && mamba install -y -c conda-forge colmap
, which can save literally hours of time sometimes.As for LoFTR, they provide a page to download the pretrained models that this project uses in the installation section: https://github.com/zju3dv/LoFTR#installation. The weights (or at least the outdoor weights this project uses) need to be extracted to
AutoRecon/third_party/AutoDecomp/third_party/LoFTR/weights/
manually.After this, I can modify the low_res_demo script and successfully run it on my own data.
Sidenote: Have you considered upstreaming your work into Nerfstudio properly? There are more methods in there that have external dependencies, and getting your project upstreamed would let it make use of all the many improvements in Nerfstudio upstream, while making it easier to stay up-to-date.
The text was updated successfully, but these errors were encountered: