Linzhan commited on
Commit
140d7c1
·
verified ·
1 Parent(s): 7cce9e6

Update repo references after rename

Browse files
Files changed (1) hide show
  1. README.md +4 -4
README.md CHANGED
@@ -76,8 +76,8 @@ any FBX. They are generated from the JSON indexes by `scripts/build_tables.py`.
76
  ```python
77
  from datasets import load_dataset
78
 
79
- anims = load_dataset("Linzhan/Mixamo", "animations", split="train")
80
- chars = load_dataset("Linzhan/Mixamo", "characters", split="train")
81
 
82
  # clips between 1 and 10 seconds at 30 fps
83
  mid = anims.filter(lambda r: 30 <= r["frames"] <= 300)
@@ -90,7 +90,7 @@ Fetch only the FBX you need:
90
 
91
  ```python
92
  from huggingface_hub import hf_hub_download
93
- p = hf_hub_download("Linzhan/Mixamo", "animation/Jab_Cross.fbx", repo_type="dataset")
94
  ```
95
 
96
  ## Animations
@@ -249,7 +249,7 @@ research use; consult those terms before redistributing or using the assets in a
249
  title = {Mixamo Animations and Characters},
250
  author = {Linzhan Mou},
251
  year = {2026},
252
- url = {https://huggingface.co/datasets/Linzhan/Mixamo},
253
  note = {FBX motion clips and rigged characters exported from Adobe Mixamo}
254
  }
255
  ```
 
76
  ```python
77
  from datasets import load_dataset
78
 
79
+ anims = load_dataset("Linzhan/Mixamo-Animations-Characters", "animations", split="train")
80
+ chars = load_dataset("Linzhan/Mixamo-Animations-Characters", "characters", split="train")
81
 
82
  # clips between 1 and 10 seconds at 30 fps
83
  mid = anims.filter(lambda r: 30 <= r["frames"] <= 300)
 
90
 
91
  ```python
92
  from huggingface_hub import hf_hub_download
93
+ p = hf_hub_download("Linzhan/Mixamo-Animations-Characters", "animation/Jab_Cross.fbx", repo_type="dataset")
94
  ```
95
 
96
  ## Animations
 
249
  title = {Mixamo Animations and Characters},
250
  author = {Linzhan Mou},
251
  year = {2026},
252
+ url = {https://huggingface.co/datasets/Linzhan/Mixamo-Animations-Characters},
253
  note = {FBX motion clips and rigged characters exported from Adobe Mixamo}
254
  }
255
  ```