native_neural_network_std 0.2.1

Ergonomic std wrapper for the `native_neural_network` crate (no_std) — std-friendly re-exports and utilities.
Documentation
1
2
3
4
5
pub use crate::std::rnn_std::{RnnStd, RnnStdError};

pub fn get_network_from_rnn(bytes: &[u8]) -> Result<RnnStd, RnnStdError> {
    crate::std::rnn_std::parse_rnn_from_bytes(bytes)
}