Nikita Shevtsov

Results 9 comments of Nikita Shevtsov

@jinfagang hey, did you find a method?

@vishal-nayak1 @nurielw05 as I know LayoutLM solves Token Classification problem. So it can just predict labels for words.

@KevinRoller hi! Did you find an answer?

@arnaudstiegler I faced the same problem. I get the source code of default pipeline and changed probabilties of every augmentation from 0.2 to 0.1. The output is less corrupted and...

I propose to change the if statement: ```python if isinstance(augmentation, Augmentation) and \ not isinstance(augmentation, OneOf) and \ not isinstance(augmentation, AugmentationSequence): ``` Everything works okay until new error is thrown:...

> @Travvy88 Do you mind investigating this further to see if you can identify a solution? If so, you could prepare a PR and we could include you as a...

@jboarman according to my research, the next error at line `augmentationpipeline.py:791` is caused when the program tries to extract bboxes, keypoints and mask from `result` after applying `AugmentationSequence`. However, `AugmentationSequence`...

I fixed 751st line in `apply_phase` and some code inside `OneOf` and `AugmentationSequence`. It seems that these changes are enough to solve the problem. You can check my PR #446.