Skip to content
This repository has been archived by the owner on Nov 28, 2023. It is now read-only.

Commit

Permalink
set reasonable defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
percyliang committed Aug 7, 2012
1 parent bef7b79 commit d24406c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion basic/logging.cc
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ bool Run::new_line() {

LogInfo::LogInfo() {
ms_per_line = 0; //1000; // 1 second
max_ind_level = 10;
max_ind_level = 3;

ind_level = 0;
buf = "";
Expand Down
2 changes: 1 addition & 1 deletion wcluster.cc
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ opt_define_string(featvec_file, "featvec", "", "Feature vectors (out
opt_define_string(comment, "comment", "", "Description of this run.");

opt_define_int(ncollocs, "ncollocs", 500, "Collocations with most mutual information (output).");
opt_define_int(initC, "c", INT_MAX, "Number of clusters.");
opt_define_int(initC, "c", 1000, "Number of clusters.");
opt_define_int(plen, "plen", 1, "Maximum length of a phrase to consider.");
opt_define_int(min_occur, "min-occur", 1, "Keep phrases that occur at least this many times.");
opt_define_int(rand_seed, "rand", time(NULL)*getpid(), "Number to call srand with.");
Expand Down

0 comments on commit d24406c

Please sign in to comment.