mirror of
https://github.com/ostris/ai-toolkit.git
synced 2026-03-14 23:17:22 +00:00
Setup base for training jobs. Added sd-scripts as a submodule
This commit is contained in:
50
config/examples/extract.example.json
Normal file
50
config/examples/extract.example.json
Normal file
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"job": "extract",
|
||||
"config": {
|
||||
"name": "name_of_your_model",
|
||||
"base_model": "/path/to/base/model",
|
||||
"extract_model": "/path/to/model/to/extract",
|
||||
"output_folder": "/path/to/output/folder",
|
||||
"is_v2": false,
|
||||
"device": "cpu",
|
||||
"process": [
|
||||
{
|
||||
"filename":"[name]_64_32.safetensors",
|
||||
"type": "locon",
|
||||
"mode": "fixed",
|
||||
"linear": 64,
|
||||
"conv": 32
|
||||
},
|
||||
{
|
||||
"output_path": "/absolute/path/for/this/output.safetensors",
|
||||
"type": "locon",
|
||||
"mode": "ratio",
|
||||
"linear": 0.2,
|
||||
"conv": 0.2
|
||||
},
|
||||
{
|
||||
"type": "locon",
|
||||
"mode": "quantile",
|
||||
"linear": 0.5,
|
||||
"conv": 0.5
|
||||
}
|
||||
]
|
||||
},
|
||||
"meta": {
|
||||
"name": "[name]",
|
||||
"description": "A short description of your model",
|
||||
"trigger_words": [
|
||||
"put",
|
||||
"trigger",
|
||||
"words",
|
||||
"here"
|
||||
],
|
||||
"version": "0.1",
|
||||
"creator": {
|
||||
"name": "Your Name",
|
||||
"email": "your@email.com",
|
||||
"website": "https://yourwebsite.com"
|
||||
},
|
||||
"any": "All meta data above is arbitrary, it can be whatever you want."
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user