-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add Refiners theme and basic nav to documentation
- Loading branch information
1 parent
60981b7
commit 583ab06
Showing
11 changed files
with
95 additions
and
2 deletions.
There are no files selected for viewing
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 @@ | ||
# Contributing |
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 @@ | ||
# Fluxion |
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. |
File renamed without changes.
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 @@ | ||
# Foundational Models |
Empty file.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
# Training Utils |
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,50 @@ | ||
site_name: Refiners | ||
|
||
site_name: "Refiners Documentation" | ||
theme: | ||
favicon: assets/dropy_logo.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: | ||
- home/index.md | ||
- home/adapters.md | ||
- Getting started: getting_started.md | ||
- Models: | ||
- models/index.md | ||
- models/stable_diffusion.md | ||
- models/segment_anything.md | ||
- Fluxion: | ||
- fluxion/index.md | ||
- Training utils: | ||
- training_utils/index.md | ||
- Contributing: | ||
- contributing/index.md | ||
repo_name: Refiners | ||
repo_url: https://github.com/finegrain-ai/refiners | ||
copyright: © 2023 Lagon Technologies | ||
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 |