Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
nityansuman committed Mar 2, 2024
1 parent 29295a5 commit b76c6c4
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions lazypredict/Supervised.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
"""
Supervised Models
"""

import numpy as np
import pandas as pd
from tqdm import tqdm
import datetime
import time
from sklearn.pipeline import Pipeline
from sklearn.impute import SimpleImputer, MissingIndicator
from sklearn.impute import SimpleImputer
from sklearn.preprocessing import StandardScaler, OneHotEncoder, OrdinalEncoder
from sklearn.compose import ColumnTransformer
from sklearn.utils import all_estimators
Expand All @@ -24,8 +19,6 @@
)
import warnings
import xgboost

# import catboost
import lightgbm

warnings.filterwarnings("ignore")
Expand Down

0 comments on commit b76c6c4

Please sign in to comment.