feat: The syntax for running models has been changed
In acestep.cpp since commit 9567a45, rename CLI flags across all binaries: --model -> --lm, --text-encoder -> --embedding
This commit is contained in:
parent
2de2d1bc6b
commit
970ed46892
1 changed files with 2 additions and 2 deletions
|
|
@ -122,7 +122,7 @@ bool AceStep::requestGeneration(SongItem song, QString requestTemplate, QString
|
||||||
|
|
||||||
QStringList qwen3Args;
|
QStringList qwen3Args;
|
||||||
qwen3Args << "--request" << request.requestFilePath;
|
qwen3Args << "--request" << request.requestFilePath;
|
||||||
qwen3Args << "--model" << qwen3ModelPath;
|
qwen3Args << "--lm" << qwen3ModelPath;
|
||||||
|
|
||||||
progressUpdate(30);
|
progressUpdate(30);
|
||||||
|
|
||||||
|
|
@ -178,7 +178,7 @@ void AceStep::qwenProcFinished(int code, QProcess::ExitStatus status)
|
||||||
// Step 2: Run ace-synth to generate audio
|
// Step 2: Run ace-synth to generate audio
|
||||||
QStringList ditVaeArgs;
|
QStringList ditVaeArgs;
|
||||||
ditVaeArgs << "--request"<<request.requestLlmFilePath;
|
ditVaeArgs << "--request"<<request.requestLlmFilePath;
|
||||||
ditVaeArgs << "--text-encoder"<<request.textEncoderModelPath;
|
ditVaeArgs << "--embedding"<<request.textEncoderModelPath;
|
||||||
ditVaeArgs << "--dit"<<request.ditModelPath;
|
ditVaeArgs << "--dit"<<request.ditModelPath;
|
||||||
ditVaeArgs << "--vae"<<request.vaeModelPath;
|
ditVaeArgs << "--vae"<<request.vaeModelPath;
|
||||||
ditVaeArgs << "--wav";
|
ditVaeArgs << "--wav";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue