-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add docs for commandline args and env values
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 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
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,32 @@ | ||
# 環境変数とコマンドライン引数 | ||
|
||
## 環境変数 | ||
|
||
| 名前 | 説明 | | ||
| ---------------------- | ------------------------------------------------------------------- | | ||
| PYTHON | python.exeへのパス | | ||
| VENV_DIR | venvのパス | | ||
| GIT | gitへのパス | | ||
| INDEX_URL | pipの--index_url | | ||
| COMMANDLINE_ARGS | radiata本体へのコマンドライン引数 | | ||
| TENSORRT_LINUX_COMMAND | linuxでのtensorrtのインストールコマンド `e.g. pip install tensorrt` | | ||
| TORCH_COMMAND | pytorchのインストールコマンド `e.g. pip install torch` | | ||
| XFORMERS_COMMAND | xformersのインストールコマンド `e.g. pip install xformers` | | ||
|
||
|
||
## コマンドライン引数 | ||
|
||
| 名前 | 説明 | 規定値 | | ||
| -------------------- | ---------------------------------- | ----------- | | ||
| --config-file | config.tomlへのパス | config.toml | | ||
| --host | webuiが起動するIP | - | | ||
| --port | webuiが起動するポート | 7860 | | ||
| --share | webuiの共有 | - | | ||
| --model-dir | モデルのディレクトリ | - | | ||
| --hf-token | Hugging Faceのトークン | - | | ||
| --skip-install | パッケージのインストールをスキップ | - | | ||
| --reinstall-torch | pytorchを再インストール | - | | ||
| --reinstall-xformers | xformersを再インストール | - | | ||
| --xformers | xformersを有効化 | - | | ||
| --tensorrt | tensorrtを有効化 | - | | ||
| --deepfloyd_if | deepfloydを有効化 | - | |