Skip to content

Commit d06e3e5

Browse files
committed
Merge branch 'dev' of https://github.com/maks-sh/scikit-uplift into dev
2 parents 8783ef8 + cee2454 commit d06e3e5

23 files changed

+690
-26
lines changed

.github/CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ So, please make a pull request to the ``dev`` branch.
1919
1. Fork the [project repository](https://github.com/maks-sh/scikit-uplift).
2020
2. Clone your fork of the scikit-uplift repo from your GitHub account to your local disk:
2121
``` bash
22-
$ git clone git@github.com:YourLogin/scikit-uplift.git
23-
$ cd scikit-learn
22+
$ git clone https://github.com/YourName/scikit-uplift
23+
$ cd scikit-uplift
2424
```
2525
3. Add the upstream remote. This saves a reference to the main scikit-uplift repository, which you can use to keep your repository synchronized with the latest changes:
2626
``` bash
@@ -36,7 +36,7 @@ So, please make a pull request to the ``dev`` branch.
3636
$ git checkout -b feature/my_new_feature
3737
```
3838
and start making changes. Always use a feature branch. It’s a good practice.
39-
6. Develop the feature on your feature branch on your computer, using Git to do the version control. When you’re done editing, add changed files using ``git add`` and then ``git commit``.
39+
6. Develop the feature on your feature branch on your computer, using Git to do the version control. When you’re done editing, add changed files using ``git add .`` and then ``git commit``
4040
Then push the changes to your GitHub account with:
4141

4242
``` bash
@@ -55,4 +55,4 @@ We follow the PEP8 style guide for Python. Docstrings follow google style.
5555
* Use the present tense ("Add feature" not "Added feature")
5656
* Use the imperative mood ("Move cursor to..." not "Moves cursor to...")
5757
* Limit the first line to 72 characters or less
58-
* Reference issues and pull requests liberally after the first line
58+
* Reference issues and pull requests liberally after the first line
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*****************************************
2+
`sklift.datasets <./>`_.clear_data_dir
3+
*****************************************
4+
5+
.. autofunction:: sklift.datasets.datasets.clear_data_dir
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*****************************************
2+
`sklift.datasets <./>`_.create_data_dir
3+
*****************************************
4+
5+
.. autofunction:: sklift.datasets.datasets.create_data_dir

docs/api/datasets/download.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*****************************************
2+
`sklift.datasets <./>`_.download
3+
*****************************************
4+
5+
.. autofunction:: sklift.datasets.datasets.download

docs/api/datasets/fetch_criteo.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
***********************************
2+
`sklift.datasets <./>`_.fetch_criteo
3+
***********************************
4+
5+
.. autofunction:: sklift.datasets.datasets.fetch_criteo
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
***********************************
2+
`sklift.datasets <./>`_.fetch_hillstorm
3+
***********************************
4+
5+
.. autofunction:: sklift.datasets.datasets.fetch_hillstorm

docs/api/datasets/fetch_lenta.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
***********************************
2+
`sklift.datasets <./>`_.fetch_lenta
3+
***********************************
4+
5+
.. autofunction:: sklift.datasets.datasets.fetch_lenta
6+
.. include:: ../../../sklift/datasets/descr/lenta.rst

docs/api/datasets/fetch_x5.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
***********************************
2+
`sklift.datasets <./>`_.fetch_x5
3+
***********************************
4+
5+
.. autofunction:: sklift.datasets.datasets.fetch_x5

docs/api/datasets/get_data.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*****************************************
2+
`sklift.datasets <./>`_.get_data
3+
*****************************************
4+
5+
.. autofunction:: sklift.datasets.datasets.get_data

docs/api/datasets/get_data_dir.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*****************************************
2+
`sklift.datasets <./>`_.get_data_dir
3+
*****************************************
4+
5+
.. autofunction:: sklift.datasets.datasets.get_data_dir

0 commit comments

Comments
 (0)