Skip to content

Commit

Permalink
Contributing guide
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigo-arenas committed May 31, 2021
1 parent ef21bc1 commit c436892
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 6 deletions.
30 changes: 30 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Contributing

Sklearn-genetic-opt is an open-source project and contributions of all kinds
are welcome.

You can contribute with documentation, examples, reviewing pull requests, code,
helping answer questions in issues, creating visualizations, maintaining project
infrastructure, and writing user stories.

Code contributions are always welcome, from simple bug fixes, to new features.
Also consider contributing to the documentation, is the easiest way to get started

Contributions should follow these guidelines:

* Fork this project, make the changes you expect to merge and make a pull request
* If the working you are making is related to some issue, mention in the comments
you are working on it
* If you are working in a new feature, or have an idea, consider first opening an issue
so people know in what you are working on and possible give some guidelines
* all changes by pull request (PR)
* a PR solves one problem (do not mix problems together in one PR) with the
minimal set of changes
* describe why you are proposing the changes you are proposing
* Please run black on top of the package to keep the formatting style
```bash
black .
```
* no merging if travis is red.

Thank you for being part of this project!
14 changes: 8 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,7 @@ Example
scoring='accuracy',
population_size=10,
generations=35,
tournament_size=3,
elitism=True,
crossover_probability=0.8,
mutation_probability=0.1,
param_grid=param_grid,
criteria='max',
algorithm='eaMuPlusLambda',
n_jobs=-1,
verbose=True,
keep_top_k=4)
Expand Down Expand Up @@ -125,3 +119,11 @@ Log controlled by verbosity

.. image:: https://github.com/rodrigo-arenas/Sklearn-genetic-opt/blob/0.4.x/demo/images/log.JPG?raw=True


Contributing
------------

Contributions are more than welcome!
There are lots of opportunities on the on gong project so please get in touch if you would like to help out.
Also check the `Contribution guide <CONTRIBUTING.md>`_

0 comments on commit c436892

Please sign in to comment.