简体   繁体   中英

random subspace ensemble classifier python

i am in python i search for implementation for random subspace ensemble classifier , and i found the following code in github

https://github.com/mwygoda/randomSubspaceImplementation/blob/master/solution.py

author depend in this two lib

from utils import prepare_data_from_file
 from utils import plot_results

i try to install utils using pip3, it installed and worked when i run import utils as ut put still get error cannot import name 'plot_results' or'prepare_data_from_file' any one help me how can i fix it

That file is not in the repo. You will have to implement it yourself. from the code it looks like it returns a feature vector and target labels.

eg

def prepare_data_from_file(file):
    import pandas as pd
    df = pd.read_csv(file)
    return df['A'], df['B']

But this is mere speculation. Now get off stackoverflow and go do your assisgnment.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM