Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
8bfd2279
Commit
8bfd2279
authored
Sep 16, 2017
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed to slightly better default recommendations for parameters.
parent
de32c75c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
dnn_mmod_train_find_cars_ex.cpp
examples/dnn_mmod_train_find_cars_ex.cpp
+3
-3
No files found.
examples/dnn_mmod_train_find_cars_ex.cpp
View file @
8bfd2279
...
...
@@ -161,13 +161,13 @@ int main(int argc, char** argv) try
int
num_overlapped_ignored_test
=
0
;
for
(
auto
&
v
:
boxes_test
)
num_overlapped_ignored_test
+=
ignore_overlapped_boxes
(
v
,
test_box_overlap
(
0.50
,
0.9
9
));
num_overlapped_ignored_test
+=
ignore_overlapped_boxes
(
v
,
test_box_overlap
(
0.50
,
0.9
5
));
int
num_overlapped_ignored
=
0
;
int
num_additional_ignored
=
0
;
for
(
auto
&
v
:
boxes_train
)
{
num_overlapped_ignored
+=
ignore_overlapped_boxes
(
v
,
test_box_overlap
(
0.50
,
0.9
9
));
num_overlapped_ignored
+=
ignore_overlapped_boxes
(
v
,
test_box_overlap
(
0.50
,
0.9
5
));
for
(
auto
&
bb
:
v
)
{
if
(
bb
.
rect
.
width
()
<
35
&&
bb
.
rect
.
height
()
<
35
)
...
...
@@ -308,7 +308,7 @@ int main(int argc, char** argv) try
std
::
vector
<
matrix
<
rgb_pixel
>>
mini_batch_samples
;
std
::
vector
<
std
::
vector
<
mmod_rect
>>
mini_batch_labels
;
random_cropper
cropper
;
cropper
.
set_seed
(
1
);
cropper
.
set_seed
(
time
(
0
)
);
cropper
.
set_chip_dims
(
350
,
350
);
cropper
.
set_min_object_size
(
0.20
);
cropper
.
set_max_rotation_degrees
(
2
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment