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 get this error when running the train.py module.
[/content/manga_ocr/manga_ocr_dev/training/get_model.py](https://localhost:8080/#) in __init__(self, feature_extractor, tokenizer) 7 8 def __init__(self, feature_extractor, tokenizer): ----> 9 self.feature_extractor = feature_extractor 10 self.tokenizer = tokenizer 11 self.current_processor = self.feature_extractor AttributeError: can't set attribute 'feature_extractor'
The text was updated successfully, but these errors were encountered:
feature_extractor will be deprecated. Try using self.image_processor attribute.
class TrOCRProcessorCustom(TrOCRProcessor): def __init__(self, feature_extractor, tokenizer, **kwargs): self.image_processor = feature_extractor self.tokenizer = tokenizer self.current_processor = self.image_processor
Sorry, something went wrong.
No branches or pull requests
I get this error when running the train.py module.
The text was updated successfully, but these errors were encountered: