You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So far, the training is made:
per epoch (all N videos in the datasetdataset) //
per video (all frames or a subselection of M frames) //
per couple (2 subsequent frames of the video) //
process the 2 frames //
then optimize (Adam)
We should train by batch, so
per epoch (all N videos in the datasetdataset) //
per video (all frames or a subselection of M frames) //
process all frames at once in a batch //
then optimize (Adam)
OR
per epoch (all N videos in the datasetdataset) //
per video batch (all frames or a subselection of M frames, for P videos) //
process all frames at once in a batch //
then optimize (Adam)
The text was updated successfully, but these errors were encountered:
So far, the training is made:
per epoch (all N videos in the datasetdataset) //
per video (all frames or a subselection of M frames) //
per couple (2 subsequent frames of the video) //
process the 2 frames //
then optimize (Adam)
We should train by batch, so
per epoch (all N videos in the datasetdataset) //
per video (all frames or a subselection of M frames) //
process all frames at once in a batch //
then optimize (Adam)
OR
per epoch (all N videos in the datasetdataset) //
per video batch (all frames or a subselection of M frames, for P videos) //
process all frames at once in a batch //
then optimize (Adam)
The text was updated successfully, but these errors were encountered: