sadeepj / crfasrnn_keras

CRF-RNN Keras/Tensorflow version
http://crfasrnn.torr.vision
MIT License
603 stars 170 forks source link

About the Batchsize #48

Open lixingang opened 5 years ago

lixingang commented 5 years ago

I notice the README showing the batchsize must equal one, But I write a simple training code about classification problem , just applying Keras API with batchsize==5. model.fit(data, labels, epochs=10, batch_size=5) And there is no error when running it. May there be some latent incorrectness?