Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
892fa86c
Commit
892fa86c
authored
Dec 27, 2012
by
Davis King
Browse files
Made tests more robust
parent
43d9768e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
dlib/test/active_learning.cpp
dlib/test/active_learning.cpp
+5
-5
No files found.
dlib/test/active_learning.cpp
View file @
892fa86c
...
...
@@ -149,13 +149,13 @@ namespace
dlog
<<
LINFO
<<
"samples.size(): "
<<
samples
.
size
();
// When we pick the best/front ranked element then the active learning method
// should do
at least as well as random selection
.
DLIB_TEST
(
test_rank_unlabeled_training_samples
(
samples
,
labels
,
max_min_margin
,
30
,
true
)
>=
1
);
DLIB_TEST
(
test_rank_unlabeled_training_samples
(
samples
,
labels
,
ratio_margin
,
30
,
true
)
>=
1
);
// should
n't
do
much worse than random selection (and often much better)
.
DLIB_TEST
(
test_rank_unlabeled_training_samples
(
samples
,
labels
,
max_min_margin
,
25
,
true
)
>=
0.97
);
DLIB_TEST
(
test_rank_unlabeled_training_samples
(
samples
,
labels
,
ratio_margin
,
25
,
true
)
>=
0.97
);
// However, picking the worst ranked element should do way worse than random
// selection.
DLIB_TEST
(
test_rank_unlabeled_training_samples
(
samples
,
labels
,
max_min_margin
,
30
,
false
)
<
1
);
DLIB_TEST
(
test_rank_unlabeled_training_samples
(
samples
,
labels
,
ratio_margin
,
30
,
false
)
<
1
);
DLIB_TEST
(
test_rank_unlabeled_training_samples
(
samples
,
labels
,
max_min_margin
,
25
,
false
)
<
0.8
);
DLIB_TEST
(
test_rank_unlabeled_training_samples
(
samples
,
labels
,
ratio_margin
,
25
,
false
)
<
0.8
);
}
}
a
;
...
...
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