chore: ml basic boilerplate

This commit is contained in:
2025-12-12 12:29:39 +01:00
parent 584d996dac
commit 35a5225ae4
3 changed files with 49 additions and 0 deletions

13
experiments/ml/train.py Normal file
View File

@@ -0,0 +1,13 @@
from torch.utils.tensorboard import SummaryWriter
from logging import getLogger
from evals import evaluate
logger = getLogger(__name__)
def train():
pass
if __name__ == "__main__":
train()