You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 :-)
The text was updated successfully, but these errors were encountered:
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 :-)
The text was updated successfully, but these errors were encountered: