-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (49 loc) · 1.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<title>Tensorflow JS Examples</title>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/[email protected]/dist/tf.min.js"></script>
<style>
body {
padding: 1rem 2rem;
}
.box {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.box h2 {
text-align: center;
padding: .75rem;
border-bottom: 1px solid;
width: 50%
}
.pages {
margin-top: 1rem;
}
.pages a {
padding: 1rem;
}
</style>
</head>
<body>
<h1>TensorFlow.js Study</h1>
<hr>
<section>
<div class="box">
<h2>Concepts:</h2>
<div class="pages">
<a href="./concepts/core/core.html">Core concepts</a>
</div>
</div>
<div class="box">
<h2>Examples:</h2>
<div class="pages">
<a href="./examples/polynomial-regression/index.html">Polynomial Regression</a>
</div>
</div>
</section>
</body>
<script src="./intro.js"></script>
</html>