neurolab

Time series forecast with recurrent Elman network in neurolab

送分小仙女□ 提交于 2020-01-04 06:12:41
问题 I use the Elman recurrent network from neurolab to predict a time series of continuous values. The network is trained from a sequence such that the input is the value at index i and the target is the value at index i+1 . To make predictions beyond the immediate next time step, the output of the net is feed back as input. If, for example, I intend to predict the value at i+5 , I proceed as follows. Input the value from i Take the output and feed it to the net the as next input value (e.g. i+1

Convert Matlab code into Python using Neural Network Library

巧了我就是萌 提交于 2019-12-24 09:26:03
问题 I am trying to convert this code of matlab in python... parpool X = power; T = coi; net = feedforwardnet(10); net = train(net,X,T,'useParallel','no','showResources','yes'); Y = net(X); figure; plot(X,T,'o',X,Y,'x'); Here is Target File attached i.e Coi Here is Input File attached i.e Power I tried a little bit but getting error like assertion error when training input_data = power # Power is my input array of length 45 output_data = coi # Coi is my output array of length 60000 h = np.max

How would I install numpy library on Coding Ground?

ぐ巨炮叔叔 提交于 2019-12-07 08:49:06
问题 I tried to install neurolab, termcolor libraries on Coding Ground for python into the working folder using pip install --target=. neurolab pip install --target=. termcolor and they both worked. But when I tried: pip install --target=. numpy it didn't work. I'd like to be able to run my scripts that already work on my computer locally on Coding Ground so that I can share my project with people who don't have Python installed on their computer. UPDATE: I was able to install neurolab, termcolor

How would I install numpy library on Coding Ground?

℡╲_俬逩灬. 提交于 2019-12-05 15:44:54
I tried to install neurolab, termcolor libraries on Coding Ground for python into the working folder using pip install --target=. neurolab pip install --target=. termcolor and they both worked. But when I tried: pip install --target=. numpy it didn't work. I'd like to be able to run my scripts that already work on my computer locally on Coding Ground so that I can share my project with people who don't have Python installed on their computer. UPDATE: I was able to install neurolab, termcolor in the Numpy Terminal after using quit(). But there's no way to share project from Numpy Terminal.