forked from dglai/dglai.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
513 lines (372 loc) · 22.3 KB
/
404.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
<head>
<!-- meta -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Library for deep learning on graphs">
<meta name="keywords" content="Software, Machine Learning, Deep Learning, Neural Network, Graph">
<meta name="author" content="Themeix">
<!-- Site Title -->
<title>Deep Graph Library</title>
<!-- favicon -->
<link rel="shortcut icon" type="image/x-icon" href="/assets/images/dgl-favicon.png">
<!-- IView CSS -->
<link rel="stylesheet" href="//unpkg.com/iview/dist/styles/iview.css">
<!-- Bootstrap CSS -->
<link href="/assets/css/bootstrap.min.css" rel="stylesheet">
<!-- Font-Awesome CSS -->
<link href="/assets/css/font-awesome.min.css" rel="stylesheet">
<!-- Google Fonts -->
<link href="/assets/css/googlefont.css" rel="stylesheet">
<!-- Animate CSS -->
<link rel="stylesheet" href="/assets/css/animate.min.css">
<!-- Owl Carousel CSS -->
<link rel="stylesheet" href="/assets/css/owl.carousel.min.css">
<link rel="stylesheet" href="/assets/css/owl.theme.default.min.css">
<!--<link rel="stylesheet" href="/assets/css/owl.carousel.min.css">-->
<!-- Mean Menu CSS -->
<link rel="stylesheet" href="/assets/css/meanmenu.min.css">
<!-- Main Stylesheet -->
<link href="/assets/css/style.css" rel="stylesheet">
<!-- Responsive CSS -->
<link href="/assets/css/responsive.css" rel="stylesheet">
<!-- Minima CSS -->
<link href="/assets/main.css" rel="stylesheet">
<!-- Rouge Highlighter CSS -->
<link href="/assets/css/syntax.css" rel="stylesheet">
<link type="application/atom+xml" rel="alternate" href="https://www.dgl.ai/feed.xml" title="Deep Graph Library" />
<!--[if lt IE 9]>
<script src="//oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="//oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-132455605-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-132455605-1');
</script>
</head>
<body>
<!-- Preloader starts-->
<div class="preloader">
<div class="loading-center">
<div class="loading-center-absolute">
<div class="object object_one"></div>
<div class="object object_two"></div>
<div class="object object_three"></div>
</div>
</div>
</div>
<!-- Preloader ends -->
<!-- Start Header -->
<header>
<!-- Start Mainmenu -->
<div class="menu-area navbar-fixed-top ">
<div class="container">
<div class="row">
<div class="mainmenu-wrapper">
<!-- Start Header Logo -->
<div class="col-xs-12 col-md-3">
<div class="header-logo">
<a href="https://www.dgl.ai"><img src="/assets/images/logo.png" alt="logo"></a>
</div>
</div>
<!-- End Header Logo -->
<!-- Start Navigation -->
<div class="col-xs-12 col-md-9">
<div class="mainmenu">
<div class="navbar navbar-right">
<div class="navbar-header visible-xs">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse top-menu">
<!-- Static Dropdown Menu
<nav>
<ul class="nav navbar-nav">
<li class="active"><a href="https://www.dgl.ai">Home<span>Get everything</span></a>
<ul class="dropdown">
<li><a href="index.html">Home Version 1</a></li>
<li><a href="index-2.html">Home Version 2</a></li>
</ul>
</li>
<li><a href="about-us.html">About<span>Know about us</span></a></li>
<li><a href="questions.html">Questions<span>Ask Your Question</span></a>
<ul class="dropdown">
<li>
<a href="questions.html"> <span><i class="fa fa-question-circle"></i></span>All Questions</a>
</li>
<li><a href="ask-question.html"><span><i class="fa fa-question-circle-o"></i></span>Ask Questions</a></li>
<li><a href="answers.html"><span><i class="fa fa-reply-all"></i></span>Answers</a></li>
<li><a href="login.html"><span><i class="fa fa-sign-in"></i></span>Login</a></li>
<li><a href="register.html"><span><i class="fa fa-registered"></i></span>Register</a></li>
</ul>
</li>
<li><a href="#">Pages<span>See All Pages</span></a>
<ul class="dropdown">
<li><a href="index-2.html">Home 2</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="blog-details.html">Blog Details</a></li>
<li><a href="questions.html">Questions</a></li>
<li><a href="answers.html">Answers</a></li>
<li><a href="updates.html">Updates</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="left-sidebar.html">Left Sidebar</a></li>
<li><a href="right-sidebar.html">Right Sidebar</a></li>
<li><a href="login.html">login</a></li>
<li><a href="register.html">Register</a></li>
<li><a href="404.html">404</a></li>
</ul>
</li>
<li><a href="blog.html">Blog<span>All Blog Posts</span></a></li>
<li><a href="updates.html">Updates<span>Latest releases</span></a></li>
<li><a href="contact.html">Contact<span>Let us contact</span></a></li>
</ul>
</nav>
End Static Dropdown Menu -->
<nav>
<ul class="nav navbar-nav">
<li>
<a href="/pages/about.html">about
<!--<span>About DGL</span>-->
</a>
</li>
<li>
<a href="/pages/start.html">Get Started
<!--<span>Install</span>-->
</a>
</li>
<li>
<a href="https://docs.dgl.ai/tutorials/blitz/index.html">Tutorials
</a>
</li>
<li>
<a href="/pages/index.html">Blogs
</a>
</li>
<li>
<a href="https://docs.dgl.ai">Docs
</a>
</li>
<li>
<a href="https://discuss.dgl.ai">Forum
</a>
</li>
<li>
<a href="https://github.com/dmlc/dgl">GitHub
</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
<!-- End Navigation -->
</div>
</div>
</div>
</div>
<!-- End Mainmenu -->
<!-- Start Mobile Menu Area -->
<div class="col-xs-12 visible-xs">
<div class="mobile-menu">
<nav>
<ul>
<li><a href="/index.html">Home</a></li>
<li>
<a href="/pages/about.html">about
</a>
</li>
<li>
<a href="/pages/start.html">Get Started
</a>
</li>
<!--
<li><a href="#">Questions</a>
<ul>
<li><a href="questions.html"> Questions</a></li>
<li><a href="ask-question.html">Ask Questions</a></li>
<li><a href="answers.html">Answers</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="register.html">Register</a></li>
</ul>
</li>
<li><a href="#">Pages</a>
<ul>
<li><a href="blog.html">Blog</a></li>
<li><a href="blog-details.html">Blog Details</a></li>
<li><a href="questions.html">Questions</a></li>
<li><a href="answers.html">Answers</a></li>
<li><a href="updates.html">Updates</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="left-sidebar.html">Left Sidebar</a></li>
<li><a href="right-sidebar.html">Right Sidebar</a></li>
<li><a href="login.html">login</a></li>
<li><a href="register.html">Register</a></li>
<li><a href="404.html">404</a></li>
</ul>
</li>
-->
<li><a href="https://docs.dgl.ai/tutorials/blitz/index.html">Tutorials</a></li>
<li><a href="/pages/index.html">Blogs</a></li>
<li><a href="https://docs.dgl.ai">Docs</a></li>
<li><a href="https://discuss.dgl.ai">Forum</a></li>
<li><a href="https://github.com/dmlc/dgl">GitHub</a></li>
</ul>
</nav>
</div>
</div>
<!-- End MObile Menu Area
</header>
<!-- End Header -->
<style type="text/css" media="screen">
.container {
margin: 10px auto;
max-width: 600px;
text-align: center;
}
h1 {
margin: 30px 0;
font-size: 4em;
line-height: 1;
letter-spacing: -1px;
}
</style>
<div class="container">
<h1>404</h1>
<p><strong>Page not found :(</strong></p>
<p>The requested page could not be found.</p>
</div>
<!-- Start Footer Area -->
<footer>
<div class="footer-area themeix-ptb">
<div class="container">
<div class="row">
<div class="footer-wrapper">
<div class="col-sm-6 col-md-3">
<div class="single-footer">
<h3 class="footer-heading">Follow Us</h3>
<div class="single-footer-text">
<p>Keep track the latest news, blogs and updates of DGL by following our social media accounts.</p>
</div>
<div class="social-links">
<ul>
<li><a href="https://twitter.com/GraphDeep"><i class="fa fa-twitter"></i></a></li>
<li class="fb-link"><a href="https://www.facebook.com/GraphDeep/"><i class="fa fa-facebook"></i></a></li>
<li><a href="/feed.xml"><i class="fa fa-rss"></i></a></li>
<!--<li class="gp-link"><a href="#"><i class="fa fa-google-plus"></i></a></li>-->
</ul>
</div>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="single-footer">
<h3 class="footer-heading">Quick Links</h3>
<div class="footer-list">
<ul>
<li><a href="/pages/about.html">About us</a></li>
<li><a href="/pages/start.html">Get started</a></li>
<li><a href="https://github.com/dmlc/dgl/releases">Latest updates</a></li>
<li><a href="/pages/index.html">Blogs</a></li>
<li><a href="https://github.com/dmlc/dgl/">Github</a></li>
</ul>
</div>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="single-footer">
<h3 class="footer-heading">Materials</h3>
<div class="footer-list">
<ul>
<li><a href="https://docs.dgl.ai/tutorials/models/index.html">Tutorials</a></li>
<li><a href="https://discuss.dgl.ai">Discuss forum</a></li>
<li><a href="https://github.com/dmlc/dgl/issues">Github issues</a></li>
<li><a href="https://github.com/dmlc/dgl/blob/master/CONTRIBUTORS.md">Contributing</a></li>
</ul>
</div>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="single-footer">
<h3 class="footer-heading">Contact Us</h3>
<div class="subscribe-form">
<form action="https://formspree.io/f/maylbdvy" method="POST">
<input type="text" name="name" id="name" class="form-control" placeholder="Name" required>
<input type="text" name="message" id="message" class="form-control" placeholder="Message" required>
<input type="email" name="_replyto" id="email" class="form-control" placeholder="Email" required>
<button type="submit" class="hover-bg">Submit</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Start Footer Bottom Area -->
<!--
<div class="footer-bottom-area themeix-pb">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="footer-bottom">
<div class="footer-logo">
<a href="#"><img src="/assets/images/footer-logo.png" alt="logo"></a>
</div>
<div class="footer-links">
<ul>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Refund Policy</a></li>
<li><a href="#">Disclaimer</a></li>
</ul>
</div>
<div class="copyright-text">
<p>All content Documenter © 2017 - All rights reserved. - Proudly made with <a href="http://designingmarket.com">Designing Market</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
-->
<!-- End Footer Bottom Area -->
<!-- Start Scroll To Top -->
<div class="scroll-top">
<div class="scroll-icon">
<i class="fa fa-angle-up"></i>
</div>
</div>
<!-- End Scroll To Top -->
</footer>
<!-- End Footer Area -->
<!-- jquery min -->
<script src="/assets/js/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.21/js/jquery.dataTables.min.js"></script>
<!-- Bootstrap Js -->
<script src="/assets/js/bootstrap.min.js"></script>
<!-- jQuery Easing -->
<script src="/assets/js/jquery.easing.js"></script>
<!-- Owl Carousel Js -->
<script src="/assets/js/owl.carousel.min.js"></script>
<!-- Google Map -->
<!-- <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAOCx7VEftKaGSK2F2p_tUKmMSdN00palo"></script> -->
<!-- Mean Menu -->
<script src="/assets/js/jquery.meanmenu.js"></script>
<!-- Particles JS CDN -->
<script src="/assets/js/particles.min.js"></script>
<!-- Main Js -->
<script src="/assets/js/main.js"></script>
<!-- MathJax Js -->
<script type="text/javascript" async
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
</body>
</html>