Last active
August 11, 2019 23:49
-
-
Save techwithshadab/78241cb0007efe5b51bf4e020bc2a48c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# train and test with image name along with paths | |
path = '/final/' # path of your image folder | |
train_image_name = [path+each for each in train_data['Filename'].values.tolist()] | |
test_image_name = [path+each for each in test_data['Filename'].values.tolist()] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment