From 38d25b3c41453fc2d315fca11d8945f713485260 Mon Sep 17 00:00:00 2001 From: pycaret <58118658+pycaret@users.noreply.github.com> Date: Wed, 22 Jan 2020 20:38:03 -0500 Subject: [PATCH] Add files via upload --- README.md | 6 +++--- requirements.txt | 4 +++- setup.py | 4 ++-- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 2f2ab35..38a5ea1 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,10 @@ PyCaret is end-to-end open source machine learning library for python programming language. Its primary objective is to reduce the cycle time of hypothesis to insights by providing an easy to use high level unified API. PyCaret's vision is to become defacto standard for teaching machine learning and data science. Our strength is in our easy to use unified interface for both supervised and unsupervised learning. It saves time and effort that citizen data scientists, students and researchers spent on coding or learning to code using different interfaces, so that now they can focus on business problem. ## Current Release -The current release is beta 0.0.18 (as of 17/01/2020). A full release is targetted in the first week of February 2020. +The current release is beta 0.0.20 (as of 20/01/2020). A full release is targetted in the first week of February 2020. ## Features Currently Available -As per beta 0.0.18 following modules are generally available: +As per beta 0.0.20 following modules are generally available: * pycaret.datasets
* pycaret.classification (binary and multiclass)
* pycaret.regression
@@ -30,7 +30,7 @@ pip install pycaret ``` ## Quick Start -As of beta 0.0.18 classification, regression, nlp, arules, anomaly and clustering modules are available. +As of beta 0.0.20 classification, regression, nlp, arules, anomaly and clustering modules are available. ### Classification / Regression diff --git a/requirements.txt b/requirements.txt index c260676..d3d3b67 100644 --- a/requirements.txt +++ b/requirements.txt @@ -24,4 +24,6 @@ pyod catboost==0.20.2 pandas-profiling==2.3.0 kmodes==0.10.1 -spherecluster==0.1.7 \ No newline at end of file +datefinder==0.7.0 +datetime +DateTime==4.3 \ No newline at end of file diff --git a/setup.py b/setup.py index 0a585ea..0ca6850 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ def readme(): setup( name="pycaret", - version="0.0.18", + version="0.0.20", description="A Python package for supervised and unsupervised machine learning.", long_description=readme(), long_description_content_type="text/markdown", @@ -28,5 +28,5 @@ setup( "wordcloud", "textblob", "plotly==4.4.1", "cufflinks==0.17.0", "umap-learn", "lightgbm==2.3.1", "pyLDAvis", "gensim", "spacy", "nltk", "mlxtend", "pyod", "catboost==0.20.2", "pandas-profiling==2.3.0", "kmodes==0.10.1", - "spherecluster==0.1.7"] + "datefinder==0.7.0", "datetime", "DateTime==4.3"] ) \ No newline at end of file -- GitLab