Ryan Nett

Results 75 issues of Ryan Nett

I want to allow whitespace most of the time, so I have `token("\\s+", true)`. However, in a few scenarios, I want to disallow whitespace between tokens/subexpressions. A relatively easy way...

It would be nice if there was a option (or if it was the default behavior) to evaluate delegates when serializing objects. For example, `val jumps by json.byInt` would serialize...

For parity with DL4J. There is currently no way to implement the SimpleRnn layer in SameDiff without unrolling the loop.

SameDiff
LIBND4J

LastTimeStep has no parameter for data format, and only works with NCW.

DL4J

Currently `div` allows mixed datatypes, e.g. `float / long -> float`. However, `div_bp` does not, which can cause unexpected errors. They should match.

LIBND4J

Currently NoOp returns a boolean that isn't used. On the C++ side it uses `OP_IMPL`, which gives it a return shape function returning nothing (as it has no inputs). This...

SameDiff

Apparently the fused loss ops in SDLoss don't support output gradients. So anything done to their outputs won't be reflected in the gradients. This should be documented somewhere, maybe on...

SameDiff

Conv2DConfig has a `weightsFormat` field that lets the layer accept other permutations of the weight array. This is especially useful as DL4J uses `[outDepth, inDepth, kH, kW]` (sometimes, at least)...

SameDiff

It would be very nice to have support for [CSS functions](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Functions), at least the basic math functions on numeric types, e.g. `min`.

There's a few dokka example projects here, and I'd love to be able to see the generated docs. There's already CI tasks to generate the docs, maybe push them to...