forked from dglai/dglai.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
965 lines (791 loc) · 40.4 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
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
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
<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 -->
<!-- Start Slider Area -->
<div class="slider-area">
<div class="container-fluid">
<div class="row">
<div class="slider-wrapper-2">
<div id="particles-js">
<div class="slider-fixed-text">
<h1>Deep Graph Library</h1>
<p>Easy Deep Learning on Graphs</p>
<div class="slider-buttons">
<a href="/pages/start.html" class="themeix-btn primary-bg">Install</a>
<a href="https://github.com/dmlc/dgl/" class="themeix-btn white-bg">GitHub</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--End Slider Area -->
<!-- Start HighLights -->
<div class="our-community-area themeix-pt">
<div class="container">
<div class="row">
<div class="col-sm-4">
<div class="single-community">
<h3>Framework Agnostic</h3>
<p>Build your models with PyTorch, TensorFlow or Apache MXNet.</p>
<img src="/assets/images/framework.jpg" alt="framework" width=50% />
</div>
</div>
<div class="col-sm-4">
<div class="single-community">
<h3>Efficient and Scalable</h3>
<p>Fast and memory-efficient message passing primitives for training
Graph Neural Networks. Scale to giant graphs via multi-GPU acceleration
and distributed training infrastructure.</p>
</div>
</div>
<div class="col-sm-4">
<div class="single-community">
<h3>Diverse Ecosystem</h3>
<p>DGL empowers a variety of domain-specific projects including <a href="https://github.com/awslabs/dgl-ke">DGL-KE</a> for learning
large-scale knowledge graph embeddings, <a href="https://github.com/awslabs/dgl-lifesci">DGL-LifeSci</a> for
bioinformatics and cheminformatics, and many others.</p>
</div>
</div>
</div>
<!--
<div class="row">
<div class="col-sm-4">
<div class="single-community">
<img src="/assets/images/framework.jpg" alt="framework" width=70% />
</div>
</div>
<div class="col-sm-4">
<div class="single-community">
<img src="/assets/images/vspyg.jpg" alt="vspyg" width=70% />
</div>
</div>
<div class="col-sm-4">
<div class="single-community">
<img src="/assets/images/dgl-app.jpg" alt="dglapp" width=70% />
</div>
</div>
</div>
-->
</div>
</div>
<!-- End HighLights -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.21/css/dataTables.jqueryui.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/wordcloud2.js/1.2.2/wordcloud2.min.js"></script>
<!-- import Vue.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.6.14/vue.min.js"></script>
<!-- import Vue.multiselect -->
<script src="https://unpkg.com/vue-multiselect@2.1.0"></script>
<link rel="stylesheet" href="https://unpkg.com/vue-multiselect@2.1.0/dist/vue-multiselect.min.css">
<style>
.dataTables_scrollBody {
overflow-x: hidden !important;
}
#table_filter {
display: none !important;
}
.multiselect--active {
z-index: 10;
}
</style>
<div class="our-community-area themeix-ptb">
<div class="container">
<div class="row">
<div class="themeix-section-title text-center">
<h2>Find an example to get started</h2>
</div>
</div>
<!--<div class="col-sm-6">
<canvas id="wordcloud-canvas" class="wordcloud-canvas" width="600" height="300"></canvas>
</div>-->
<div class="row">
<div class="col-md-offset-1 col-md-10">
<div style="margin-bottom: 10px;">
<multiselect v-model="value" :options="options" :close-on-select="false" :clear-on-select="false"
:multiple="true" :hide-selected="true" :preserve-search="true"
placeholder="Select tags: heterogeneous graph, ..." label="name" track-by="name" :preselect-first="false"
id="multiselect-paper" @input="onChange">
</multiselect>
</div>
<table id="table" width="100%"> </table>
</div>
</div>
</div>
</div>
<script>
// Run after the Document DOM tree is constructed
var multiselect;
$(document).ready(function () { // or shorthand of $( function () {
// Your jQuery scripts here!
$.get("/assets/README.md", function (data) {
var text = data;
/* get the nth capturing group for each match: */
function getMatches(string, regex, index) {
index || (index = 1); // default to the first capturing group
var matches = [];
var match;
while (match = regex.exec(string)) {
matches.push(match[index]);
}
return matches;
}
//Match or replace using some regex
const tags_regex = /\b(Tags:\s)(.*)/g;
var tags = getMatches(data, tags_regex, 2);
// get all current tags
var all_tags = new Set();
var tag_count = {}
for (var i = 0; i < tags.length; i++) {
var subtags = tags[i].split(", ");
for (var j = 0; j < subtags.length; j++) {
var clean_tag = subtags[j].trim().toLowerCase();
all_tags.add(clean_tag);
if (!(clean_tag in tag_count)) {
tag_count[clean_tag] = 0
}
tag_count[clean_tag] = tag_count[clean_tag] + 1;
}
}
// console.log(tag_count)
var count_array = Object.entries(tag_count)
// console.log(count_array)
var tag_lists = []
for (let item of all_tags) {
tag_lists.push({ "name": item })
};
tag_lists.sort(function (first, second) {
return first["name"].localeCompare(second["name"])
})
const papers_regex = /(<a\s)(.*)(\n)/g;
// debugger;
var papers = getMatches(data, papers_regex, 2);
var paper_lists = []
for (let paper of papers) {
var anchor = paper.split("\"")[1]
var paper_title = paper.split(".")[1].trim()
paper_lists.push({ "title": paper_title, "anchor": anchor })
}
//console.log(paper_lists);
//console.log(tags);
/* document.write(papers); */
function to_anchor_link(title, anchor) {
return "<a href=\"https://github.com/dmlc/dgl/blob/master/examples/README.md#" + anchor + "\">" + title + "</a>";
}
// Create a obj list where each obj is a matching of the Title and Tags
var obj = [];
for (var i = 0; i < paper_lists.length; i++) {
obj.push({
"Paper Title": to_anchor_link(paper_lists[i]["title"], paper_lists[i]["anchor"]),
"Tags": tags[i]
});
}
/* console.log(obj); */
// Just and example of building a dataTable from json
// Without Search **fully** enabled
var table = $('#table').DataTable({
data: obj,
columns: Object.keys(obj[0]).map(function (item) {
return {
data: item,
title: item
}
}),
paging: false,
scrollY: "250px",
autoWidth: true,
scrollCollapse: true,
bInfo: false,
})
multiselect = new Vue({
components: {
Multiselect: window.VueMultiselect.default
},
data: {
value: [],
options: tag_lists
},
methods: {
// customLabel (option) {
// return `${option.library} - ${option.language}`
// },
onChange(option) {
var selected = [];
for (var i = 0; i < this.value.length; i++) {
selected.push(this.value[i]["name"])
}
// var regex = selected.join("|");
// console.log(regex)
if (selected.length == 0) {
$.fn.dataTable.ext.search = []
} else {
$.fn.dataTable.ext.search = [function (settings, data, dataIndex) {
var value = data[1]
for (var i = 0; i < selected.length; i++) {
if (!value.toLowerCase().includes(selected[i].toLowerCase())) {
return false
}
}
return true
}]
}
$('#table').DataTable().draw();
}
}
}).$mount('#multiselect-paper')
/*var $canvas = $('.wordcloud-canvas');
var w = WordCloud(document.getElementById('wordcloud-canvas'),
{
list: count_array,
gridSize: Math.round(16 * $canvas.width() / 1024),
weightFactor: function (size) {
return Math.pow(size, 0.5) * 12 * $canvas.width() / 1024;
},
minSize: 12 * $canvas.width() / 1024 + 1,
shrinkToFit: true,
drawOutOfBound: false,
hover: function (item) {
if (item == null) {
$canvas.css('cursor', 'auto');
} else {
$canvas.css('cursor', 'pointer');
}
},
click: function (item) {
multiselect.value = [{"name": item[0]}]
multiselect.onChange()
},
})
*/
});
});
</script>
<div class="recent-news info-bg">
<div class="container">
<div class="news-wrapper owl-carousel owl-theme">
<div class="single-news">
<div class="row">
<h4 class="themeix-blog-h"><a href="/release/2023/02/20/release.html">DGL 1.0: Empowering Graph Machine Learning for Everyone</a></h4>
<p>We are thrilled to announce the arrival of DGL 1.0, a significant milestone
of the past 3+ years of development.
</p>
<!--
<div class="col-sm-6">
<a href="/release/2023/02/20/release.html"><img src="/assets/images/posts/2023-02-20-release/blog_banner.png" alt="blog-thumbnail"></a>
</div>
-->
</div>
</div>
<div class="single-news">
<div class="row">
<h4 class="themeix-blog-h"><a href="/blog/2022/11/28/ngnn.html">Improving Graph Neural Networks via Network-in-network Architecture</a></h4>
<p>As Graph Neural Networks (GNNs) has become increasingly popular, there is a wide interest of designing deeper GNN architecture. However, deep GNNs suffer from the oversmoothing issue where the learnt...</p>
<!--
<div class="col-sm-6">
<a href="/blog/2022/11/28/ngnn.html"><img src="/assets/images/posts/2022-11-28-ngnn/ngnn_title.png" alt="blog-thumbnail"></a>
</div>
-->
</div>
</div>
<div class="single-news">
<div class="row">
<h4 class="themeix-blog-h"><a href="/release/2022/09/19/release.html">Accelerating Partitioning of Billion-scale Graphs with DGL v0.9.1</a></h4>
<p>Check out how DGL v0.9.1 helps users partition graphs of billions of
nodes and edges.
</p>
<!--
<div class="col-sm-6">
<a href="/release/2022/09/19/release.html"><img src="/assets/images/posts/2022-09-19-release/update-image.jpg" alt="blog-thumbnail"></a>
</div>
-->
</div>
</div>
<div class="single-news">
<div class="row">
<h4 class="themeix-blog-h"><a href="/release/2022/07/25/release.html">v0.9 Release Highlights</a></h4>
<p>Check out the highlighted features of the new 0.9 release!
</p>
<!--
<div class="col-sm-6">
<a href="/release/2022/07/25/release.html"><img src="/assets/images/posts/2022-07-25-release/update-image.jpg" alt="blog-thumbnail"></a>
</div>
-->
</div>
</div>
</div>
</div>
</div>
<!-- Start Document Source Area -->
<section>
<div class="document-source-area themeix-ptb">
<div class="container">
<div class="row">
<div class="col-sm-4">
<div class="single-box">
<div class="box-inner">
<img src="/assets/images/icon2.png" alt="box img">
<h3>Blogs</h3>
<p></p>
</div>
<div class="box-flip">
<div class="flip-box-innner">
<h3>Visit Blogs</h3>
<p>Deep learning on graphs is very new direction. We use blogs to introduce new ideas
and researches of this area and explains how DGL can support them very easily.</p>
<a href="/pages/index.html" class="themeix-btn danger-bg">Read All Blogs</a>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="single-box">
<div class="box-inner">
<img src="/assets/images/slack_small.png" alt="box img">
<h3>Slack</h3>
<p></p>
</div>
<div class="box-flip">
<div class="flip-box-innner">
<h3>Slack Channel</h3>
<p>Join the DGL Slack channel to connect with the active community.</p>
<a href="https://join.slack.com/t/deep-graph-library/shared_invite/zt-eb4ict1g-xcg3PhZAFAB8p6dtKuP6xQ" class="themeix-btn danger-bg">Click to Join</a>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="single-box">
<div class="box-inner">
<img src="/assets/images/icon3.png" alt="box img">
<h3>Discussion</h3>
<p></p>
</div>
<div class="box-flip">
<div class="flip-box-innner">
<h3>Join Discussion</h3>
<p>Got questions? Interested in contributing? or simply want to know what others are playing with? Use our forum for all kinds of discussion.</p>
<a href="https://discuss.dgl.ai" class="themeix-btn danger-bg">Visit Our Forum</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Document Source Area -->
<!-- Testimonials -->
<section class="testimonials-section themeix-ptb">
<div class="container">
<div class="row">
<div class="col-md-offset-3 col-md-6">
<div class="themeix-section-title text-center">
<h2>What People Are Saying ...</h2>
<p></p>
</div>
</div>
<div class="col-md-12">
<div class="testimonials-wrapper owl-carousel">
<div class="single-testimonial wow zoomIn animated">
<div class="testimonial-info">
<p>Brought to you by NYU, NYU-Shanghai, and Amazon AWS.</p>
</div>
<div class="testimonial-author">
<h5>Yann LeCun</h5>
<span>NYU Professor, Director of Facebook AI Lab</span>
</div>
</div>
<div class="single-testimonial wow zoomIn animated">
<div class="testimonial-info">
<p>By far the cleanest and most elegant library for graph neural networks in PyTorch. Highly recommended! Unifies Capsule Nets (GNNs on bipartite graphs)
and Transformers (GCNs with attention on fully-connected graphs) in a single API.</p>
</div>
<div class="testimonial-author">
<h5>Thomas Kipf</h5>
<span>Inventor of Graph Convolutional Network</span>
</div>
</div>
<div class="single-testimonial wow zoomIn animated">
<div class="testimonial-info">
<p>I taught my students Deep Graph Library (DGL) in my lecture on "Graph Neural Networks" today. It is a great resource to develop GNNs with PyTorch.</p>
</div>
<div class="testimonial-author">
<h5>Xavier Bresson</h5>
<span>Associate Professor of NTU</span>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Testimonials -->
<div class="awards-section themeix-ptb">
<div class="container">
<div class="row">
<div class="col-md-offset-3 col-md-6">
<div class="themeix-section-title text-center">
<h2>Sponsors</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-3"><img src="/assets/images/aws.png" alt="aws"></div>
<div class="col-md-3"><img src="/assets/images/nsf.png" alt="nsf"></div>
<div class="col-md-3"><img src="/assets/images/nv.png" alt="nv"></div>
<div class="col-md-3"><img src="/assets/images/intel.png" alt="intel"></div>
</div>
</div>
</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>