objaverse-xl icon indicating copy to clipboard operation
objaverse-xl copied to clipboard

problem with downloading datase: SyntaxError: (repo_commit_hash=)

Open co1one opened this issue 6 months ago • 2 comments

Thanks for the amazing work! But i have a problem when downloading the dataset:

image
import objaverse.xl as oxl

annotations = oxl.get_annotations(
    download_dir="~/.objaverse" # default download directory
)
annotations

print(annotations)

when im runing this code, i encountered this error:

Traceback (most recent call last):
  File "/home/ubuntu/Desktop/xxx/objaverse/test.py", line 2, in <module>
    import objaverse.xl as oxl
  File "/home/ubuntu/anaconda3/envs/rl/lib/python3.7/site-packages/objaverse/xl/__init__.py", line 7, in <module>
    from objaverse.xl.github import GitHubDownloader
  File "<fstring>", line 1
    (repo_commit_hash=)
                     ^
SyntaxError: invalid syntax

im on a ubuntu20.4

co1one avatar Dec 30 '23 16:12 co1one