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
c1b71795
Commit
c1b71795
authored
Dec 01, 2013
by
davis@potato.localnet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some minor changes to avoid compiler errors in cygwin.
parent
1cf74015
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
4 deletions
+11
-4
float_details.h
dlib/float_details.h
+8
-1
vector_normalizer_frobmetric.h
dlib/statistics/vector_normalizer_frobmetric.h
+3
-3
No files found.
dlib/float_details.h
View file @
c1b71795
...
...
@@ -105,11 +105,18 @@ namespace dlib
double
_frexp
(
double
v
,
int
*
e
)
const
{
return
frexp
(
v
,
e
);
}
float
_frexp
(
float
v
,
int
*
e
)
const
{
return
frexpf
(
v
,
e
);
}
long
double
_frexp
(
long
double
v
,
int
*
e
)
const
{
return
frexpl
(
v
,
e
);
}
double
_ldexp
(
double
v
,
int
e
)
const
{
return
ldexp
(
v
,
e
);
}
float
_ldexp
(
float
v
,
int
e
)
const
{
return
ldexpf
(
v
,
e
);
}
#ifdef __CYGWIN__
// frexpl and ldexpl aren't available on cygwin so just use the double version.
long
double
_frexp
(
long
double
v
,
int
*
e
)
const
{
return
_frexp
((
double
)
v
,
e
);
}
long
double
_ldexp
(
long
double
v
,
int
e
)
const
{
return
_ldexp
((
double
)
v
,
e
);
}
#else
long
double
_frexp
(
long
double
v
,
int
*
e
)
const
{
return
frexpl
(
v
,
e
);
}
long
double
_ldexp
(
long
double
v
,
int
e
)
const
{
return
ldexpl
(
v
,
e
);
}
#endif
template
<
typename
T
>
void
convert_from_T
(
...
...
dlib/statistics/vector_normalizer_frobmetric.h
View file @
c1b71795
...
...
@@ -157,7 +157,7 @@ namespace dlib
unsigned
long
max_iter_
)
{
_
C
=
C_
;
_
c
=
C_
;
_cur_iter
=
0
;
_gradient_thresh
=
eps_
;
...
...
@@ -178,7 +178,7 @@ namespace dlib
for
(
long
i
=
0
;
i
<
grad
.
size
();
++
i
)
{
const
bool
at_lower_bound
=
(
0
>=
u
(
i
)
&&
grad
(
i
)
>
0
);
const
bool
at_upper_bound
=
(
_
C
/
grad
.
size
()
<=
u
(
i
)
&&
grad
(
i
)
<
0
);
const
bool
at_upper_bound
=
(
_
c
/
grad
.
size
()
<=
u
(
i
)
&&
grad
(
i
)
<
0
);
if
(
!
at_lower_bound
&&
!
at_upper_bound
)
max_gradient
=
std
::
max
(
std
::
abs
(
grad
(
i
)),
max_gradient
);
}
...
...
@@ -207,7 +207,7 @@ namespace dlib
unsigned
long
_max_iter
;
unsigned
long
_cur_iter
;
double
_
C
;
double
_
c
;
double
_gradient_thresh
;
};
...
...
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