santhoshkolloju / Abstractive-Summarization-With-Transfer-Learning

Abstractive summarisation using Bert as encoder and Transformer Decoder
406 stars 99 forks source link

Is there an error inside the _eval_epoch function? #32

Open Tesla-jiang opened 5 years ago

Tesla-jiang commented 5 years ago

Is there an error inside the _eval_epoch function?

After debugging, I found that this function would enter an endless loop, and no operation could overflow it, and [batch] acquisition of batch data seems to never be exhausted. Is there any mistake in my operation?

Looking forward to your reply!

Simons2017 commented 5 years ago

Is there an error inside the _eval_epoch function?

After debugging, I found that this function would enter an endless loop, and no operation could overflow it, and [batch] acquisition of batch data seems to never be exhausted. Is there any mistake in my operation?

Looking forward to your reply!

Hello, I met the same problem. How did you solve it?@1172135979

andrewmoses commented 5 years ago

Is there an error inside the _eval_epoch function?

After debugging, I found that this function would enter an endless loop, and no operation could overflow it, and [batch] acquisition of batch data seems to never be exhausted. Is there any mistake in my operation?

Looking forward to your reply!

Even I'm facing the same problem. If there is any work around pls share

ghost commented 4 years ago

Hi, Just want to check if someone facing this problem has found a workaround? I'm also facing the same issue. Please share the workaround.

nehac4371 commented 4 years ago

Facing the same problem.

Victor0118 commented 4 years ago

Fixed by setting is_training to False here: https://github.com/santhoshkolloju/Abstractive-Summarization-With-Transfer-Learning/blob/master/model.py#L32

ghost commented 4 years ago

Hi @Victor0118 Thanks for the response. The fix you suggested seems to be working however, I've got into another error here https://github.com/santhoshkolloju/Abstractive-Summarization-With-Transfer-Learning/blob/745b0262ae13cfd00c84abde77c4d918d84a1d81/texar_repo/examples/transformer/bleu_tool.py#L134 . In console it says ZeroDivisionError: division by zero. Would you be able to tell what went wrong and how to fix this?