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
In file create_dataset.py, lines 118-120 the frame indices are shuffled and form the train_idx and test_idx.
Let's assume frames 10 is in test_idx and frame 9 is in train_idx.
Then when you call get_samples_from_frame(f_i=9), it would use the information of frame 10 to generate the samples (lines 81:82).
Then let's say the test data almost perfectly exist in train_set as well!!!
Is there something I misunderstood?
The text was updated successfully, but these errors were encountered:
amiryanj
changed the title
Sounds overlap in the test set and train set
Sounds overlap between test set and train set
Oct 17, 2018
Yes I fixed that mistake but it seems that results will converge somewhere else.
I run the algorithm for 350 epochs (10,000 is too much!) and the error does not come under 0.017.
In file create_dataset.py, lines 118-120 the frame indices are shuffled and form the train_idx and test_idx.
Let's assume frames 10 is in test_idx and frame 9 is in train_idx.
Then when you call
get_samples_from_frame(f_i=9)
, it would use the information of frame 10 to generate the samples (lines 81:82).Then let's say the test data almost perfectly exist in train_set as well!!!
Is there something I misunderstood?
The text was updated successfully, but these errors were encountered: