Last active
November 27, 2017 04:45
-
-
Save Himujjal/345ef7036e65c673964455f67d3311b8 to your computer and use it in GitHub Desktop.
Setting up boilerplate for machine learning tutorial
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Machine Learning using JavaScript</title> | |
<style> | |
.index {text-align:center;} | |
</style> | |
</head> | |
<body class="index"> | |
<h1>Learning Machine Learning through Browser based visualization</h1> | |
<h4>From the following tutorials choose the one most suited to you:</h4> | |
<% list=["a-simple-linear-regression", "b-multiple-regression"] %> | |
<% include src/components/list.ejs %> | |
</body> | |
<script> | |
</script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment