Yi Wang
Yi Wang
This work depends on https://github.com/wangkuiyi/hmm/issues/28 https://github.com/wangkuiyi/hmm/issues/29 https://github.com/wangkuiyi/hmm/issues/30.
Currently we compute training data log-likelihood in every training iteration. This helps us plot the log-likelihood v.s. iteration curve and indicate the convergence of a training job. We need in...
So, the C++ tokenizer generates a slightly different output than that of the HuggingFace tokenzer if the input text contains more than one successive whitespaces. ```bash cmake --build /tmp/b /tmp/b/bin/bpe_test...
Because my most familiar language is Go, so I conducted my experiments using the Go client library. ## Install Go If you use Mac, you can install Go using [Homebrew](https://brew.sh/)....
I feel that we can rename Document into Guide, and make it as when the user clicks Guide, it goes to a leaf of the documentation tree named "Guide". The...
examples/bert.py needs the package.
Fix https://github.com/iree-org/iree-torch/issues/78 After this change, I successfully install dependencies with`python -m pip install -r requirements.txt` And I can build iree-torch with `python setup.py develop`, so that `python -c 'import iree_torch'`...
Following steps listed in https://github.com/iree-org/iree-torch#running-end-to-end-correctness-tests, I ran ``` python -m pip install -r requirements.txt ``` It gave me the following errors. ``` note: This error originates from a subprocess, and...
Following steps in the [README file](https://github.com/iree-org/iree-samples/tree/main/runtime-library#typical-use) of the runtime-library sample, the command `cmake -GNinja -Bbuild .` prints the [following warnings](https://gist.github.com/wangkuiyi/3febdeb88f00cecce95a28cc79ffc45a). Adding `cmake_policy(SET CMP0096 NEW)` in warned cmake files suppresses these...
When I run the following program ```python import jax import jax.numpy as jnp from iree.jax import Program, store_global import flax model = flax.linen.Dense( features=1, use_bias=False, dtype=jnp.bfloat16, param_dtype=jnp.bfloat16 ) rng =...