-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcommand.txt
22 lines (12 loc) · 820 Bytes
/
command.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
####testing interactive mode
python3 main.py -te save/model/2013-09small/1-1_512/3000_backup_bidir_model.tar -c data/2013-09small.txt -i
#in voice command mode
python3 main.py -te save/model/2013-09small/1-1_512/3000_backup_bidir_model.tar -c data/2013-09small.txt -i -v
### do training
python3 main.py -tr data/2013-09small.txt -la 1 -hi 512 -lr 0.0001 -it 50000 -b 64 -p 500 -s 1000
python main.py -tr <CORPUS_FILE_PATH> -la 1 -hi 512 -lr 0.0001 -it 50000 -b 64 -p 500 -s 1000
###start training from where you left
python main.py -tr <CORPUS_FILE_PATH> -l <MODEL_FILE_PATH> -lr 0.0001 -it 50000 -b 64 -p 500 -s 1000
python3 main.py -tr data/2013-09small.txt -l save/model/2013-09small/1-1_512/3000_backup_bidir_model.tar -lr 0.0001 -it 50000 -b 64 -p 500 -s 1000
## for more options
python3 main.py -h