From 21b471eeb13e4c08c9085861986cfd57bc6152d6 Mon Sep 17 00:00:00 2001 From: Simka <0xsimka@gmail.com> Date: Fri, 20 Dec 2024 14:46:48 +0300 Subject: [PATCH] Fix grammatical error Update ml.md (#166) Fix grammatical error in Wasm VM description --- src/developers/experimental/ml.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/developers/experimental/ml.md b/src/developers/experimental/ml.md index 25f250b..ea23550 100644 --- a/src/developers/experimental/ml.md +++ b/src/developers/experimental/ml.md @@ -43,7 +43,7 @@ tokenizers = { git = "https://github.com/christos-h/tokenizers", default-feature ### Providing Randomness ML frameworks use random numbers to perform inference. Linera services run in a -Wasm VM which do not have access to the OS Rng. For this reason, we need to +Wasm VM which does not have access to the OS Rng. For this reason, we need to manually seed RNG used by `candle`. We do this by writing a custom `getrandom`. Create a file under `src/random.rs` and add the following: