Sebastian Pütz
Sebastian Pütz
> [...] any workarounds anybody is aware of? It's a bit hacky and brittle but you can set the output path for the generated Rust files ```rust tonic_build::configure() .out_dir("src/") //...
Publishing should work by adding a feature gate to the code gen (and running rustfmt), e.g. `lapin` has a code gen feature: https://github.com/amqp-rs/lapin/blob/main/build.rs#L1-L7 with code gen turned off by default:...
I think the last comment by any of the maintainers was back in march. The last commit to master happened more than 6 months ago, so unfortunately there doesn't seem...
Awesome that the crate is maintained again! I rebased on master and pushed the changes.
I replaced the individual implementations with a macro, should eliminate pretty much all repetition.
I'll get to that this weekend, is there any specific way that panics should be denoted in the docs? Also, the type parameter `Ix` is not part of the input...
I updated the docs to mention the panics. Not sure how to fix the macro up tho.
Sounds like a very convenient feature. Some feature to search for embeddings or to get a list of available files would also be nice to have.
Postponed to some later release since representations might still change.
Somewhat related, mapping all untrained subword embeddings to a NULL vector could also be done if we get some indirection for look ups (which would be introduced by all of...