converge-prism-analytics 2.0.0

Closed-form analytics and inference for Converge agents: feature extraction, inference packs, and fuzzy inference. Training-pipeline concerns live in converge-crucible-models.
Documentation
pub mod anomaly_detection;
pub mod classification;
pub mod descriptive_stats;
pub mod forecasting;
pub mod fuzzy;
pub mod naive_bayes;
pub mod ranking;
pub mod regression;
pub mod segmentation;
pub mod similarity;
pub mod trend_detection;

pub use anomaly_detection::AnomalyDetectionPack;
pub use classification::ClassificationPack;
pub use descriptive_stats::DescriptiveStatsPack;
pub use forecasting::ForecastingPack;
pub use fuzzy::FuzzyInferencePack;
pub use naive_bayes::NaiveBayesPack;
pub use ranking::RankingPack;
pub use regression::RegressionPack;
pub use segmentation::SegmentationPack;
pub use similarity::SimilarityPack;
pub use trend_detection::TrendDetectionPack;