Buffered data was truncated after reaching the output size limit

后端 未结 3 1476
眼角桃花
眼角桃花 2020-12-15 06:08

When I use Colaboratory to run my NIN model, it occurs an error in the output of training process which tells \"Buffered data was truncated after reaching the output size li

3条回答
  •  失恋的感觉
    2020-12-15 06:45

    it's not relating to hardware RAM or GPU capacity.

    Keras framework has a limitation for showing output info in console.

    when you see this message, your process is going on in background but you can't see it.

    If you use tensorflow as backend, write a Tensorboard callback in your Keras to see detailed output of your network.

    https://keras.io/callbacks/#tensorboard
    

提交回复
热议问题