-
Notifications
You must be signed in to change notification settings - Fork 21
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
Problem Definition: Object-Oriented Improvements for generate_cutoff_times(...)
#32
base: master
Are you sure you want to change the base?
Conversation
ProblemDefinition.generate_cutoff_times(...)
generate_cutoff_times(...)
@@ -62,6 +84,57 @@ def generate_cutoff_times(self, entity_set): | |||
ValueError: An error occurs if the cutoff variable does not exist. | |||
""" | |||
|
|||
target_label_exists = DataLoader().check_column_existence( |
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.
Instead of creating a new DataLoader()
object 3 times, can we create a data_loader
variable and invoke its methods each time? Not entirely sure, but I believe this is safe because we include the parameters within the method.
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.
definitely, I agree. Changes --> 609d4c0
|
No description provided.