reorder imports

This commit is contained in:
Puneith Kaul 2018-08-22 00:16:24 -07:00
parent e32f935faf
commit 5a91630c77
1 changed files with 3 additions and 3 deletions

View File

@ -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."""