Skip to content

Commit f842d36

Browse files
authored
Merge pull request #15 from scottleedavis/master
removed trailing slash in training data directory
2 parents 52a73ad + f21d2dc commit f842d36

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

training/lstm/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ Inside the `/data` folder, create a new folder with the name of your data. Insid
1717
Then run:
1818

1919
```bash
20-
python train.py --data_dir=./data/my_own_data/
20+
python train.py --data_dir=./data/my_own_data
2121
```
2222

2323
You can specify the hyperparameters:
2424

2525
```bash
26-
python train.py --data_dir=./data/my_own_data/ --rnn_size 128 --num_layers 2 --seq_length 64 --batch_size 32 --num_epochs 1000
26+
python train.py --data_dir=./data/my_own_data --rnn_size 128 --num_layers 2 --seq_length 64 --batch_size 32 --num_epochs 1000
2727
```
2828

2929
This will train your model and save the model, **in the globals `./models` folder**, in a format usable in javascript.

0 commit comments

Comments
 (0)