Michael Schmidt
Michael Schmidt
I would be nice if this library support `rotate_left` and `rotate_right`, just liked [the standard library](https://doc.rust-lang.org/stable/std/primitive.i32.html#method.rotate_right).
As the title says. It would be nice to have bit shift operations, so ``, and `>>>`.
I would like to request the `\G` assertion. It should behave just like [Java Regex's `\G`](https://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html#:~:text=The%20end%20of%20the%20previous%20match). More specifically: The `\G` assertion consumes no characters and accepts if and only if...
Hello! I think HDSRNet is a promising architecture and I would like to include your HDSRNet code in a project. However, I can't do that because the code isn't licensed....
I recently trained 2 models with neosr and my hard drive filled up pretty quickly with old checkpoints and visualizations that were of no interest to me. I *do* want...
We plan to support and push safetensors on OMDB in the future for security reasons. So it would be great if neosr could support them.
https://en.wikipedia.org/wiki/Quotient_of_a_formal_language Here is a simple construction for the left quotient for NFAs: https://cs.stackexchange.com/a/155475/125991
https://en.wikipedia.org/wiki/Brzozowski_derivative Should be relatively easy to implement for NFAs.
The JS parser is able to resolve backreferences where (among other conditions) the associated capturing group accepts a small finite language. E.g. `/(a|b)\1/` will be parsed as `/aa|bb/` This is...
Fixes #2832. This adds the `assert_image_dimensions` util function I proposed to protect against huge image sizes at runtime. I also implemented a type-based check, but I'm not satisfied with it...