Skip to content

Commit 3188357

Browse files
updated docs from rst to markdown
1 parent 4cb7b29 commit 3188357

File tree

8 files changed

+106
-138
lines changed

8 files changed

+106
-138
lines changed

AUTHORS.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: Credits
3+
---
4+
5+
# Development Lead
6+
7+
- Shankar Rao Pandala \<<[email protected]>\>
8+
9+
# Contributors
10+
11+
- Breno Batista da Silva \<<[email protected]>\>

AUTHORS.rst

Lines changed: 0 additions & 13 deletions
This file was deleted.

HISTORY.md

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
---
2+
title: History
3+
---
4+
5+
# 0.2.11 (2022-02-06)
6+
7+
- Updated the default version to 3.9
8+
9+
# 0.2.10 (2022-02-06)
10+
11+
- Fixed issue with older version of Scikit-learn
12+
- Reduced dependencies sctrictly to few
13+
14+
# 0.2.8 (2021-02-06)
15+
16+
- Removed StackingRegressor and CheckingClassifier.
17+
- Added provided_models method.
18+
- Added adjusted r-squared metric.
19+
- Added cardinality check to split categorical columns into low and
20+
high cardinality features.
21+
- Added different transformation pipeline for low and high cardinality
22+
features.
23+
- Included all number dtypes as inputs.
24+
- Fixed dependencies.
25+
- Improved documentation.
26+
27+
# 0.2.7 (2020-07-09)
28+
29+
- Removed catboost regressor and classifier
30+
31+
# 0.2.6 (2020-01-22)
32+
33+
- Added xgboost, lightgbm, catboost regressors and classifiers
34+
35+
# 0.2.5 (2020-01-20)
36+
37+
- Removed troublesome regressors from list of CLASSIFIERS
38+
39+
# 0.2.4 (2020-01-19)
40+
41+
- Removed troublesome regressors from list of REGRESSORS
42+
- Added feature to input custom metric for evaluation
43+
- Added feature to return predictions as dataframe
44+
- Added model training time for each model
45+
46+
# 0.2.3 (2019-11-22)
47+
48+
- Removed TheilSenRegressor from list of REGRESSORS
49+
- Removed GaussianProcessClassifier from list of CLASSIFIERS
50+
51+
# 0.2.2 (2019-11-18)
52+
53+
- Fixed automatic deployment issue.
54+
55+
# 0.2.1 (2019-11-18)
56+
57+
- Release of Regression feature.
58+
59+
# 0.2.0 (2019-11-17)
60+
61+
- Release of Classification feature.
62+
63+
# 0.1.0 (2019-11-16)
64+
65+
- First release on PyPI.

HISTORY.rst

Lines changed: 0 additions & 77 deletions
This file was deleted.

README.rst renamed to README.md

Lines changed: 19 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,36 @@
1-
============
2-
Lazy Predict
3-
============
1+
# Lazy Predict
42

