-
Notifications
You must be signed in to change notification settings - Fork 0
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
Fixing some issues closes #64, closes #62 #65
Conversation
@@ -36,3 +35,6 @@ def _get_saved_state(self) -> Dict[str, str]: | |||
|
|||
def get_saved_state(self) -> Dict[str, str]: | |||
return {} | |||
|
|||
def get_step_id(self) -> str: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I do not think that steps should have different names based on which datamodule or model was used. Maybe for different model we should just do it in a different folder
art/step/step.py
Outdated
|
||
def __call__(self, previous_states: List[Dict]): | ||
ExperimentState.current_stage = TrainingStage.TRAIN # TODO: Some steps need to do this during execution time | ||
ExperimentState.current_stage = TrainingStage.TRAIN |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like the stage idea for now, but need to dive deeper.
Experiment state
All issues solved beside the one defined on git are marked with DONE here
After I obtain LGTM from someone Ill try to adapt art template to it