File tree Expand file tree Collapse file tree 4 files changed +20
-3
lines changed Expand file tree Collapse file tree 4 files changed +20
-3
lines changed Original file line number Diff line number Diff line change @@ -5,13 +5,17 @@ makedocs(
5
5
sitename = " GeometricFlux" ,
6
6
format = Documenter. HTML (),
7
7
modules = [GeometricFlux],
8
- analytics = " " ,
9
8
pages = [" Home" => " index.md" ,
10
9
" Manual" =>
11
10
[" Convolutional Layers" => " manual/conv.md" ,
12
11
" Pooling Layers" => " manual/pool.md" ,
13
- " Models" => " manual/models.md" ]
12
+ " Models" => " manual/models.md" ,
13
+ " Linear Algebra" => " manual/linalg.md" ,
14
+ " Utilities" => " manual/utils.md" ]
14
15
]
15
16
)
16
17
17
- deploydocs (repo = " github.com/yuehhua/GeometricFlux.jl.git" )
18
+ deploydocs (
19
+ repo = " github.com/yuehhua/GeometricFlux.jl.git" ,
20
+ push_preview = true
21
+ )
Original file line number Diff line number Diff line change
1
+ # Linear Algebra
2
+
3
+
4
+ ``` @docs
5
+ degrees
6
+ ```
Original file line number Diff line number Diff line change
1
+ # Utilities
2
+
3
+ ``` @docs
4
+ save_div
5
+ ```
Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ Degree of each vertex. Return a vector which contains the degree of each vertex
12
12
13
13
# Examples
14
14
```jldoctest
15
+ julia> using GeometricFlux
16
+
15
17
julia> m = [0 1 1; 1 0 0; 1 0 0];
16
18
17
19
julia> GeometricFlux.degrees(m)
You can’t perform that action at this time.
0 commit comments