SyntheticMDProductions's picture
Update ADAM safety, UI, and model workflows (#1)
c61c435
Raw
History Blame Contribute Delete
472 Bytes
from __future__ import annotations
from typing import Any
def train(context, **settings: Any) -> dict[str, Any]:
"""Put your training implementation here.
Use context.log("message"), context.progress(percent, "message"), and
context.preview(path) to report back to ADAM without touching the GUI.
"""
context.log("Template trainer loaded. Replace this with real training code.")
context.progress(100, "Template training complete")
return {}