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
any information about training data structure?
The text was updated successfully, but these errors were encountered:
any information about training data structure? Did you fix it ?
Sorry, something went wrong.
You can infer it from here.
def __getitem__(self, index): ''' line: image path\tlabel ''' line = self.lines[index] img_path, label_y_str = line.strip('\n').split('\t') img = cv2.imread(img_path) / 255.
In your dataset.txt each line should have this structure: path-to-img1.jpg\ttext-inside-your-img1 path-to-img2.jpg\ttext-inside-your-img2
No branches or pull requests
any information about training data structure?
The text was updated successfully, but these errors were encountered: