-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/euler-scheduler
- Loading branch information
Showing
12 changed files
with
112 additions
and
1 deletion.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
WIP |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
WIP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Getting Started | ||
|
||
Refiners is a micro framework on top of PyTorch with first class citizen APIs for foundation model adaptation. | ||
|
||
|
||
## Installation | ||
|
||
Refiners requires Python 3.10 or later, its main dependency is PyTorch. | ||
|
||
### with git | ||
|
||
To get the latest version of the code, clone the repository: | ||
|
||
```bash | ||
git clone https://github.com/finegrain-ai/refiners.git | ||
``` | ||
|
||
Then install the package using pip: | ||
|
||
```bash | ||
cd refiners | ||
pip install . | ||
``` | ||
|
||
|
||
### with pip | ||
|
||
Refiners is available on PyPI and can be installed using pip: | ||
|
||
```bash | ||
pip install refiners | ||
``` | ||
|
||
## Run foundational models and adapters | ||
|
||
If you want to understand how to use Refiners with existing foundational models, please refer to the specific [Models](models/index.md) page. | ||
|
||
- [Stable Diffusion](/models/stable_diffusion) | ||
- [Segment Anything](/models/segment_anything) | ||
|
||
## Write new foundational models and adapters | ||
|
||
To understand how to write new adapters or models with Refiners, please have a look at the [Fluxion](fluxion/index.md) documentation. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Foundational Models | ||
|
||
WIP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Latent Diffusion | ||
|
||
WIP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Segment Anything | ||
|
||
WIP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Training Utils | ||
|
||
Very minimalistic training utilities for PyTorch, its main purpose is to provide a simple way to abstract the training loop | ||
and its configuration. It is meant to be used with Refiners, but it can be used with any PyTorch model. | ||
|
||
## Quickstart | ||
|
||
WIP | ||
|
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,52 @@ | ||
site_name: Refiners | ||
|
||
site_decription: A micro framework on top of PyTorch with first class citizen APIs for foundation model adaptation | ||
repo_name: Refiners | ||
repo_url: https://github.com/finegrain-ai/refiners | ||
edit_uri: edit/main/docs/ | ||
copyright: © Lagon Technologies | ||
theme: | ||
favicon: assets/favicon.png | ||
name: material | ||
palette: | ||
primary: deep orange | ||
accent: deep orange | ||
features: | ||
- navigation.tabs | ||
- navigation.sections | ||
- navigation.top | ||
- navigation.tracking | ||
- navigation.expand | ||
- navigation.path | ||
- toc.follow | ||
- toc.integrate | ||
- navigation.tabs.sticky | ||
extra_css: | ||
- stylesheets/extra.css | ||
nav: | ||
- Home: | ||
- index.md | ||
- Getting started: getting_started.md | ||
- Models: | ||
- models/index.md | ||
- models/latent_diffusion.md | ||
- models/segment_anything.md | ||
- Fluxion: | ||
- fluxion/index.md | ||
- fluxion/adapters.md | ||
- Training utils: | ||
- training_utils/index.md | ||
- Contributing: | ||
- contributing/index.md | ||
extra: | ||
social: | ||
- icon: fontawesome/brands/discord | ||
link: https://discord.gg/mCmjNUVV7d | ||
- icon: fontawesome/brands/github | ||
link: https://github.com/finegrain-ai/refiners | ||
- icon: fontawesome/brands/twitter | ||
link: https://twitter.com/finegrain_ai | ||
- icon: fontawesome/brands/linkedin | ||
link: https://www.linkedin.com/company/finegrain-ai/ | ||
markdown_extensions: | ||
- toc: | ||
permalink: true |