Skip to content

Commit 63195e5

Browse files
committed
Fixed FAQ markdown
1 parent b23ef83 commit 63195e5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

FAQ.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
% Frequently Asked Questions
1+
# Frequently Asked Questions
22

33
## Test results aren't good. What's wrong?
44

5-
The default training schedule in the provided `Makefile` is likely to get caught in a bad local minimum. See (this comment)[https://github.com/weinman/cnn_lstm_ctc_ocr/issues/42#issuecomment-428791521] and (this example result)[https://github.com/weinman/cnn_lstm_ctc_ocr/issues/42#issuecomment-428793851] in the issues for ideas on how to solve this problem.
5+
The default training schedule in the provided `Makefile` is likely to get caught in a bad local minimum. See [this comment](https://github.com/weinman/cnn_lstm_ctc_ocr/issues/42#issuecomment-428791521) and [this example result](https://github.com/weinman/cnn_lstm_ctc_ocr/issues/42#issuecomment-428793851) in the issues for ideas on how to solve this problem.
66

77
## Is there a pretrained model available?
88

@@ -16,12 +16,12 @@ The following is a basic example:
1616

1717
```sh
1818
# Pre-train the initial model
19-
python train.py --output=../data/pretrained
19+
python train.py --output=../data/pretrained # other flags as desired
2020
# Tune only LSTMs
21-
python train.py --output=../data/finetuned --tune_from=../data/pretrained/model.ckpt-NNNNN --tune_scope=rnn
21+
python train.py --output=../data/finetuned --tune_from=../data/pretrained/model.ckpt-TTTTT --tune_scope=rnn # other flags as desired
2222
```
2323

24-
Note that `NNNN` should be replaced with the step/checkpoint you want to fine tune from.
24+
Note that `TTTTT` should be replaced with the step/checkpoint you want to fine tune from.
2525

26-
See the code in `model.py` for uses of `tf.variable_scope` for possible restrictions (or how you might add your own).
26+
See the code in [`model.py`](src/model.py) for uses of `tf.variable_scope` for possible restrictions (or how you might add your own).
2727

0 commit comments

Comments
 (0)