Datasets:
Update README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- unreal-engine
|
| 5 |
+
- ue5
|
| 6 |
+
- game-assets
|
| 7 |
+
- robotics
|
| 8 |
+
- multi-agent
|
| 9 |
+
- simulation
|
| 10 |
+
size_categories:
|
| 11 |
+
- 1G<n<10G
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# MultiAgent UE5 Content
|
| 15 |
+
|
| 16 |
+
UE5 项目资源文件,用于多机器人仿真系统 [MultiAgent-Unreal](https://github.com/WindyLab/MultiAgent-Unreal)。
|
| 17 |
+
|
| 18 |
+
## 资源信息
|
| 19 |
+
|
| 20 |
+
- **压缩包**: MultiAgent_Content.tar.gz
|
| 21 |
+
- **大小**: 4625.54 MB
|
| 22 |
+
|
| 23 |
+
## 下载方法
|
| 24 |
+
|
| 25 |
+
### 方法 1: 使用 huggingface-cli 下载
|
| 26 |
+
|
| 27 |
+
```bash
|
| 28 |
+
# 安装 huggingface_hub
|
| 29 |
+
pip install huggingface_hub
|
| 30 |
+
|
| 31 |
+
# 下载压缩包
|
| 32 |
+
huggingface-cli download WindyLab/MultiAgent-Content MultiAgent_Content.tar.gz --repo-type dataset --local-dir .
|
| 33 |
+
```
|
| 34 |
+
|
| 35 |
+
### 方法 2: 使用 Python 下载
|
| 36 |
+
|
| 37 |
+
```python
|
| 38 |
+
from huggingface_hub import hf_hub_download
|
| 39 |
+
|
| 40 |
+
hf_hub_download(
|
| 41 |
+
repo_id="WindyLab/MultiAgent-Content",
|
| 42 |
+
filename="MultiAgent_Content.tar.gz",
|
| 43 |
+
repo_type="dataset",
|
| 44 |
+
local_dir="."
|
| 45 |
+
)
|
| 46 |
+
```
|
| 47 |
+
|
| 48 |
+
## 解压
|
| 49 |
+
|
| 50 |
+
```bash
|
| 51 |
+
tar -xzvf MultiAgent_Content.tar.gz
|
| 52 |
+
```
|
| 53 |
+
|
| 54 |
+
## 配置软链接
|
| 55 |
+
|
| 56 |
+
解压后,在 UE5 项目中创建软链接:
|
| 57 |
+
|
| 58 |
+
```bash
|
| 59 |
+
# 假设解压到 ~/Material/UE5_Projects/MultiAgent_Content
|
| 60 |
+
ln -s ~/Material/UE5_Projects/MultiAgent_Content unreal_project/Content
|
| 61 |
+
```
|
| 62 |
+
|
| 63 |
+
## 相关项目
|
| 64 |
+
|
| 65 |
+
- [MultiAgent-Unreal](https://github.com/WindyLab/MultiAgent-Unreal) - 多机器人仿真系统
|
| 66 |
+
|
| 67 |
+
## License
|
| 68 |
+
|
| 69 |
+
MIT License
|