NLP-C3-W1: Neural Networks for Sentiment Analysis
https://www.coursera.org/learn/sequence-models-in-nlp/home/week/1
Structure
Embedding Layer
Mean Layer
Input Representation
Model Architecture in Trax
// Some code
from trax import layers as tl
Model = tl.Serial(
tl.Dense(4),
tl.Sigmoid(),
tl.Dense(4),
tl.Sigmoid(),
tl.Dense(3),
tl.Softmax())Completed Notebook
Last updated