Replies: 5 comments 13 replies
-
try setting default to true for your text embed cache. it should actually use the sole text embed backend as the default, if none is explicitly defined. so there may be a bug, but as far as i've seen, i remember mine overriding it and warning me that it will do so. the default text embed backend is required, as it is where the validation prompts are cached and stored - and that is where this process is failing |
Beta Was this translation helpful? Give feedback.
-
[
{
"id": "bloodimage-local",
"type": "local",
"instance_data_dir": "/store/CIA/scfc3/diffusion/SimpleTuner/TEST_DATA",
"crop": false,
"resolution": 768,
"resolution_type": "pixel",
"prepend_instance_prompt": true,
"instance_prompt": "a microscope image of a ",
"only_instance_prompt": false,
"caption_strategy": "filename",
"cache_dir_vae": "vae_cache",
"vae_cache_clear_each_epoch": true,
"probability": 1.0,
"repeats": 1,
"text_embeds": "alt-embed-cache"
},
{
"id": "alt-embed-cache",
"dataset_type": "text_embeds",
"default": true,
"type": "local",
"cache_dir": "text_embed_cache"
}
] try this, it has the one line corrected. |
Beta Was this translation helpful? Give feedback.
-
Thank you!
However, including the suggested lines gives another even longer error message.
|
Beta Was this translation helpful? Give feedback.
-
Hmm, I want to use a folder structure like this:
and I want the text input to the model to be:
and I only get cached results under the Full error message (when I have images that are under subfolders)
|
Beta Was this translation helpful? Give feedback.
-
well since it seems the original issue is resolved and i'm not clear on the settings or remaining problems, please open an issue report with some new logs and your complete |
Beta Was this translation helpful? Give feedback.
-
Thanks for an excellent repo!
I have been struggling to get training to work and would greatly appreciate guidance.
I try to train the XL model but run into the following problem:
Initially, I just want to use the file name as the input text to see if I can get things to work. (However, later I want to use the folder name instead of the file name.)
I've put 4 images in a folder called
TEST_DATA
and I use the followingmultidatabackend.json
.I appreciate any guidance you can provide to help get my training started. Thank you!
Beta Was this translation helpful? Give feedback.
All reactions