nahidalam
nahidalam
I don't see it in your installation guide. But is there a way to install elasticsearch-head plugin in AWS ES service?
Using Python3.3 I see below error while converting texas.lbr to KiCAD format Conversion Failed Traceback (most recent call last): File "Start.py", line 141, in convertLib lib.writeLibrary(modFile,symFile) File "C:\Python33\Eagle2Kicad/Library\Library.py", line 67,...
Is there a plan for adding [Squeezenet](https://pytorch.org/hub/pytorch_vision_squeezenet/) as part of `timm` library?
In your config.py you have https://github.com/moein-shariatnia/OpenAI-CLIP/blob/master/config.py#L22-L23 ``` pretrained = False # for both image encoder and text encoder trainable = False # for both image encoder and text encoder ```...
Python version `3.6` Pytorch version `1.4` I downloaded the pre-trained models and running `test.py` ``` python test.py ``` But getting the below error ``` Traceback (most recent call last): File...
Did anyone ever tried to finetune the MODNet model with custom dataset? Wondering if you have any tutorial.
Is there any plan on adding the pretrained weights in TorchHub?
I am training yolox_tiny on say `320x192` image dimension and I see a 10% difference between validation score and test score. The difference is not that high when I train...
Since YOLOX is trained on `BGR` images (`cv2.imread` returns a `BGR` by default), what would it take if I want to train it on `RGB` images? I am thinking below...
I am a bit confused whether YOLOX input images are RGB or BGR for training. Can you point me to the code? The [TrainTransform](https://github.com/Megvii-BaseDetection/YOLOX/blob/48fd2a95837a92e0583492210b5ebeb02a4e7d7d/yolox/data/data_augment.py#L161) class seems to indicate that the...