From 7b97bf105185681082c2a69021805f41f85d3974 Mon Sep 17 00:00:00 2001 From: Kai Sheng Tai Date: Sat, 30 May 2015 16:37:33 -0700 Subject: [PATCH] Update README to reflect latest changes --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 911cd7c..a916cb9 100644 --- a/README.md +++ b/README.md @@ -54,12 +54,12 @@ To train models for the semantic relatedness prediction task on the SICK dataset run: ``` -th relatedness/main.lua --model --layers --dim --epochs +th relatedness/main.lua --model --layers --dim --epochs ``` where: - - `model`: the LSTM variant to train (default: dependency, i.e. the Dependency Tree LSTM) + - `model`: the LSTM variant to train (default: dependency, i.e. the Dependency Tree-LSTM) - `layers`: the number of layers (default: 1, ignored for Tree-LSTMs) - `dim`: the LSTM memory dimension (default: 150) - `epochs`: the number of training epochs (default: 10) @@ -71,10 +71,10 @@ The goal of this task is to predict sentiment labels for sentences. For this tas To train models for the sentiment classification task on the Stanford Sentiment Treebank, run: ``` -th sentiment/main.lua --model --layers --dim --epochs +th sentiment/main.lua --model --layers --dim --epochs ``` -This trains a Constituency Tree LSTM model for the "fine-grained" 5-class classification sub-task. +This trains a Constituency Tree-LSTM model for the "fine-grained" 5-class classification sub-task. For the binary classification sub-task, run with the `-b` or `--binary` flag, for example: