forked from aksakalli/jekyll-doc-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (65 loc) · 2.47 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
---
layout: default
---
<div class="header-container jumbotron">
<div class="container">
<h1>PyGCL</h1>
<p>PyGCL is a PyTorch-based open-source Graph Contrastive Learning (GCL)
library, which features modularized GCL components from published papers,
standardized evaluation, and experiment management. </p>
<p><a class="btn btn-primary btn-lg"
href="{{ "/docs/home/" | relative_url }}" role="button">Quickstart</a>
<a class="btn btn-warning btn-lg"
href="https://pygcl.readthedocs.io/" role="button">Read Docs</a>
</p>
</div>
</div>
<div class="container">
<div class="row">
<h1 class="text-center">Installation</h1>
<p>To install PyGCL with <code>pip</code>, simply run:</p>
<div class="language-bash highlighter-rouge">
<div class="highlight">
<pre class="highlight"><code>pip <span class="nb">install </span>PyGCL</code></pre>
</div>
</div>
<p>Then, you can import <code>GCL</code> from your current environment.</p>
</div>
<div class="row">
<h3>Prerequisites</h3>
<ul>
<li>Python 3.8+</li>
<li>PyTorch 1.9+</li>
<li>PyTorch-Geometric 2.0+</li>
<li>DGL 0.7+</li>
<li>Scikit-learn 0.24+</li>
<li>Numpy</li>
<li>tqdm</li>
<li>NetworkX</li>
</ul>
</div>
<div class="row">
<div class="col-sm-4">
<h1 class="text-center"><i class="fa-fw fa-solid fa-gear" aria-hidden="true"></i>
</h1>
<h3 class="text-center">Modularized Design</h3>
<p>PyGCL features modularized design with four critical components of graph contrastive learning,
which can be independently used or integrated into existing implementations.
</p>
</div>
<div class="col-sm-4">
<h1 class="text-center"><i class="fa-fw fa-brands fa-github" aria-hidden="true"></i></h1>
<h3 class="text-center">Open Source</h3>
<p>PyGCL is licensed under the <a href="https://github.com/PyGCL/PyGCL/blob/develop/LICENSE">Apache License 2.0</a>
and actively maintained by the community on <a href="https://github.com/PyGCL/PyGCL">GitHub</a>.</p>
</div>
<div class="col-sm-4">
<h1 class="text-center"><i class="fa-fw fa-solid fa-paper-plane" aria-hidden="true"></i>
</h1>
<h3 class="text-center">Wide Coverage</h3>
<p>PyGCL covers a wide range of up-to-date models that are representative in open literature.
It can also be easily extended to include more design choices.
</p>
</div>
</div>
</div>