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
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: