Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor regularization step closes #117 #200

Merged
merged 18 commits into from
Dec 2, 2023
Merged
16 changes: 8 additions & 8 deletions art/steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,14 @@

from art.core import ArtModule
from art.decorators import ModelDecorator, art_decorate
from art.loggers import (add_logger, art_logger, get_new_log_file_name,
get_run_id, log_yellow_warning, remove_logger)
from art.loggers import (
kordc marked this conversation as resolved.
Show resolved Hide resolved
add_logger,
art_logger,
get_new_log_file_name,
get_run_id,
log_yellow_warning,
remove_logger,
)
from art.metrics import MetricCalculator, SkippedMetric
from art.utils.enums import TrainingStage
from art.utils.paths import get_checkpoint_logs_folder_path
Expand Down Expand Up @@ -162,12 +168,6 @@ def set_successful(self):
def is_successful(self):
return self.results["successful"]

@abstractmethod
def log_model_params(
self,
):
pass

@abstractmethod
def log_data_params(self):
pass
Expand Down