-
I'm trying to put together a script for training models using terminal in Linux but I'm having trouble. Essentially I want to batch train a series of models, which is something I do using scripts with Kohya. Everything tells me I should be able to do the same in OneTrainer but I'm not able to figure it out and can't really find anyone talking about running training through scripts. |
Beta Was this translation helpful? Give feedback.
Answered by
mx
Aug 19, 2024
Replies: 1 comment
-
Onetrainer CLI is just At that point it's just bash: for c in config1.json config2.json config3.json; do
python scripts/train.py --config-path $c
done |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mx
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Onetrainer CLI is just
python scripts/train.py --config-path /path/to/your/config.json
At that point it's just bash: