Closed DavidDiosdado closed 4 years ago
Hello. Were you able to solve this issue?
No, I have been stucked with this error for over 2 months :/
Hello. Were you able to solve this issue?
I think I solved this problem. I'm also using some downloaded pretrained weights in the three files you mentioned.
At first, I had the same issue in #132 , so I manually set this line to num_checkpoints = 1
Then I had the same issue as yours. So I manually set this line as "PATH_TO_CKPT/checkpoint_name"
. The checkpoint_name
in your case should be pyramid_cars_with_aug_example_scratch_300_val-00120000
without any extension, and PATH_TO_CKPT
should be the path you put these three files in.
Then I'm able to load the checkpoint and run evaluations.
Updates: well, I saw that your error is on a different line, but I think these two things are the same. You just manually set the path to your checkpoints.
I think I solved this problem. I'm also using some downloaded pretrained weights in the three files you mentioned.
At first, I had the same issue in #132 , so I manually set this line to
num_checkpoints = 1
Then I had the same issue as yours. So I manually set this line as
"PATH_TO_CKPT/checkpoint_name"
. Thecheckpoint_name
in your case should bepyramid_cars_with_aug_example_scratch_300_val-00120000
without any extension, andPATH_TO_CKPT
should be the path you put these three files in.Then I'm able to load the checkpoint and run evaluations.
Updates: well, I saw that your error is on a different line, but I think these two things are the same. You just manually set the path to your checkpoints.
Work!
PseudoLidar repository.
Hi! I wonder where you download these checkpoints from.
I am trying to run the inference with some checkpoints I downloaded from the PseudoLidar repository. The files are:
I put them into:
AVOD/avod/data/outputs/pyramid_cars_with_aug_example_scratch_300_val-00120000/checkpoints
And placed the
pyramid_cars_with_aug_example_scratch_300_val-00120000.config
into the folder with the same name. The file name matches the checkpoint_name inside the configThen used the next line:
python avod/experiments/run_inference.py --checkpoint_name='pyramid_cars_with_aug_example_scratch_300_val-00120000' --data_split='test' --ckpt_indices=120 --device='1'
This is the output:
Working on Google Colab with python 3 and tensorflow 1.3
What am I doing wrong? Thank you for your help