projects
/
platform
/
core
/
ml
/
nntrainer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
874903c
)
[ Unit Test ] remove mse loss layer in makeCompiledGraph
author
jijoong.moon
<jijoong.moon@samsung.com>
Mon, 2 May 2022 01:53:04 +0000
(10:53 +0900)
committer
Jijoong Moon
<jijoong.moon@samsung.com>
Wed, 4 May 2022 01:40:27 +0000
(10:40 +0900)
This patch remove the mse loss layer in makeCompiledGraph
**Self evaluation:**
1. Build test: [X]Passed [ ]Failed [ ]Skipped
2. Run test: [X]Passed [ ]Failed [ ]Skipped
Signed-off-by: jijoong.moon <jijoong.moon@samsung.com>
test/nntrainer_test_util.cpp
patch
|
blob
|
history
diff --git
a/test/nntrainer_test_util.cpp
b/test/nntrainer_test_util.cpp
index
069f55d
..
18c867c
100644
(file)
--- a/
test/nntrainer_test_util.cpp
+++ b/
test/nntrainer_test_util.cpp
@@
-242,8
+242,7
@@
nntrainer::GraphRepresentation makeCompiledGraph(
model_graph.addLayer(layer);
}
- // Compile with loss
- model_graph.compile("mse");
+ model_graph.compile("");
graph_rep.clear();
for (auto &node : model_graph.getLayerNodes()) {