8 replies
Aug '20

HarryDC

There seems to be a broken reference in section 8.5.3 in the second paragraph " :numref: sec_mlp"

2 replies
Aug '20 ▶ HarryDC

goldpiggy

Hi @HarryDC, eagle eyes! Can you post an issue on our github? Thanks for contributing!

Sep '20 ▶ HarryDC

astonzhang

Thanks. Now it’s fixed. See comments in https://github.com/d2l-ai/d2l-en/issues/1448

Nov '20

zhangjiekui

the second traning (use_random_iter=True) uses the model trained by the first time:
(1)the ppl is from about 2.0
(2)the curve is bumpy

So misleading :sweat_smile:

1 reply
Nov '20 ▶ zhangjiekui

StevenJokess

I argee with “uses the model trained by the first time”. Thank you for reminding us.
@zhangjiekui
I think use_random_iter=True maybe is a way to converge better when it is hard to converge our model.

Oct '21

ljppro

There is a statement H, = state in function rnn.
I’ve never seen such a usage. What does it mean?
I asked some colleagues around me, but nobody knows.
Can somebody kindly explain it to me?
Many thanks!

Nov '21

dhern023

@ljppro
This statement unpacks an iterable of length one

x, = [2]
>>x
2
Jan '22

qbaza

The second training still uses the same data iterator which is sequential not random. Am I missing something?