Skip to content

Commit 1891e01

Browse files
committed
Initial commit
0 parents  commit 1891e01

14 files changed

Lines changed: 3242 additions & 0 deletions

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Ark website
2+
3+
This is the repository that contains source code for the [Ark website](https://robotics-ark.github.io/ark_robotics.github.io/).

index.html

Lines changed: 156 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,156 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="description" content="An Open-source Python-based Framework for Embodied AI">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
8+
<title>Ark: An Open-source Python-based Framework for Embodied AI</title>
9+
10+
<link href="https://fonts.googleapis.com/css?family=Google+Sans|Noto+Sans|Castoro"
11+
rel="stylesheet">
12+
<link rel="stylesheet" href="./static/css/bulma.min.css">
13+
<link rel="stylesheet" href="./static/css/bulma-carousel.min.css">
14+
<link rel="stylesheet" href="./static/css/bulma-slider.min.css">
15+
<link rel="stylesheet" href="./static/css/fontawesome.all.min.css">
16+
<link rel="stylesheet"
17+
href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css">
18+
<link rel="stylesheet" href="./static/css/index.css">
19+
20+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
21+
<script defer src="./static/js/fontawesome.all.min.js"></script>
22+
<script src="./static/js/bulma-carousel.min.js"></script>
23+
<script src="./static/js/bulma-slider.min.js"></script>
24+
<script src="./static/js/index.js"></script>
25+
</head>
26+
27+
<body>
28+
29+
<section class="hero">
30+
<div class="hero-body">
31+
<div class="container is-max-desktop">
32+
<div class="columns is-centered">
33+
<div class="column has-text-centered">
34+
<h1 class="title is-1 publication-title">Ark: An Open-source Python-based Framework for Robot Learning</h1>
35+
<div class="is-size-5 publication-authors" style="font-size: 17px !important;">
36+
<span class="author-block">
37+
</span>
38+
39+
</div>
40+
41+
<div class="is-size-5 publication-authors" style="display: flex; justify-content: center; gap: 40px; text-align: center;">
42+
</div>
43+
44+
<div style="margin-top: 2rem;"></div>
45+
46+
47+
<div class="columns is-centered is-vcentered">
48+
<!-- Paper -->
49+
<div class="column is-narrow has-text-centered">
50+
<!-- TODO: will update paper later -->
51+
<a href="static/docs/ark.pdf"
52+
class="external-link button is-normal is-rounded is-dark"
53+
target="_blank" rel="noopener noreferrer">
54+
<span class="icon">
55+
<i class="fas fa-file-pdf"></i>
56+
</span>
57+
<span>Paper</span>
58+
</a>
59+
</div>
60+
61+
<!-- Tutorials -->
62+
<div class="column is-narrow has-text-centered">
63+
<!-- TODO: will re-write tutorials later -->
64+
<a href=""
65+
class="external-link button is-normal is-rounded is-dark"
66+
target="_blank" rel="noopener noreferrer">
67+
<span class="icon">
68+
<i class="fa fa-university"></i>
69+
</span>
70+
<span>Tutorials</span>
71+
</a>
72+
</div>
73+
74+
<!-- Docs -->
75+
<div class="column is-narrow has-text-centered">
76+
<!-- TODO: will re-write docs later -->
77+
<a href=""
78+
class="external-link button is-normal is-rounded is-dark"
79+
target="_blank" rel="noopener noreferrer">
80+
<span class="icon">
81+
<i class="fa fa-book"></i>
82+
</span>
83+
<span>Docs</span>
84+
</a>
85+
</div>
86+
87+
88+
89+
<!-- Code -->
90+
<div class="column is-narrow has-text-centered">
91+
<a href="https://github.com/Robotics-Ark"
92+
class="external-link button is-normal is-rounded is-dark"
93+
target="_blank" rel="noopener noreferrer">
94+
<span class="icon">
95+
<i class="fab fa-github"></i>
96+
</span>
97+
<span>Code</span>
98+
</a>
99+
</div>
100+
</div>
101+
102+
</div>
103+
</div>
104+
</div>
105+
</div>
106+
</section>
107+
<section class="section">
108+
<div class="container is-max-widescreen">
109+
<div class="rows">
110+
<div class="rows is-centered ">
111+
<div class="row is-full-width">
112+
<div class="content has-text-justified">
113+
</div>
114+
</div>
115+
</div>
116+
</div>
117+
</div>
118+
</section>
119+
120+
<section class="section">
121+
<div class="container is-max-desktop">
122+
<div class="columns is-centered has-text-centered">
123+
<div class="column is-four-fifths">
124+
<h2 class="title is-3">Notice</h2>
125+
<div class="content has-text-justified">
126+
<p>
127+
Like any large software project, at some point they need refactoring.
128+
As such, Ark is currently under an active revamp.
129+
The codebase is still available as it was released before, however some parts may change signficantly in the near future.
130+
We appreciate your patience and understanding as we work to improve the framework.
131+
We are aiming for a first release of Ark v1.5 in April 2026.
132+
</p>
133+
</div>
134+
</div>
135+
</div>
136+
</div>
137+
</section>
138+
139+
140+
<section class="section">
141+
<div class="container is-max-desktop">
142+
<div class="columns is-centered has-text-centered">
143+
<div class="column is-four-fifths">
144+
<h2 class="title is-3">Abstract</h2>
145+
<div class="content has-text-justified">
146+
<p>
147+
Robotics has made remarkable hardware strides—from DARPA’s Urban and Robotics Challenges to the first humanoid-robot kickboxing tournament-yet commercial autonomy still lags behind progress in machine learning. A major bottleneck is software: current robot stacks demand steep learning curves, low-level C/C++ expertise, fragmented tooling, and intricate hardware integration, in stark contrast to the Python-centric, well-documented ecosystems that propelled modern AI. We introduce Ark, an open-source, Python-first robotics framework designed to close that gap. Ark presents a Gym-style environment interface that allows users to collect data, preprocess it, and train policies using state-of-the-art imitation-learning algorithms (e.g., ACT, Diffusion Policy) while seamlessly toggling between high-fidelity simulation and physical robots. A lightweight client–server architecture provides networked publisher-subscriber communication, and optional C/C++ bindings ensure real-time performance when needed. Ark ships with reusable modules for control, SLAM, motion planning, system identification, and visualization, along with native ROS interoperability. Comprehensive documentation and case studies—from manipulation to mobile navigation—demonstrate rapid prototyping, effortless hardware swapping, and end-to-end pipelines that rival the convenience of mainstream machine-learning workflows. By unifying robotics and AI practices under a common Python umbrella, Ark lowers entry barriers and accelerates research and commercial deployment of autonomous robots.
148+
</p>
149+
</div>
150+
</div>
151+
</div>
152+
</div>
153+
</section>
154+
155+
</body>
156+
</html>

static/css/bulma-carousel.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)