This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
Huawei_Technology
/
mindspore
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
13
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
optimized the network of yolov3_darknet53
pull/15555/head
wsq3
4 years ago
parent
f66ba14178
commit
00336b7df5
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
model_zoo/official/cv/yolov3_darknet53/eval.py
+1
-1
model_zoo/official/cv/yolov3_darknet53/src/config.py
+ 1
- 1
model_zoo/official/cv/yolov3_darknet53/eval.py
View File
@@ -173,7 +173,7 @@ class DetectionEngine:
y = y.reshape(-1)
w = w.reshape(-1)
h = h.reshape(-1)
cls_emb = cls_emb.reshape(-1,
80
)
cls_emb = cls_emb.reshape(-1,
self.num_classes
)
conf = conf.reshape(-1)
cls_argmax = cls_argmax.reshape(-1)
+ 1
- 1
model_zoo/official/cv/yolov3_darknet53/src/config.py
View File
@@ -62,7 +62,7 @@ class ConfigYOLOV3DarkNet53:
(116, 90),
(156, 198),
(373, 326)]
out_channel =
255
out_channel =
3 * (num_classes + 5)
# test_param
test_img_shape = [416, 416]
Write
Preview
Loading…
Cancel
Save