We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I was trying this on my jupyter notebook and got some directory issue.
def __init__(self, root, set, train = True):
self.root = root self.path_devkit = os.path.join(root, 'CARPK') self.path_images = os.path.join(root, 'CARPK', 'Images') self.classes = object_categories self.train = train id_list_file = os.path.join(self.path_devkit, 'ImageSets//{0}.txt'.format(set)) self.ids = [id_.strip() for id_ in open(id_list_file)] print('CARPK dataset set=%s number of classes=%03d number of images=%d' % ( set, len(self.classes), len(self.ids)))
have corrected with "//" in my code.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was trying this on my jupyter notebook and got some directory issue.
def __init__(self, root, set, train = True):
have corrected with "//" in my code.
The text was updated successfully, but these errors were encountered: