sklears-semi-supervised 0.2.0

Semi-supervised learning algorithms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Few-shot learning methods for semi-supervised learning
//!
//! This module provides few-shot learning algorithms that can learn from very
//! limited labeled examples per class, often combined with unlabeled data.

pub mod maml;
pub mod matching_networks;
pub mod prototypical_networks;
pub mod relation_networks;

pub use maml::*;
pub use matching_networks::*;
pub use prototypical_networks::*;
pub use relation_networks::*;