Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
pycaret authored Jan 13, 2020
1 parent 31dbea9 commit f60ce31
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
pycaret is the free software and open source machine learning library for python programming language. It is built around several popular machine learning libraries in python. 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 machine learning problems. 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 and value creation.

## Current Release
The current release is beta 0.0.13 (as of 10/01/2020). A full release is targetted to be available by 31/01/2020.
The current release is beta 0.0.14 (as of 13/01/2020). A full release is targetted to be available by 31/01/2020.

## Features Currently Available
As per beta 0.0.13 following modules are generally available:
As per beta 0.0.14 following modules are generally available:
* pycaret.datasets <br/>
* pycaret.classification (binary and multiclass) <br/>
* pycaret.regression <br/>
Expand All @@ -15,7 +15,7 @@ As per beta 0.0.13 following modules are generally available:
* pycaret.clustering <br/>

## Future Release
Following features are targetted for future release (beta 0.0.14 & beta 0.0.15):
Following features are targetted for future release (beta 0.0.15 & beta 0.0.16):
* pycaret.preprocess <br/>

## Installation
Expand All @@ -31,7 +31,7 @@ pip install pycaret
```

## Quick Start
As of beta 0.0.13 classification, regression, nlp, arules, anomaly and clustering modules are available. Future release will be include Preprocessing, Time Series and Recommender System.
As of beta 0.0.14 classification, regression, nlp, arules, anomaly and clustering modules are available. Future release will be include Preprocessing, Time Series and Recommender System.

### Classification / Regression

Expand Down Expand Up @@ -208,7 +208,8 @@ Contributions are most welcome. To make contribution please reach out moez.ali@q

## License

Copyright 2019 pycaret
Copyright 2020 PyCaret
Copyright 2020 Moez Ali

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
6 changes: 4 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ lightgbm==2.3.1
plotly==4.4.1
wordcloud
textblob
cufflinks
cufflinks==0.0.17
umap-learn
pyLDAvis
gensim
Expand All @@ -22,4 +22,6 @@ nltk
mlxtend
pyod
catboost==0.20.2
pandas-profiling==2.3.0
pandas-profiling==2.3.0
kmodes==0.10.1
spherecluster==0.1.7
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def readme():

setup(
name="pycaret",
version="0.0.13",
version="0.0.14",
description="A Python package for supervised and unsupervised machine learning.",
long_description=readme(),
long_description_content_type="text/markdown",
Expand All @@ -25,7 +25,8 @@ def readme():
include_package_data=True,
install_requires=["pandas", "numpy", "seaborn", "matplotlib", "IPython", "joblib",
"scikit-learn", "shap", "ipywidgets", "yellowbrick", "xgboost==0.90",
"wordcloud", "textblob", "plotly==4.4.1", "cufflinks", "umap-learn",
"wordcloud", "textblob", "plotly==4.4.1", "cufflinks==0.0.17", "umap-learn",
"lightgbm==2.3.1", "pyLDAvis", "gensim", "spacy", "nltk", "mlxtend",
"pyod", "catboost==0.20.2", "pandas-profiling==2.3.0"]
"pyod", "catboost==0.20.2", "pandas-profiling==2.3.0", "kmodes==0.10.1",
"spherecluster==0.1.7"]
)

0 comments on commit f60ce31

Please sign in to comment.