Chess-Web / neural_engine /src /bin /test_dirichlet.rs
dpv007's picture
Upload folder using huggingface_hub
57ad8f7 verified
Raw
History Blame Contribute Delete
110 Bytes
use rand_distr::{Dirichlet, Distribution};
fn main() {
let _ = Dirichlet::new(&vec![0.3; 1]).unwrap();
}