| |
- adjust_cluster(membership, cluster, rowscores, cutoff, limit)
- adjust a single cluster
- compensate_size(membership, matrix, rd_scores, cd_scores)
- size compensation function
- create_membership(matrix, seed_row_memberships, seed_column_memberships, config_params)
- create instance of ClusterMembership using
the provided seeding algorithms
- fuzzify(membership, row_scores, column_scores, num_iterations, iteration_result, add_fuzz)
- Provide an iteration-specific fuzzification
- get_best_clusters(scores, n, sort=False)
- retrieve the n best scored clusters for the given row/column score matrix
- get_cc_scores(membership, scores, bandwidth, cluster)
- calculate the density scores for the given column score values in the
specified cluster
- get_col_density_scores(membership, col_scores)
- get_density_scores(membership, row_scores, col_scores)
- get_row_density_scores(membership, row_scores)
- getting density scores improves small clusters
- get_rr_scores(membership, rowscores, bandwidth, cluster)
- calculate the density scores for the given row score values in the
specified cluster
- make_db_column_seeder(outdb)
- make_db_row_seeder(outdb)
- make_file_column_seeder(filename, sep=' ')
- make_file_seeder(filename, sep=' ')
- uses a TSV file to seed row membership
- make_kmeans_row_seeder(num_clusters)
- creates a row seeding function based on k-means
- old_fuzzy_coefficient(iteration, num_iterations)
- standard fuzzy coefficient as defined in cMonkey
- postadjust(membership, rowscores, cutoff=0.33, limit=100)
- adjusting the cluster memberships after the main iterations have been done
Returns true if the function changed the membership, false if not
- replace_delta_column_member(membership, col, cm, cd_scores)
- replace_delta_row_member(membership, row, rm, rd_scores)
- seeing_change(prob)
- returns true if the update is seeing the change
- std_fuzzy_coefficient(iteration, num_iterations)
- standard fuzzy coefficient as defined in cMonkey
- update_for_cols(membership, cd_scores, multiprocessing)
- updating column memberships according to cd_scores
- update_for_rows(membership, rd_scores, multiprocessing)
- generically updating row memberships according to rd_scores
|