Datasets:

Languages:
English
ArXiv:
License:
mattdeitke commited on
Commit
8f7b31b
1 Parent(s): d9175b5
objaverse_xl/abstract.py CHANGED
@@ -23,7 +23,7 @@ class ObjaverseSource(ABC):
23
  """Downloads all objects from the source.
24
 
25
  Args:
26
- objects (pd.DataFrmae): Objects to download. Must have columns for
27
  the object "fileIdentifier" and "sha256". Use the `load_annotations`
28
  function to get the metadata.
29
  processes (Optional[int], optional): Number of processes to use for
@@ -76,7 +76,6 @@ class ObjaverseSource(ABC):
76
  Return is not used. Defaults to None.
77
 
78
  Returns:
79
- List[Dict[str, str]]: List of dictionaries with the keys "fileIdentifier"
80
- and "sha256" for each downloaded object.
81
  """
82
  pass
 
23
  """Downloads all objects from the source.
24
 
25
  Args:
26
+ objects (pd.DataFrame): Objects to download. Must have columns for
27
  the object "fileIdentifier" and "sha256". Use the `load_annotations`
28
  function to get the metadata.
29
  processes (Optional[int], optional): Number of processes to use for
 
76
  Return is not used. Defaults to None.
77
 
78
  Returns:
79
+ None
 
80
  """
81
  pass
objaverse_xl/github.py CHANGED
@@ -403,7 +403,7 @@ class GitHubDownloader(ObjaverseSource):
403
  """Download the specified GitHub objects.
404
 
405
  Args:
406
- objects (pd.DataFrmae): GitHub objects to download. Must have columns for
407
  the object "fileIdentifier" and "sha256". Use the load_github_metadata
408
  function to get the metadata.
409
  download_dir (str, optional): Directory to download the GitHub objects to.
 
403
  """Download the specified GitHub objects.
404
 
405
  Args:
406
+ objects (pd.DataFrame): GitHub objects to download. Must have columns for
407
  the object "fileIdentifier" and "sha256". Use the load_github_metadata
408
  function to get the metadata.
409
  download_dir (str, optional): Directory to download the GitHub objects to.