kalosm-learning 0.4.0

A simplified machine learning library for building off of pretrained models.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![warn(missing_docs)]
#![allow(clippy::type_complexity)]

//! # Kalosm Learning
//!
//! This crate is a collection of teachable models for the Kalosm project.
//!
//! Supported models:
//! - [`Classifier`]

mod classifier;
pub use classifier::*;
pub use kalosm_learning_macro::*;