Fix doctests #10
Annotations
2 errors and 2 warnings
Documentation:
src/RandomFeatureMaps.jl#L88
doctest failure in ~/work/RandomFeatureMaps.jl/RandomFeatureMaps.jl/src/RandomFeatureMaps.jl:88-112
```jldoctest
julia> rof = RandomOrientationFeatures(10, 0.1f0);
julia> rigid = rand_rigid(Float32, (2, 3));
julia> rof(rigid, rigid) |> size
(10, 4, 3)
julia> rigid1, rigid2 = rand_rigid(Float32, (4, 2)), rand_rigid(Float32, (3, 2));
julia> rof(rigid1, rigid2; pairdim=1) |> size
(10, 4, 3, 2)
julia> using GraphNeuralNetworks
julia> graph = GNNGraph(Bool[1 0; 1 1], graph_type=:dense)
GNNGraph:
num_nodes: 2
num_edges: 3
julia> rigid = rand_rigid(Float32, (2,));
julia> rof(rigid, graph) |> size
(10, 3)
```
Subexpression:
rof(rigid, rigid) |> size
Evaluated output:
(10, 2, 3)
Expected output:
(10, 4, 3)
diff =
Warning: Diff output requires color.
(10, 4, 2, 3)
|
Documentation
Process completed with exit code 1.
|
Julia 1.9 - ubuntu-latest - x64 - push
Codecov: Failed to properly create commit: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
|
Julia nightly - ubuntu-latest - x64 - push
Codecov: Failed to properly create commit: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
|