Wok

Results 144 comments of Wok

This is the error which happens when I select a buy order and try to "remove selected" buy orders. ![Picture](https://i.ibb.co/FX0Fbyz/2022-04-01-19-07-52.png)

I ended up using https://github.com/bukson/steampy#market-methods

Alright, I guess this is due to: https://github.com/ternaus/retinaface/pull/18/commits You might need to upload another build to PYPI without the `streamlit` requirement, after this commit from November: ![commit](https://i.imgur.com/YzQnQot.png) https://github.com/ternaus/retinaface/commit/62647d379e0d7a936615f64fbf10e92114ced8f0#diff-4d7c51b1efe9043e44439a949dfd92e5827321b34082903477fd04876edb7552 which I...

For information, there is also another project called [`FaceXLib`](https://github.com/xinntao/facexlib) with RetinaFace for detection. ![FaceXlib](https://i.ibb.co/6mdjVhB/2021-09-22-09-18-10.png) The Python package is available on PyPI: ```bash pip install facexlib ``` As shown in the...

I have run the following code on a Google Colab machine: ```bash !wget https://github.com/xinntao/facexlib/releases/download/v0.1.0/detection_mobilenet0.25_Final.pth !wget https://github.com/xinntao/facexlib/releases/download/v0.1.0/detection_Resnet50_Final.pth !gdown --id 15zP8BP-5IvWXWZoYTNdvUJUiBqZ1hxu1 !gdown --id 14KX6VqF69MdSPk3Tr9PlDYbq7ArpdNUW ``` ```bash !sha256sum *.pth ``` This is the...

> How does this have anything to do with this repo? It is additional information for users like myself who: - have used this repository in the past, - would...

I see. It looks like this repository relies on: - [`torchvision.ops.nms`](https://pytorch.org/vision/stable/ops.html) wile FaceXLib relies on: - [a custom Python implementation](https://github.com/xinntao/facexlib/blob/206e0ccf86116bb9808e3f462c64be50ee218053/facexlib/detection/retinaface_utils.py#L38-L66). > I'm mainly referring to for loop which does NMS...

Apparently, training data was 840x840 resolution. https://github.com/ternaus/retinaface/blob/29611c722ad400eed977b2df1816ddf914dbb2bf/retinaface/configs/2020-07-20.yaml#L86

> Also, what is the max_size parameter to the get_model function...?? Is it the maximum size of the input image? This parameter is used to resize the image. It is...

You could train an e4e encoder: https://github.com/omertov/encoder4editing