We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e74e86f commit 902429fCopy full SHA for 902429f
src/model.py
@@ -189,7 +189,9 @@ def setup_lora(self):
189
190
# Check if `enable_lora` field is in the `model.json`,
191
# and if it is, read its contents, which can be string or bool.
192
- if "enable_lora" in self.vllm_engine_config.keys() and str(self.vllm_engine_config["enable_lora"]).lower() == "true":
+ if (
193
+ "enable_lora" in self.vllm_engine_config.keys()
194
+ and str(self.vllm_engine_config["enable_lora"]).lower() == "true"
195
):
196
# create Triton LoRA weights repository
197
multi_lora_args_filepath = os.path.join(
0 commit comments