Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
Howard Chen committed Aug 24, 2019
1 parent 30bd17a commit 0f52d3a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sdr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,25 @@ Before running the scripts, set paths for `data_dir`, `image_dir`, and `target_d

To run model Concat:

```python
```
python3 train.py --embed_dropout 0.5 --lr 0.001 --model concat --bidirectional True --log --name concat
```

To run model ConcatConv:

```python
```
python3 train.py --embed_dropout 0.5 --lr 0.001 --model concat_conv --bidirectional True --num_conv_layers 1 --log --name concat_conv
```

To run model RNN2Conv:

```python
```
python3 train.py --embed_dropout 0.5 --lr 0.001 --model rnn2conv --bidirectional True -- num_rnn2conv_layers 1 --log --name rnn2conv
```

To run model LingUNet:

```python
```
python3 train.py --embed_dropout 0.5 --lr 0.0005 --model lingunet --bidirectional True --num_lingunet_layers 2 --log --summary --name lingunet
```

0 comments on commit 0f52d3a

Please sign in to comment.