AinazEftekhar commited on
Commit
adf715b
·
verified ·
1 Parent(s): c62d574

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +47 -0
README.md ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: pytorch
3
+ tags:
4
+ - robotics
5
+ - visual-navigation
6
+ - imitation-learning
7
+ - indoor-navigation
8
+ - generalist-policy
9
+ model_name: "RING: Robotic Indoor Navigation Generalist"
10
+ papers:
11
+ - "https://arxiv.org/pdf/2412.14401"
12
+ repo: "AinazEftekhar/OneRING"
13
+ ---
14
+
15
+ ## Model Overview
16
+
17
+ RING (Robotic Indoor Navigation Generalist) is a generalist policy for indoor visual navigation trained solely in simulation with diverse, randomly initialized embodiments at scale (1M embodiments). Despite training exclusively in simulation, RING demonstrates robust performance on unseen real-world robots (RB‑Y1, Stretch RE‑1, LoCoBot, Unitree Go1).
18
+
19
+ - **Project website**: https://one-ring-policy.allen.ai/
20
+ - **Paper**: https://arxiv.org/pdf/2412.14401
21
+
22
+ ### What this model does
23
+ - Maps egocentric visual observations and a natural-language goal to a discrete navigation action.
24
+ - Trained for robust generalization across embodiments and environments.
25
+
26
+ ### Intended use
27
+ - Research in embodied AI, navigation policy learning, sim2real transfer, and generalist robot policies.
28
+ - Evaluation and benchmarking for indoor visual navigation tasks.
29
+
30
+
31
+ ## Checkpoints
32
+
33
+ - Default checkpoint: `ring_model_step_40356421.ckpt`
34
+
35
+ ## Quick Start
36
+
37
+ ### Python (download checkpoint)
38
+
39
+ ```
40
+ from huggingface_hub import hf_hub_download
41
+
42
+ ckpt_path = hf_hub_download(
43
+ repo_id="AinazEftekhar/OneRING",
44
+ filename="ring_model_step_40356421.ckpt"
45
+ )
46
+ print(ckpt_path) # local path to the checkpoint file
47
+ ```