Jerin Philip

Results 63 comments of Jerin Philip

Reading this as simply implement a "replace unknown in target with max matching piece or something from source text using alignments", still unsure where to draw the "if only high...

**A. Replace `` from source capability, irrespective of target being `` or not.** 1. [`encodeWithByteRanges`](https://github.com/browsermt/marian-dev/blob/3475619b33a638a8688fbf054659008a3e45931a/src/data/sentencepiece_vocab.cpp#L220) has access to surface-text, which means it can have the capability to distinguish between different...

This is the en -> de student model. Config ```py config = { "models": [os.path.join(BERGAMOT_ARCHIVE, "model.intgemm.alphas.bin")], "shortlist": [os.path.join(BERGAMOT_ARCHIVE, "lex.s2t.bin"), True, 50, 50], "vocabs": [ os.path.join(BERGAMOT_ARCHIVE, "vocab.deen.spm"), os.path.join(BERGAMOT_ARCHIVE, "vocab.deen.spm"), ], "ssplit-prefix-file":...

@jelmervdl Can you take a look, when you have some time at this issue and https://gist.github.com/jerinphilip/439ba3b25cdd0d8727b0c80956340024? This was a crude something I got to check if an `` can be...

So previously, we were looking at `-DUSE_WASM_COMPATIBLE_SOURCE=on` when targeting Mozilla ARM, but we don't want this on native (as it disables threading etc). And enabling it appears to have uncovered...

We've hit Hello world on ARM. ```yaml $ cat $CONFIG relative-paths: true models: - model.intgemm.alphas.bin vocabs: - vocab.deen.spm - vocab.deen.spm shortlist: - lex.s2t.bin - false beam-size: 1 normalize: 1.0 word-penalty:...

@XapaJIaMnu https://github.com/jerinphilip/marian/pull/4 (It's in this issue's description). This attempt experimental, in that I started an `#ifdef USE_INTGEMM` next to the WASM, pulled in https://github.com/jerinphilip/MozIntGemm/ and now got it to work....

This space looks better for discussions. I'm preparing the code to work on this at the moment. So you know, the current structure which holds prioritized sentences is ``Batcher::bucket_``. It's...

@felipesantosk Thank you for opening the requested PRs. I have the following suggestions: Remove the hardcodes for paths from C++ and Python. In C++ use CLI parsing (there should be...

Hello, just wondering if some work I'm doing at arm-playground relates/overlaps with the todos here. Could you let know if the links mentioned below are related? 1. Portability a. *Develop...