fixed calls to create MLRelativeReasoning during bootstrap.py and test_model.py

This commit is contained in:
Liam Brydon
2025-08-22 11:28:01 +12:00
parent b95ec98a2f
commit b45c99f7d3
2 changed files with 12 additions and 12 deletions

View File

@ -187,17 +187,17 @@ class Command(BaseCommand):
# Create RR
ml_model = MLRelativeReasoning.create(
pack,
'ECC - BBD - T0.5',
'ML Relative Reasoning',
[mapping['EAWAG-BBD']],
[mapping['EAWAG-BBD']],
[],
0.5
package=pack,
rule_packages=[mapping['EAWAG-BBD']],
data_packages=[mapping['EAWAG-BBD']],
eval_packages=[],
threshold=0.5,
name='ECC - BBD - T0.5',
description='ML Relative Reasoning',
)
X, y = ml_model.build_dataset()
ml_model.build_model(X, y)
ml_model.build_dataset()
ml_model.build_model()
# ml_model.evaluate_model()
# If available create EnviFormerModel