grapefruitL
grapefruitL
My pipeline contains several components, these components have OutputPath type variables, so there will be files stored in minio, but when running, a random component will generate an error: `This...
here is my code: ``` img_objs = [] for img, boxes in zip(imgbatch, boxbatch): for box in boxes: x1, y1, x2, y2 = box img_objs.append(img[y1:y2, x1:x2]) ``` how to send...
你好!感谢分享 模型好像和论文有以下不一致的地方: 1、论文第一个bottleneck,n = 5,s=2,您给出的模型n=4,s=1,而且在此之前还有一个n=1,s=2的bottleneck,这样看上去似乎与后面更加一致,是有意修改的吗? 2、这个模型的loss公式并不是cos(θ+m),而是cos(θ)+m,所以对应的LabelSpecificAdd层应该替换成https://github.com/xialuxi/arcface-caffe里的CosinAddm
hi ! i am trying to use this caffe to do some ssd work i get a problem when i am tryting to create lmdb data using create_data.bat which is...
I use following cmd to do evaluation > python test_widerface.py --trained_model mobilenet0.25_Final.pth --network mobile0.25 but it turns out that "mobilenetV1X0.25_pretrain.tar" is used([here](https://github.com/biubug6/Pytorch_Retinaface/blob/b984b4b775b2c4dced95c1eadd195a5c7d32a60b/models/retinaface.py#L60)) and it is the imagenet pretrain weights, which...