mirror of
https://github.com/velocitatem/PHANTOM.git
synced 2026-05-31 08:33:36 +00:00
14 lines
202 B
Python
14 lines
202 B
Python
from torch.utils.tensorboard import SummaryWriter
|
|
from logging import getLogger
|
|
from evals import evaluate
|
|
logger = getLogger(__name__)
|
|
|
|
|
|
def train():
|
|
pass
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
train()
|