sklears-python 0.1.1

Python bindings for sklears machine learning library using PyO3
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Python bindings for evaluation metrics
//!
//! This module provides Python bindings for sklears metrics,
//! offering scikit-learn compatible evaluation functions.
//! Metrics are organized by type (regression, classification)
//! for better code organization.

// Common functionality shared across metrics
mod common;
pub use common::*;

// Metric implementations by type
pub mod classification;
pub mod regression;

// Re-export all metric functions for PyO3
pub use classification::*;
pub use regression::*;