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

Dataset split #9

Open
zhangpur opened this issue Aug 27, 2019 · 0 comments
Open

Dataset split #9

zhangpur opened this issue Aug 27, 2019 · 0 comments

Comments

@zhangpur
Copy link

zhangpur commented Aug 27, 2019

Hi! Sounds like shuffling between train/test split could cause lower prediction error.
random_idx = random.sample(range(frame_num), frame_num)
train_idx = random_idx[:int(frame_num * train_rate)]
test_idx = random_idx[int(frame_num * train_rate):]
Is this setting exactly used in the experiments when producing the result in the original paper? Just looking for a fair experimental setting for our comparison.

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