From what I understand,
x argument of fit method have been assigned with array of images, indexed text with zeroes padded, an array of 31s with same length as input array and length of each target word.
y argument of fit method have been assigned with an array of zeroes.
My doubts:
why are zeroes being sent to y, not train_padded_txt, since this is the array that contains text or target labels.
Why is x being assigned with all of those things. What is the reason. Why can't it just be:
model.fit(x=training_img, y=train_padded_txt,,,...)
Please help me understand these. Thanks in advance and very nice work and nice of you to open source this.
In this line of code, in CRNN Model.ipynb notebook:
From what I understand,
x
argument of fit method have been assigned with array of images, indexed text with zeroes padded, an array of 31s with same length as input array and length of each target word.y
argument of fit method have been assigned with an array of zeroes.My doubts:
train_padded_txt
, since this is the array that contains text or target labels.x
being assigned with all of those things. What is the reason. Why can't it just be:model.fit(x=training_img, y=train_padded_txt,,,...)
Please help me understand these. Thanks in advance and very nice work and nice of you to open source this.