Skip to content

Commit

Permalink
Fix print
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasMeissnerDS committed Aug 1, 2024
1 parent d7f161d commit a012169
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bluecast/preprocessing/train_test_split.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def train_test_split_cross(
stratify: bool = False,
):
"""Split data into train and test. Stratification is possible."""
logging.info("Start executing train-test split with train size of {train_size}.")
logging.info(f"Start executing train-test split with train size of {train_size}.")
target = df[target_col].copy()
df = df.drop(target_col, axis=1)

Expand Down

0 comments on commit a012169

Please sign in to comment.