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
275d7d1a
Commit
275d7d1a
authored
Sep 11, 2011
by
Davis King
Browse files
Minor change to avoid a compiler warning.
parent
4a1b5941
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
dlib/svm/cross_validate_regression_trainer.h
dlib/svm/cross_validate_regression_trainer.h
+1
-1
No files found.
dlib/svm/cross_validate_regression_trainer.h
View file @
275d7d1a
...
...
@@ -124,7 +124,7 @@ namespace dlib
const
typename
trainer_type
::
trained_function_type
&
df
=
trainer
.
train
(
x_train
,
y_train
);
// do the training and testing
for
(
long
j
=
0
;
j
<
x_test
.
size
();
++
j
)
for
(
unsigned
long
j
=
0
;
j
<
x_test
.
size
();
++
j
)
{
// compute error
const
double
output
=
df
(
x_test
[
j
]);
...
...
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