Advertisement
Guest User

Untitled

a guest
Jul 24th, 2023
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 9.72 KB | None | 0 0
  1. $ kedro run
  2. [07/24/23 18:14:31] INFO     Kedro project spaceflights                                                                                                                               session.py:359
  3.                     WARNING  /home/jcohen/.conda/envs/kedro-tutorial/lib/python3.8/site-packages/kedro/framework/project/__init__.py:359: UserWarning: An error occurred while       warnings.py:109
  4.                              importing the 'spaceflights.pipelines.data_science' module. Nothing defined therein will be returned by 'find_pipelines'.                                              
  5.                                                                                                                                                                                                    
  6.                              Traceback (most recent call last):                                                                                                                                    
  7.                                File "/home/jcohen/.conda/envs/kedro-tutorial/lib/python3.8/site-packages/kedro/framework/project/__init__.py", line 357, in find_pipelines                          
  8.                                  pipeline_module = importlib.import_module(pipeline_module_name)                                                                                                    
  9.                                File "/home/jcohen/.conda/envs/kedro-tutorial/lib/python3.8/importlib/__init__.py", line 127, in import_module                                                      
  10.                                  return _bootstrap._gcd_import(name[level:], package, level)                                                                                                        
  11.                                File "<frozen importlib._bootstrap>", line 1014, in _gcd_import                                                                                                      
  12.                                File "<frozen importlib._bootstrap>", line 991, in _find_and_load                                                                                                    
  13.                                File "<frozen importlib._bootstrap>", line 975, in _find_and_load_unlocked                                                                                          
  14.                                File "<frozen importlib._bootstrap>", line 671, in _load_unlocked                                                                                                    
  15.                                File "<frozen importlib._bootstrap_external>", line 848, in exec_module                                                                                              
  16.                                File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed                                                                                        
  17.                                File "/home/jcohen/kedro-tutorial/spaceflights/src/spaceflights/pipelines/data_science/__init__.py", line 3, in <module>                                            
  18.                                  from .pipeline import create_pipeline  # NOQA                                                                                                                      
  19.                                File "/home/jcohen/kedro-tutorial/spaceflights/src/spaceflights/pipelines/data_science/pipeline.py", line 35                                                        
  20.                                  namespace="active_modelling_pipeline"                                                                                                                              
  21.                                  ^                                                                                                                                                                  
  22.                              SyntaxError: invalid syntax                                                                                                                                            
  23.                                                                                                                                                                                                    
  24.                                warnings.warn(                                                                                                                                                      
  25.                                                                                                                                                                                                    
  26. [07/24/23 18:14:32] INFO     Loading data from 'companies' (CSVDataSet)...                                                                                                       data_catalog.py:345
  27.                     INFO     Running node: preprocess_companies_node: preprocess_companies([companies]) -> [preprocessed_companies]                                                      node.py:331
  28.                     INFO     Saving data to 'preprocessed_companies' (ParquetDataSet)...                                                                                         data_catalog.py:384
  29.                     INFO     Completed 1 out of 3 tasks                                                                                                                      sequential_runner.py:85
  30.                     INFO     Loading data from 'shuttles' (ExcelDataSet)...                                                                                                      data_catalog.py:345
  31. [07/24/23 18:14:39] INFO     Running node: preprocess_shuttles_node: preprocess_shuttles([shuttles]) -> [preprocessed_shuttles]                                                          node.py:331
  32. [07/24/23 18:14:40] INFO     Saving data to 'preprocessed_shuttles' (ParquetDataSet)...                                                                                          data_catalog.py:384
  33.                     INFO     Completed 2 out of 3 tasks                                                                                                                      sequential_runner.py:85
  34.                     INFO     Loading data from 'preprocessed_shuttles' (ParquetDataSet)...                                                                                       data_catalog.py:345
  35.                     INFO     Loading data from 'preprocessed_companies' (ParquetDataSet)...                                                                                      data_catalog.py:345
  36.                     INFO     Loading data from 'reviews' (CSVDataSet)...                                                                                                         data_catalog.py:345
  37.                     INFO     Running node: create_model_input_table_node: create_model_input_table([preprocessed_shuttles,preprocessed_companies,reviews]) -> [model_input_table]        node.py:331
  38. [07/24/23 18:14:41] INFO     Saving data to 'model_input_table' (ParquetDataSet)...                                                                                              data_catalog.py:384
  39.                     INFO     Completed 3 out of 3 tasks                                                                                                                      sequential_runner.py:85
  40.                     INFO     Pipeline execution completed successfully.                                                                                                                 runner.py:94
  41. $ ^C
  42. $ ^C
  43. $ kedro run
  44. [07/24/23 18:15:07] INFO     Kedro project spaceflights                                                                                                                               session.py:359
  45. [07/24/23 18:15:08] WARNING  /home/jcohen/.conda/envs/kedro-tutorial/lib/python3.8/site-packages/kedro/framework/project/__init__.py:290: UserWarning: Expected the                  warnings.py:109
  46.                              'create_pipeline' function in the 'spaceflights.pipelines.data_science' module to return a 'Pipeline' object, got 'NoneType' instead. Nothing defined                  
  47.                              therein will be returned by 'find_pipelines'.                                                                                                                          
  48.                                warnings.warn(                                                                                                                                                      
  49.                                                                                                                                                                                                    
  50.                     INFO     Loading data from 'companies' (CSVDataSet)...                                                                                                       data_catalog.py:345
  51.                     INFO     Running node: preprocess_companies_node: preprocess_companies([companies]) -> [preprocessed_companies]                                                      node.py:331
  52.                     INFO     Saving data to 'preprocessed_companies' (ParquetDataSet)...                                                                                         data_catalog.py:384
  53.                     INFO     Completed 1 out of 3 tasks                                                                                                                      sequential_runner.py:85
  54.                     INFO     Loading data from 'shuttles' (ExcelDataSet)...                                                                                                      data_catalog.py:345
  55. ^C
  56. Aborted!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement