Improvements to descriptions and links

This commit is contained in:
Edward Donner
2025-03-14 09:16:31 -04:00
parent 3a2eb97cf2
commit c80065df86
19 changed files with 948 additions and 821 deletions

View File

@@ -43,6 +43,6 @@ class EnsembleAgent(Agent):
'Min': [min(specialist, frontier, random_forest)],
'Max': [max(specialist, frontier, random_forest)],
})
y = self.model.predict(X)[0]
y = max(0, self.model.predict(X)[0])
self.log(f"Ensemble Agent complete - returning ${y:.2f}")
return y