Skip to content

Commit 2f6e4f6

Browse files
MartinXPNmahnerak
authored andcommitted
Reverted changes in README
1 parent 7286735 commit 2f6e4f6

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

README.md

+5-10
Original file line numberDiff line numberDiff line change
@@ -24,32 +24,27 @@ On the other hand we can't rule out that we have bugs in our code.
2424

2525
## Instructions
2626

27-
1. We need to download Glove data and convert it to word2vec format
28-
```sh
29-
python word2vec_downloader.py --word2vec_path data/word2vec_from_glove_300.vec
30-
```
31-
32-
2. Parse and split the data
27+
1. We need to parse and split the data
3328
```sh
3429
python parse_data.py data/train-v1.1.json --train_ratio 0.9 --outfile data/train_parsed.json --outfile_valid data/valid_parsed.json
3530
python parse_data.py data/dev-v1.1.json --outfile data/dev_parsed.json
3631
```
3732

38-
3. Preprocess the data
33+
2. Preprocess the data
3934
```sh
4035
python preprocessing.py data/train_parsed.json --outfile data/train_data_str.pkl --include_str
4136
python preprocessing.py data/valid_parsed.json --outfile data/valid_data_str.pkl --include_str
4237
python preprocessing.py data/dev_parsed.json --outfile data/dev_data_str.pkl --include_str
4338
```
4439

45-
4. Train the model
40+
3. Train the model
4641
```sh
4742
python train.py --hdim 45 --batch_size 50 --nb_epochs 50 --optimizer adadelta --lr 1 --dropout 0.2 --char_level_embeddings --train_data data/train_data_str.pkl --valid_data data/valid_data_str.pkl
4843
```
4944

50-
5. Predict on dev/test set samples
45+
4. Predict on dev/test set samples
5146
```sh
5247
python predict.py --batch_size 100 --dev_data data/dev_data_str.pkl models/31-t3.05458271443-v3.27696280528.model prediction.json
5348
```
5449

55-
Our best model can be downloaded from Release v0.1: https://github.com/YerevaNN/R-NET-in-Keras/releases/download/v0.1/31-t3.05458271443-v3.27696280528.model
50+
Our best model can be downloaded from Release v0.1: https://github.com/YerevaNN/R-NET-in-Keras/releases/download/v0.1/31-t3.05458271443-v3.27696280528.model

0 commit comments

Comments
 (0)