########################## General Settings ########################## # Where is your data file located? #PROB_FILE_NAME=./test-problems/talk-politics-reduced #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 (a change in the objective function)? DELTA = 0.001 # 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=1 ########################## Feature Extraction ########################## # Do you need to do feature extraction? # It will show important words in each class. # 0 -> NO, 1 -> YES SHOW_FEATS=0 # If needed, where is the word feature file? FEAT_FILE_NAME=./test-problems/talk-politics-reduced.feat # And how many words you need to show? NUM_FEATS=5