Skip to content
New issue

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

AttributeError: can't set attribute 'feature_extractor' #56

Open
mlarrarte opened this issue Dec 15, 2023 · 1 comment
Open

AttributeError: can't set attribute 'feature_extractor' #56

mlarrarte opened this issue Dec 15, 2023 · 1 comment

Comments

@mlarrarte
Copy link

mlarrarte commented Dec 15, 2023

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'
@HarsimarSingh23
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants