forked from deepjavalibrary/djl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
126 lines (115 loc) · 5.63 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en" class="gr__materializecss_com">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>DJL - Deep Java Library</title>
<!-- CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link href="website/css/style.css" type="text/css" rel="stylesheet" media="screen,projection">
<link rel="shortcut icon" type="image/x-icon" href="website/img/favicon.png"/>
<link rel="shortcut icon" sizes="96x96" href="website/img/favicon.png">
<link rel="apple-touch-icon" href="website/img/favicon.png">
</head>
<body data-gr-c-s-loaded="true">
<nav class="white" role="navigation">
<div class="container">
<div class="nav-wrapper container">
<a href="https://djl.ai" class="logo" id="logo-container">
<img src="website/img/djl-middle.png">
</a>
<ul class="right hide-on-med-and-down">
<li><a href="https://javadoc.djl.ai">JavaDoc</a></li>
<li><a href="https://github.com/awslabs/djl">GitHub</a></li>
<li><a href="https://github.com/aws-samples/djl-demo">Demos</a></li>
<li><a href="https://github.com/awslabs/djl/tree/master/examples">Examples</a></li>
<li><a href="https://deepjavalibrary.slack.com">Slack</a></li>
</ul>
<ul id="nav-mobile" class="sidenav">
<li><a href="https://javadoc.djl.ai">JavaDoc</a></li>
<li><a href="https://github.com/awslabs/djl">GitHub</a></li>
<li><a href="https://github.com/aws-samples/djl-demo">Demos</a></li>
<li><a href="https://github.com/awslabs/djl/tree/master/examples">Examples</a></li>
<li><a href="https://deepjavalibrary.slack.com">Slack</a></li>
</ul>
<a href="https://materializecss.com/templates/parallax-template/preview.html#" data-target="nav-mobile"
class="sidenav-trigger"><i class="material-icons">menu</i></a>
</div>
</div>
</nav>
<div id="index-banner" class="parallax-container">
<div id="particles-js">
<div class="container graph-container">
<br><br>
<h1 class="header center light-blue-text text-accent-2">Deep Java Library</h1>
<div class="row center">
<h5 class="header col s12 light">Open source library to build and deploy Deep Learning in Java</h5>
</div>
<div class="row center">
<a href="https://github.com/awslabs/djl#getting-started" id="download-button"
class="btn-large waves-effect waves-light light-blue accent-2">Get Started</a>
</div>
<br><br>
</div>
</div>
</div>
<div class="container">
<div class="section">
<!-- Icon Section -->
<div class="row">
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center brown-text"><i class="material-icons">device_hub</i></h2>
<h5 class="center">Framework Agnostic</h5>
<p class="light">Write once and run anywhere. Develop your model using DJL and run it on an engine of your choice</p>
</div>
</div>
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center brown-text"><i class="material-icons">group</i></h2>
<h5 class="center">Built for Java developers</h5>
<p class="light">Intuitive APIs use native Java concepts and abstract away complexity involved with Deep learning</p>
</div>
</div>
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center brown-text"><i class="material-icons">cloud_upload</i></h2>
<h5 class="center">Ease of deployment</h5>
<p class="light">Bring in your own model, or use a state of the art model from our library to deploy in minutes</p>
</div>
</div>
</div>
</div>
</div>
<div class="parallax-container valign-wrapper">
<div class="parallax">
<img src="website/img/background2.png" alt="Unsplashed background img 2" style="opacity: 1; transform: translate3d(-50%, 165px, 0px);">
</div>
</div>
<footer class="page-footer grey darken-3">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">About Us</h5>
<p class="grey-text text-lighten-4">Built with <span style="color: red;">♥</span> for the Java community by your friends at AWS</p>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
Copyright 2019 <a class="brown-text text-lighten-3" href="http://aws.com/">Amazon.com, Inc.</a> or its
affiliates. All Rights Reserved.
</div>
</div>
</footer>
<!-- Scripts-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="website/js/init.js"></script>
<script src='https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js'></script>
<script src="website/js/script.js"></script>
<div class="sidenav-overlay"></div>
<div class="drag-target"></div>
</body>
</html>