File size: 1,312 Bytes
96f3405 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | ---
license: apache-2.0
tags:
- robotics
- embodied-ai
- imitation-learning
- groot
- easymimic
---
# EasyMimic Stack Cube Task - Fine-tuned GR00T Model
这是基于 GR00T-N1.5-3B 在 "把一个方块堆在另一个方块上" 任务上微调的模型。
## 模型信息
- **基础模型**: GR00T-N1.5-3B
- **任务**: Stack one cube on another cube
- **训练数据**:
- 人手演示: 110 episodes (11 videos × 10 segments)
- 机械臂演示: 20 episodes (2 videos × 10 segments)
- **训练步数**: 3000 steps
- **最终损失**: 0.0326
## 训练配置
- Batch size: 8
- Learning rate: 5e-5
- 优化器: AdamW
- 微调组件: Projector + Diffusion Model
- 数据平衡: 启用 dataset weights 和 trajectory weights 平衡
## 使用方法
```python
from transformers import AutoModel, AutoTokenizer
model = AutoModel.from_pretrained("paradise-wujie/easymimic-stack-cube-groot")
tokenizer = AutoTokenizer.from_pretrained("paradise-wujie/easymimic-stack-cube-groot")
```
## 训练日志
完整训练日志和代码请查看: https://github.com/KKqdtjo/MyEasyMimic
## 引用
如果使用此模型,请引用 EasyMimic 论文:
```bibtex
@article{easymimic2024,
title={EasyMimic: Learning Robotic Manipulation from Human Demonstrations},
author={...},
journal={...},
year={2024}
}
```
|