ML-001: Feature Store und erste ML-Tests hinzufügen

This commit is contained in:
2026-06-11 00:21:02 +02:00
parent 2fb086b1a1
commit 627ee03230
3 changed files with 78 additions and 0 deletions

5
app/ml/__init__.py Normal file
View File

@@ -0,0 +1,5 @@
"""Machine-Learning-Grundbausteine für SillyHome Next."""
from app.ml.feature_store import FeatureStore, FeatureVector
__all__ = ["FeatureStore", "FeatureVector"]