Skip to content
This repository was archived by the owner on Aug 15, 2019. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions demos/homepage/assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,11 @@ ul.index {
#teachable-machine {
background: url('../demos/images/teachablemachine_preview.jpg') center / cover;
}

#perf-rnn {
background: url('https://storage.googleapis.com/learnjs-data/images/performance_rnn.gif') center / cover;
}

#model-builder {
background: url('../demos/images/model-builder.png') center / cover;
}
Expand Down
22 changes: 21 additions & 1 deletion demos/homepage/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,27 @@ limitations under the License.
<!-- Featured Card -->
<div class="featured-demo mdl-grid">
<div class="mdl-layout-spacer mdl-cell--hide-tablet mdl-cell--hide-phone"></div>
<div class="demo-card featured-demo mdl-card mdl-shadow--4dp feature-card mdl-cell mdl-cell--12-col">
<div class="demo-card featured-demo mdl-card mdl-shadow--4dp feature-card mdl-cell mdl-cell--6-col">
<a href="demos/performance_rnn">
<div class="mdl-card__title" id="perf-rnn">
<h1 class="mdl-card__title-text">Performance RNN</h1>
</div>
</a>
<div class="mdl-card__supporting-text">Enjoy a real-time piano performance by a neural network</div>
<div class="mdl-card__actions mdl-card--border">
<a href="demos/performance_rnn">
<button class="mdl-button mdl-button--raised mdl-button--colored mdl-js-button mdl-button--primary mdl-js-ripple-effect">
Demo
</button>
</a>
<a href="https://github.com/pair-code/deeplearnjs/tree/master/demos/performance_rnn">
<button class="mdl-button mdl-button--raised mdl-button--colored mdl-js-button mdl-button--primary mdl-js-ripple-effect">
Code
</button>
</a>
</div>
</div>
<div class="demo-card featured-demo mdl-card mdl-shadow--4dp feature-card mdl-cell mdl-cell--6-col">
<a href="https://teachablemachine.withgoogle.com/">
<div class="mdl-card__title" id="teachable-machine">
<h1 class="mdl-card__title-text">Teachable Machine</h1>
Expand Down