You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/getting-started/advanced.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,4 +10,6 @@ We use Rye to maintain and release Refiners but it conforms to the standard Pyth
10
10
11
11
## Using stable releases from PyPI
12
12
13
-
Although we recommend using our development branch, we do [publish more stable releases to PyPI](https://pypi.org/project/refiners/) and you are welcome to use them in your project. However, note that the format of weights can be different from the current state of the development branch, so you will need the conversion scripts from the corresponding tag in GitHub, for instance [here for v0.2.0](https://github.com/finegrain-ai/refiners/tree/v0.2.0).
13
+
Although we recommend using our development branch, we do publish more stable releases to [PyPI](https://pypi.org/project/refiners/) and you are welcome to use them in your project.
14
+
They are also available directly on the [GitHub releases page](https://github.com/finegrain-ai/refiners/releases).
15
+
However, beware that the format of weights can be different from the current state of the development branch.
Copy file name to clipboardExpand all lines: docs/getting-started/recommended.md
+80-27Lines changed: 80 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,55 +6,100 @@ icon: material/star-outline
6
6
7
7
Refiners is still a young project and development is active, so to use the latest and greatest version of the framework we recommend you use the `main` branch from our development repository.
8
8
9
-
Moreover, we recommend using [Rye](https://rye-up.com) which simplifies several things related to Python package management, so start by following the instructions to install it on your system.
9
+
Moreover, we recommend using [Rye](https://rye.astral.sh/) which simplifies several things related to Python package management, so start by following the instructions to install it on your system.
10
10
11
11
## Installing
12
12
13
13
To try Refiners, clone the GitHub repository and install it with all optional features:
The format of state dicts used by Refiners is custom and we do not redistribute model weights, but we provide conversion tools and working scripts for popular models. For instance, let us convert the autoencoder from Stable Diffusion 1.5:
23
+
The format of state dicts used by Refiners is custom, so to use pretrained models you will need to convert weights.
24
+
We provide conversion tools and pre-converted weights on our [HuggingFace organization](https://huggingface.co/refiners) for popular models.
If you only intend to do inference and no training, you can drop `--features training`.
115
+
If you intend to use Refiners for training, you can install the `training` feature:
71
116
72
-
To convert weights, you can either use a copy of the `refiners` repository as described above or add the `conversion` feature as a development dependency:
0 commit comments