mirror of https://github.com/kubeflow/examples.git
reorder imports
This commit is contained in:
parent
e32f935faf
commit
5a91630c77
|
|
@ -15,10 +15,10 @@
|
|||
import argparse
|
||||
import joblib
|
||||
import pandas as pd
|
||||
from sklearn.preprocessing import Imputer
|
||||
from sklearn.model_selection import train_test_split
|
||||
from xgboost import XGBRegressor
|
||||
from sklearn.metrics import mean_absolute_error
|
||||
from sklearn.model_selection import train_test_split
|
||||
from sklearn.preprocessing import Imputer
|
||||
from xgboost import XGBRegressor
|
||||
|
||||
def read_input(file_name, test_size=0.25):
|
||||
"""Read input data and split it into train and test."""
|
||||
|
|
|
|||
Loading…
Reference in New Issue