From d5af8980537d5d2b6011dc6cd3bf17892b827150 Mon Sep 17 00:00:00 2001 From: Liam Brydon Date: Tue, 9 Dec 2025 00:57:35 +1300 Subject: [PATCH] [Fix] Create ML model command fixed (#255) (#258) Removed the eval packages being incorrectly passed to the create method of enviFormer and MLRelativeReasoning. Reviewed-on: https://git.envipath.com/enviPath/enviPy/pulls/258 Co-authored-by: Liam Brydon Co-committed-by: Liam Brydon --- epdb/management/commands/create_ml_models.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/epdb/management/commands/create_ml_models.py b/epdb/management/commands/create_ml_models.py index 4f86c957..fa339966 100644 --- a/epdb/management/commands/create_ml_models.py +++ b/epdb/management/commands/create_ml_models.py @@ -93,7 +93,6 @@ class Command(BaseCommand): model = EnviFormer.create( pack, data_packages=data_packages, - eval_packages=eval_packages, threshold=options["threshold"], name=f"EnviFormer - {', '.join(options['data_packages'])} - T{options['threshold']:.2f}", description=f"EnviFormer transformer trained on {options['data_packages']} " @@ -104,7 +103,6 @@ class Command(BaseCommand): package=pack, rule_packages=rule_packages, data_packages=data_packages, - eval_packages=eval_packages, threshold=options["threshold"], name=f"ECC - {', '.join(options['data_packages'])} - T{options['threshold']:.2f}", description=f"ML Relative Reasoning trained on {options['data_packages']} with rules from "