-
Notifications
You must be signed in to change notification settings - Fork 59
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
What is the meaning of split #32
Comments
Hi @Felix1014 , Split refers to the way the videos from the datasets are divided into training and testing sets. For a relatively small dataset, more than one split are usually used to evaluate the model and the final result is the average of the performance over all splits. I hope this would help. |
Thank you for your reply. But I am still confused. Specifically, When I run main.py --action=train --dataset=DS --split=SP, if SP=1 or 2, how is the dataset divided into the training set and test set, and what do these .bundle files mean? And what is the relationship between SP and the .bundle files in data/50salads/splits. I really do not understand this.
Finally, if a dataset has standard training and test sets and we do not need to adopt cross-validation. What can I do to revise the codes?
Finally, if a dataset has standard training and test sets and we do not need to adopt cross-validation. What can I do to revise the codes? |
The .bundle files contain the list of examples for each split. We do not generate those files and they are the standard training and testing set for the used datasets. If you want to use another dataset, you only need to pass the corresponding list of training and testing examples (and maybe update the features dimension if you are using different features). |
got it. Thank you so much @yabufarha. |
Dear authors,
What is the meaning of split? There are many .bundle files in the /data/split, and can you explain this for me?
Thank you!
The text was updated successfully, but these errors were encountered: