reiinakano / xcessiv

A web-based application for quick, scalable, and automated hyperparameter tuning and stacked ensembling in Python.

Home Page:http://xcessiv.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to import homemade modules in Xcessiv?

fcoppey opened this issue · comments

I'm trying to import homemade module named preprocessing_115v (filename preprocessing_115v.py) into the main data extraction source code but I can't seem to find it :

#############
import preprocessing_115v <-- where do I store the preprocessing_115v.py file for it to load here?
def extract_main_dataset():
import pandas as pd
df=pd.read_csv('./data.csv', sep=',',header=None)
X=df.values
labels=pd.read_csv('./labelsnum.csv', sep=',',header=None)
y=labels.values
y=y[:,0]
return X, y
##############

Amazing program by the way :-)