X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=clusterer.cc;h=54183416cd7f34a81d54ebb3ac78d88ee6ccc9e8;hb=30a7eaeed7e34e69b62d2920e074a113a6e850fc;hp=60cead1943fc34a4ff216b9585464926c4839d37;hpb=f371b63c16c7d5149e6518b724346a40b8351ab6;p=clueless-kmeans.git diff --git a/clusterer.cc b/clusterer.cc index 60cead1..5418341 100644 --- a/clusterer.cc +++ b/clusterer.cc @@ -180,6 +180,8 @@ scalar_t Clusterer::uninformative_lp_cluster_association(int nb_points, scalar_t // The coefficients for the constraints are passed to the glpk // functions with a sparse representation. + // ** GLPK USES INDEXES STARTING AT 1, NOT 0. ** + int nb_coeffs = nb_points * _nb_clusters + nb_points * _nb_clusters; int *coeff_row = new int[nb_coeffs + 1]; @@ -207,8 +209,8 @@ scalar_t Clusterer::uninformative_lp_cluster_association(int nb_points, scalar_t glp_add_cols(lp, nb_points * _nb_clusters); // The constraints (A) will be expressed by putting directly bounds - // on the column variables. So we need one row per (B) constraint, - // and one per (C) constraint. + // on the variables (i.e. one per column). So we need one row per + // (B) constraint, and one per (C) constraint. glp_add_rows(lp, nb_points + _nb_clusters * nb_classes); @@ -219,9 +221,9 @@ scalar_t Clusterer::uninformative_lp_cluster_association(int nb_points, scalar_t for(int n = 1; n <= nb_points; n++) { int col = n + nb_points * (k - 1); - // The LP weight on this association coefficient for the global - // loss is the normalized distance of that sample to the - // centroid of that cluster + // The LP weight on the gammas for the global loss is the + // normalized distance of that sample to the centroid of that + // cluster glp_set_obj_coef(lp, col, distance_to_centroid(points[n-1], k-1)); @@ -232,17 +234,13 @@ scalar_t Clusterer::uninformative_lp_cluster_association(int nb_points, scalar_t } } - // The (B) constraints: for each point, the sum of its association - // coefficients is equal to 1.0 + // The (B) constraints: for each point, the sum of its gamma is + // equal to 1.0 for(int n = 1; n <= nb_points; n++) { int row = n; glp_set_row_bnds(lp, row, GLP_FX, 1.0, 1.0); - } - - for(int n = 1; n <= nb_points; n++) { for(int k = 1; k <= _nb_clusters; k++) { - int row = n; coeff_row[n_coeff] = row; coeff_col[n_coeff] = nb_points * (k - 1) + n; coeff_wgt[n_coeff] = 1.0; @@ -251,21 +249,14 @@ scalar_t Clusterer::uninformative_lp_cluster_association(int nb_points, scalar_t } // The (C) constraints: For each pair cluster/class, the sum of the - // association coefficient to this cluster for this class is equal - // to the number of sample of that class, divided by the number of - // clusters + // gammas for this cluster and this class is equal to the number of + // sample of that class, divided by the number of clusters for(int k = 1; k <= _nb_clusters; k++) { for(int c = 1; c <= nb_classes; c++) { int row = nb_points + (k - 1) * nb_classes + c; scalar_t tau = nb_samples_per_class[c-1] / scalar_t(_nb_clusters); glp_set_row_bnds(lp, row, GLP_FX, tau, tau); - } - } - - for(int k = 1; k <= _nb_clusters; k++) { - for(int c = 1; c <= nb_classes; c++) { - int row = nb_points + (k - 1) * nb_classes + c; for(int n = 1; n <= nb_points; n++) { if(labels[n-1] == c - 1) { coeff_row[n_coeff] = row;