Skip to content

Commit

Permalink
Merge pull request #61 from damian-horna/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
plutasnyy committed Jul 26, 2020
2 parents ab2c622 + 339928a commit cc42a27
Show file tree
Hide file tree
Showing 46 changed files with 276 additions and 50,600 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ doc/samples

examples/cluster/joblib
reuters/
benchmarks/bench_covertype_data/

*.prefs
.pydevproject
Expand Down
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,28 @@ y_pred = clf_tree.predict(X_test)
```

For more examples please refer to https://multi-imbalance.readthedocs.io/en/latest/
## For developers:
multi-imbalance follows sklearn's coding guideline: https://scikit-learn.org/stable/developers/contributing.html

We use pytest as our unit tests framework. To use it, simply run:
```bash
pytest
```

If you would like to check the code coverage:
```bash
coverage run -m pytest
coverage report -m # or coverage html
```

multi-imbalance uses reStructuredText markdown for docstrings. To build the documentation locally run:
```bash
cd docs
make html -B
```
and open `docs/_build/html/index.html`

if you add a new algorithm, we would appreciate if you include references and an example of use in `./examples` or docstrings.

## About
If you use multi-imbalance in a scientific publication, please consider including
Expand Down
Loading

0 comments on commit cc42a27

Please sign in to comment.