@@ -27,7 +27,7 @@ Args::Args() {
minn = 3;
maxn = 6;
thread = 12;
- verbose = 1000;
+ verbose = 10000;
t = 1e-4;
label = "__label__";
}
@@ -233,7 +233,7 @@ void trainThread(Dictionary& dict, Matrix& input, Matrix& output,
skipgram(dict, model, line, loss, nexamples);
- if (tokenCount > 10000) {
+ if (tokenCount > args.verbose) {
info::allWords += tokenCount;
info::allLoss += loss;
info::allN += nexamples;