Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.70K
1 Posted Topic
""" After extracting the RAR, we run this to move all the files into the appropriate train/test folders. Should only run this file once! """ import os import os.path def get_train_test_lists(version='01'): # Get our files based on version. test_file = os.path.join('traintestlist', 'testlist' + version + '.txt') train_file = os.path.join('traintestlist', 'trainlist' …
The End.