Skip to content

Commit

Permalink
Add autoload docs
Browse files Browse the repository at this point in the history
  • Loading branch information
tomas-novak-olc committed Sep 26, 2023
1 parent 1f75e7c commit 82449fd
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { defineConfig } from 'vitepress';
import { defineConfig } from "vitepress";

// https://vitepress.dev/reference/site-config
export default defineConfig({
Expand Down Expand Up @@ -89,26 +89,25 @@ export default defineConfig({
text: "Installation",
items: [
{
text: "Local", items: [
text: "Local",
items: [
{ text: "Windows", link: "/installation/windows" },
{ text: "Linux", link: "/installation/linux" },
{ text: "WSL", link: "/installation/wsl" },
{ text: "Docker", link: "/installation/docker" },
]
],
},
{
text: "Cloud",
items: [
{ text: "Vast.ai", link: "/installation/vast" },
],
items: [{ text: "Vast.ai", link: "/installation/vast" }],
},
{
text: "Extra",
items: [
{ text: "Old", link: "/installation/old" },
{ text: "xFormers", link: "/installation/xformers" },
]
}
],
},
],
collapsed: false,
},
Expand All @@ -122,6 +121,7 @@ export default defineConfig({
text: "AITemplate Acceleration",
link: "/basics/aitemplate",
},
{ text: "Autoload", link: "/basics/autoload" },
],
collapsed: false,
},
Expand Down
23 changes: 23 additions & 0 deletions docs/basics/autoload.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Autoload

Volta can be configured to automatically load a model (or even multiple models at once), Textual Inversion or even a custom VAE for a specific model.

::: tip
To see autoload in action, save the settings and restart Volta. You should see the model loading automatically.
:::

## How to use

Navigate to `Settings > API > Autoload` and select a model that you would like to load at the startup. Feel free to select multiple models at once if you have enough GPU memory / Offload enabled.

::: warning
To save settings, click either on the `Save settings` button or navigate to other tab. Notification will appear if the settings were saved successfully.
:::

## Autoloading Textual Inversion

Autoloading Textual inversion will apply to all models. You can check the status in the Model Loader.

## Autoloading custom VAE

Custom VAEs are loaded depending on the model and should be applied automatically. You can check this behavior in the Model Loader.

0 comments on commit 82449fd

Please sign in to comment.