-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
78 lines (77 loc) · 2.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<script src="/js/gacookie.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-D07CDNTP5E"></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'G-D07CDNTP5E')
</script>
<title>AI on Browser</title>
<meta
name="description"
content="This is a playground where you can try out various machine learning methods on your browser."
/>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon.png" />
<link rel="stylesheet" type="text/css" href="/css/main.css?ver=0.2" />
<script src="https://d3js.org/d3.v7.min.js"></script>
<script>
MathJax = {
tex: {
inlineMath: [
['$', '$'],
['\\(', '\\)'],
],
displayMath: [
['$$', '$$'],
['\\[', '\\]'],
],
macros: {
argmax: ['\\mathop{\\rm arg\\,max}\\limits'],
argmin: ['\\mathop{\\rm arg\\,min}\\limits'],
},
},
svg: {
fontCache: 'global',
},
}
</script>
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script>
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
</head>
<body>
<div id="header">
<h1><a href="/">AI on Browser</a></h1>
<p class="logos">
<a
href="https://github.com/ai-on-browser/ai-on-browser.github.io"
rel="noreferrer noopener"
target="_blank"
><img src="/assets/github.png" alt="Github"
/></a>
<a href="https://twitter.com/mirasunimoni" rel="noreferrer noopener" target="_blank"
><img src="/assets/x.svg" alt="X"
/></a>
</p>
</div>
<hr />
<div id="ml_selector">
<model-selector />
</div>
<hr />
<div id="display-type" style="display: none;">
Display: <select id="display"></select>
</div>
<div id="display-area"></div>
<div id="method_footer"></div>
<script src="/js/model_selector.js"></script>
</body>
</html>