Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
task_categories:
|
| 3 |
+
- robotics
|
| 4 |
+
- reinforcement-learning
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
tags:
|
| 8 |
+
- autonomous-navigation
|
| 9 |
+
- robot-navigation
|
| 10 |
+
- visual-navigation
|
| 11 |
+
- sim-to-real
|
| 12 |
+
- igibson
|
| 13 |
+
- turtlebot3
|
| 14 |
+
- rgb
|
| 15 |
+
- lidar
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
# Geometry-guided Representation for Autonomous Navigation
|
| 19 |
+
|
| 20 |
+
## Overview
|
| 21 |
+
|
| 22 |
+
The **Geometry-guided Representation for Autonomous Navigation** (_GRAN_) dataset is a collection of simulated robot trajectories designed to study **scene transfer** in autonomous navigation from visual observations.
|
| 23 |
+
|
| 24 |
+
The dataset contains trajectories collected by a TurtleBot3 robot in the [iGibson](https://github.com/StanfordVL/iGibson) simulation environment.
|
| 25 |
+
These trajectories are collected across multiple object configurations and visually different environments (background and floor), enabling the study of robust representation learning for vision-based navigation policies to generalize across changes in the appearence of the environment.
|
| 26 |
+
|
| 27 |
+
## Dataset Composition & Structure
|
| 28 |
+
|
| 29 |
+
The dataset is composed of:
|
| 30 |
+
|
| 31 |
+
- **2 rooms** simulated in the iGibson environment;
|
| 32 |
+
- **10** different **object settings** per room;
|
| 33 |
+
- **4 agents**, with a full knowledge of the environment, differing by the level of expereince;
|
| 34 |
+
- **5 trajectories** collected by each agent.
|
| 35 |
+
|
| 36 |
+
Each trajectory is a collection of RGB images captured by an onboard camera of the TB3 robot, and instantiated in **9 visually different environments**.
|
| 37 |
+
|
| 38 |
+
The structure of the dataset:
|
| 39 |
+
|
| 40 |
+
```bash
|
| 41 |
+
GRAN/
|
| 42 |
+
└── Room1/ # Room
|
| 43 |
+
└── Setting1/ # Room setting
|
| 44 |
+
├── 8m/ #
|
| 45 |
+
├── 6000000/ # Agents used for the collection of rollout trajectories.
|
| 46 |
+
├── 3200000/ # The level of experience is identified by the number of training steps.
|
| 47 |
+
└── 400000/ #
|
| 48 |
+
└── episode_0001 # Trajectory
|
| 49 |
+
├── episode_0001.pkl # Pandas DataFrame object containing per step additional information (e.g., robot's and target's absolute coordinates, LiDAR readings, etc.)
|
| 50 |
+
└── augmented_results # Trajectory of images collected in the 9 visually different environments
|
| 51 |
+
```
|
| 52 |
+
|
| 53 |
+
## Intended Use
|
| 54 |
+
|
| 55 |
+
The dataset is intended for research on:
|
| 56 |
+
|
| 57 |
+
- Robust Representation Learning
|
| 58 |
+
- Representation Learning guided by Privileged Information
|
| 59 |
+
- Navigation Policy Learning from visual observations
|
| 60 |
+
- Scene Transfer of Navigation Policies
|
| 61 |
+
|
| 62 |
+
## Citation
|
| 63 |
+
|
| 64 |
+
If you use this dataset in your research, please cite the associated work:
|
| 65 |
+
|
| 66 |
+
```bibtex
|
| 67 |
+
@article{zhalehmehrabi2026robust,
|
| 68 |
+
title={Robust Scene Transfer for PointGoal Navigation via Privileged Sensor Guided Contrastive Learning},
|
| 69 |
+
author={Zhalehmehrabi, Amirhossein and Tezze, Tiziano and Castelini, Alberto and Farinelli, Alessandro},
|
| 70 |
+
journal={arXiv preprint arXiv:2606.05506},
|
| 71 |
+
year={2026}
|
| 72 |
+
}
|
| 73 |
+
```
|