depthEmMind commited on
Commit
48170a5
·
verified ·
1 Parent(s): 5d1855d

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. README.md +66 -87
  2. README_zh.md +42 -63
README.md CHANGED
@@ -26,7 +26,7 @@ size_categories:
26
 
27
  Unified embodied-world **3D assets** (scenes, robots, objects) for the UniEMind ecosystem — Hugging Face distribution.
28
 
29
- [中文文档](README_zh.md) · Spec / tooling: [UniEMind-Assets](https://github.com/depthEmMind/UniEMind-Assets) (schema, registry, CLI)
30
 
31
  > **UniEMind-Assets** defines *what an asset is, how it is organized, how it is described, where it came from, which physics and semantics it has, and how it may be used*.
32
  > **UniEMind-Sim** loads, composes, and runs those assets.
@@ -41,49 +41,51 @@ Unified embodied-world **3D assets** (scenes, robots, objects) for the UniEMind
41
  | Content | Default license | Notes |
42
  | --- | --- | --- |
43
  | UniEMind-authored **reference / official** 3D assets | **[Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0)** | Same as UniEMind tooling; see NOTICE / SPDX when present |
44
- | UniEMind-Assets **code, schemas, tools** (sibling Git repo) | **[Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0)** | Metadata contracts, registry, CLI |
45
- | **Cited / third-party** meshes, robots, scenes, textures | **Upstream author's license** | Follow the **referenced** project's license and attribution; upload here does not re-license them |
46
 
47
  ### Rules of use
48
 
49
  1. **Per-asset SPDX wins.** If an asset directory contains `LICENSE`, `license.spdx`, or `asset.yaml` → `license.spdx`, that entry overrides the table above for that asset.
50
- 2. **Cited assets keep the upstream license.** If an asset is imported or referenced from another author/project, use **that author's license** (and NOTICE / attribution), not Apache-2.0 by default. Inclusion in UniEMindAssets does **not** re-license upstream CAD, USD, URDF, textures, or brand assets.
51
  3. **No warranty.** Assets are provided as-is for research and development; verify fitness for your simulator and product before production use.
52
- 4. **NOTICE for Apache-2.0 UniEMind assets.** When redistributing UniEMind-authored assets under Apache-2.0, retain copyright / NOTICE files and attribute **UniEMind / UniEMindAssets** as required by the license.
53
 
54
  ### Infringement / takedown
55
 
56
  **If you believe any asset in this repository infringes your rights, please contact the author ([depthvisn@gmail.com](mailto:depthvisn@gmail.com)); it will be removed promptly.**
57
 
58
- Prefer email to [depthvisn@gmail.com](mailto:depthvisn@gmail.com), or use this repo's Hugging Face **Community / Discussions**. Include: asset path or id, your claim of ownership, and supporting evidence.
59
 
60
  ---
61
 
62
- ## Why this dataset exists
63
 
64
- UniEMindAssets is **not** a new 3D file format and does not replace MuJoCo, Isaac Sim, USD, MJCF, URDF, or glTF.
65
 
66
- It is the shared world-asset distribution layer for:
67
 
68
- - Scene / robot / object catalogs
69
- - Simulator-oriented packs (e.g. USD) for UniEMind-Sim and related stacks
70
- - Physics, semantics, affordance, **license**, provenance, and version (via UniEMind-Assets metadata contracts)
71
- - Community and partner assets with clear rights notices
 
 
72
 
73
  ---
74
 
75
- ## Repository layout (this HF dataset)
76
 
77
  ```text
78
  UniEMindAssets/
79
- ├─ objects/ # Standalone 3D objects (e.g. props)
80
- ├── robots/ # Robot models (specialized assets)
81
- ├── scenes/ # Composed scenes referencing objects / robots
82
  ├── README.md # This file (English)
83
  └── README_zh.md # Chinese
84
  ```
85
 
86
- Typical usage pattern: **robots** and **objects** can be placed into **scenes**; a robot is a specialized independent 3D asset.
87
 
88
  ---
89
 
@@ -94,71 +96,70 @@ Typical usage pattern: **robots** and **objects** can be placed into **scenes**;
94
  | **UniEMind** | Brain: understand, decide, plan, invoke skills, close the loop | [github.com/depthEmMind/UniEMind](https://github.com/depthEmMind/UniEMind) |
95
  | **UniEMind-Algo** | Algorithm toolbox | [github.com/depthEmMind/UniEMind-Algo](https://github.com/depthEmMind/UniEMind-Algo) |
96
  | **UniEMind-Interfaces** | Shared ROS 2 msgs / capability contracts | [github.com/depthEmMind/UniEMind-Interfaces](https://github.com/depthEmMind/UniEMind-Interfaces) |
97
- | **UniEMind-Assets** | Metadata contracts, schemas, registry, validation CLI | [github.com/depthEmMind/UniEMind-Assets](https://github.com/depthEmMind/UniEMind-Assets) |
98
- | **UniEMindAssets** *(this HF dataset)* | Binary asset packs for download | *This Hugging Face repo* |
99
  | **UniEMind-Sim** | Virtual arena: load assets, drive MuJoCo / Isaac | [github.com/depthEmMind/UniEMind-Sim](https://github.com/depthEmMind/UniEMind-Sim) |
100
- | **UniEMind-Hardware** | Real robot / sensor adapters | [github.com/depthEmMind/UniEMind-Hardware](https://github.com/depthEmMind/UniEMind-Hardware) |
101
- | **UniEMind-Datasets** | Tasks, GT, exam items | [github.com/depthEmMind/UniEMind-Datasets](https://github.com/depthEmMind/UniEMind-Datasets) |
102
- | **UniEMind-Bench** | Evaluation / leaderboard | [github.com/depthEmMind/UniEMind-Bench](https://github.com/depthEmMind/UniEMind-Bench) |
103
 
104
  ```text
105
- UniEMind / Algo ──I/O──► UniEMind-Interfaces
106
-
107
- ┌───────────────┼───────────────┐
108
- ▼ ▼
109
- UniEMind-Sim UniEMind-Hardware
110
-
111
- ──────────── loads ────────────┘
112
-
113
- UniEMindAssets (HF)
114
- + UniEMind-Assets (metadata)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
115
  ```
116
 
117
  ---
118
 
119
- ## Design principles (from UniEMind-Assets)
120
-
121
- 1. Prefer existing formats (glTF/GLB, USD, MJCF, URDF, OBJ, STL) — do not invent a new mesh format.
122
- 2. Metadata is the product; geometry is a representation.
123
- 3. A robot is a specialized asset (kinematics, joints, actuators, sensors).
124
- 4. A scene composes assets by reference where possible.
125
- 5. Visual meshes and collision meshes should be separated when available.
126
- 6. Physics parameters are first-class and should record provenance.
127
- 7. Licenses use **SPDX**, versions use SemVer, integrity should use SHA-256 when published.
128
- 8. Large binaries belong on Hugging Face / object storage / LFS — not unbounded Git blobs.
129
-
130
- ---
131
-
132
- ## Quality levels
133
-
134
- | Level | Name | Meaning |
135
- | --- | --- | --- |
136
- | 0 | Visual | Mesh + texture |
137
- | 1 | Physical | Mass, inertia, collision, material |
138
- | 2 | Simulation Ready | Loads in MuJoCo and/or Isaac Sim |
139
- | 3 | Interaction Ready | Semantics, affordance, interaction, state |
140
- | 4 | World Model Ready | Provenance, ontology, interaction semantics |
141
-
142
- Individual assets in this HF pack may sit at different levels; check companion metadata in UniEMind-Assets when available.
143
-
144
- ---
145
-
146
  ## Quick start
147
 
148
  ### Download
149
 
150
  ```bash
151
  # huggingface-cli
152
- huggingface-cli download <org_or_user>/UniEMindAssets --local-dir ./UniEMindAssets
153
 
154
- # or git (Git LFS recommended for large USD)
155
  git lfs install
156
- git clone https://huggingface.co/<org_or_user>/UniEMindAssets
157
  ```
158
 
159
  ### Use with UniEMind-Sim
160
 
161
- After installing UniEMind-Sim and pointing it at a UniEMind-Assets / UniEMindAssets root (see UniEMind-Sim docs):
162
 
163
  ```bash
164
  unimind-sim install uniemind-assets --source /path/to/UniEMindAssets
@@ -172,28 +173,6 @@ Exact CLI flags follow your installed UniEMind-Sim version.
172
 
173
  ---
174
 
175
- ## Status
176
-
177
- | Item | Notes |
178
- | --- | --- |
179
- | Role | Hugging Face **asset binary** distribution |
180
- | Companion | UniEMind-Assets V0.1 metadata / schema / CLI |
181
- | Not in this repo | Simulator runtime, controllers, RL training code, World Model weights |
182
-
183
- ---
184
-
185
- ## Boundary with UniEMind-Sim and World Model
186
-
187
- | Layer | Owns |
188
- | --- | --- |
189
- | UniEMindAssets / UniEMind-Assets | What, where, version, **license**, physics, semantics, representation |
190
- | UniEMind-Sim | Load, simulate, control, render, generate data |
191
- | World Model | Understand, predict, reason, plan |
192
-
193
- Runtime joint positions, object poses, velocities, contacts, and sensor streams are **not** stored here.
194
-
195
- ---
196
-
197
  ## Citation
198
 
199
  If you use these assets in research or products, please cite UniEMind and comply with each asset's SPDX license (**Apache-2.0** for UniEMind-authored assets; for cited third-party assets, follow the **referenced** author's license).
@@ -202,4 +181,4 @@ If you use these assets in research or products, please cite UniEMind and comply
202
 
203
  ## Disclaimer
204
 
205
- Assets may include third-party geometry or brand-adjacent content collected for research. **Rights holders: if you believe an asset infringes your rights, please contact the author ([depthvisn@gmail.com](mailto:depthvisn@gmail.com)) infringing assets will be deleted.** UniEMind maintainers will act in good faith on valid notices.
 
26
 
27
  Unified embodied-world **3D assets** (scenes, robots, objects) for the UniEMind ecosystem — Hugging Face distribution.
28
 
29
+ [中文文档](README_zh.md) · Spec / tooling: [UniEMind-Assets](https://github.com/depthEmMind/UniEMind-Assets) (Schema, Registry, CLI)
30
 
31
  > **UniEMind-Assets** defines *what an asset is, how it is organized, how it is described, where it came from, which physics and semantics it has, and how it may be used*.
32
  > **UniEMind-Sim** loads, composes, and runs those assets.
 
41
  | Content | Default license | Notes |
42
  | --- | --- | --- |
43
  | UniEMind-authored **reference / official** 3D assets | **[Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0)** | Same as UniEMind tooling; see NOTICE / SPDX when present |
44
+ | UniEMind-Assets **code, schemas, tools** (sibling Git repo) | **[Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0)** | Metadata, Registry, CLI, etc. |
45
+ | **Cited / third-party** meshes, robots, scenes, textures | **Upstream author's license** | Follow the **referenced** author / project's license and attribution; upload here does **not** re-license them |
46
 
47
  ### Rules of use
48
 
49
  1. **Per-asset SPDX wins.** If an asset directory contains `LICENSE`, `license.spdx`, or `asset.yaml` → `license.spdx`, that entry overrides the table above for that asset.
50
+ 2. **Cited assets follow the upstream license.** If an asset is imported or referenced from another author / project, use **that author's license** (and NOTICE / attribution), not Apache-2.0 by default. Inclusion in UniEMindAssets does **not** re-license upstream CAD, USD, URDF, textures, or brand assets.
51
  3. **No warranty.** Assets are provided as-is for research and development; verify fitness for your simulator and product before production use.
52
+ 4. **NOTICE for Apache-2.0 UniEMind assets.** When redistributing UniEMind-authored assets under Apache-2.0, retain copyright / NOTICE files and keep **UniEMind / UniEMindAssets** notices as required by the license.
53
 
54
  ### Infringement / takedown
55
 
56
  **If you believe any asset in this repository infringes your rights, please contact the author ([depthvisn@gmail.com](mailto:depthvisn@gmail.com)); it will be removed promptly.**
57
 
58
+ Please email [depthvisn@gmail.com](mailto:depthvisn@gmail.com) first. Include the asset path or id and a brief ownership claim.
59
 
60
  ---
61
 
62
+ ## Role of this repository
63
 
64
+ UniEMindAssets is the **large-file hosting** companion for the [UniEMind-Assets](https://github.com/depthEmMind/UniEMind-Assets) repository.
65
 
66
+ Its core responsibilities are:
67
 
68
+ 1. Unified distribution of Scene, Robot, and standalone 3D object assets
69
+ 2. Alignment with the UniEMind-Assets Metadata Contract
70
+ 3. Room for physics, semantics, affordance, and interaction descriptions
71
+ 4. Clear version, provenance, dependency, and **License** information
72
+ 5. Downloadable asset entry points for MuJoCo, Isaac Sim, and similar simulators
73
+ 6. Support for community / partner contributions with rights notices
74
 
75
  ---
76
 
77
+ ## Repository layout
78
 
79
  ```text
80
  UniEMindAssets/
81
+ ├─�� objects/ # Standalone 3D objects
82
+ ├── robots/ # Robot models (specialized standalone assets)
83
+ ├── scenes/ # Composed scenes (referencing objects / robots)
84
  ├── README.md # This file (English)
85
  └── README_zh.md # Chinese
86
  ```
87
 
88
+ Typical usage: **robots** and **objects** can be placed into **scenes**; a robot is a specialized standalone 3D asset.
89
 
90
  ---
91
 
 
96
  | **UniEMind** | Brain: understand, decide, plan, invoke skills, close the loop | [github.com/depthEmMind/UniEMind](https://github.com/depthEmMind/UniEMind) |
97
  | **UniEMind-Algo** | Algorithm toolbox | [github.com/depthEmMind/UniEMind-Algo](https://github.com/depthEmMind/UniEMind-Algo) |
98
  | **UniEMind-Interfaces** | Shared ROS 2 msgs / capability contracts | [github.com/depthEmMind/UniEMind-Interfaces](https://github.com/depthEmMind/UniEMind-Interfaces) |
99
+ | **UniEMind-Assets** | Metadata, Schema, Registry, validation & CLI | [github.com/depthEmMind/UniEMind-Assets](https://github.com/depthEmMind/UniEMind-Assets) |
100
+ | **UniEMindAssets** *(this HF dataset)* | Binary asset pack download / distribution | [huggingface.co/depthEmMind/UniEMindAssets](https://huggingface.co/depthEmMind/UniEMindAssets) |
101
  | **UniEMind-Sim** | Virtual arena: load assets, drive MuJoCo / Isaac | [github.com/depthEmMind/UniEMind-Sim](https://github.com/depthEmMind/UniEMind-Sim) |
102
+ | **UniEMind-Hardware** | Real arena: physical robots / sensors | [github.com/depthEmMind/UniEMind-Hardware](https://github.com/depthEmMind/UniEMind-Hardware) |
103
+ | **UniEMind-Datasets** | Exam items / GT | [github.com/depthEmMind/UniEMind-Datasets](https://github.com/depthEmMind/UniEMind-Datasets) |
104
+ | **UniEMind-Bench** | Evaluation / ranking | [github.com/depthEmMind/UniEMind-Bench](https://github.com/depthEmMind/UniEMind-Bench) |
105
 
106
  ```text
107
+ ─────────────────────┐
108
+ UniEMind │
109
+ │ Brain / Runtime │
110
+ │ Agent·Memory·Skill │
111
+ └──────────┬──────────┘
112
+ uses
113
+ ────────────────────
114
+ │ UniEMind-Algo │
115
+ └──────────┬──────────┘
116
+ I/O via
117
+ ┌──────────▼──────────┐
118
+ │ UniEMind-Interfaces │
119
+ └──────────┬──────────┘
120
+ │ ROS 2
121
+ ┌─────────────────────┼─────────────────────┐
122
+ ▼ ▼
123
+ ┌─────────────────┐ ┌─────────────────┐
124
+ │ UniEMind-Sim │ │UniEMind-Hardware│
125
+ │ Virtual Robot │ │ Real Robot │
126
+ └────────┬────────┘ └────────┬────────┘
127
+ │ loads assets │
128
+ └──────────────────┬─────────────────────────┘
129
+
130
+ ┌─────────────────┐
131
+ │ UniEMind-Assets │
132
+ └────────┬────────┘
133
+ │ referenced by
134
+
135
+ ┌─────────────────┐
136
+ │UniEMind-Datasets│──── exam protocol ────►┌─────────────────┐
137
+ │ Exam items / GT │ │ UniEMind-Bench │
138
+ └─────────────────┘ │ Metrics / Rank │
139
+ └────────┬────────┘
140
+ │ runs on Sim / Hardware
141
+
142
+ UniEMind + Algo
143
  ```
144
 
145
  ---
146
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
147
  ## Quick start
148
 
149
  ### Download
150
 
151
  ```bash
152
  # huggingface-cli
153
+ huggingface-cli download depthEmMind/UniEMindAssets --local-dir ./UniEMindAssets
154
 
155
+ # or git (Git LFS recommended for large files)
156
  git lfs install
157
+ git clone https://huggingface.co/depthEmMind/UniEMindAssets
158
  ```
159
 
160
  ### Use with UniEMind-Sim
161
 
162
+ After installing UniEMind-Sim, point the asset root at this repository (or copy assets into the matching directories under UniEMind-Assets):
163
 
164
  ```bash
165
  unimind-sim install uniemind-assets --source /path/to/UniEMindAssets
 
173
 
174
  ---
175
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
176
  ## Citation
177
 
178
  If you use these assets in research or products, please cite UniEMind and comply with each asset's SPDX license (**Apache-2.0** for UniEMind-authored assets; for cited third-party assets, follow the **referenced** author's license).
 
181
 
182
  ## Disclaimer
183
 
184
+ Assets may include third-party geometry or related materials collected for research. **If you believe an asset infringes your rights, please contact the author ([depthvisn@gmail.com](mailto:depthvisn@gmail.com)); the asset will be removed.** UniEMind maintainers will act in good faith on valid notices.
README_zh.md CHANGED
@@ -55,13 +55,13 @@ UniEMind 生态的统一具身世界 **三维资产**(场景 / 机器人 / 物
55
 
56
  **若您对某个资产存在侵权行为,请联系作者([depthvisn@gmail.com](mailto:depthvisn@gmail.com)),会自动删除。**
57
 
58
- 请优先发邮件至 [depthvisn@gmail.com](mailto:depthvisn@gmail.com),也可通过本仓库 Hugging Face 的 **Community / Discussions** 联系。请尽量提供:资产路径或 id、权属说明、以及相关证明材料
59
 
60
  ---
61
 
62
  ## 项目定位
63
 
64
- UniEMindAssets **不**设计新 3D 文件格式,也不替代 MuJoCo、Isaac Sim、USD、MJCF、URDF、glTF 等成熟生态
65
 
66
  它的核心职责是:
67
 
@@ -97,53 +97,53 @@ UniEMindAssets/
97
  | **UniEMind-Algo** | 算法工具箱 | [github.com/depthEmMind/UniEMind-Algo](https://github.com/depthEmMind/UniEMind-Algo) |
98
  | **UniEMind-Interfaces** | 共同语言:ROS 2 消息 / 能力契约 | [github.com/depthEmMind/UniEMind-Interfaces](https://github.com/depthEmMind/UniEMind-Interfaces) |
99
  | **UniEMind-Assets** | Metadata、Schema、Registry、校验与 CLI | [github.com/depthEmMind/UniEMind-Assets](https://github.com/depthEmMind/UniEMind-Assets) |
100
- | **UniEMindAssets**(本 HF 数据集) | 二进制资产包下载分发 | *本 Hugging Face 仓库* |
101
  | **UniEMind-Sim** | 虚拟考场:加载资产,驱动 MuJoCo / Isaac | [github.com/depthEmMind/UniEMind-Sim](https://github.com/depthEmMind/UniEMind-Sim) |
102
  | **UniEMind-Hardware** | 真实考场:真机与传感器适配 | [github.com/depthEmMind/UniEMind-Hardware](https://github.com/depthEmMind/UniEMind-Hardware) |
103
  | **UniEMind-Datasets** | 题库 / GT | [github.com/depthEmMind/UniEMind-Datasets](https://github.com/depthEmMind/UniEMind-Datasets) |
104
  | **UniEMind-Bench** | 评测 / 排名 | [github.com/depthEmMind/UniEMind-Bench](https://github.com/depthEmMind/UniEMind-Bench) |
105
 
106
  ```text
107
- UniEMind / Algo ──I/O──► UniEMind-Interfaces
108
-
109
- ┌───────────────┼───────────────┐
110
- ▼ ▼
111
- UniEMind-Sim UniEMind-Hardware
112
-
113
- ──────────── 加载资产 ─────────┘
114
-
115
- UniEMindAssets(HF)
116
- + UniEMind-Assets(元数据)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
117
  ```
118
-
119
- ---
120
-
121
- ## 设计原则(对齐 UniEMind-Assets)
122
-
123
- 1. 不发明新的 Mesh / Scene 格式,优先使用 glTF/GLB、USD、MJCF、URDF、OBJ、STL
124
- 2. Metadata 是核心,几何只是一种 Representation
125
- 3. Robot 是特殊 Asset,包含运动学、关节、驱动和传感器
126
- 4. Scene 尽量通过引用组合资产,而不是无谓复制
127
- 5. Visual Mesh 与 Collision Mesh 在可用时应当分离
128
- 6. 物理参数是一等公民,并且应记录 Provenance
129
- 7. License 使用 **SPDX**,版本使用 SemVer,发布时应尽量提供 SHA-256
130
- 8. 大型二进制应放在 Hugging Face / 对象存储 / LFS,而不是把 Git 当作无限网盘
131
-
132
  ---
133
 
134
- ## 质量等级
135
 
136
- | 等级 | 名称 | 含义 |
137
- | --- | --- | --- |
138
- | 0 | Visual | 仅有 Mesh 与纹理 |
139
- | 1 | Physical | 增加质量、惯量、碰撞、材料 |
140
- | 2 | Simulation Ready | 可在 MuJoCo 和/或 Isaac Sim 中加载 |
141
- | 3 | Interaction Ready | 增加语义、Affordance、交互与状态 |
142
- | 4 | World Model Ready | 增加物理来源、本体与交互语义 |
143
-
144
- 本 HF 包中各资产所处等级可能不同;有配套元数据时请以 UniEMind-Assets 为准。
145
-
146
- ---
147
 
148
  ## 快速开始
149
 
@@ -151,16 +151,16 @@ UniEMind / Algo ──I/O──► UniEMind-Interfaces
151
 
152
  ```bash
153
  # huggingface-cli
154
- huggingface-cli download <org_or_user>/UniEMindAssets --local-dir ./UniEMindAssets
155
 
156
  # 或使用 git(大文件建议启用 Git LFS)
157
  git lfs install
158
- git clone https://huggingface.co/<org_or_user>/UniEMindAssets
159
  ```
160
 
161
  ### 与 UniEMind-Sim 配合使用
162
 
163
- 安装 UniEMind-Sim 并将资产根目录指向本仓库(或 UniEMind-Assets 索引)后:
164
 
165
  ```bash
166
  unimind-sim install uniemind-assets --source /path/to/UniEMindAssets
@@ -174,27 +174,6 @@ unimind-sim run --scene <scene_id> --backend mujoco # 或 isaac
174
 
175
  ---
176
 
177
- ## 当前状态
178
-
179
- | 项目 | 说明 |
180
- | --- | --- |
181
- | 角色 | Hugging Face **资产二进制** 分发 |
182
- | 配套 | UniEMind-Assets V0.1 元数据 / Schema / CLI |
183
- | 不在本仓库 | 仿真器运行时、控制器、RL 训练代码、World Model 权重 |
184
-
185
- ---
186
-
187
- ## 与 UniEMind-Sim、World Model 的边界
188
-
189
- | 层级 | 负责内容 |
190
- | --- | --- |
191
- | UniEMindAssets / UniEMind-Assets | 是什么、在哪里、哪个版本、**哪份许可证**、哪些物理和语义、哪种表示 |
192
- | UniEMind-Sim | 如何加载、仿真、控制、渲染、生成数据 |
193
- | World Model | 理解、预测、推理、规划 |
194
-
195
- 关节位置、物体位姿、速度、运行时接触和传感器流 **不属于** 本仓库。
196
-
197
- ---
198
 
199
  ## 引用
200
 
 
55
 
56
  **若您对某个资产存在侵权行为,请联系作者([depthvisn@gmail.com](mailto:depthvisn@gmail.com)),会自动删除。**
57
 
58
+ 请优先发邮件至 [depthvisn@gmail.com](mailto:depthvisn@gmail.com)联系。请尽量提供:资产路径或 id、权属说明。
59
 
60
  ---
61
 
62
  ## 项目定位
63
 
64
+ UniEMindAssets 为UniEMind-Assets仓库所需要文件托管仓库
65
 
66
  它的核心职责是:
67
 
 
97
  | **UniEMind-Algo** | 算法工具箱 | [github.com/depthEmMind/UniEMind-Algo](https://github.com/depthEmMind/UniEMind-Algo) |
98
  | **UniEMind-Interfaces** | 共同语言:ROS 2 消息 / 能力契约 | [github.com/depthEmMind/UniEMind-Interfaces](https://github.com/depthEmMind/UniEMind-Interfaces) |
99
  | **UniEMind-Assets** | Metadata、Schema、Registry、校验与 CLI | [github.com/depthEmMind/UniEMind-Assets](https://github.com/depthEmMind/UniEMind-Assets) |
100
+ | **UniEMindAssets**(本 HF 数据集) | 二进制资产包下载分发 | [huggingface.co/depthEmMind/UniEMindAssets](https://huggingface.co/depthEmMind/UniEMindAssets) |
101
  | **UniEMind-Sim** | 虚拟考场:加载资产,驱动 MuJoCo / Isaac | [github.com/depthEmMind/UniEMind-Sim](https://github.com/depthEmMind/UniEMind-Sim) |
102
  | **UniEMind-Hardware** | 真实考场:真机与传感器适配 | [github.com/depthEmMind/UniEMind-Hardware](https://github.com/depthEmMind/UniEMind-Hardware) |
103
  | **UniEMind-Datasets** | 题库 / GT | [github.com/depthEmMind/UniEMind-Datasets](https://github.com/depthEmMind/UniEMind-Datasets) |
104
  | **UniEMind-Bench** | 评测 / 排名 | [github.com/depthEmMind/UniEMind-Bench](https://github.com/depthEmMind/UniEMind-Bench) |
105
 
106
  ```text
107
+ ─────────────────────┐
108
+ UniEMind │
109
+ │ 大脑 / Runtime │
110
+ │ Agent·记忆·技能 │
111
+ └──────────┬──────────┘
112
+ 调用
113
+ ────────────────────
114
+ │ UniEMind-Algo │
115
+ └──────────┬──────────┘
116
+ 统一语义 I/O
117
+ ┌──────────▼──────────┐
118
+ │ UniEMind-Interfaces │
119
+ └──────────┬──────────┘
120
+ │ ROS 2
121
+ ┌─────────────────────┼─────────────────────┐
122
+ ▼ ▼
123
+ ┌─────────────────┐ ┌─────────────────┐
124
+ │ UniEMind-Sim │ │UniEMind-Hardware│
125
+ │ 虚拟机器人 │ │ 真实机器人 │
126
+ └────────┬────────┘ └────────┬────────┘
127
+ │ 加载资产 │
128
+ └──────────────────┬─────────────────────────┘
129
+
130
+ ┌─────────────────┐
131
+ │ UniEMind-Assets │
132
+ └────────┬────────┘
133
+ │ 被引用
134
+
135
+ ┌─────────────────┐
136
+ │UniEMind-Datasets│──── 评测协议 ────►┌─────────────────┐
137
+ │ 题库 / GT │ │ UniEMind-Bench │
138
+ └─────────────────┘ │ 指标 / 排名 │
139
+ └────────┬────────┘
140
+ │ 在 Sim / Hardware 上运行
141
+
142
+ UniEMind + Algo
143
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
144
  ---
145
 
 
146
 
 
 
 
 
 
 
 
 
 
 
 
147
 
148
  ## 快速开始
149
 
 
151
 
152
  ```bash
153
  # huggingface-cli
154
+ huggingface-cli download depthEmMind/UniEMindAssets --local-dir ./UniEMindAssets
155
 
156
  # 或使用 git(大文件建议启用 Git LFS)
157
  git lfs install
158
+ git clone https://huggingface.co/depthEmMind/UniEMindAssets
159
  ```
160
 
161
  ### 与 UniEMind-Sim 配合使用
162
 
163
+ 安装 UniEMind-Sim 并将资产根目录指向本仓库(或将资产拷贝到 UniEMind-Assets 下的对应目录下)后:
164
 
165
  ```bash
166
  unimind-sim install uniemind-assets --source /path/to/UniEMindAssets
 
174
 
175
  ---
176
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
177
 
178
  ## 引用
179