-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a32fb04
commit 3ab7bf6
Showing
16 changed files
with
4,408 additions
and
1,832 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
```@meta | ||
CurrentModule = GraphNeuralNetworks | ||
``` | ||
|
||
# Temporal Graph-Convolutional Layers | ||
|
||
Convolutions for time-varying graphs (temporal graphs) such as the [`TemporalSnapshotsGNNGraph`](@ref). | ||
|
||
## Docs | ||
|
||
```@autodocs | ||
Modules = [GraphNeuralNetworks] | ||
Pages = ["layers/temporalconv.jl"] | ||
Private = false | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
.grid-card-section { | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: wrap; | ||
align-content: space-between; | ||
} | ||
|
||
.grid-card:hover{ | ||
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.grid-card { | ||
width: 210px; | ||
max-height: 400px; | ||
margin: 10px 15px; | ||
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); | ||
transition: 0.3s; | ||
border-radius: 5px; | ||
} | ||
|
||
.grid-card-text { | ||
padding: 0 15px; | ||
} | ||
|
||
.grid-card-cover img { | ||
width: 100%; | ||
} | ||
|
||
.grid-card-cover { | ||
width: 200px; | ||
height: 220px; | ||
padding: 5px; | ||
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2); | ||
transition: 0.3s; | ||
border-radius: 5px; | ||
display:block; | ||
margin:auto; | ||
} | ||
|
||
.grid-card-cover .grid-card-description { | ||
opacity: 0; | ||
z-index: -1; | ||
position: absolute; | ||
top: 25%; | ||
left: 140%; | ||
width: 100%; | ||
transform: translate(-50%, -50%); | ||
padding: 10px; | ||
border-radius: 5px; | ||
background: rgba(0, 0, 0, 0.8); | ||
color: #fff; | ||
text-align: center; | ||
font-size: 14px; | ||
} | ||
|
||
.grid-card-cover:hover .grid-card-description{ | ||
z-index: 3; | ||
opacity: 1; | ||
} |
Oops, something went wrong.