Instructions to use HanjungKim/UniSkill with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use HanjungKim/UniSkill with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("HanjungKim/UniSkill", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
Improve model card (#2)
Browse files- Improve model card (f2564636e0bd1eccc9c7353a1b4f938c0abd24a1)
Co-authored-by: Niels Rogge <nielsr@users.noreply.huggingface.co>
README.md
CHANGED
|
@@ -11,7 +11,10 @@ tags:
|
|
| 11 |
- robotics
|
| 12 |
---
|
| 13 |
|
| 14 |
-
|
|
|
|
|
|
|
|
|
|
| 15 |
<p>
|
| 16 |
<a href="https://kimhanjung.github.io/UniSkill">Website</a>  |   <a href="https://arxiv.org/abs/2505.08787">Paper</a>  |   <a href="https://github.com/KimHanjung/UniSkill">Github</a>  
|
| 17 |
<br>
|
|
|
|
| 11 |
- robotics
|
| 12 |
---
|
| 13 |
|
| 14 |
+
# UniSkill: Imitating Human Videos via Cross-Embodiment Skill Representations
|
| 15 |
+
|
| 16 |
+
Mimicry is a fundamental learning mechanism in humans, enabling individuals to learn new tasks by observing and imitating experts. However, applying this ability to robots presents significant challenges due to the inherent differences between human and robot embodiments in both their visual appearance and physical capabilities. While previous methods bridge this gap using cross-embodiment datasets with shared scenes and tasks, collecting such aligned data between humans and robots at scale is not trivial. In this paper, we propose UniSkill, a novel framework that learns embodiment-agnostic skill representations from large-scale cross-embodiment video data without any labels, enabling skills extracted from human video prompts to effectively transfer to robot policies trained only on robot data. Our experiments in both simulation and real-world environments show that our cross-embodiment skills successfully guide robots in selecting appropriate actions, even with unseen video prompts.
|
| 17 |
+
|
| 18 |
<p>
|
| 19 |
<a href="https://kimhanjung.github.io/UniSkill">Website</a>  |   <a href="https://arxiv.org/abs/2505.08787">Paper</a>  |   <a href="https://github.com/KimHanjung/UniSkill">Github</a>  
|
| 20 |
<br>
|