Skip to content
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

aabbs.csv not found when downloading #27

Open
takatoyamada opened this issue Jan 22, 2024 · 1 comment
Open

aabbs.csv not found when downloading #27

takatoyamada opened this issue Jan 22, 2024 · 1 comment

Comments

@takatoyamada
Copy link

I found "actorshq/dataset/download_manager.py" returns the following error.
It seems the provided dataset doesn't include aabbs.csv (I couldn't see the actual file in my file system), so something might happen on the server side.
I was wondering if someone could check it.

./actorshq/dataset/download_manager.py actorshq_access_4x.yaml ./data/actorhq --actor Actor01 --sequence Sequence1 --scale 4 --frame_start 1 --frame_stop 2
Reading links ....
Downloading scene.json
Downloading RGB and mask files ...: 100%|
Downloading calibration.csv
Downloading occupancy_grids.tar.gz
Downloading light_annotations.csv
Downloading aabbs.csv
Traceback (most recent call last):
  File "/workspaces/humanrf/./actorshq/dataset/download_manager.py", line 240, in <module>
    main()
  File "/workspaces/humanrf/./actorshq/dataset/download_manager.py", line 225, in main
    download_dataset(
  File "/workspaces/humanrf/./actorshq/dataset/download_manager.py", line 197, in download_dataset
    download_lazy(
  File "/workspaces/humanrf/./actorshq/dataset/download_manager.py", line 31, in download_lazy
    with open(target_file, 'wb') as f:
FileNotFoundError: [Errno 2] No such file or directory: 'data/actorhq/Actor01/Sequence1/data/actorhq/Actor01/Sequence1/aabbs.csv'
@chunjins
Copy link

I solved it by changing
download_lazy( links[actor][sequence]["aabbs"], local_sequence_folder / dataset_paths.aabbs_path, )
to
download_lazy( links[actor][sequence]["aabbs"], dataset_paths.aabbs_path, )

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants