Re: ERROR in loading data

2020-02-04 Thread Joel Goldstick
On Tue, Feb 4, 2020 at 9:51 AM wrote: > > #load the training and testing data, then scale it into the > # range [0, 1] > print("[INFO] loading ADNI data...") > ((trainX, trainY), (testX, testY)) = '/content/gdrive/My > Drive/3_Classes/'.loads_data() What is the class of

Re: ERROR in loading data

2020-02-04 Thread Rhodri James
On 04/02/2020 14:49, laiba.zubai...@gmail.com wrote: #load the training and testing data, then scale it into the # range [0, 1] print("[INFO] loading ADNI data...") ((trainX, trainY), (testX, testY)) = '/content/gdrive/My Drive/3_Classes/'.loads_data() trainX = t

ERROR in loading data

2020-02-04 Thread laiba . zubair96
#load the training and testing data, then scale it into the # range [0, 1] print("[INFO] loading ADNI data...") ((trainX, trainY), (testX, testY)) = '/content/gdrive/My Drive/3_Classes/'.loads_data() trainX = trainX.astype("float") / 255.0 testX = testX.ast

Re: error in loading data into the code

2010-10-18 Thread Peter Otten
Diez B. Roggisch wrote: > nakisa writes: > >> hello , I have started python last week,so maybe my question is a bit >> stupid. >> I got this error in my simple python code while trying to load data >> into the code. I have added this libaraies >> from pylab import * >> from scipy import * >> imp

Re: error in loading data into the code

2010-10-18 Thread nakisa
On Oct 18, 5:02 pm, de...@web.de (Diez B. Roggisch) wrote: > nakisa writes: > > hello , I have started python last week,so maybe my question is a bit > > stupid. > > I got this error in my simple python code while trying to load data > > into the code. I have added this libaraies > > from pylab im

Re: error in loading data into the code

2010-10-18 Thread Diez B. Roggisch
nakisa writes: > hello , I have started python last week,so maybe my question is a bit > stupid. > I got this error in my simple python code while trying to load data > into the code. I have added this libaraies > from pylab import * > from scipy import * > import matplotlib.mlab as mlab > from n

error in loading data into the code

2010-10-18 Thread nakisa
hello , I have started python last week,so maybe my question is a bit stupid. I got this error in my simple python code while trying to load data into the code. I have added this libaraies from pylab import * from scipy import * import matplotlib.mlab as mlab from numpy import * from scipy import o