@@ -920,10 +920,10 @@ def _download_model(self, model_id):
920920 json .dump (config , json_file , indent = 4 )
921921
922922 if model_id == "sd_15_inpainting" :
923- self .model_install_status [model_id ]["status" ] = "Generating IRs... "
923+ self .model_install_status [model_id ]["status" ] = "Converting Model "
924924 export_command = f"{ Path (optimum_ex )} export openvino --model { Path (full_download_folder )} --weight-format fp16 --task image-to-image { Path (full_install_path )} "
925925 else :
926- self .model_install_status [model_id ]["status" ] = "Generating IRs... "
926+ self .model_install_status [model_id ]["status" ] = "Converting Model "
927927 export_command = f"{ Path (optimum_ex )} export openvino --model { Path (full_download_folder )} --weight-format fp16 --task stable-diffusion { Path (full_install_path )} "
928928 print ("Running the command:" , export_command )
929929
@@ -939,7 +939,7 @@ def _download_model(self, model_id):
939939 if "sdxl_base" in model_id :
940940 model_name = "sdxl_base_1.0_square"
941941 if "sdxl" in model_id :
942- self .model_install_status [model_id ]["status" ] = "Model Caching... "
942+ self .model_install_status [model_id ]["status" ] = "Compiling Model "
943943 stable_diffusion_engine_genai .StableDiffusionEngineGenai (model = full_install_path ,model_name = model_name ,device = ["GPU" ,"GPU" ,"GPU" ])
944944 if config ["power modes supported" ] == "yes" :
945945 stable_diffusion_engine_genai .StableDiffusionEngineGenai (model = full_install_path ,model_name = model_name ,device = ["GPU" ,"NPU" ,"GPU" ])
0 commit comments