Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Side by Side Diff: src/mlp_data.c

Issue 882843002: Update to opus-HEAD-66611f1. (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/opus.git@master
Patch Set: Add the contents of Makefile.mips back. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/mlp.c ('k') | src/mlp_train.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* The contents of this file was automatically generated by mlp_train.c 1 /* The contents of this file was automatically generated by mlp_train.c
2 It contains multi-layer perceptron (MLP) weights. */ 2 It contains multi-layer perceptron (MLP) weights. */
3 3
4 #ifdef HAVE_CONFIG_H
5 #include "config.h"
6 #endif
7
4 #include "mlp.h" 8 #include "mlp.h"
5 9
6 /* RMS error was 0.138320, seed was 1361535663 */ 10 /* RMS error was 0.138320, seed was 1361535663 */
7 11
8 static const float weights[422] = { 12 static const float weights[422] = {
9 13
10 /* hidden layer */ 14 /* hidden layer */
11 -0.0941125f, -0.302976f, -0.603555f, -0.19393f, -0.185983f, 15 -0.0941125f, -0.302976f, -0.603555f, -0.19393f, -0.185983f,
12 -0.601617f, -0.0465317f, -0.114563f, -0.103599f, -0.618938f, 16 -0.601617f, -0.0465317f, -0.114563f, -0.103599f, -0.618938f,
13 -0.317859f, -0.169949f, -0.0702885f, 0.148065f, 0.409524f, 17 -0.317859f, -0.169949f, -0.0702885f, 0.148065f, 0.409524f,
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 -1.1584f, -0.0277241f, -9.85f, -4.82386f, 3.71333f, 100 -1.1584f, -0.0277241f, -9.85f, -4.82386f, 3.71333f,
97 3.87308f, 3.52558f}; 101 3.87308f, 3.52558f};
98 102
99 static const int topo[3] = {25, 15, 2}; 103 static const int topo[3] = {25, 15, 2};
100 104
101 const MLP net = { 105 const MLP net = {
102 3, 106 3,
103 topo, 107 topo,
104 weights 108 weights
105 }; 109 };
OLDNEW
« no previous file with comments | « src/mlp.c ('k') | src/mlp_train.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698