diff --git a/demos/src/inception-v3.template.html b/demos/src/inception-v3.template.html
index c63f7bf..e444416 100644
--- a/demos/src/inception-v3.template.html
+++ b/demos/src/inception-v3.template.html
@@ -11,7 +11,7 @@
Flickr creative commons.
diff --git a/demos/src/index.css b/demos/src/index.css
index f0fc236..53192c4 100644
--- a/demos/src/index.css
+++ b/demos/src/index.css
@@ -70,12 +70,17 @@ body {
display: flex;
align-items: center;
justify-content: flex-end;
- color: $color-2;
- transition: color 0.2s ease-in;
- &:hover {
- color: $color-1-lighter;
- cursor: pointer;
+ .info-panel-close-btn {
+ display: flex;
+ align-items: center;
+ color: $color-2;
+ transition: color 0.2s ease-in;
+
+ &:hover {
+ color: $color-1-lighter;
+ cursor: pointer;
+ }
}
}
}
diff --git a/demos/src/index.js b/demos/src/index.js
index e7b99fe..27498e9 100644
--- a/demos/src/index.js
+++ b/demos/src/index.js
@@ -8,6 +8,7 @@ import { MnistCnn } from './mnist-cnn'
import { MnistVae } from './mnist-vae'
import { ResNet50 } from './resnet50'
import { InceptionV3 } from './inception-v3'
+import { ImdbBidirectionalLstm } from './imdb-bidirectional-lstm'
Vue.component('menu', Menu)
Vue.component('home', Home)
@@ -15,6 +16,7 @@ Vue.component('mnist-cnn', MnistCnn)
Vue.component('mnist-vae', MnistVae)
Vue.component('resnet50', ResNet50)
Vue.component('inception-v3', InceptionV3)
+Vue.component('imdb-bidirectional-lstm', ImdbBidirectionalLstm)
Vue.use(VueMdl.default)
@@ -47,7 +49,8 @@ function matchRoute () {
'mnist-cnn',
'mnist-vae',
'resnet50',
- 'inception-v3'
+ 'inception-v3',
+ 'imdb-bidirectional-lstm'
]
const { hash } = window.location
diff --git a/demos/src/menu.template.html b/demos/src/menu.template.html
index 0ddc0f7..9e9a77a 100644
--- a/demos/src/menu.template.html
+++ b/demos/src/menu.template.html
@@ -31,6 +31,12 @@
+
+
+
+
+
+