Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add batch to training process #6

Open
TanguyJeanneau opened this issue Oct 5, 2019 · 0 comments
Open

Add batch to training process #6

TanguyJeanneau opened this issue Oct 5, 2019 · 0 comments

Comments

@TanguyJeanneau
Copy link
Owner

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)

@TanguyJeanneau TanguyJeanneau changed the title Upgrade training process Add batch to training process Oct 5, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant