12e21 commited on
Commit
d9e91b5
·
verified ·
1 Parent(s): 9098695

Update asset model card

Browse files
Files changed (1) hide show
  1. README.md +44 -0
README.md ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - dex-hand
5
+ - teleoperation
6
+ - retargeting
7
+ - mujoco
8
+ - assets
9
+ ---
10
+
11
+ # somehand-assets
12
+
13
+ External asset repository for `somehand`.
14
+
15
+ ## Contents
16
+
17
+ This model repo stores runtime assets and sample data that are intentionally kept out of the code repository:
18
+
19
+ - `archives/mjcf_assets.tar.gz`: packaged MJCF hand assets and meshes under `assets/mjcf/`
20
+ - `models/hand_landmarker.task`: MediaPipe hand landmarker model under `assets/models/`
21
+ - `archives/reference_assets.tar.gz`: reference BVH assets, currently including `assets/ref_with_toe.bvh`
22
+ - `archives/sample_recordings.tar.gz`: sample replay recordings and short rendered examples under `recordings/`
23
+
24
+ ## Suggested download commands
25
+
26
+ ### ModelScope
27
+
28
+ ```bash
29
+ export SOMEHAND_MODELSCOPE_REPO_ID=BingqianWu/somehand-assets
30
+ python scripts/setup/download_assets.py --only mjcf mediapipe examples
31
+ ```
32
+
33
+ ### Hugging Face
34
+
35
+ ```bash
36
+ export SOMEHAND_HF_REPO_ID=12e21/somehand-assets
37
+ python scripts/setup/download_assets.py --source huggingface --only mjcf mediapipe examples
38
+ ```
39
+
40
+ ## Notes
41
+
42
+ - This repo is a **model repo** so asset updates are versioned as commits.
43
+ - The main `somehand` code repository should not store these large binaries directly.
44
+ - Sample recordings are provided for replay, visualization, and regression-style checks.