3+
[![image](https://img.shields.io/pypi/v/lazypredict.svg)](https://pypi.python.org/pypi/lazypredict)
54

6-
.. image:: https://img.shields.io/pypi/v/lazypredict.svg
7-
:target: https://pypi.python.org/pypi/lazypredict
5+
[![image](https://img.shields.io/travis/shankarpandala/lazypredict.svg)](https://travis-ci.org/shankarpandala/lazypredict)
86

9-
.. image:: https://img.shields.io/travis/shankarpandala/lazypredict.svg
10-
:target: https://travis-ci.org/shankarpandala/lazypredict
7+
[![Documentation Status](https://readthedocs.org/projects/lazypredict/badge/?version=latest)](https://lazypredict.readthedocs.io/en/latest/?badge=latest)
118

12-
.. image:: https://readthedocs.org/projects/lazypredict/badge/?version=latest
13-
:target: https://lazypredict.readthedocs.io/en/latest/?badge=latest
14-
:alt: Documentation Status
9+
[![Downloads](https://pepy.tech/badge/lazypredict)](https://pepy.tech/project/lazypredict)
1510

16-
.. image:: https://pepy.tech/badge/lazypredict
17-
:target: https://pepy.tech/project/lazypredict
18-
:alt: Downloads
11+
[![CodeFactor](https://www.codefactor.io/repository/github/shankarpandala/lazypredict/badge)](https://www.codefactor.io/repository/github/shankarpandala/lazypredict)
1912

20-
.. image:: https://www.codefactor.io/repository/github/shankarpandala/lazypredict/badge
21-
:target: https://www.codefactor.io/repository/github/shankarpandala/lazypredict
22-
:alt: CodeFactor
13+
Lazy Predict helps build a lot of basic models without much code and
14+
helps understand which models works better without any parameter tuning.
2315

24-
Lazy Predict helps build a lot of basic models without much code and helps understand which models works better without any parameter tuning.
16+
- Free software: MIT license
17+
- Documentation: <https://lazypredict.readthedocs.io>.
2518

19+
# Installation
2620

27-
* Free software: MIT license
28-
* Documentation: https://lazypredict.readthedocs.io.
29-
30-
============
31-
Installation
32-
============
33-
34-
To install Lazy Predict::
21+
To install Lazy Predict:
3522

3623
pip install lazypredict
3724

38-
=====
39-
Usage
40-
=====
25+
# Usage
4126

42-
To use Lazy Predict in a project::
27+
To use Lazy Predict in a project:
4328

4429
import lazypredict
4530

46-
==============
47-
Classification
48-
==============
31+
# Classification
4932

50-
Example ::
33+
Example :
5134

5235
from lazypredict.Supervised import LazyClassifier
5336
from sklearn.datasets import load_breast_cancer
@@ -97,12 +80,10 @@ Example ::
9780
| ExtraTreeClassifier | 0.922807 | 0.912168 | 0.912168 | 0.922462 | 0.0109999 |
9881
| CheckingClassifier | 0.361404 | 0.5 | 0.5 | 0.191879 | 0.0170043 |
9982
| DummyClassifier | 0.512281 | 0.489598 | 0.489598 | 0.518924 | 0.0119965 |
100-
101-
==========
102-
Regression
103-
==========
10483

105-
Example ::
84+
# Regression
85+
86+
Example :
10687

10788
from lazypredict.Supervised import LazyRegressor
10889
from sklearn import datasets
@@ -170,8 +151,3 @@ Example ::
170151
| KernelRidge | -11.50 | -8.25 | 22.74 | 0.01 |
171152

172153

173-
.. warning::
174-
Regression and Classification are replaced with LazyRegressor and LazyClassifier.
175-
Regression and Classification classes will be removed in next release
176-
177-

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@
4343
# You can specify multiple suffix as a list of string:
4444
#
4545
# source_suffix = ['.rst', '.md']
46-
source_suffix = ".rst"
46+
source_suffix = ".md"
4747

4848
# The master toctree document.
4949
master_doc = "index"
5050

5151
# General information about the project.
5252
project = u"Lazy Predict"
53-
copyright = u"2020, Shankar Rao Pandala"
53+
copyright = u"2022, Shankar Rao Pandala"
5454
author = u"Shankar Rao Pandala"
5555

5656
# The version info for the project you're documenting, acts as replacement

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55

66
from setuptools import setup, find_packages
77

8-
with open("README.rst") as readme_file:
8+
with open("README.md") as readme_file:
99
readme = readme_file.read()
1010

11-
with open("HISTORY.rst") as history_file:
11+
with open("HISTORY.md") as history_file:
1212
history = history_file.read()
1313

1414
requirements = [requirement for requirement in open('requirements.txt')]
@@ -30,7 +30,13 @@
3030
"Intended Audience :: Developers",
3131
"License :: OSI Approved :: MIT License",
3232
"Natural Language :: English",
33+
'Programming Language :: Python :: 3',
34+
'Programming Language :: Python :: 3.5',
35+
'Programming Language :: Python :: 3.6',
36+
'Programming Language :: Python :: 3.7',
37+
'Programming Language :: Python :: 3.8',
3338
"Programming Language :: Python :: 3.9",
39+
"Programming Language :: Python :: 3.10",
3440
],
3541
description="Lazy Predict help build a lot of basic models without much code and helps understand which models works better without any parameter tuning",
3642
long_description_content_type="text/markdown",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36, py37, py38, flake8
2+
envlist = py36, py37, py38, py39 flake8
33

44
[travis]
55
python =

0 commit comments

Comments
 (0)