From 98f28824a05f40a7f7e7dc7f2678531e5cd6bf02 Mon Sep 17 00:00:00 2001 From: hubalazs <10714856+hubalazs@users.noreply.github.com> Date: Mon, 16 Sep 2019 11:38:39 +0200 Subject: [PATCH] Fixed typo (classifer) --- articles/BrainScript-Layers-Reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/articles/BrainScript-Layers-Reference.md b/articles/BrainScript-Layers-Reference.md index dcb929c7..6b2d1a7a 100644 --- a/articles/BrainScript-Layers-Reference.md +++ b/articles/BrainScript-Layers-Reference.md @@ -584,7 +584,7 @@ are wrappers around the [`OptimizedRNNStack()`](./OptimizedRNNStack.md) primitiv ### Example A simple text classifier, which runs a word sequence through a recurrence and then -passes the *last* hidden state of the LSTM to a softmax classifer, could have this form: +passes the *last* hidden state of the LSTM to a softmax classifier, could have this form: w = Input{...} # word sequence (one-hot vectors) e = EmbeddingLayer {150} (w) # embed as a 150-dimensional dense vector