Skip to content

Commit aaecc05

Browse files
author
marcdro
committed
build docker
1 parent 0b2ff9c commit aaecc05

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

src/pipeline/build_pipeline.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,9 @@ def split_train_test(data, test_size, train_path="train.csv", test_path="test.cs
3232
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=test_size)
3333

3434
if train_path:
35-
<<<<<<< HEAD
36-
pd.concat([X_train, y_train], axis = 1).to_parquet(train_path)
37-
if test_path:
38-
pd.concat([X_test, y_test], axis = 1).to_parquet(test_path)
39-
=======
4035
pd.concat([X_train, y_train]).to_parquet(train_path)
4136
if test_path:
4237
pd.concat([X_test, y_test]).to_parquet(test_path)
43-
>>>>>>> 0ca74edb875d9fae755daf9338bdb7599589a225
4438

4539
return X_train, X_test, y_train, y_test
4640

0 commit comments

Comments
 (0)