Nick Konovalchuk

Results 9 issues of Nick Konovalchuk

Fixed https://github.com/Megvii-BaseDetection/YOLOX/issues/1272 by autoinstalling essential packages

### Describe the bug PNG images aren't in All Supported Types, so, they aren't displayed by default. Have to look for them among non-image files with All Files option. No...

bug

The concept of referenceless seems pretty useful. It seems to me, it can find commercial use cases. Though, the code might need some refactoring. It would be cool to have...

I've ran following piece of code ```python import torch from lavis.models import load_model, load_model_and_preprocess from PIL import Image device = torch.device("cuda" if torch.cuda.is_available() else "cpu") # load sample image raw_image...

Apart from `spacy` VQA also requires `en_core_web_sm ` model. This PR is meant to be merged alongside with https://github.com/salesforce/LAVIS/pull/75, but is separated from it since it's a bit hacky. Still...

cla:signed

### Prerequisite - [X] I have searched [the existing and past issues](https://github.com/open-mmlab/mmediting/issues) but cannot get the expected help. - [X] I have read the [FAQ documentation](https://mmdetection.readthedocs.io/en/latest/faq.html) but cannot get the...

kind/enhancement
help wanted
good first issue

Following up on https://github.com/WongKinYiu/yolov9/issues/10, a bunch of people including me is curious if you're interested in putting managerial or/and development efforts into rewriting certain parts of the repo so that...

Imo the "default" first steps for an image going through ViT-B/16 are 1. Creating patches with `torch.nn.Unpool` 2. Doing linear projection with `torch.nn.Linear` The notebook implements a somewhat scaled down...