Skip to content

Commit

Permalink
fixing titles and headers
Browse files Browse the repository at this point in the history
  • Loading branch information
shiffman authored and bomanimc committed Nov 4, 2020
1 parent 799d267 commit b25c1ba
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 15 deletions.
6 changes: 2 additions & 4 deletions examples/p5js/CharRNN/CharRNN_Interactive/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@

<head>
<meta charset="UTF-8">
<title>Interactive CharRNN Text Generation Example using p5.js</title>

<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/addons/p5.dom.min.js"></script>
<title>charRNN Text Generation Example</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.1.9/p5.min.js"></script>
<script src="http:https://localhost:8080/ml5.js" type="text/javascript"></script>

<style></style>
Expand Down
8 changes: 3 additions & 5 deletions examples/p5js/CharRNN/CharRNN_Text/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,14 @@

<head>
<meta charset="UTF-8">
<title>LSTM Text Generation Example</title>

<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/addons/p5.dom.min.js"></script>
<title>charRNN Text Generation Example</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.1.9/p5.min.js"></script>
<script src="http:https://localhost:8080/ml5.js" type="text/javascript"></script>

</head>

<body>
<h1>LSTM Text Generation Example</h1>
<h1>charRNN Text Generation Example</h1>
<h2>This example uses a pre-trained model on a corpus of <a href="https://en.wikipedia.org/wiki/Virginia_Woolf">Virginia Woolf</a></h2>
<p>seed text:
<input id="textInput" value="The meaning of life is" />
Expand Down
7 changes: 1 addition & 6 deletions examples/p5js/CharRNN/CharRNN_Text_Stateful/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,9 @@
<head>
<meta charset="UTF-8">
<title>Stateful CharRNN Text Generation Example using p5.js</title>

<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/addons/p5.dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.1.9/p5.min.js"></script>
<script src="http:https://localhost:8080/ml5.js" type="text/javascript"></script>


<style></style>

</head>

<body>
Expand Down

0 comments on commit b25c1ba

Please sign in to comment.