From e612abb172da9944301e3e9b4826ea8427bcc570 Mon Sep 17 00:00:00 2001
From: Thibault Neveu
Date: Tue, 19 Jun 2018 18:55:06 +0100
Subject: [PATCH 1/9] WIP: Implement DDPG
---
demo/webapp/level2.html | 8 +-
demo/webapp/public/js/DDPG/ddpg.js | 40 ++++
.../public/js/{level2.js => DDPG/index.js} | 3 +
demo/webapp/public/js/DDPG/memory.js | 77 ++++++++
demo/webapp/public/js/DDPG/models.js | 185 ++++++++++++++++++
demo/webapp/public/js/DDPG/noise.js | 41 ++++
6 files changed, 353 insertions(+), 1 deletion(-)
create mode 100644 demo/webapp/public/js/DDPG/ddpg.js
rename demo/webapp/public/js/{level2.js => DDPG/index.js} (89%)
create mode 100644 demo/webapp/public/js/DDPG/memory.js
create mode 100644 demo/webapp/public/js/DDPG/models.js
create mode 100644 demo/webapp/public/js/DDPG/noise.js
diff --git a/demo/webapp/level2.html b/demo/webapp/level2.html
index 78bf318..3d30368 100644
--- a/demo/webapp/level2.html
+++ b/demo/webapp/level2.html
@@ -37,11 +37,17 @@ Current state (Lidar points)
+
-
+
+
+
+
+
+