########################## General Settings ########################## # Where is your data file located? #PROB_FILE_NAME=./test-problems/LABEL #PROB_FILE_NAME=./test-problems/DENSE PROB_FILE_NAME=./test-problems/3-newsgroups # What is your file format? # 0 -> UNLABELED, 1 -> LABELED, 2 -> BOW, 3 -> CLUSTO, 4 -> ST, 5 -> SVD, 6-> DENSE PROB_FILE_FORMAT=2 # What the maximum number of output clusters do you need? NUM_OUTPUT_CLUSTS=3 # What the maximum number of iteration (default=100)? MAX_ITERS=100 # What is the threshold for controlling convergence (data movement)? # If u have bigger problem, u should set SMALL_CHANGE larger SMALL_CHANGE=0 # How many times do you need IB to restart (avoiding local minimum)? RESTARTS=1 # What is the trade-off parameter beta? BETA=1000000 # Will you use a term weight method? # 0 -> NOT USE, 1 -> TFIDF TERM_WEIGHT_METHOD=1 # Will you normalize feature vectors to have unit length? # 0 -> NO, 1 -> YES NORMALIZE_PROBLEM=1 # Do you need the program printing out some description while it's working? # 0 -> NO, 1 -> YES VERBOSITY=1 ########################## Experiments ########################## # Do you need to show experimental results? # 0 -> NO, 1 -> YES SHOW_EXPERIMENTAL_RESULT=1 # confusion matrix? SHOW_CONFUSION_MATRIX=1 # NMI value? SHOW_NMI=1 # Do you need to show the summary of parameter settings? SHOW_PARAMS=0