@@ -67,7 +67,7 @@ struct SDParams {
6767 std::string diffusion_model_path;
6868 std::string high_noise_diffusion_model_path;
6969 std::string vae_path;
70- std::string taesd_path ;
70+ std::string tae_path ;
7171 std::string esrgan_path;
7272 std::string control_net_path;
7373 std::string embedding_dir;
@@ -159,7 +159,7 @@ void print_params(SDParams params) {
159159 printf (" diffusion_model_path: %s\n " , params.diffusion_model_path .c_str ());
160160 printf (" high_noise_diffusion_model_path: %s\n " , params.high_noise_diffusion_model_path .c_str ());
161161 printf (" vae_path: %s\n " , params.vae_path .c_str ());
162- printf (" taesd_path : %s\n " , params.taesd_path .c_str ());
162+ printf (" tae_path : %s\n " , params.tae_path .c_str ());
163163 printf (" esrgan_path: %s\n " , params.esrgan_path .c_str ());
164164 printf (" control_net_path: %s\n " , params.control_net_path .c_str ());
165165 printf (" embedding_dir: %s\n " , params.embedding_dir .c_str ());
@@ -523,10 +523,10 @@ void parse_args(int argc, const char** argv, SDParams& params) {
523523 " --vae" ,
524524 " path to standalone vae model" ,
525525 ¶ms.vae_path },
526- {" " ,
526+ {" --tae " ,
527527 " --taesd" ,
528- " path to taesd. Using Tiny AutoEncoder for fast decoding (low quality)" ,
529- ¶ms.taesd_path },
528+ " path to taesd or taehv . Using Tiny AutoEncoder for fast decoding (low quality)" ,
529+ ¶ms.tae_path },
530530 {" " ,
531531 " --control-net" ,
532532 " path to control net model" ,
@@ -1638,7 +1638,7 @@ int main(int argc, const char* argv[]) {
16381638 params.diffusion_model_path .c_str (),
16391639 params.high_noise_diffusion_model_path .c_str (),
16401640 params.vae_path .c_str (),
1641- params.taesd_path .c_str (),
1641+ params.tae_path .c_str (),
16421642 params.control_net_path .c_str (),
16431643 params.lora_model_dir .c_str (),
16441644 params.embedding_dir .c_str (),
0 commit comments