generated from outerbounds/metaflow-card-template
-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Description
Hello
This is my simple flow
I want to run my notebook first 5-6 cell work correctly
But last few cell always get KeyboardInterrupt: error
My flow dont throw any exception
But when i enter [_rendered_1679995435861952_end_2_model_examle.ipynb] i saw the error
What could be wrong here
Flow Output
2023-03-28 12:23:55.865 Workflow starting (run-id 1679995435861952):
2023-03-28 12:23:55.875 [1679995435861952/start/1 (pid 8060)] Task is starting.
2023-03-28 12:23:56.722 [1679995435861952/start/1 (pid 8060)] Start
2023-03-28 12:23:56.861 [1679995435861952/start/1 (pid 8060)] Task finished successfully.
2023-03-28 12:23:56.871 [1679995435861952/end/2 (pid 8161)] Task is starting.
2023-03-28 12:24:45.329 [1679995435861952/end/2 (pid 8161)] Task finished successfully.
2023-03-28 12:24:45.330 Done!
My Flow
from metaflow import FlowSpec, step, current, Parameter, card, resources
class LinearFlow(FlowSpec):
@step
def start(self):
print("Start")
self.next(self.end)
@card(type='notebook')
@step
def end(self):
self.nb_options_dict = dict(input_path='../notebooks/model_examle.ipynb')
if __name__ == '__main__':
LinearFlow()
Metadata
Metadata
Assignees
Labels
No labels