Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
torch-wrapper / pl / loggers / __init__.py
Size: Mime:
from pathlib import Path
class LoggerInterface:
    def log_hparams(self, hparams: dict):
        raise NotImplementedError(type(self))

    def log_root(self) -> Path:
        """root dir for this logger"""
        raise NotImplementedError(type(self))

    def log_dir(self) -> Path:
        """dir for this logger specific to the version of model"""
        raise NotImplementedError(type(self))