Skip to content

Commit 0f77157

Browse files
Vector-Wangelclaude
andcommitted
README + CI: arXiv link, affiliations wrap, disable ruff lint
- README: add <br/> after the authors line so affiliations render on a new line below on GitHub (was collapsing into one paragraph) - README: add arXiv link (https://arxiv.org/abs/2606.17385) to the Links row at the top - README: switch citation entry from @software to @misc with eprint = 2606.17385, archivePrefix = arXiv, primaryClass = cs.RO, and an arXiv url - CI: comment out the ruff lint job in .github/workflows/ci.yml (320 pre-existing style violations; reformat deferred until later). import-smoke job kept Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent a893f2f commit 0f77157

2 files changed

Lines changed: 26 additions & 18 deletions

File tree

.github/workflows/ci.yml

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,22 @@ on:
66
pull_request:
77

88
jobs:
9-
lint:
10-
runs-on: ubuntu-latest
11-
steps:
12-
- uses: actions/checkout@v4
13-
- uses: actions/setup-python@v5
14-
with:
15-
python-version: "3.10"
16-
- name: Install ruff
17-
run: pip install ruff
18-
- name: ruff check
19-
run: ruff check .
9+
# Ruff lint is currently disabled. The repo has ~320 pre-existing style
10+
# violations (mostly E501 / unused imports in legacy tools/) that would
11+
# need a sweeping reformat to fix. The badge is hidden until that lands.
12+
# Re-enable by uncommenting the block below.
13+
#
14+
# lint:
15+
# runs-on: ubuntu-latest
16+
# steps:
17+
# - uses: actions/checkout@v4
18+
# - uses: actions/setup-python@v5
19+
# with:
20+
# python-version: "3.10"
21+
# - name: Install ruff
22+
# run: pip install ruff
23+
# - name: ruff check
24+
# run: ruff check .
2025

2126
import-smoke:
2227
# Verifies the package layout is sound — does NOT pull torch / wilor /

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
**A Web-Scale 4D Hand-Object Interaction Data Engine for Any-View Robot Retargeting and Video-to-Action Robot Learning**
44

5-
**Authors:** Gaotian Wang¹, Kejia Ren¹, Andrew Morgan², Yiting Chen¹, Howard H. Qian¹, Podshara Chanrungmaneekul¹, Kaiyu Hang¹
5+
**Authors:** Gaotian Wang¹, Kejia Ren¹, Andrew Morgan², Yiting Chen¹, Howard H. Qian¹, Podshara Chanrungmaneekul¹, Kaiyu Hang¹<br/>
66
¹ Rice University · ² Robotics and AI Institute
77

8-
**Links:** [HF Dataset](https://huggingface.co/datasets/Rice-RobotPI-Lab/egoinfinity) · [HF Space viewer](https://huggingface.co/spaces/Rice-RobotPI-Lab/EgoInfinity)
8+
**Links:** [arXiv](https://arxiv.org/abs/2606.17385) · [HF Dataset](https://huggingface.co/datasets/Rice-RobotPI-Lab/egoinfinity) · [HF Space viewer](https://huggingface.co/spaces/Rice-RobotPI-Lab/EgoInfinity)
99
<img width="1000" height="408" alt="11" src="https://github.com/user-attachments/assets/3b51c381-6a5c-46cd-84d3-bd0c80c9e409" />
1010

1111

@@ -357,11 +357,14 @@ you serve the pipeline over a network). See [docs/THIRD_PARTY.md](docs/THIRD_PAR
357357
## Citation
358358

359359
```bibtex
360-
@software{egoinfinity_2026,
361-
title = {EgoInfinity: A Web-Scale 4D Hand-Object Interaction Data Engine for Any-View Robot Retargeting and Video-to-Action Robot Learning},
362-
author = {Wang, Gaotian and Ren, Kejia and Morgan, Andrew and Chen, Yiting and Qian, Howard H. and Chanrungmaneekul, Podshara and Hang, Kaiyu},
363-
year = {2026},
364-
url = {https://github.com/Rice-RobotPI-Lab/EgoInfinity}
360+
@misc{egoinfinity_2026,
361+
title = {EgoInfinity: A Web-Scale 4D Hand-Object Interaction Data Engine for Any-View Robot Retargeting and Video-to-Action Robot Learning},
362+
author = {Wang, Gaotian and Ren, Kejia and Morgan, Andrew and Chen, Yiting and Qian, Howard H. and Chanrungmaneekul, Podshara and Hang, Kaiyu},
363+
year = {2026},
364+
eprint = {2606.17385},
365+
archivePrefix = {arXiv},
366+
primaryClass = {cs.RO},
367+
url = {https://arxiv.org/abs/2606.17385}
365368
}
366369
```
367370

0 commit comments

Comments
 (0)