Skip to content

Commit 1129930

Browse files
authored
Merge pull request #114 from alperyilmaz/patch-3
cache argument triggers error
2 parents 8c72ee6 + 1dae3d9 commit 1129930

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/vgae.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ adj_mat = Matrix{Float32}(adjacency_matrix(g))
2626
train_data = [(FeaturedGraph(adj_mat.*M, Matrix{Float32}(features)), adj_mat) for M in masks]
2727

2828
## Model
29-
model = VGAE(GCNConv(num_features=>h_dim, relu; cache=false), h_dim, z_dim, σ)
29+
model = VGAE(GCNConv(num_features=>h_dim, relu;), h_dim, z_dim, σ)
3030
encoder = model.encoder
3131
decoder = model.decoder
3232
ps = Flux.params(model)

0 commit comments

Comments
 (0)