Skip to content

Commit eb26108

Browse files
committed
update config.json
1 parent c9954ef commit eb26108

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

config.json

+13-9
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
{
2-
"lookup_alphabet_file" : "./data/alphabet/lookup.json",
3-
"csv_files_train" : ".data//csv_experiments/lines_train_tf_format.csv",
4-
"csv_files_eval" : ".data/csv_experiments/lines_validation1_tf_format.csv",
2+
"lookup_alphabet_file" : "./data/iam/generated/generated_alphabet/iam_alphabet_lookup.json",
3+
"csv_files_train" : "./data/iam/generated/generated_csv/lines_train.csv",
4+
"csv_files_eval" : "./data/iam/generated/generated_csv/lines_validation1.csv",
55
"output_model_dir" : "./output_model",
66
"num_beam_paths" : 1,
7-
"cnn_batch_norm" : [true, true, true, true, true],
7+
"cnn_features_list" : [64, 128, 256, 512],
8+
"cnn_kernel_size" : [3, 3, 3, 3],
9+
"cnn_stride_size" : [[1, 1], [1, 1], [1, 1], [1, 1]],
10+
"cnn_pool_size" : [[2, 2], [2, 2], [2, 1], [2, 1]],
11+
"cnn_batch_norm" : [true, true, true, true],
812
"max_chars_per_string" : 80,
913
"n_epochs" : 200,
10-
"train_batch_size" : 128,
11-
"eval_batch_size" : 128,
12-
"learning_rate": 1e-4,
13-
"input_shape" : [128, 1400],
14-
"rnn_units" : [256, 256, 256],
14+
"train_batch_size" : 64,
15+
"eval_batch_size" : 64,
16+
"learning_rate": 1e-3,
17+
"input_shape" : [64, 900],
18+
"rnn_units" : [128, 128, 128, 128],
1519
"restore_model" : false
1620
}

0 commit comments

Comments
 (0)