Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
CHANNO committed May 6, 2021
1 parent 09e5c65 commit 6be2632
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/allegro_test/pipelines/data_engineering/nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,10 @@
from typing import Any, Dict

import pandas as pd

import logging
from datetime import datetime
from clearml import Task

task = Task.init(project_name='examples', task_name='hello world')

def split_data(data: pd.DataFrame, example_test_data_ratio: float) -> Dict[str, Any]:
"""Node for splitting the classical Iris data set into training and test
Expand All @@ -49,7 +48,9 @@ def split_data(data: pd.DataFrame, example_test_data_ratio: float) -> Dict[str,
"""



task = Task.init(project_name='examples', task_name='hello world run withoin kedro')
print("stdout log by print")
logging.warning("Logging.warning: Hello World")


data.columns = [
Expand Down

0 comments on commit 6be2632

Please sign in to comment.