mirror of
https://github.com/GokuMohandas/Made-With-ML.git
synced 2026-03-09 07:12:37 -05:00
error in 10_Utilities #26
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @kumar-mahendra on GitHub (Sep 1, 2021).
class
Dataset's methodcollate_fnneeds a little change as otherwise following error in thrown when creating dataloaderValueError: setting an array element with a sequenceGiven Code
Suggested solution
@GokuMohandas commented on GitHub (Sep 1, 2021):
Nice catch Kumar! Since our inputs are of the same length I have to stack them here. In subsequent lessons with variable sequence lengths within a batch, we have to use batch[:, i]. I'll push this fix later today.