|
3 | 3 | <head>
|
4 | 4 | <meta charset="utf-8">
|
5 | 5 | <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
6 |
| - <title>REINFORCEjs: Gridworld with Dynamic Programming</title> |
| 6 | + <title>@brainjs/rl: Gridworld with Dynamic Programming Demo</title> |
7 | 7 | <meta name="description" content="">
|
8 | 8 | <meta name="author" content="">
|
9 | 9 | <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
10 |
| - |
11 |
| - <!-- jquery and jqueryui --> |
12 |
| -<!-- <script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>--> |
13 |
| -<!-- <link href="external/jquery-ui.min.css" rel="stylesheet">--> |
14 |
| -<!-- <script src="external/jquery-ui.min.js"></script>--> |
15 |
| - |
16 |
| - <!-- bootstrap --> |
17 |
| -<!-- <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>--> |
18 |
| -<!-- <link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet">--> |
19 |
| - |
20 |
| - <!-- d3js --> |
21 |
| -<!-- <script type="text/javascript" src="external/d3.min.js"></script>--> |
22 |
| - |
23 |
| - <!-- markdown --> |
24 |
| -<!-- <script type="text/javascript" src="external/marked.js"></script>--> |
25 |
| -<!-- <script type="text/javascript" src="external/highlight.pack.js"></script>--> |
26 |
| -<!-- <link rel="stylesheet" href="external/highlight_default.css">--> |
27 |
| -<!-- <script>hljs.highlightAll();</script>--> |
28 |
| - |
29 |
| - <!-- mathjax: nvm now loading dynamically |
30 |
| - <script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> |
31 |
| ---> |
32 |
| - |
33 |
| - <!-- rljs --> |
34 |
| -<!-- <script type="text/javascript" src="lib/rl.js"></script>--> |
35 |
| - |
36 | 10 | <!-- GA -->
|
37 | 11 | <!-- <script>-->
|
38 | 12 | <!-- (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){-->
|
|
42 | 16 | <!-- ga('create', 'UA-3698471-24', 'auto');-->
|
43 | 17 | <!-- ga('send', 'pageview');-->
|
44 | 18 | <!-- </script>-->
|
45 |
| - <style> |
46 |
| - #wrap { |
47 |
| - width:800px; |
48 |
| - margin-left: auto; |
49 |
| - margin-right: auto; |
50 |
| - } |
51 |
| - body { |
52 |
| - font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; |
53 |
| - } |
54 |
| - #draw { |
55 |
| - margin-left: 100px; |
56 |
| - } |
57 |
| - #exp { |
58 |
| - margin-top: 20px; |
59 |
| - font-size: 16px; |
60 |
| - } |
61 |
| - svg { |
62 |
| - cursor: pointer; |
63 |
| - } |
64 |
| - h2 { |
65 |
| - text-align: center; |
66 |
| - font-size: 30px; |
67 |
| - } |
68 |
| - #rewardui { |
69 |
| - font-weight: bold; |
70 |
| - font-size: 16px; |
71 |
| - } |
72 |
| - </style> |
73 |
| - |
74 |
| -<!-- <script type="application/javascript">--> |
75 |
| - |
76 |
| -<!-- --> |
77 |
| -<!-- </script>--> |
78 |
| - <script src="../reinforce-browser.js"></script> |
| 19 | + <script src="../gridworld_dp.js"></script> |
79 | 20 | </head>
|
80 | 21 | <body>
|
81 | 22 |
|
|
87 | 28 | <div id="mynav" style="border-bottom:1px solid #999; padding-bottom: 10px; margin-bottom:50px;">
|
88 | 29 | <div>
|
89 | 30 | <img src="../loop.svg" style="width:50px;height:50px;float:left;">
|
90 |
| - <h1 style="font-size:50px;">REINFORCE<span style="color:#058;">js</span></h1> |
| 31 | + <h1 style="font-size:50px;">@brainjs/rl</h1> |
91 | 32 | </div>
|
92 |
| - <ul class="nav nav-pills"> |
93 |
| - <li role="presentation"><a href="index.html">About</a></li> |
94 |
| - <li role="presentation" class="active"><a href="../gridworld_dp/index.html">GridWorld: DP</a></li> |
95 |
| - <li role="presentation"><a href="../gridworld_td/index.html">GridWorld: TD</a></li> |
96 |
| - <li role="presentation"><a href="../puckworld/index.html">PuckWorld: DQN</a></li> |
97 |
| - <li role="presentation"><a href="../waterworld/index.html">WaterWorld: DQN</a></li> |
98 |
| - </ul> |
| 33 | + <nav class="nav nav-pills nav-fill"> |
| 34 | + <a class="nav-item nav-link" href="../index.html">About</a> |
| 35 | + <a class="nav-item nav-link active" href="../gridworld_dp/index.html">GridWorld: DP</a> |
| 36 | + <a class="nav-item nav-link" href="../gridworld_td/index.html">GridWorld: TD</a> |
| 37 | + <a class="nav-item nav-link" href="../puckworld/index.html">PuckWorld: DQN</a> |
| 38 | + <a class="nav-item nav-link" href="../waterworld/index.html">WaterWorld: DQN</a> |
| 39 | + </nav> |
99 | 40 | </div>
|
100 | 41 |
|
101 | 42 | <h2>GridWorld: Dynamic Programming Demo</h2>
|
|
0 commit comments