file
stringlengths
6
44
content
stringlengths
38
162k
__init__.py
from .homoscedastic_gaussian_process_regression import HomoscedasticGPRegression
quantile_regression.py
from collections import namedtuple from sklearn.ensemble import GradientBoostingRegressor from uq360.algorithms.builtinuq import BuiltinUQ class QuantileRegression(BuiltinUQ): """Quantile Regression uses quantile loss and learns two separate models for the upper and lower quantile to obtain the prediction i...
__init__.py
from .quantile_regression import QuantileRegression
__init__.py
from .infinitesimal_jackknife import InfinitesimalJackknife
infinitesimal_jackknife.py
from collections import namedtuple import numpy as np from uq360.algorithms.posthocuq import PostHocUQ class InfinitesimalJackknife(PostHocUQ): """ Performs a first order Taylor series expansion around MLE / MAP fit. Requires the model being probed to be twice differentiable. """ def __init__(se...
blackbox_metamodel_classification.py
import inspect from collections import namedtuple import numpy as np from sklearn.ensemble import GradientBoostingClassifier from sklearn.linear_model import LogisticRegression from sklearn.model_selection import train_test_split from sklearn.exceptions import NotFittedError from uq360.algorithms.posthocuq import Post...
__init__.py
from .blackbox_metamodel_regression import BlackboxMetamodelRegression from .blackbox_metamodel_classification import BlackboxMetamodelClassification
blackbox_metamodel_regression.py
import inspect from collections import namedtuple import numpy as np from sklearn.ensemble import GradientBoostingRegressor from sklearn.model_selection import train_test_split from sklearn.exceptions import NotFittedError from uq360.algorithms.posthocuq import PostHocUQ class BlackboxMetamodelRegression(PostHocUQ):...
__init__.py
from .heteroscedastic_regression import HeteroscedasticRegression
heteroscedastic_regression.py
from collections import namedtuple import numpy as np import torch from scipy.stats import norm from torch.utils.data import DataLoader from torch.utils.data import TensorDataset from uq360.algorithms.builtinuq import BuiltinUQ from uq360.models.heteroscedastic_mlp import GaussianNoiseMLPNet as _MLPNet np.random.seed...
__init__.py
from .meps_dataset import MEPSDataset
meps_dataset.py
# Adapted from https://github.com/Trusted-AI/AIX360/blob/master/aix360/datasets/meps_dataset.py # Utilization target is kept as a continuous target. import os import pandas as pd def default_preprocessing(df): """ 1.Create a new column, RACE that is 'White' if RACEV2X = 1 and HISPANX = 2 i.e. non Hispanic Wh...
__init__.py
null
logistic_regression.py
import autograd import autograd.numpy as np import numpy.random as npr import scipy.optimize sigmoid = lambda x: 0.5 * (np.tanh(x / 2.) + 1) get_num_train = lambda inputs: inputs.shape[0] logistic_predictions = lambda params, inputs: sigmoid(np.dot(inputs, params)) class LogisticRegression: def __init__(self): ...
hidden_markov_model.py
import autograd import autograd.numpy as np import scipy.optimize from autograd import grad from autograd.scipy.special import logsumexp from sklearn.cluster import KMeans class HMM: """ A Hidden Markov Model with Gaussian observations with unknown means and known precisions. """ def __init__(self...
__init__.py
null
misc.py
import abc import sys # Ensure compatibility with Python 2/3 if sys.version_info >= (3, 4): ABC = abc.ABC else: ABC = abc.ABCMeta(str('ABC'), (), {}) from copy import deepcopy import numpy as np import numpy.random as npr def make_batches(n_data, batch_size): return [slice(i, min(i+batch_size, n_data))...
optimizers.py
from builtins import range import autograd.numpy as np def adam(grad, x, callback=None, num_iters=100, step_size=0.001, b1=0.9, b2=0.999, eps=10**-8, polyak=False): """Adapted from autograd.misc.optimizers""" m = np.zeros(len(x)) v = np.zeros(len(x)) for i in range(num_iters): g = grad(x, i) ...
generate_1D_regression_data.py
import matplotlib.pyplot as plt import numpy as np import numpy.random as npr import torch as torch def make_data_gap(seed, data_count=100): import GPy npr.seed(0) x = np.hstack([np.linspace(-5, -2, int(data_count/2)), np.linspace(2, 5, int(data_count/2))]) x = x[:, np.newaxis] k = GPy.kern.RBF(in...
dataTransformer.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
preprocess.py
import pandas as pd tab = ' ' VALID_AGGREGATION_METHODS = ['mean','sum'] VALID_GRANULARITY_UNITS = ['second','minute','hour','day','week','month','year'] VALID_INTERPOLATE_KWARGS = {'linear':{},'spline':{'order':5},'timebased':{}} VALID_INTERPOLATE_METHODS = list( VALID_INTERPOLATE_KWARGS.keys()) def get_one_true_...
textDataProfiler.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
imageAug.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
__init__.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
textProfiler.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
generate_tfrecord.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
dataProfiler.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023,2023 * Proprietary and confidential. All information contained herein is, and * re...
data_profiler_functions.py
import os import sys import numpy as np import scipy import pandas as pd from pathlib import Path default_config = { 'misValueRatio': '1.0', 'numericFeatureRatio': '1.0', 'categoryMaxLabel': '20', 'str_to_cat_len_max': 10 } target_encoding_method_change = {'targetencoding': 'labelencoding'} supported...
dataReader.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
pretrainedModels.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
summarize.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
item_rating.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
__init__.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
text_similarity.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
performance.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
brier_score.py
import json import os def get_brier_score(request): try: displaypath = os.path.join(request.session['deploypath'], "etc", "output.json") with open(displaypath) as file: config = json.load(file) problem_type = config["data"]["ModelType"] brier_score = config["data"]["matr...
__init__.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
fairness_metrics.py
import pandas as pd import numpy as np from appbe.eda import ux_eda from sklearn.preprocessing import LabelEncoder import json import matplotlib.pyplot as plt import os import mpld3 import subprocess import os import sys import re import json import pandas as pd from appbe.eda import ux_eda from aif360.datasets impor...
sensitivity_analysis.py
import base64 import io import json import os import urllib import joblib import numpy as np import pandas as pd from SALib.analyze import sobol class sensitivityAnalysis(): def __init__(self, model, problemType, data, target, featureName): self.model = model self.probemType = problemType ...
trustedai_uq.py
import numpy as np import joblib import pandas as pd from appbe.eda import ux_eda from sklearn.preprocessing import MinMaxScaler, LabelEncoder # from pathlib import Path import configparser import json import matplotlib.pyplot as plt import numpy as np import os def trustedai_uq(request): try: displaypath ...
pipeline_config.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
pipeline_config_reader.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
__init__.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
online_pipeline_config.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
config_gen.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
check_config.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
TextProcessing.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
__init__.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
textProfiler.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
Embedding.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
openai_embedding.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
eda.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
TextCleaning.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
__init__.py
null
timeseries.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
ts_arima_eion.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
timeseriesDLMultivariate.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
tsDLMultiVrtInUniVrtOut.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
ts_modelvalidation.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
__init__.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
tsStationarySeasonalityTest.py
import pandas as pd import numpy as np from statsmodels.tsa.stattools import adfuller from statsmodels.tsa.stattools import kpss from statsmodels.tsa.seasonal import seasonal_decompose import logging import os import warnings warnings.filterwarnings('ignore') ## Main class to find out seassonality and stationary in ti...
timeseriesDLUnivariate.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
aion_fbprophet.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
generic_feature_statistics_generator_test.py
# Copyright 2017 Google Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or a...
generic_feature_statistics_generator.py
# Copyright 2017 Google Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or a...
__init__.py
# Copyright 2017 Google Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or a...
feature_statistics_generator_test.py
# Copyright 2017 Google Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or a...
feature_statistics_generator.py
# Copyright 2017 Google Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or a...
base_generic_feature_statistics_generator.py
# Copyright 2017 Google Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or a...
base_feature_statistics_generator.py
# Copyright 2017 Google Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or a...
feature_statistics_pb2.py
# Copyright 2017 Google Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or a...
run_modelService.py
#from BaseHTTPServer import BaseHTTPRequestHandler,HTTPServer from http.server import BaseHTTPRequestHandler,HTTPServer #from SocketServer import ThreadingMixIn from socketserver import ThreadingMixIn ''' from augustus.core.ModelLoader import ModelLoader from augustus.strict import modelLoader ''' import pandas as pd...
runService.py
#from BaseHTTPServer import BaseHTTPRequestHandler,HTTPServer from http.server import BaseHTTPRequestHandler,HTTPServer #from SocketServer import ThreadingMixIn from socketserver import ThreadingMixIn ''' from augustus.core.ModelLoader import ModelLoader from augustus.strict import modelLoader ''' import pandas as pd...
__init__.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
model_service.py
''' from AION_185 import aion_prediction from AION_185 import featureslist from AION_185 import aion_drift from AION_185 import aion_performance ''' #from BaseHTTPServer import BaseHTTPRequestHandler,HTTPServer from http.server import BaseHTTPRequestHandler,HTTPServer #from SocketServer import ThreadingMixIn from sock...
dl_aion_predict.py
import sys import os import pickle import json import traceback import warnings warnings.filterwarnings("ignore") import numpy as np import pandas as pd import dask.dataframe as dd import scipy from pandas import json_normalize import dask.distributed from dask_ml.wrappers import ParallelPostFit class incBatchPredicto...
__init__.py
null
__init__.py
null
heBinary.py
# -*- coding: utf-8 -*- """ Created on Sat Sep 10 23:57:56 2022 @author: jayaramakrishnans """ import numpy as np import pandas as pd from secrets import token_bytes from ppxgboost import PaillierAPI as paillier from ppxgboost import BoosterParser as boostparser from ppxgboost import PPBooster as ppbooster ...
heRegression.py
# -*- coding: utf-8 -*- """ Created on Sat Sep 10 23:57:56 2022 """ import numpy as np import pandas as pd from secrets import token_bytes from ppxgboost import PaillierAPI as paillier from ppxgboost import BoosterParser as boostparser from ppxgboost import PPBooster as ppbooster from ppxgboost.PPBoost...
heMulticlass.py
# -*- coding: utf-8 -*- """ Created on Sat Sep 10 23:57:56 2022 """ import numpy as np import sqlite3 import sys import pandas as pd from secrets import token_bytes from ppxgboost import PaillierAPI as paillier from ppxgboost import BoosterParser as boostparser from ppxgboost import PPBooster as ppbooster ...
aion_hebinaryclient.py
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*- import pandas as pd import numpy as np import logging import os import sys from logging import INFO from script.heBinary import client_ppxgboost from script.aion_predict import selector from script.inputprofiler import inputprofiler ## Client main class for binary classi...
aion_hemulticlient.py
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*- import pandas as pd import numpy as np import logging import os import sys from logging import INFO from script.heMulticlass import client_ppxgboost from script.aion_predict import selector from script.inputprofiler import inputprofiler import argparse class aion_hemulti...
aion_heregressionclient.py
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*- import pandas as pd import numpy as np import logging import os import sys from logging import INFO from script.heRegression import client_ppxgboost from script.aion_predict import selector from script.inputprofiler import inputprofiler import argparse class aion_hemulti...
__init__.py
null
heBinary.py
# -*- coding: utf-8 -*- import pandas as pd from sklearn.model_selection import train_test_split import numpy as np from secrets import token_bytes from ppxgboost import PaillierAPI as paillier from ppxgboost import BoosterParser as boostparser from ppxgboost import PPBooster as ppbooster from ppxgboo...
heRegression.py
# -*- coding: utf-8 -*- import pandas as pd from sklearn.model_selection import train_test_split import numpy as np from secrets import token_bytes from ppxgboost import PaillierAPI as paillier from ppxgboost import BoosterParser as boostparser from ppxgboost import PPBooster as ppbooster from ppxgboo...
heMulticlass.py
# -*- coding: utf-8 -*- import pandas as pd from sklearn.model_selection import train_test_split import numpy as np from secrets import token_bytes from ppxgboost import PaillierAPI as paillier from ppxgboost import BoosterParser as boostparser from ppxgboost import PPBooster as ppbooster from ppxgboo...
__init__.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
explainable_ai.py
from script.inputprofiler import inputprofiler def preprocessing(data): profilerobj = inputprofiler() data = profilerobj.run(data) data = data.astype(np.float64) return(data) import matplotlib.pyplot as plt try: from sklearn.externals import joblib except: import joblib import os,sys import pandas as pd...
explainabledl_ai.py
from script.inputprofiler import inputprofiler def preprocessing(data): profilerobj = inputprofiler() data = profilerobj.run(data) data = data.astype(np.float64) return(data) import matplotlib.pyplot as plt try: from sklearn.externals import joblib except: import joblib import os,sys import pandas as pd fr...
__init__.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023 * Proprietary and confidential. All information contained herein is, and * remains...
dataProfiler.py
''' * * ============================================================================= * COPYRIGHT NOTICE * ============================================================================= * @ Copyright HCL Technologies Ltd. 2021, 2022,2023,2023 * Proprietary and confidential. All information contained herein is, and * re...
data_profiler_functions.py
import os import sys import numpy as np import scipy import pandas as pd from pathlib import Path default_config = { 'misValueRatio': '1.0', 'numericFeatureRatio': '1.0', 'categoryMaxLabel': '20', 'str_to_cat_len_max': 10 } target_encoding_method_change = {'targetencoding': 'labelencoding'} supported...
aionfls.py
# -*- coding: utf-8 -*- import pandas as pd import numpy as np import logging import os import sys from flwr.common.logger import log from logging import INFO from flserver import flserver class aionfls: def __init__(self): self.confdata=None def configLoad(self,jsonfile): ...
__init__.py
null
dl_model.py
import tensorflow as tf def dl_regression_model(input_shape, output_shape, optimizer, loss_func, act_func): inputs = tf.keras.Input(shape=(input_shape,)) x = tf.keras.layers.Dense(64, kernel_initializer='he_normal', bias_initializer='zer...
flserver.py
# -*- coding: utf-8 -*- """ Created on Wed Jun 15 14:36:11 2022 @author: @aionteam """ import flwr import flwr as fl import tensorflow as tf from typing import Any, Callable, Dict, List, Optional, Tuple import utils from sklearn.metrics import log_loss from sklearn.linear_model import LogisticRegression from sklearn.l...
utils.py
from typing import Tuple, Union, List import numpy as np from sklearn.linear_model import LogisticRegression from sklearn.linear_model import LinearRegression from sklearn.naive_bayes import GaussianNB from sklearn.linear_model import SGDClassifier from sklearn.neighbors import KNeighborsClassifier from sklearn.tree im...
__init__.py
null