-
使用连接https://github.com/PaddlePaddle/PaddleDetection/tree/release/2.0-beta/slim/extensions/distill_pruned_model示例进行蒸馏通道剪裁时,总是卡在迭代运行的位置。
运行命令如下:
python distill_pruned_model.py \
-c ../../../configs…
-
如题,本人使用第四个剪枝方法,训练完之后在剪枝的时候设置的percent只要超过10%就会报错
报错如下:
Exception has occurred: IndexError
index 0 is out of bounds for dimension 0 with size 0
File "D:\Python\yolov5prune-v5.0\models\common.py", …
-
Hi, thanks for this good repo, I wonder how can I load the pruned model with YOLOv8?
when I try to run the below command to get the validation results and GFLOP and number of layers, I get this error…
-
![166101578-9dd102a7-2bfb-46de-b841-90874148fdbd](https://user-images.githubusercontent.com/104298741/167100179-e311d0f6-356b-43a5-9b3f-b6f37198bfed.png)
为什么这个的pruned ratio 只有0.045左右啊,yolov3的这个都可…
-
剪枝时报错,KeyError: 'model.1.bn',请问怎样解决呢
```
Test after prune ...
YOLOv5 torch 1.10.0+cu102 CUDA:0 (NVIDIA GeForce RTX 2080 Ti, 11264MiB)
Suggested Gamma threshold should be less than 0.0703.
…
-
@VainF I have trained a custom YOLOv8 model. After training i have successfully pruned the model.
```python
for name, param in model.model.named_parameters():
param.requires_grad = True…
-
Hi, I have trained the YOLOV4 custom model with 3 classes. In order to improve the video inference timing (High FPS), I have optimized it with OpenVINO. However, the inference timing is not improved (…
-
- OpenVINO-YOLO Parsing tool: https://github.com/TNTWEN/OpenVINO-YOLO-Automatic-Generation
This repos could parse any changed yolov3/4 .cfg file and generate tensorflow1.x code automatically to he…
-
i m using openvino 20.04 version.
& also able to inference ,but fps im getting is 1-3. so why its low,
my goal of using openvino to get high fps on cpu,but itts giving very less fps, is there any…
-
Hi ! First thanks for the continuous update you are making on your repo, it's amazing. I'm working on a project on which i would like to be able to detect only one class of object but at a high speed …