Update inference_manager.py
Browse files- inference_manager.py +1 -1
inference_manager.py
CHANGED
@@ -325,7 +325,7 @@ class ModelManager:
|
|
325 |
print(f"Building pipeline with LoRAs for model {model_id}...")
|
326 |
return model.build_pipeline_with_lora(lora_list, sampler, new_pipeline)
|
327 |
except Exception as e:
|
328 |
-
traceback.
|
329 |
print(f"Failed to build pipeline for model {model_id}: {e}")
|
330 |
return None
|
331 |
|
|
|
325 |
print(f"Building pipeline with LoRAs for model {model_id}...")
|
326 |
return model.build_pipeline_with_lora(lora_list, sampler, new_pipeline)
|
327 |
except Exception as e:
|
328 |
+
print(traceback.format_exc())
|
329 |
print(f"Failed to build pipeline for model {model_id}: {e}")
|
330 |
return None
|
331 |
|