Butui Hu
Butui Hu
Hello, I'm using hugo for my blog. I add ```javascript ``` to `themes/paperback/layouts/partials/footer.html`. And create new post `flowchart.md`: ```flow st=>start: Start e=>end: End op1=>operation: Caculate st->op1->e ``` But those codes...
`get strokeColor()`: https://github.com/jsbroks/coco-annotator/blob/7c9992ce623b891c5dc208cd24451e51f0e76151/client/src/libs/keypoints.js#L425-L427 and https://github.com/jsbroks/coco-annotator/blob/7c9992ce623b891c5dc208cd24451e51f0e76151/client/src/libs/keypoints.js#L444-L446 `set strokeColor(val)`: https://github.com/jsbroks/coco-annotator/blob/7c9992ce623b891c5dc208cd24451e51f0e76151/client/src/libs/keypoints.js#L419-L423 and https://github.com/jsbroks/coco-annotator/blob/7c9992ce623b891c5dc208cd24451e51f0e76151/client/src/libs/keypoints.js#L438-L442
https://github.com/jsbroks/coco-annotator/blob/7c9992ce623b891c5dc208cd24451e51f0e76151/docker-compose.gpu.yml#L20-L35 introduces unwanted space due to yaml format. For example, you'll get ` BG` instead of `BG` in the python code. A quick fix, add this line after: https://github.com/jsbroks/coco-annotator/blob/7c9992ce623b891c5dc208cd24451e51f0e76151/backend/config/config.py#L68 ```python...
According to https://github.com/jsbroks/coco-annotator/blob/7c9992ce623b891c5dc208cd24451e51f0e76151/backend/webserver/api/models.py#L39-L40 and https://github.com/jsbroks/coco-annotator/blob/7c9992ce623b891c5dc208cd24451e51f0e76151/backend/webserver/api/models.py#L68-L69 `MaskRCNN` is defined twice, which make the dev users confused. Maybe rename the first one to `DEXTR` or something more meaningful?
After building hiddenlayer, `pytest -v` failed at: ```text tests/test_pytorch_graph.py::TestPytorchGraph::test_graph [1] 29548 segmentation fault (core dumped) pytest -v ``` Any idea? Or should I ignore it anyway?
OS: ArchLinux gcc: 12.1.1 python: 3.10.5 ``` cmake -B build -S zfp-1.0.0 \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_SKIP_RPATH=ON \ -DBUILD_CFP=ON \ -DBUILD_ZFPY=ON \ -DBUILD_ZFORP=ON make -C build ``` error log: ``` /usr/bin/ld:...
现在是按 ESC 就关掉了主程序窗口了,但是图片和视频的关闭按钮不好点,可否考虑使用 ESC 键替代?
According to https://github.com/JaidedAI/EasyOCR/blob/7a685cb8c4ba14f2bc246f89c213f1a56bbc2107/easyocr/recognition.py#L137-L149 the the confidence is `numpy.array`, and it's not json serializable. It would be great to make it json serializable. And according to https://github.com/JaidedAI/EasyOCR/blob/7a685cb8c4ba14f2bc246f89c213f1a56bbc2107/easyocr/detection.py#L92-L110 the text box coord...
比如说我的命令是: ```bash aria2c "http://www.example.com" --header "foo" --header "bar" ``` 我是要在 Header 框里输入什么内容?
**Describe the bug** torchgan install tests to site-packages folder, not `site-packages/torchgan` **To Reproduce** Steps to reproduce the behavior: 1. torchgan 0.0.2.r33.g8c2bc99 **Expected behavior** A clear and concise description of what...