Created
November 18, 2018 02:10
-
-
Save WillKoehrsen/ef4cbfadb8db27d70040a41ef5268f3b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>RNN Patent Writing</title> | |
<link rel="stylesheet" href="/static/css/main.css"> | |
<link rel="shortcut icon" href="/static/images/lstm.ico"> | |
</head> | |
<body> | |
<div class="container"> | |
<h1> | |
<center>Writing Novel Patent Abstracts with Recurrent Neural Networks</center> | |
</h1> | |
{% block content %} | |
{% for message in form.seed.errors %} | |
<div class="flash">{{ message }}</div> | |
{% endfor %} | |
{% for message in form.diversity.errors %} | |
<div class="flash">{{ message }}</div> | |
{% endfor %} | |
{% for message in form.words.errors %} | |
<div class="flash">{{ message }}</div> | |
{% endfor %} | |
<form method=post> | |
{{ form.seed.label }} | |
{{ form.seed }} | |
{{ form.diversity.label }} | |
{{ form.diversity }} | |
{{ form.words.label }} | |
{{ form.words }} | |
{{ form.submit }} | |
</form> | |
{% endblock %} | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment