Authors: Thanh Nguyen Canh, Thanh Tuan Tran, Haolan Zhang, Ziyan Gao, Xiem HoangVan, Nak Young Chong.
LfD4hri is a novel “Human-to-Robot” imitation learning pipeline that enables robots to acquire manipulation skills directly from unstruc- tured video demonstrations, inspired by the human ability to learn by “watching” and “imitating”
LfD4HRI/
│
├── DRL/
│ ├── assets/ Objects and robot configuration files
│ ├── env/ Reinforcement learning environments
│ ├── models/ RL models (TD3, SAC, ...)
│ ├── reward/ Reward function definitions
│ └── train_td3.py Main RL training code
│
├── LLaVA/ VLMs for object identification
├── video_keyframes_detector/ Video keyframe extraction
├── deploy/ Deployment scripts and configurations
├── mmaction2/ Action recognition framework
├── utils/ Utility functions (overlap, blur, ...)
└── demo.py Video Understanding main code
conda create --name lfd4hri python=3.11
conda activate lfd4hri
cd LfD4hri
Install all the python dependencies for video understanding and robot imitation:
pip install -r requirements.txt
- Download action recognition checkpoint and save it as follows:
LfD4hri/mmaction2/pretrained_file_and_checkpoint
- Download hand detection and save it as follows:
LfD4hri/video_understanding_checkpoint/res101_handobj_100K/pascal_voc
The system supports two robot arms, UR5e and UF850, each with four discrete action modes (0: reach, 1: pick, 2: move, 3: put)
We recommend adjusting the success threshold—defined as the acceptable positional error by modifying threshold_1 in the following configuration file:
DRL/asset/params/reward.xml
To train a reinforcement learning policy, run:
cd DRL
python3 train_td3.py --action {0,1,2,3} --robot {ur5e,uf850}Note: Select only one value for each argument from the options listed above. Starting a new training will automatically reset all existing checkpoints, logs, and related training artifacts.
For deployment, we can use UF850
cd deploy
python3 eval.py --action {0,1}
If you use this work in an academic work, please cite:
@article{canh2026human,
title={Learning to Manipulate by Watching Humans: A Decoupled Vision-Language-Driven Imitation Framework},
author={Thanh Nguyen Canh, Thanh Tuan Tran, Haolan Zhang, Ziyan Gao, Xiem HoangVan, and Nak Young Chong},
journal={},
volume={},
number={},
pages={},
year={2026}
}