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 526ddb8 commit 67c4ea9Copy full SHA for 67c4ea9
src/axolotl/utils/schemas/config.py
@@ -1345,6 +1345,10 @@ def check_auto_enable_lora_kernels(cls, data):
1345
):
1346
return data
1347
1348
+ # Skip if dropout is not 0, as auto enabling it would just disable it during runtime patch checks
1349
+ if data.get("lora_dropout") != 0:
1350
+ return data
1351
+
1352
# Check multi-GPU compatibility
1353
capabilities = data.get("capabilities")
1354
is_multi_gpu = capabilities and capabilities.get("n_gpu", 0) > 1
0 commit comments