initial_tune

This commit is contained in:
AI-team\cyhan
2025-05-12 11:23:49 +09:00
commit b436a81091
33 changed files with 2398 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import os
from typing import Any
import torch
class Saver:
def __init__(self, path: str) -> None:
self.path = path
def __call__(self, basename, mask_annotation) -> Any:
save_path = os.path.join(self.path, basename)
# TODO: finish this