Model structure
My-Khan opened this issue · 10 comments
Yes. This is a basic RNN model structure: single recurrent hidden layer and forward model. It can be used for NER task. For more complicated model, you could try bi-directional model, deep recurrent hidden layer, different recurrent hidden type(BPTT, LSTM), CRF output and so on.
many thanks for clarification.
also on the home page of RNNShrap the model structure given their for deep bi-directional RNN-CRF network all the three hidden layer are labeled Hidden layer #1, Hidden layer #1 ,Hidden layer #1 . is this the typing mistake? or its real.
also the equation used from computation is this one
h(t)=σ(U.x(t)+W.h(t-1) ), t=1….T and
y(t)=g(Vh(t))
if yes
then please explain g(Vh(t)).
is same equation is used for computation in basic RNN and DEEP RNN?
Many thanks.
can i use your diagrams in my paper with reference?
Sure. I'm glad these diagrams is helpful for your paper.
so nice of you
Fixed it. Thanks for your pointing it out.
Appreciated , Is in future there is chance of implementation of Skip-Chain CRF in C# from you?
Maybe, but currently, I have no plan about it.
Ok thanks for kind reponse