-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1266 from SebastianM-C/lux
Change the `LuxCore` extension to `Lux` to support `recursively_nillify`
- Loading branch information
Showing
3 changed files
with
21 additions
and
14 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 was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
module SymbolicsLuxExt | ||
|
||
using Lux | ||
using Symbolics | ||
using Lux.LuxCore | ||
using Symbolics.SymbolicUtils | ||
|
||
function Lux.NilSizePropagation.recursively_nillify(x::SymbolicUtils.BasicSymbolic{<:Vector{<:Real}}) | ||
Lux.NilSizePropagation.recursively_nillify(Symbolics.wrap(x)) | ||
end | ||
|
||
@register_array_symbolic LuxCore.stateless_apply( | ||
model::LuxCore.AbstractLuxLayer, x::AbstractArray, ps::Union{NamedTuple, <:AbstractVector}) begin | ||
size = LuxCore.outputsize(model, x, LuxCore.Random.default_rng()) | ||
eltype = Real | ||
end | ||
|
||
end |