-
Notifications
You must be signed in to change notification settings - Fork 324
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
Example for image sequence classifier #60
Comments
To classify image sequences with dimensions (200,200,3) for about 49 classes, you can adapt the Atari behavior cloning example from the documentation with some modifications:
Basic PyTorch template code:Import libraries
Define the Convolutional Block
Define the combined Convolutional and CfC model
Define your custom dataset
Instantiate model, criterion, optimizer
Load your dataset
Training loop
Keep in mind that this is just a quick draft of the general layout and a lot should be modified based on best practices and trial-and-error. |
outputs, hx = model(inputs)...i found there isn't any example about hx....how we use the hidden state?here,you haven't pass the hx like outputs, hx = model(inputs,hx),and doesn't use the returned hx |
am unable to understand what exactly is your end goal regarding your recent statement @by90 can you elaborate more with what exactly are you trying to achieve? |
Hi,
Could you supply more detailed steps for image sequence classification?
I have 200x200 and 3 channels of images for about 49 classses
Regards.
The text was updated successfully, but these errors were encountered: