Тёмный
The Simulation Guy
The Simulation Guy
The Simulation Guy
Подписаться
Комментарии
@brianlarocca4390
@brianlarocca4390 11 месяцев назад
Sloppy.
@matinislami7893
@matinislami7893 Год назад
what is difference between for loop of YTrain and XTest? I can not understand it..
@niloufarmsv3815
@niloufarmsv3815 Год назад
thank u for your tutorial i have followed but i have issue with generating future forecast, in testing the result is accurate but when it comes to future it generate the first value and repeat that. could u also provide tutorial on how to run future prediction after this stage?
@tahaal-saadi3209
@tahaal-saadi3209 2 года назад
hi, is it possible to simulate the model with a multi-layer irregular shape?
@tellesunji6331
@tellesunji6331 2 года назад
Hi, this use one input ? if you have three input and the would like one prédiction ? how to do ?
@bkameswari6216
@bkameswari6216 2 года назад
If you are explaining then it's good
@chamilayapa5146
@chamilayapa5146 3 года назад
This was really useful to get an idea about implementation of a deep neural network in MATLAB. Thanks
@pravuchaudhary3904
@pravuchaudhary3904 3 года назад
where did you get the data?
@inferno0020
@inferno0020 3 года назад
Nice video, but why do block the scripts at the lower right corner with your logo?
@nabilaistifaarinie6535
@nabilaistifaarinie6535 3 года назад
sir, how can i see the graph of nntool. I want to see the graph of testing data and training data.
@satorugojo9529
@satorugojo9529 3 года назад
thx alot dude nice tutorials!!!
@viniciusviena8496
@viniciusviena8496 4 года назад
You simply did what is in the official matlab tutorial with a background song. mentioned about seq2seq and seq2num but did not show to deploy it. what waste of eleven minutes
@pravii444
@pravii444 4 года назад
Hi, I’m working on predictive maintenance and I have a big dataset. The data is of dimension [1 X 20152320] and when I have followed your video, I got good results when I have considered a small subset. But while going for bigger data subsets, I am having problems while training. May I know what parameters in trainingOptions should I play with?
@TheChamps2001
@TheChamps2001 Год назад
Hey, How you plotted your data? I'm using the comando "plot", but matlab can't plot my data,because is to long!!!
@hemantashahi6370
@hemantashahi6370 4 года назад
Got some errors : array split does not result in equal division.can you help?
@hamidbasiri8565
@hamidbasiri8565 2 года назад
Did you solve the error?
@CartwheelPig
@CartwheelPig 6 месяцев назад
Just replace the split function with this code: def split(data): print(len(data)) half = int(len(data)/2) train = data[0:half-2] test = data[half+1:len(data)-1] print(len(train), len(test)) train=np.array(np.split(train,len(train)/7)) test=np.array(np.split(test,len(test)/7)) return train,test
@Schnarek89
@Schnarek89 4 года назад
Hello, at min 5:11. If you've trained a network with three features and one output this won't work. Am I right ?
@Schnarek89
@Schnarek89 4 года назад
Have you ever used it for real time data ?
@mohamednedal
@mohamednedal 4 года назад
Hi, Do you have any idea how to this problem to a multivariate problem that takes multiple inputs? And what part to be changed to predict for any time step in future? Thanks in advance
@MrMrjacky7
@MrMrjacky7 4 года назад
Hi! I have some sequences generated from some initial conditions, what model should I use to have a sequence generated from some initial condition based on the data I have? seq2seq models usually predict the following data of a series but don't generate sequence from initial conditions.
@alexdagios28
@alexdagios28 4 года назад
nice
@muhammadmuzammil3184
@muhammadmuzammil3184 4 года назад
Model runs fine but im getting all same(blank) predictions . Any idea what could be the issue?
@muhammadmuzammil3184
@muhammadmuzammil3184 4 года назад
bro preds value are 0,0,0,0 in my model how i can fix this
@aisyahraihana1263
@aisyahraihana1263 4 года назад
which version of matlab are you using ? im currently using lstm for rainfall, and got stuck at plot (data) ... the error i got is error using plot and invalid data argument. Can you detect where is my mistakes?
@haneensuradi
@haneensuradi 4 года назад
It would have been good if you showed the predicted vs actual consumption during the four years. It will be even more interesting to predict the consumption for 2011 year without having an actual data to compare with.
@vandattuong9903
@vandattuong9903 4 года назад
Hi. Thanks for the video I implemented the same with your code. However, it returns an error in Path.m file Undefined function or variable 'start'. Error in Path (line 6) [~,move] = max(q(start,:)); Error in Running (line 33) path = Path(q,Goal); As I checked, there is no declaration for 'start' variable. Do you know why this error happens?
@ImranKhan-fi2sm
@ImranKhan-fi2sm 4 года назад
Hiii How to handle persistent model problem. While doing time series analysis i get the output which seems to be one time step ahead of the actual series. How to rectify this problem?? This thing i am getting with several ML, DL, and as well as with statistical algos. Please do reply??
@krishnayogi
@krishnayogi 5 лет назад
Good stuff buddy keep going
@arshiajs
@arshiajs 5 лет назад
can we have your script codes plz?!
@gh-yp4ue
@gh-yp4ue 5 лет назад
can you please tell me how you learn to develop lstm network
@gh-yp4ue
@gh-yp4ue 5 лет назад
which version i need for lstm implementation
@thesimulationguy5640
@thesimulationguy5640 5 лет назад
Not specific. But you do need toolbox for deep learning.
@gh-yp4ue
@gh-yp4ue 5 лет назад
@@thesimulationguy5640 how i get this
@thesimulationguy5640
@thesimulationguy5640 5 лет назад
Either go for a pirated version of MATLAB or buy the toolbox from their website.
@gh-yp4ue
@gh-yp4ue 5 лет назад
@@thesimulationguy5640 pirated 2019 or pirated 2018..nd is there any way to do lstm in matlab widout this toolbox
@user-ri5qu3ny4x
@user-ri5qu3ny4x 5 лет назад
When I train the net using 80% of the data, then can I predict the all range of the data and compare the original data with forecast data in all data point???
@armandoibanez8499
@armandoibanez8499 5 лет назад
Hi, Could you share the code with me?