Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
lib4neuro
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
23
Issues
23
List
Boards
Labels
Service Desk
Milestones
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
MolDyn
lib4neuro
Commits
d6807dde
Commit
d6807dde
authored
Jul 15, 2018
by
Martin Beseda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ENH: Separated neuron serialization example.
parent
db04445a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
114 deletions
+6
-114
src/CMakeLists.txt
src/CMakeLists.txt
+3
-0
src/Neuron/Neuron.cpp
src/Neuron/Neuron.cpp
+1
-5
src/main.cpp
src/main.cpp
+2
-109
No files found.
src/CMakeLists.txt
View file @
d6807dde
...
...
@@ -37,6 +37,9 @@ target_link_libraries(data_set boost_serialization)
add_executable
(
test_cases main.cpp
)
target_link_libraries
(
test_cases neuron particle_swarm boost_serialization data_set
)
add_executable
(
neuron_serialization_example neuron_serialization_example.cpp
)
target_link_libraries
(
neuron_serialization_example neuron boost_serialization
)
##############
# UNIT TESTS #
##############
...
...
src/Neuron/Neuron.cpp
View file @
d6807dde
...
...
@@ -49,11 +49,7 @@ void Neuron::adjust_saturation_out(int value) {
bool
Neuron
::
is_saturated_out
()
{
if
(
this
->
n_saturated_connections_out
==
this
->
edges_out
->
size
()){
return
true
;
}
return
false
;
return
this
->
n_saturated_connections_out
==
this
->
edges_out
->
size
();
}
...
...
src/main.cpp
View file @
d6807dde
...
...
@@ -23,6 +23,8 @@
#include "Neuron/NeuronTanh.h"
#include "DataSet/DataSet.h"
//TODO rewrite "tests" to separate examples
//TODO prepsat tak, aby neuronova sit managovala destruktory vsech potrebnych objektu (kvuli serializaci)
/**
* Test of simple neural network
...
...
@@ -65,115 +67,6 @@ void test1( ){
delete
u2
;
}
/**
* Test of the binary serialization
*/
void
test2
()
{
NeuronLinear
n
(
2
,
3
);
std
::
cout
<<
n
.
get_potential
()
<<
" "
<<
n
.
get_state
()
<<
" "
<<
n
.
activation_function_get_parameter
(
0
)
<<
" "
<<
n
.
activation_function_get_parameter
(
1
)
<<
std
::
endl
;
std
::
ofstream
ofs
(
"stored_neuron.4n"
);
{
boost
::
archive
::
text_oarchive
oa
(
ofs
);
oa
<<
n
;
ofs
.
close
();
}
NeuronLinear
n2
;
{
std
::
ifstream
ifs
(
"stored_neuron.4n"
);
boost
::
archive
::
text_iarchive
ia
(
ifs
);
ia
>>
n2
;
ifs
.
close
();
}
std
::
cout
<<
n2
.
get_potential
()
<<
" "
<<
n2
.
get_state
()
<<
" "
<<
n2
.
activation_function_get_parameter
(
0
)
<<
" "
<<
n2
.
activation_function_get_parameter
(
1
)
<<
std
::
endl
;
NeuronLinear
n3
(
0.62
,
0.4
);
std
::
cout
<<
n3
.
get_potential
()
<<
" "
<<
n3
.
get_state
()
<<
" "
<<
n3
.
activation_function_get_parameter
(
0
)
<<
" "
<<
n3
.
activation_function_get_parameter
(
1
)
<<
std
::
endl
;
std
::
ofstream
ofs2
(
"stored_neuron2.4n"
);
{
boost
::
archive
::
text_oarchive
oa
(
ofs2
);
oa
<<
n3
;
ofs2
.
close
();
}
NeuronLogistic
n4
;
{
std
::
ifstream
ifs
(
"stored_neuron2.4n"
);
boost
::
archive
::
text_iarchive
ia
(
ifs
);
ia
>>
n4
;
ifs
.
close
();
}
std
::
cout
<<
n4
.
get_potential
()
<<
" "
<<
n4
.
get_state
()
<<
" "
<<
n4
.
activation_function_get_parameter
(
0
)
<<
" "
<<
n4
.
activation_function_get_parameter
(
1
)
<<
std
::
endl
;
NeuronTanh
n5
(
0.5
);
std
::
cout
<<
n5
.
get_potential
()
<<
" "
<<
n5
.
get_state
()
<<
" "
<<
n5
.
activation_function_get_parameter
(
0
)
<<
std
::
endl
;
std
::
ofstream
ofs3
(
"stored_neuron3.4n"
);
{
boost
::
archive
::
text_oarchive
oa
(
ofs3
);
oa
<<
n5
;
ofs3
.
close
();
}
NeuronTanh
n6
;
{
std
::
ifstream
ifs
(
"stored_neuron3.4n"
);
boost
::
archive
::
text_iarchive
ia
(
ifs
);
ia
>>
n6
;
ifs
.
close
();
}
std
::
cout
<<
n6
.
get_potential
()
<<
" "
<<
n6
.
get_state
()
<<
" "
<<
n6
.
activation_function_get_parameter
(
0
)
<<
std
::
endl
;
NeuronBinary
n7
(
0.71
);
std
::
cout
<<
n7
.
get_potential
()
<<
" "
<<
n7
.
get_state
()
<<
" "
<<
n7
.
activation_function_get_parameter
(
0
)
<<
std
::
endl
;
std
::
ofstream
ofs4
(
"stored_neuron4.4n"
);
{
boost
::
archive
::
text_oarchive
oa
(
ofs4
);
oa
<<
n7
;
ofs4
.
close
();
}
NeuronBinary
n8
;
{
std
::
ifstream
ifs
(
"stored_neuron4.4n"
);
boost
::
archive
::
text_iarchive
ia
(
ifs
);
ia
>>
n8
;
ifs
.
close
();
}
std
::
cout
<<
n8
.
get_potential
()
<<
" "
<<
n8
.
get_state
()
<<
" "
<<
n8
.
activation_function_get_parameter
(
0
)
<<
std
::
endl
;
}
/**
* Test of DataSet serialization
*/
...
...
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