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
a898ebbd
Commit
a898ebbd
authored
Jan 30, 2018
by
Davis King
Browse files
Options
Browse Files
Download
Plain Diff
merged
parents
fb3e8e4b
224d7024
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
142 additions
and
3 deletions
+142
-3
layers.h
dlib/dnn/layers.h
+4
-1
matrix.h
dlib/matrix/matrix.h
+44
-0
serialize.h
dlib/serialize.h
+66
-2
serialize.cpp
dlib/test/serialize.cpp
+28
-0
No files found.
dlib/dnn/layers.h
View file @
a898ebbd
...
...
@@ -2302,7 +2302,10 @@ namespace dlib
DLIB_CASSERT
(
scales
.
num_samples
()
==
src
.
num_samples
()
&&
scales
.
k
()
==
src
.
k
()
&&
scales
.
nr
()
==
1
&&
scales
.
nc
()
==
1
);
scales
.
nc
()
==
1
,
"scales.k(): "
<<
scales
.
k
()
<<
"
\n
src.k(): "
<<
src
.
k
()
);
output
.
copy_size
(
src
);
tt
::
scale_channels
(
false
,
output
,
src
,
scales
);
...
...
dlib/matrix/matrix.h
View file @
a898ebbd
...
...
@@ -1923,6 +1923,50 @@ namespace dlib
}
}
// ----------------------------------------------------------------------------------------
template
<
typename
T
,
long
NR
,
long
NC
,
typename
mm
,
typename
l
>
void
serialize
(
const
ramdump_t
<
matrix
<
T
,
NR
,
NC
,
mm
,
l
>>&
item_
,
std
::
ostream
&
out
)
{
auto
&
item
=
item_
.
item
;
serialize
(
item
.
nr
(),
out
);
serialize
(
item
.
nc
(),
out
);
if
(
item
.
size
()
!=
0
)
out
.
write
((
char
*
)
&
item
(
0
,
0
),
sizeof
(
item
(
0
,
0
))
*
item
.
size
());
}
template
<
typename
T
,
long
NR
,
long
NC
,
typename
mm
,
typename
l
>
void
deserialize
(
ramdump_t
<
matrix
<
T
,
NR
,
NC
,
mm
,
l
>>&&
item_
,
std
::
istream
&
in
)
{
auto
&
item
=
item_
.
item
;
long
nr
,
nc
;
deserialize
(
nr
,
in
);
deserialize
(
nc
,
in
);
item
.
set_size
(
nr
,
nc
);
if
(
item
.
size
()
!=
0
)
in
.
read
((
char
*
)
&
item
(
0
,
0
),
sizeof
(
item
(
0
,
0
))
*
item
.
size
());
}
// ----------------------------------------------------------------------------------------
template
<
typename
EXP
>
...
...
dlib/serialize.h
View file @
a898ebbd
...
...
@@ -154,6 +154,8 @@
#include <memory>
#include <set>
#include <limits>
#include <type_traits>
#include <utility>
#include "uintn.h"
#include "interfaces/enumerable.h"
#include "interfaces/map_pair.h"
...
...
@@ -173,6 +175,56 @@ namespace dlib
serialization_error
(
const
std
::
string
&
e
)
:
error
(
e
)
{}
};
// ----------------------------------------------------------------------------------------
template
<
typename
T
>
struct
ramdump_t
{
/*!
WHAT THIS OBJECT REPRESENTS
This is a type decoration used to indicate that serialization should be
done by simply dumping the memory of some object to disk as fast as
possible without any sort of conversions. This means that the data written
will be "non-portable" in the sense that the format output by a RAM dump
may depend on things like the endianness of your CPU or settings of certain
compiler switches.
You use this object like this:
serialize("yourfile.dat") << ramdump(yourobject);
deserialize("yourfile.dat") >> ramdump(yourobject);
or
serialize(ramdump(yourobject), out);
deserialize(ramdump(yourobject), in);
Also, not all objects have a ramdump mode. If you try to use ramdump on an
object that does not define a serialization dump for ramdump you will get a
compiler error.
!*/
ramdump_t
(
T
&
item_
)
:
item
(
item_
)
{}
T
&
item
;
};
// This function just makes a ramdump that wraps an object.
template
<
typename
T
>
ramdump_t
<
typename
std
::
remove_reference
<
T
>::
type
>
ramdump
(
T
&&
item
)
{
return
ramdump_t
<
typename
std
::
remove_reference
<
T
>::
type
>
(
item
);
}
template
<
typename
T
>
void
serialize
(
const
ramdump_t
<
const
T
>&
item_
,
std
::
ostream
&
out
)
{
// Move the const from inside the ramdump_t template to outside so we can bind
// against a serialize() call that takes just a const ramdump_t<T>. Doing this
// saves you from needing to write multiple overloads of serialize() to handle
// these different const placement cases.
const
auto
temp
=
ramdump
(
const_cast
<
T
&>
(
item_
.
item
));
serialize
(
temp
,
out
);
}
// ----------------------------------------------------------------------------------------
namespace
ser_helper
...
...
@@ -1513,12 +1565,25 @@ namespace dlib
template
<
typename
T
>
inline
proxy_deserialize
&
operator
>>
(
T
&
item
)
{
return
doit
(
item
);
}
template
<
typename
T
>
inline
proxy_deserialize
&
operator
>>
(
ramdump_t
<
T
>&&
item
)
{
return
doit
(
std
::
move
(
item
));
}
private
:
template
<
typename
T
>
inline
proxy_deserialize
&
doit
(
T
&&
item
)
{
try
{
if
(
fin
->
peek
()
==
EOF
)
throw
serialization_error
(
"No more objects were in the file!"
);
deserialize
(
item
,
*
fin
);
deserialize
(
std
::
forward
<
T
>
(
item
)
,
*
fin
);
}
catch
(
serialization_error
&
e
)
{
...
...
@@ -1554,7 +1619,6 @@ namespace dlib
return
*
this
;
}
private
:
int
objects_read
=
0
;
std
::
string
filename
;
std
::
shared_ptr
<
std
::
ifstream
>
fin
;
...
...
dlib/test/serialize.cpp
View file @
a898ebbd
...
...
@@ -1020,6 +1020,34 @@ namespace
DLIB_TEST
(
buf2
[
3
]
==
0
);
DLIB_TEST
(
buf2
[
4
]
==
3
);
DLIB_TEST
(
buf2
[
5
]
==
3
);
// make sure ramdump() overloads compile and work.
{
matrix
<
double
,
2
,
2
>
a
=
{
1
,
2
,
3
,
4
};
const
matrix
<
double
,
2
,
2
>
b
=
{
3
,
2
,
3
,
4
};
dlib
::
serialize
(
"ramdump_mat.dat"
)
<<
ramdump
(
a
)
<<
ramdump
(
b
);
matrix
<
double
,
2
,
2
>
A
,
B
;
dlib
::
deserialize
(
"ramdump_mat.dat"
)
>>
ramdump
(
A
)
>>
ramdump
(
B
);
DLIB_TEST
(
A
==
a
);
DLIB_TEST
(
B
==
b
);
A
=
0
;
B
=
0
;
DLIB_TEST
(
A
!=
a
);
DLIB_TEST
(
B
!=
b
);
ostringstream
sout
;
dlib
::
serialize
(
ramdump
(
a
),
sout
);
dlib
::
serialize
(
ramdump
(
b
),
sout
);
istringstream
sin
(
sout
.
str
());
dlib
::
deserialize
(
ramdump
(
A
),
sin
);
dlib
::
deserialize
(
ramdump
(
B
),
sin
);
DLIB_TEST
(
A
==
a
);
DLIB_TEST
(
B
==
b
);
}
}
// ----------------------------------------------------------------------------------------
...
...
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