edgebert 0.2.0

Rust + WASM library for BERT inference on native and edge devices with no dependencies.
Documentation
1
2
3
4
5
6
7
fn main() {
    let target = std::env::var("TARGET").unwrap();
    // doesnt feel right
    if target.contains("x86_64") && !target.contains("wasm32") {
        pkg_config::probe_library("openblas").unwrap();
    }
}