summaryrefslogtreecommitdiff
path: root/utils/weights.cc
diff options
context:
space:
mode:
authorMichael Denkowski <mdenkows@cs.cmu.edu>2013-09-17 12:46:02 -0700
committerMichael Denkowski <mdenkows@cs.cmu.edu>2013-09-17 12:46:02 -0700
commita30a2e59ff117ad6bae80ece2bf535767daf7db6 (patch)
tree7fdceee683e6080cf6c99d871b2281384ba529c3 /utils/weights.cc
parent08be69abb923b74f7dc27712d6bef7f6e4a05377 (diff)
Save/load weights in stream mira
Diffstat (limited to 'utils/weights.cc')
-rw-r--r--utils/weights.cc26
1 files changed, 26 insertions, 0 deletions
diff --git a/utils/weights.cc b/utils/weights.cc
index 575877b6..1284f686 100644
--- a/utils/weights.cc
+++ b/utils/weights.cc
@@ -4,6 +4,7 @@
#include "fdict.h"
#include "filelib.h"
+#include "stringlib.h"
#include "verbose.h"
using namespace std;
@@ -156,4 +157,29 @@ void Weights::ShowLargestFeatures(const vector<weight_t>& w) {
cerr << endl;
}
+string Weights::GetString(const vector<weight_t>& w,
+ bool hide_zero_value_features) {
+ ostringstream os;
+ os.precision(17);
+ int nf = FD::NumFeats();
+ for (unsigned i = 1; i < nf; i++) {
+ if (hide_zero_value_features && w[i] == 0.0) {
+ continue;
+ }
+ os << FD::Convert(i) << '=' << w[i];
+ if (i < nf - 1) {
+ os << ' ';
+ }
+ }
+ return os.str();
+}
+void Weights::UpdateFromString(string& w_string,
+ vector<weight_t>& w) {
+ vector<string> tok = SplitOnWhitespace(w_string);
+ for (vector<string>::iterator i = tok.begin(); i != tok.end(); i++) {
+ int delim = i->find('=');
+ int fid = FD::Convert(i->substr(0, delim));
+ w[fid] = strtod(i->substr(delim + 1).c_str(), NULL);
+ }
+}