Docs: Conceptual section (#392)
Add contribution.mdx by copy/pasting and adapting.
This commit is contained in:
parent
8ef1ee812d
commit
cdb371f07b
|
@ -10,23 +10,282 @@ an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express o
|
||||||
specific language governing permissions and limitations under the License.
|
specific language governing permissions and limitations under the License.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
# How to contribute to Diffusers 🧨
|
||||||
|
|
||||||
|
We ❤️ contributions from the open-source community! Everyone is welcome, and all types of participation –not just code– are valued and appreciated. Answering questions, helping others, reaching out and improving the documentation are all immensely valuable to the community, so don't be afraid and get involved if you're up for it!
|
||||||
|
|
||||||
|
It also helps us if you spread the word: reference the library from blog posts
|
||||||
|
on the awesome projects it made possible, shout out on Twitter every time it has
|
||||||
|
helped you, or simply star the repo to say "thank you".
|
||||||
|
|
||||||
|
We encourage everyone to start by saying 👋 in our public Discord channel. We discuss the hottest trends about diffusion models, ask questions, show-off personal projects, help each other with contributions, or just hang out ☕. <a href="https://discord.gg/G7tWnz98XR"><img alt="Join us on Discord" src="https://img.shields.io/discord/823813159592001537?color=5865F2&logo=discord&logoColor=white"></a>
|
||||||
|
|
||||||
|
Whichever way you choose to contribute, we strive to be part of an open, welcoming and kind community. Please, read our [code of conduct](https://github.com/huggingface/diffusers/blob/main/CODE_OF_CONDUCT.md) and be mindful to respect it during your interactions.
|
||||||
|
|
||||||
|
|
||||||
# Quicktour
|
## Overview
|
||||||
|
|
||||||
Start using Diffusers🧨 quickly!
|
You can contribute in so many ways! Just to name a few:
|
||||||
To start, use the [`DiffusionPipeline`] for quick inference and sample generations!
|
|
||||||
|
|
||||||
```
|
* Fixing outstanding issues with the existing code.
|
||||||
pip install diffusers
|
* Implementing [new diffusion pipelines](https://github.com/huggingface/diffusers/tree/main/src/diffusers/pipelines#contribution), [new schedulers](https://github.com/huggingface/diffusers/tree/main/src/diffusers/schedulers) or [new models](https://github.com/huggingface/diffusers/tree/main/src/diffusers/models).
|
||||||
|
* [Contributing to the examples](https://github.com/huggingface/diffusers/tree/main/examples).
|
||||||
|
* [Contributing to the documentation](https://github.com/huggingface/diffusers/tree/main/docs/source).
|
||||||
|
* Submitting issues related to bugs or desired new features.
|
||||||
|
|
||||||
|
*All are equally valuable to the community.*
|
||||||
|
|
||||||
|
### Browse github issues for suggestions
|
||||||
|
|
||||||
|
If you need inspiration, you can look out for [issues](https://github.com/huggingface/diffusers/issues) you'd like to tackle to contribute to the library. There are a few filters that can be helpful:
|
||||||
|
|
||||||
|
- See [Good first issues](https://github.com/huggingface/diffusers/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22) for general opportunities to contribute and getting started with the codebase.
|
||||||
|
- See [New pipeline/model](https://github.com/huggingface/diffusers/issues?q=is%3Aopen+is%3Aissue+label%3A%22New+pipeline%2Fmodel%22) to contribute exciting new diffusion models or diffusion pipelines.
|
||||||
|
- See [New scheduler](https://github.com/huggingface/diffusers/issues?q=is%3Aopen+is%3Aissue+label%3A%22New+scheduler%22) to work on new samplers and schedulers.
|
||||||
|
|
||||||
|
|
||||||
|
## Submitting a new issue or feature request
|
||||||
|
|
||||||
|
Do your best to follow these guidelines when submitting an issue or a feature
|
||||||
|
request. It will make it easier for us to come back to you quickly and with good
|
||||||
|
feedback.
|
||||||
|
|
||||||
|
### Did you find a bug?
|
||||||
|
|
||||||
|
The 🧨 Diffusers library is robust and reliable thanks to the users who notify us of
|
||||||
|
the problems they encounter. So thank you for reporting an issue.
|
||||||
|
|
||||||
|
First, we would really appreciate it if you could **make sure the bug was not
|
||||||
|
already reported** (use the search bar on Github under Issues).
|
||||||
|
|
||||||
|
### Do you want to implement a new diffusion pipeline / diffusion model?
|
||||||
|
|
||||||
|
Awesome! Please provide the following information:
|
||||||
|
|
||||||
|
* Short description of the diffusion pipeline and link to the paper;
|
||||||
|
* Link to the implementation if it is open-source;
|
||||||
|
* Link to the model weights if they are available.
|
||||||
|
|
||||||
|
If you are willing to contribute the model yourself, let us know so we can best
|
||||||
|
guide you.
|
||||||
|
|
||||||
|
### Do you want a new feature (that is not a model)?
|
||||||
|
|
||||||
|
A world-class feature request addresses the following points:
|
||||||
|
|
||||||
|
1. Motivation first:
|
||||||
|
* Is it related to a problem/frustration with the library? If so, please explain
|
||||||
|
why. Providing a code snippet that demonstrates the problem is best.
|
||||||
|
* Is it related to something you would need for a project? We'd love to hear
|
||||||
|
about it!
|
||||||
|
* Is it something you worked on and think could benefit the community?
|
||||||
|
Awesome! Tell us what problem it solved for you.
|
||||||
|
2. Write a *full paragraph* describing the feature;
|
||||||
|
3. Provide a **code snippet** that demonstrates its future use;
|
||||||
|
4. In case this is related to a paper, please attach a link;
|
||||||
|
5. Attach any additional information (drawings, screenshots, etc.) you think may help.
|
||||||
|
|
||||||
|
If your issue is well written we're already 80% of the way there by the time you
|
||||||
|
post it.
|
||||||
|
|
||||||
|
## Start contributing! (Pull Requests)
|
||||||
|
|
||||||
|
Before writing code, we strongly advise you to search through the existing PRs or
|
||||||
|
issues to make sure that nobody is already working on the same thing. If you are
|
||||||
|
unsure, it is always a good idea to open an issue to get some feedback.
|
||||||
|
|
||||||
|
You will need basic `git` proficiency to be able to contribute to
|
||||||
|
🧨 Diffusers. `git` is not the easiest tool to use but it has the greatest
|
||||||
|
manual. Type `git --help` in a shell and enjoy. If you prefer books, [Pro
|
||||||
|
Git](https://git-scm.com/book/en/v2) is a very good reference.
|
||||||
|
|
||||||
|
Follow these steps to start contributing ([supported Python versions](https://github.com/huggingface/diffusers/blob/main/setup.py#L212)):
|
||||||
|
|
||||||
|
1. Fork the [repository](https://github.com/huggingface/diffusers) by
|
||||||
|
clicking on the 'Fork' button on the repository's page. This creates a copy of the code
|
||||||
|
under your GitHub user account.
|
||||||
|
|
||||||
|
2. Clone your fork to your local disk, and add the base repository as a remote:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ git clone git@github.com:<your Github handle>/diffusers.git
|
||||||
|
$ cd diffusers
|
||||||
|
$ git remote add upstream https://github.com/huggingface/diffusers.git
|
||||||
|
```
|
||||||
|
|
||||||
|
3. Create a new branch to hold your development changes:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ git checkout -b a-descriptive-name-for-my-changes
|
||||||
|
```
|
||||||
|
|
||||||
|
**Do not** work on the `main` branch.
|
||||||
|
|
||||||
|
4. Set up a development environment by running the following command in a virtual environment:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ pip install -e ".[dev]"
|
||||||
|
```
|
||||||
|
|
||||||
|
(If diffusers was already installed in the virtual environment, remove
|
||||||
|
it with `pip uninstall diffusers` before reinstalling it in editable
|
||||||
|
mode with the `-e` flag.)
|
||||||
|
|
||||||
|
To run the full test suite, you might need the additional dependency on `transformers` and `datasets` which requires a separate source
|
||||||
|
install:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ git clone https://github.com/huggingface/transformers
|
||||||
|
$ cd transformers
|
||||||
|
$ pip install -e .
|
||||||
|
```
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ git clone https://github.com/huggingface/datasets
|
||||||
|
$ cd datasets
|
||||||
|
$ pip install -e .
|
||||||
|
```
|
||||||
|
|
||||||
|
If you have already cloned that repo, you might need to `git pull` to get the most recent changes in the `datasets`
|
||||||
|
library.
|
||||||
|
|
||||||
|
5. Develop the features on your branch.
|
||||||
|
|
||||||
|
As you work on the features, you should make sure that the test suite
|
||||||
|
passes. You should run the tests impacted by your changes like this:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ pytest tests/<TEST_TO_RUN>.py
|
||||||
|
```
|
||||||
|
|
||||||
|
You can also run the full suite with the following command, but it takes
|
||||||
|
a beefy machine to produce a result in a decent amount of time now that
|
||||||
|
Diffusers has grown a lot. Here is the command for it:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ make test
|
||||||
|
```
|
||||||
|
|
||||||
|
For more information about tests, check out the
|
||||||
|
[dedicated documentation](https://huggingface.co/docs/diffusers/testing)
|
||||||
|
|
||||||
|
🧨 Diffusers relies on `black` and `isort` to format its source code
|
||||||
|
consistently. After you make changes, apply automatic style corrections and code verifications
|
||||||
|
that can't be automated in one go with:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ make style
|
||||||
|
```
|
||||||
|
|
||||||
|
🧨 Diffusers also uses `flake8` and a few custom scripts to check for coding mistakes. Quality
|
||||||
|
control runs in CI, however you can also run the same checks with:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ make quality
|
||||||
|
```
|
||||||
|
|
||||||
|
Once you're happy with your changes, add changed files using `git add` and
|
||||||
|
make a commit with `git commit` to record your changes locally:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ git add modified_file.py
|
||||||
|
$ git commit
|
||||||
|
```
|
||||||
|
|
||||||
|
It is a good idea to sync your copy of the code with the original
|
||||||
|
repository regularly. This way you can quickly account for changes:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ git fetch upstream
|
||||||
|
$ git rebase upstream/main
|
||||||
|
```
|
||||||
|
|
||||||
|
Push the changes to your account using:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ git push -u origin a-descriptive-name-for-my-changes
|
||||||
|
```
|
||||||
|
|
||||||
|
6. Once you are satisfied (**and the checklist below is happy too**), go to the
|
||||||
|
webpage of your fork on GitHub. Click on 'Pull request' to send your changes
|
||||||
|
to the project maintainers for review.
|
||||||
|
|
||||||
|
7. It's ok if maintainers ask you for changes. It happens to core contributors
|
||||||
|
too! So everyone can see the changes in the Pull request, work in your local
|
||||||
|
branch and push the changes to your fork. They will automatically appear in
|
||||||
|
the pull request.
|
||||||
|
|
||||||
|
|
||||||
|
### Checklist
|
||||||
|
|
||||||
|
1. The title of your pull request should be a summary of its contribution;
|
||||||
|
2. If your pull request addresses an issue, please mention the issue number in
|
||||||
|
the pull request description to make sure they are linked (and people
|
||||||
|
consulting the issue know you are working on it);
|
||||||
|
3. To indicate a work in progress please prefix the title with `[WIP]`. These
|
||||||
|
are useful to avoid duplicated work, and to differentiate it from PRs ready
|
||||||
|
to be merged;
|
||||||
|
4. Make sure existing tests pass;
|
||||||
|
5. Add high-coverage tests. No quality testing = no merge.
|
||||||
|
- If you are adding new `@slow` tests, make sure they pass using
|
||||||
|
`RUN_SLOW=1 python -m pytest tests/test_my_new_model.py`.
|
||||||
|
- If you are adding a new tokenizer, write tests, and make sure
|
||||||
|
`RUN_SLOW=1 python -m pytest tests/test_tokenization_{your_model_name}.py` passes.
|
||||||
|
CircleCI does not run the slow tests, but github actions does every night!
|
||||||
|
6. All public methods must have informative docstrings that work nicely with sphinx. See `[pipeline_latent_diffusion.py](https://github.com/huggingface/diffusers/blob/main/src/diffusers/pipelines/latent_diffusion/pipeline_latent_diffusion.py)` for an example.
|
||||||
|
7. Due to the rapidly growing repository, it is important to make sure that no files that would significantly weigh down the repository are added. This includes images, videos and other non-text files. We prefer to leverage a hf.co hosted `dataset` like
|
||||||
|
the ones hosted on [`hf-internal-testing`](https://huggingface.co/hf-internal-testing) in which to place these files and reference or [huggingface/documentation-images](https://huggingface.co/datasets/huggingface/documentation-images).
|
||||||
|
If an external contribution, feel free to add the images to your PR and ask a Hugging Face member to migrate your images
|
||||||
|
to this dataset.
|
||||||
|
|
||||||
|
### Tests
|
||||||
|
|
||||||
|
An extensive test suite is included to test the library behavior and several examples. Library tests can be found in
|
||||||
|
the [tests folder](https://github.com/huggingface/diffusers/tree/main/tests).
|
||||||
|
|
||||||
|
We like `pytest` and `pytest-xdist` because it's faster. From the root of the
|
||||||
|
repository, here's how to run tests with `pytest` for the library:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ python -m pytest -n auto --dist=loadfile -s -v ./tests/
|
||||||
```
|
```
|
||||||
|
|
||||||
## Main classes
|
In fact, that's how `make test` is implemented!
|
||||||
|
|
||||||
### Models
|
You can specify a smaller set of tests in order to test only the feature
|
||||||
|
you're working on.
|
||||||
|
|
||||||
### Schedulers
|
By default, slow tests are skipped. Set the `RUN_SLOW` environment variable to
|
||||||
|
`yes` to run them. This will download many gigabytes of models — make sure you
|
||||||
|
have enough disk space and a good Internet connection, or a lot of patience!
|
||||||
|
|
||||||
### Pipeliens
|
```bash
|
||||||
|
$ RUN_SLOW=yes python -m pytest -n auto --dist=loadfile -s -v ./tests/
|
||||||
|
```
|
||||||
|
|
||||||
|
`unittest` is fully supported, here's how to run tests with it:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ python -m unittest discover -s tests -t . -v
|
||||||
|
$ python -m unittest discover -s examples -t examples -v
|
||||||
|
```
|
||||||
|
|
||||||
|
### Syncing forked main with upstream (HuggingFace) main
|
||||||
|
|
||||||
|
To avoid pinging the upstream repository which adds reference notes to each upstream PR and sends unnecessary notifications to the developers involved in these PRs,
|
||||||
|
when syncing the main branch of a forked repository, please, follow these steps:
|
||||||
|
1. When possible, avoid syncing with the upstream using a branch and PR on the forked repository. Instead merge directly into the forked main.
|
||||||
|
2. If a PR is absolutely necessary, use the following steps after checking out your branch:
|
||||||
|
```
|
||||||
|
$ git checkout -b your-branch-for-syncing
|
||||||
|
$ git pull --squash --no-commit upstream main
|
||||||
|
$ git commit -m '<your message without GitHub references>'
|
||||||
|
$ git push --set-upstream origin your-branch-for-syncing
|
||||||
|
```
|
||||||
|
|
||||||
|
### Style guide
|
||||||
|
|
||||||
|
For documentation strings, 🧨 Diffusers follows the [google style](https://google.github.io/styleguide/pyguide.html).
|
||||||
|
|
||||||
|
|
||||||
|
**This guide was heavily inspired by the awesome [scikit-learn guide to contributing](https://github.com/scikit-learn/scikit-learn/blob/main/CONTRIBUTING.md).**
|
||||||
|
|
Loading…
Reference in New Issue