Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
KiT-RT
KiT-RT
Commits
3c7639a5
Commit
3c7639a5
authored
Jan 20, 2021
by
Steffen Schotthöfer
Browse files
removed not needed space in data generator
parent
8e27ef12
Pipeline
#128131
failed with stage
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
code/src/toolboxes/datagenerator.cpp
View file @
3c7639a5
...
...
@@ -193,8 +193,8 @@ void nnDataGenerator::PrintTrainingData() {
uSolString
+=
"u_"
+
std
::
to_string
(
idx_sys
)
+
" , "
;
alphaString
+=
"alpha_"
+
std
::
to_string
(
idx_sys
)
+
" , "
;
}
// log->info( uSolString + alphaString + "
h" );
logCSV
->
info
(
uSolString
+
alphaString
+
"
h"
);
// log->info( uSolString + alphaString + "h" );
logCSV
->
info
(
uSolString
+
alphaString
+
"h"
);
for
(
unsigned
idx_set
=
0
;
idx_set
<
_setSize
;
idx_set
++
)
{
std
::
string
uSolString
=
""
;
...
...
@@ -203,8 +203,8 @@ void nnDataGenerator::PrintTrainingData() {
uSolString
+=
std
::
to_string
(
_uSol
[
idx_set
][
idx_sys
]
)
+
" , "
;
alphaString
+=
std
::
to_string
(
_alpha
[
idx_set
][
idx_sys
]
)
+
" , "
;
}
// log->info( uSolString + alphaString + "
{}", _hEntropy[idx_set] );
logCSV
->
info
(
uSolString
+
alphaString
+
"
{}"
,
_hEntropy
[
idx_set
]
);
// log->info( uSolString + alphaString + "{}", _hEntropy[idx_set] );
logCSV
->
info
(
uSolString
+
alphaString
+
"{}"
,
_hEntropy
[
idx_set
]
);
}
}
...
...
jannick.wolters
@jm2154
mentioned in commit
bd07b2cc
·
Apr 30, 2021
mentioned in commit
bd07b2cc
mentioned in commit bd07b2ccb154d36b863bd0870e6985eb59e8de63
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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