Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sequential Inputs For Neural Networks

What type of neural networks should be used when we have sequential inputs. Let say we want to phrase some text which should give output depend on the sequence of the words. For this the output should dependent on the previous state of the inputs.

like image 302
Jayantha Lal Sirisena Avatar asked Nov 04 '22 21:11

Jayantha Lal Sirisena


1 Answers

Recurrent neural networks are what you are looking for -- at least in the general case, where sequences are long, or not all sequences have the same length.

Here's an example, here is a Python implementation and here are some reference papers.

like image 54
schaul Avatar answered Nov 15 '22 11:11

schaul