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
4d623597
Commit
4d623597
authored
Oct 01, 2016
by
Davis King
Browse files
Added find_upper_quantile() and count_steps_without_decrease_robust().
parent
ea68abcc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
118 additions
and
4 deletions
+118
-4
dlib/statistics/running_gradient.h
dlib/statistics/running_gradient.h
+68
-0
dlib/statistics/running_gradient_abstract.h
dlib/statistics/running_gradient_abstract.h
+50
-4
No files found.
dlib/statistics/running_gradient.h
View file @
4d623597
...
@@ -8,6 +8,7 @@
...
@@ -8,6 +8,7 @@
#include "../serialize.h"
#include "../serialize.h"
#include <cmath>
#include <cmath>
#include "../matrix.h"
#include "../matrix.h"
#include <algorithm>
namespace
dlib
namespace
dlib
...
@@ -215,6 +216,26 @@ namespace dlib
...
@@ -215,6 +216,26 @@ namespace dlib
return
g
.
probability_gradient_greater_than
(
thresh
);
return
g
.
probability_gradient_greater_than
(
thresh
);
}
}
// ----------------------------------------------------------------------------------------
template
<
typename
T
>
double
find_upper_quantile
(
T
container
,
double
quantile
)
{
DLIB_CASSERT
(
0
<=
quantile
&&
quantile
<=
1.0
);
DLIB_CASSERT
(
container
.
size
()
>
0
);
size_t
idx_upper
=
std
::
round
((
container
.
size
()
-
1
)
*
(
1
-
quantile
));
std
::
nth_element
(
container
.
begin
(),
container
.
begin
()
+
idx_upper
,
container
.
end
());
auto
upper_q
=
*
(
container
.
begin
()
+
idx_upper
);
return
upper_q
;
}
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
template
<
template
<
...
@@ -252,6 +273,53 @@ namespace dlib
...
@@ -252,6 +273,53 @@ namespace dlib
return
count
;
return
count
;
}
}
// ----------------------------------------------------------------------------------------
template
<
typename
T
>
size_t
count_steps_without_decrease_robust
(
const
T
&
container
,
double
probability_of_decrease
=
0.51
,
double
quantile_discard
=
0.10
)
{
// make sure requires clause is not broken
DLIB_ASSERT
(
0
<=
quantile_discard
&&
quantile_discard
<=
1
);
DLIB_ASSERT
(
0.5
<
probability_of_decrease
&&
probability_of_decrease
<
1
,
"
\t
size_t count_steps_without_decrease_robust()"
<<
"
\n\t
probability_of_decrease: "
<<
probability_of_decrease
);
if
(
container
.
size
()
==
0
)
return
0
;
const
auto
quantile_thresh
=
find_upper_quantile
(
container
,
quantile_discard
);
running_gradient
g
;
size_t
count
=
0
;
size_t
j
=
0
;
for
(
auto
i
=
container
.
rbegin
();
i
!=
container
.
rend
();
++
i
)
{
++
j
;
// ignore values that are too large
if
(
*
i
<=
quantile_thresh
)
g
.
add
(
*
i
);
if
(
g
.
current_n
()
>
2
)
{
// Note that this only looks backwards because we are looping over the
// container backwards. So here we are really checking if the gradient isn't
// decreasing.
double
prob_decreasing
=
g
.
probability_gradient_greater_than
(
0
);
// If we aren't confident things are decreasing.
if
(
prob_decreasing
<
probability_of_decrease
)
count
=
j
;
}
}
return
count
;
}
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
template
<
template
<
...
...
dlib/statistics/running_gradient_abstract.h
View file @
4d623597
...
@@ -141,7 +141,7 @@ namespace dlib
...
@@ -141,7 +141,7 @@ namespace dlib
);
);
/*!
/*!
requires
requires
- container mus
e
be a container of double values that can be enumerated with a
- container mus
t
be a container of double values that can be enumerated with a
range based for loop.
range based for loop.
- The container must contain more than 2 elements.
- The container must contain more than 2 elements.
ensures
ensures
...
@@ -158,7 +158,7 @@ namespace dlib
...
@@ -158,7 +158,7 @@ namespace dlib
);
);
/*!
/*!
requires
requires
- container mus
e
be a container of double values that can be enumerated with a
- container mus
t
be a container of double values that can be enumerated with a
range based for loop.
range based for loop.
- The container must contain more than 2 elements.
- The container must contain more than 2 elements.
ensures
ensures
...
@@ -177,7 +177,7 @@ namespace dlib
...
@@ -177,7 +177,7 @@ namespace dlib
);
);
/*!
/*!
requires
requires
- container mus
e
be a container of double values that can be enumerated with
- container mus
t
be a container of double values that can be enumerated with
.rbegin() and .rend().
.rbegin() and .rend().
- 0.5 < probability_of_decrease < 1
- 0.5 < probability_of_decrease < 1
ensures
ensures
...
@@ -195,6 +195,30 @@ namespace dlib
...
@@ -195,6 +195,30 @@ namespace dlib
- The max possible output from this function is container.size().
- The max possible output from this function is container.size().
!*/
!*/
template
<
typename
T
>
size_t
count_steps_without_decrease_robust
(
const
T
&
container
,
double
probability_of_decrease
=
0.51
,
double
quantile_discard
=
0.10
);
/*!
requires
- container must be a container of double values that can be enumerated with
.begin() and .end() as well as .rbegin() and .rend().
- 0.5 < probability_of_decrease < 1
- 0 <= quantile_discard <= 1
ensures
- This function behaves just like
count_steps_without_decrease(container,probability_of_decrease) except that
it ignores values in container that are in the upper quantile_discard
quantile. So for example, if the quantile discard is 0.1 then the 10%
largest values in container are ignored.
!*/
// ----------------------------------------------------------------------------------------
template
<
template
<
typename
T
typename
T
>
>
...
@@ -204,7 +228,7 @@ namespace dlib
...
@@ -204,7 +228,7 @@ namespace dlib
);
);
/*!
/*!
requires
requires
- container mus
e
be a container of double values that can be enumerated with
- container mus
t
be a container of double values that can be enumerated with
.rbegin() and .rend().
.rbegin() and .rend().
- 0.5 < probability_of_increase < 1
- 0.5 < probability_of_increase < 1
ensures
ensures
...
@@ -221,6 +245,28 @@ namespace dlib
...
@@ -221,6 +245,28 @@ namespace dlib
increasing.
increasing.
!*/
!*/
// ----------------------------------------------------------------------------------------
template
<
typename
T
>
double
find_upper_quantile
(
T
container
,
double
quantile
);
/*!
requires
- container must be a container of double values that can be enumerated with
.begin() and .end().
- 0 <= quantile <= 1
- container.size() > 0
ensures
- Finds and returns the value such that quantile percent of the values in
container are greater than it. For example, 0.5 would find the median value
in container while 0.1 would find the value that lower bounded the 10%
largest values in container.
!*/
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
}
}
...
...
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