NaiveNASlib.jl icon indicating copy to clipboard operation
NaiveNASlib.jl copied to clipboard

Relentless mutation!!

Results 7 NaiveNASlib.jl issues
Sort by recently updated
recently updated
newest added

Basically an alternative to #102 which is a bit less attractive since it requires creating a completely new structure. Current version does not have tests yet but is tested with...

Root cause is that variable array for selecting existing outputs can only select from previous existing outputs. The logic to deal with this in `inoutconstraint!(s, ::SizeStack, v, model, vardict::Dict)` assumes...

Reason is basically that the edge is removed before outputs are selected. Mwe to run in structure.jl: ```julia @testset "PostSelectOutputs SizeStack" begin v0 = inpt(3, "v0") v1 = av(v0, 3,...

Removing a vertex which happens to be the only SizeAbsorb vertex in a fork-path which is eventually joined by a SizeInvariant vertex is makes the graph invalid if there is...

There is currently very limited (at best) support for controlling the program flow (e.g. compute this x-times or compute this if y, else that, neural ODEs etc.). A possible approach...

A pattern of chaining strategies like has emerged in this form: ``` PrimaryStrategy(params..., FallBackStrategy1(params..., FallBackStrategy2(params... etc```` While I do like the flexibility this offers functionally, it tends to look like...