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
4b2178c6
Commit
4b2178c6
authored
Jan 09, 2016
by
Davis King
Browse files
Made trainer disk synchronization more reliable and efficient.
parent
08f965a3
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
12 deletions
+5
-12
dlib/dnn/trainer.h
dlib/dnn/trainer.h
+5
-12
No files found.
dlib/dnn/trainer.h
View file @
4b2178c6
...
...
@@ -281,21 +281,11 @@ namespace dlib
sync_filename
=
filename
;
time_between_syncs
=
time_between_syncs_
;
// check if the sync file already exists, if it does we should load it. We
// first check for a .tmp version since that would be the newest if it existed.
// If it doesn't exist we check the canonical sync file.
std
::
ifstream
fin
(
filename
+
".tmp"
,
std
::
ios
::
binary
);
if
(
fin
)
{
deserialize
(
*
this
,
fin
);
}
else
{
// check if the sync file already exists, if it does we should load it.
std
::
ifstream
fin
(
filename
,
std
::
ios
::
binary
);
if
(
fin
)
deserialize
(
*
this
,
fin
);
}
}
double
get_average_loss
(
)
const
...
...
@@ -521,6 +511,9 @@ namespace dlib
// save our state to a temp file
std
::
string
tempfile
=
sync_filename
+
".tmp"
;
std
::
ofstream
fout
(
tempfile
,
std
::
ios
::
binary
);
// compact network before saving to disk.
wait_for_thread_to_pause
();
this
->
net
.
clean
();
serialize
(
*
this
,
fout
);
fout
.
close
();
...
...
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