-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
402 lines (285 loc) · 13.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
<!DOCTYPE html>
<!--[if IE 8 ]>
<html class="no-js oldie ie8" lang="en"> <![endif]-->
<!--[if IE 9 ]>
<html class="no-js oldie ie9" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html class="no-js" lang="en"> <!--<![endif]-->
<head>
<!--- basic page needs
================================================== -->
<meta charset="utf-8">
<title>pyRDDLGym</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- mobile specific metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/vendor.css">
<link href="https://unpkg.com/[email protected]/dist/css/ionicons.min.css" rel="stylesheet">
<!-- script
================================================== -->
<script src="js/modernizr.js"></script>
<!-- favicons
================================================== -->
<link rel="icon" type="image/png" href="favicon.png">
<!-- banner
================================================== -->
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
}
#notification-bar {
display: none;
padding: 1px;
background-color: #4CAF50;
color: white;
text-align: center;
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
font-weight: bold;
}
#close-btn {
cursor: pointer;
float: right;
font-size: 20px;
font-weight: bold;
}
</style>
</head>
<body id="top">
<!-- notification banner
================================================== -->
<div id="notification-bar">
<span id="close-btn" onclick="closeNotification()">×</span>
pyRDDLGym version 2.x is now official! For those preferring, version 1.4.4 remains accessible through both GitHub and pip installation.
</div>
<!-- header
================================================== -->
<header>
<div class="row">
<div class="logo">
<a href="index.html">pyRDDLGym</a>
</div>
<nav id="main-nav-wrap">
<ul class="main-navigation">
<li class="current"><a class="smoothscroll" href="#intro" title="">Home</a></li>
<li><a class="smoothscroll" href="#about" title="">About</a></li>
<li><a class="smoothscroll" href="#features" title="">Features</a></li>
<li><a class="smoothscroll" href="#cta" title="">Get Started</a></li>
<li><a href="https://pyrddlgym.readthedocs.io/en/latest/" title="">Docs</a></li>
<li class="highlight with-sep"><a href="https://github.com/pyrddlgym-project/pyRDDLGym/" title="" target="_blank"><i
class="fab fa-github"></i>GitHub</a></li>
</ul>
</nav>
<a class="menu-toggle" href="#"><span>Menu</span></a>
</div>
</header> <!-- /header -->
<!-- intro section
================================================== -->
<section id="intro">
<div class="shadow-overlay"></div>
<div class="intro-content">
<div class="row">
<div class="col-twelve">
<!--- <div class='video-link'>
<a href="#video-popup"><img src="images/play-button.png" alt=""></a>
</div> -->
<h1>Welcome to pyRDDLGym.</h1>
<h5>A Python toolkit for auto-generation of OpenAI Gym environments
from Relational Dynamic Influence Diagram Language (RDDL) description files</h5>
<a class="button stroke smoothscroll" href="#about" title="">Learn More</a>
</div>
</div>
</div>
<!-- Modal Popup
========================================================= -->
<!-- <div id="video-popup" class="popup-modal mfp-hide">
<div class="fluid-video-wrapper">
<iframe class="video" src="./video/demo.mp4" frameborder="0" mozallowfullscreen allowfullscreen></iframe>
</div>
<a class="close-popup">Close</a>
</div> <!-- /video-popup --> -->
</section> <!-- /intro -->
<!-- About Section
================================================== -->
<section id="about">
<div class="row section-intro">
<div class="col-twelve with-bottom-line">
<h5>about</h5>
<h1>What is pyRDDLGym?</h1>
</div>
</div>
<div class="row about-content">
<p>pyRDDLGym is the official generator of Gym environments from RDDL files.</p>
<p>pyRDDLGym supports the simulation of general Markov Decision Processes (MDPs) described in the Relational Dynamic Influence Diagram Language (RDDL).
Notably, it allows for the modeling of complex environments with concurrent events, indigenous and exogenous noises in a lifted (object-oriented specification) way,
enabling automatic scaling of environments from a single object to thousands without changing the model.
It is significantly faster and easier than coding environments directly using programming languages.
pyRDDLGym allows for rapid development of environments, verification of environments, and easy transfer and sharing since there is no code involved.
Additionally, pyRDDLGym contains built-in examples ranging from classical control and operations research to complex networked traffic signal control.</p>
<p>pyRDDLGym eliminates the need for coding, transitioning seamlessly from problem design to simulation instantaneously.</p>
</div> <!-- /about-content -->
</section> <!-- /about-->
<!-- features Section
================================================== -->
<section id="features">
<div class="row section-intro">
<div class="col-twelve">
<h5>Features</h5>
<h1>Great features you'll love.</h1>
</div>
</div>
<div class="row features-content">
<div class="features-list block-1-3 block-s-1-2 block-tab-full group">
<div class="bgrid feature">
<span class="icon"><i class="icon ion-md-rocket"></i></span>
<div class="service-content">
<h3 class="h05">Efficient</h3>
<p> Rapid development involves defining an environment in a few lines of RDDL code instead of hundreds of lines of Python code.
</p>
</div>
</div> <!-- /bgrid -->
<div class="bgrid feature">
<span class="icon"><i class="icon ion-md-checkmark-circle-outline"></i></span>
<div class="service-content">
<h3 class="h05">Scalable</h3>
<p> Automatic scaling up of the environment is achieved by simply setting the number of objects to simulate, without the need for reprogramming the environment.
</p>
</div>
</div> <!-- /bgrid -->
<div class="bgrid feature">
<span class="icon"><i class="icon ion-md-cube"></i></span>
<div class="service-content">
<h3 class="h05">Additional Tools</h3>
<p> pyRDDLGym comes with additional tools, e.g., DBNs generator, Symbolic Representations,
and built-in planners such as JaxPlan and PROST.
</p>
</div>
</div> <!-- /bgrid -->
<div class="bgrid feature">
<span class="icon"><i class="icon ion-logo-python"></i></span>
<div class="service-content">
<h3 class="h05">Python Interface</h3>
<p> A fully Python package, 100% compatible with OpenAI Gym. You can seamlessly use your favorite Gym-interacting agent with pyRDDLGym environments.
</p>
</div>
</div> <!-- /bgrid -->
<div class="bgrid feature">
<span class="icon"><i class="icon ion-md-repeat"></i></span>
<div class="service-content">
<h3 class="h05">Reproducible</h3>
<p> All simulations from pyRDDLGym are reproducible, making it easy to debug and improve reinforcement learning and planning algorithms.
</p>
</div>
</div> <!-- /bgrid -->
<div class="bgrid feature">
<span class="icon"><i class="icon ion-md-code"></i></span>
<div class="service-content">
<h3 class="h05">Open Source</h3>
<p> pyRDDLGym is an open source project under MIT license. Welcome to feedback your issues and suggestions.
</p>
</div>
</div> <!-- /bgrid -->
</div> <!-- features-list -->
</div> <!-- features-content -->
</section> <!-- /features -->
<!-- cta
================================================== -->
<section id="cta">
<div class="row cta-content">
<div class="col-twelve">
<h1 class="h01">Get started now.</h1>
<p class="lead">Pip install the package, or download the source code.</p>
<ul class="stores">
<li class="download-package">
<a href="https://pypi.org/project/pyRDDLGym/" class="button round large" title="">
<i class="fas fa-cube"></i>Pip Package</a>
</li>
<li class="download-source">
<a href="https://github.com/pyrddlgym-project/pyRDDLGym/" class="button round large" title="">
<i class="fab fa-github"></i>Source Code</a>
</li>
<li class="get-tutorial">
<a href="https://pyrddlgym-project.github.io/AAAI24-lab" class="button round large" title="">
<i class="fas fa-graduation-cap"></i>Tutorials</a>
</li>
</ul>
<!--
<p></p>
<h1 class="h01">Learning resources.</h1>
<p class="lead">Learn RDDL and pyRDDLGym</p>
<ul class="stores">
<li class="download-RDDL">
<a href="https://pyrddlgym-project.github.io/data/Tutorial/ICAPS2023/RDDL_Tutorial_ICAPS_2023_Part_1.pdf" class="button round large" title="">
<i class="fab fa-file-pdf"></i>RDDL Presentation</a>
</li>
<li class="download-pyRDDLGym">
<a href="https://pyrddlgym-project.github.io/data/Tutorial/ICAPS2023/RDDL_Tutorial_ICAPS_2023_Part_2.pdf" class="button round large" title="">
<i class="fab fa-file-pdf"></i>pyRDDLGym Presentation</a>
</li>
</ul>
<p></p>
<p class="lead">Interactive RDDL and pyRDDLGym notebooks</p>
<ul class="stores">
<li class="download-notebook">
<a href="https://colab.research.google.com/drive/19O-vgPsEX7t32cqV0bABmAdRaSWSMa4g?usp=sharing" class="button round large" title="">
<i class="fab fa-graduation-cap"></i>Tutorial Notebook</a>
</li>
<li class="download-playground">
<a href="https://colab.research.google.com/drive/1XjPnlujsJPNUqhHK5EuWSVWQY2Pvxino?usp=sharing" class="button round large" title="">
<i class="fab fa-graduation-cap"></i>Playground Notebook</a>
</li>
</ul>
-->
</div>
</div> <!-- /cta-content -->
</section> <!-- /cta -->
<!-- footer
================================================== -->
<footer>
<div class="footer-bottom">
<div class="row">
<div class="col-twelve">
<div class="copyright">
<span>© Copyright pyRDDLGym 2023.</span>
<span>Design by <a href="https://sites.google.com/view/ataitler/home">Ayal Taitler</a></span>
<span>Template by <a href="http://www.styleshout.com/">styleshout</a></span>
</div>
<div id="go-top" style="display: none;">
<a class="smoothscroll" title="Back to Top" href="#top"><i class="icon ion-md-arrow-round-up"></i></a>
</div>
</div>
</div> <!-- /footer-bottom -->
</div>
</footer>
<div id="preloader">
<div id="loader"></div>
</div>
<!-- Java Script
================================================== -->
<script src="js/jquery-1.11.3.min.js"></script>
<script src="js/jquery-migrate-1.2.1.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<script>
function showNotification() {
var notificationBar = document.getElementById("notification-bar");
notificationBar.style.display = "block";
}
function closeNotification() {
var notificationBar = document.getElementById("notification-bar");
notificationBar.style.display = "none";
}
// Call showNotification() to display the notification bar when the page loads.
showNotification();
</script>
</body>
</html>