Decision Making in Recurrent Neural Networks
This technical blog is my own collection of notes , articles , implementations and interpretation of referred topics in coding, programming, data analytics , data science , data warehousing , Cloud Applications and Artificial Intelligence . Feel free to explore my blog and articles for reference and downloads . Do subscribe , like , share and comment ---- Vivek Dash
Friday, September 25, 2020
Decision Making in Recurrent Neural Networks
Subscribe to:
Post Comments (Atom)
Great article describing the feedback loop. Couldn't we get a stackoverflowexception because of the infinite recursion? Or do we only have the data set backwards until t-n where n=buffer size?
ReplyDeleteI don't think its like a memory bound application where stackoverflow and bufferoverflow type of exceptions due to
ReplyDeletememory related issues come over in Memory bound applications . Here we first create a neuron and then try to map our dataset whch obviously is a huge one ,and if this wouldnt have been read by pandas , scipy,numpy and other packages then ,then and there this sort of buffer and stack issue would have arose . Please note that this is already being handled by libraries designed to handle multitudes of data and create a neuron from those interpreted data , so buffer bound issues out of question if it wouldnt have been read before the creation of neuron