Files
AI-team\cyhan b436a81091 initial_tune
2025-05-12 11:23:49 +09:00

13 lines
270 B
Python

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