From 52ca63bb3956d906612ce513a1bdce3b9463d8d2 Mon Sep 17 00:00:00 2001 From: Ayush Joshi Date: Sat, 23 Dec 2023 18:48:18 +0530 Subject: [PATCH] Updated `CHANGELOG` Signed-off-by: Ayush Joshi --- CHANGELOG.md | 7 +++++++ ai/naive_bayes/__init__.py | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2165692..72fc208 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## ai — 2023-12-23 + +### Added + +- Added `statistic` calculating functions to `ai.stats` module (#20) ([#6c8e592](https://www.github.com/joshiayush/ai/commit/6c8e592)) + + ## ai — 2023-12-09 ### Added diff --git a/ai/naive_bayes/__init__.py b/ai/naive_bayes/__init__.py index 3be14fb..f74191c 100644 --- a/ai/naive_bayes/__init__.py +++ b/ai/naive_bayes/__init__.py @@ -19,7 +19,7 @@ `ai.naive_bayes` implements the following `naive bayes` algorithms: - * `ai.naive_bayes.naive_bayes.GaussianNaiveBayes` + * `ai.naive_bayes.naive_bayes.GaussianNB` """ -from .naive_bayes import GaussianNaiveBayes +from .naive_bayes import GaussianNB