Tianran Wang

Results 2 issues of Tianran Wang

I've trained this network with self defined dataset, configurations are listed below. num_train_image: 700, num_test_image: 300, pretrain_model: models/model_pre_train_syn.caffemodel, resize_height: 384, resize_width: 384, base_lr: 0.0001, batch_size: 50 After 1800 iterations, loss...

In the ctpn model, I've replaced the bidirectional unit GRU with LSTM. ``` x2 = Bidirectional(LSTM(128,return_sequences=True), name='blstm')(x1) ``` But the shape of blstm really confused me. Take an image as...