Maluuba / qgen-workshop

ImplementAI Workshop on Deep NLP for Question Generation
MIT License
78 stars 25 forks source link

hidden layers #11

Closed talrose01 closed 6 years ago

talrose01 commented 6 years ago

can someone tell me how many hidden layerss exist at this implementaion? i think that 3 but not sure that i am right. thanks

talrose01 commented 6 years ago

@surbhitkapoor

tavianator commented 6 years ago

This depends on exactly what you mean by "hidden layer." For the answer tagging there is a bidirectional GRU layer with a dense layer on top, so you could consider the GRU layer hidden. The question encoder/decoder is similar. But you could also consider the word embeddings to induce another hidden layer in the network.