Skip to content

Latest commit

 

History

History
56 lines (40 loc) · 2.38 KB

CONTRIBUTING.md

File metadata and controls

56 lines (40 loc) · 2.38 KB

Contributing to examples

We want to make contributing to this project as easy and transparent as possible.

Pull Requests

We actively welcome your pull requests.

If you are new , we encourage you to take a look at issues tagged with good first issue

For new examples

  1. Create a Github issue proposing a new example and make sure it's substantially different from an existing one.

  2. Fork the repo and create your branch from main.

  3. If you have added code that should be tested, add tests to run_python_examples.sh.

  4. Create a README.md.

  5. Add a card with brief description of your example and link to the repo to docs/source/index.rst file and build the docs by running:

    cd docs
    virtualenv venv
    source venv/bin/activate
    pip install -r requirements.txt
    make html
    

    When done working with virtualenv, run deactivate.

  6. Verify that there are no issues in your doc build. You can check the preview locally by installing sphinx-serve then running sphinx-serve -b build.

  7. Ensure your test passes locally.

  8. If you haven't already, complete the Contributor License Agreement("CLA").

  9. Address any feedback in code review promptly.

For bug fixes

  1. Fork the repo and create your branch from main.
  2. Make sure you have a GPU-enabled machine, either locally or in the cloud. `g4dn.4xlarge' is a good starting point on AWS.
  3. Make your code change.
  4. First, install all dependencies with ./run_python_examples.sh "install_deps".
  5. Then, make sure that ./run_python_examples.sh passes locally by running the script end to end.
  6. If you haven't already, complete the Contributor License Agreement ("CLA").
  7. Address any feedback in code review promptly.

Contributor License Agreement ("CLA")

To accept your pull request, we need to submit a CLA. You only need to do this once to work on any of Facebook's open source projects.

Complete your CLA here: https://code.facebook.com/cla

Issues

We use Github issues to track public bugs. Please ensure your description is clear and has sufficient instructions to be able to reproduce the issue.

License

By contributing to examples, you agree that your contributions will be licensed under the LICENSE file in the root direactory of this source tree.