[object Object]
[object Object]
(Copied from #191) > It's also been a tricky bug to fix, even when Erik was actively developing this lib. I don't think it is prudent to maintain both behaviors...
While investigating https://github.com/pygraphviz/pygraphviz/issues/111, I fixed this error in ubuntu 16.04 with `apt-get -y install bison`. The full build instructions are here: https://gist.github.com/lucaswiman/1f73a8371b1fe81a58f5dc7374f3b3b2
Just a few notes I gathered on this: * For Pytorch, you can add an extension as discussed in https://pytorch.org/tutorials/advanced/extend_dispatcher.html This would involve implementing a `TensorImpl` backed by WebGPU as...
Just writing down some misc. thoughts about this issue. I might make a PR implementing something like this. I think it's not really that much code. My main use case...
A few notes: - Compiling wheels for a bunch of different platforms can be a pain and adds a lot of complexity to deploying to pypi. Not distributing wheels is...
OK, thanks! I'll start looking into this more, and I'll submit a PR if/when I make progress. ## Notes - `syntrax` makes absolutely lovely diagrams, and is a big pain...
@erikrose I'm making a fair amount of progress with this. One thing I'd like to do is make the iteration order of `Grammar.items()` the same as the ordering the rules...
I've submitted a PR to railroad-diagrams adding a setup.py file and fixing python 3 compatibility: https://github.com/tabatkins/railroad-diagrams/pull/44 The author was pretty receptive to a previous PR I submitted, so hopefully that'll...
> I think it might make sense to support both railroad-diagrams (which has easy installation, but makes less appealing diagrams) and syntrax (which has a byzantine installation process, but makes...
You [can certainly use context-free grammars](https://en.wikipedia.org/wiki/Generative_grammar#Context-free_grammars) in natural language processing (NLP), though my layman's understanding is that's largely been rejected as a good explanation of language. So you could represent...