Elijah Rippeth
Elijah Rippeth
cc @kmike - hopefully this can land in 0.9.8. Let me know if there's anything I can do to help that along. 😄
I also wonder if this brings into question the desire to maintain python 2 support. Send it's officially EOL, do we want to remove it from CI? It would probably...
Sacrebleu is exposed as a library on [pypi](https://pypi.org/project/sacrebleu/), but it doesn't seem to be available through a conda channel.
It seems like my `WSTok` is the issue and that it doesn't meet the expected interface (`__call__` should return (tok, start, stop)). If I use `tp.util.SimpleTokenizer(pattern="\w+")`, it seems to be...
@bab2min are you using the WSTok here? It should cause the error
Thanks very much, @bab2min! It seems like if the model is binarized it shouldn't take long to reload. I haven't looked at the details so sorry for the silly question,...
This is not exactly at feature parity with the legacy API because the `BucketIterator` abstraction no longer exists. I took what seems to be the largest individual batch size as...
Thanks for the response, @seemethere. I haven't dug deep into the other repos, but is publishing their responsibility through CI/CD or do they just provide the scripts for the builder...
@emjotde Is your work on a separate branch? I'm interested to hear how things are going.
`torch.save` and `torch.load` use python-specific pickle modules to marshall binary data. The scripted modules (as used here) are cross-platform. With some hacking you could probably make [serde](https://docs.rs/serde-pickle/latest/serde_pickle/) do what you...