PaperHub
5.0
/10
Rejected4 位审稿人
最低5最高5标准差0.0
5
5
5
5
3.5
置信度
正确性2.5
贡献度2.3
表达2.3
ICLR 2025

Solving the 2-norm k-hyperplane clustering problem via multi-norm formulations

OpenReviewPDF
提交: 2024-09-28更新: 2025-02-05

摘要

We tackle the 2-norm (Euclidean) $k$-Hyperplane Clustering problem ($k$-HC$_2$), which asks for finding $k$ hyperplanes that minimize the sum of squared 2-norm (Euclidean) distances between each point and its closest hyperplane. We solve the problem to global optimality via spatial branch-and-bound techniques (SBB) by strengthening a mixed integer quadratically-constrained quadratic programming formulation with constraints that arise when formulating the problem in $p$-norms with $p \neq 2$. In particular, we show that, for every (appropriately scaled) $p \in \mathbb{N} \cup \{\infty\}$, one obtains a variant of $k$-HC$_2$, whose optimal solutions yield lower bounds within a multiplicative approximation factor. We focus on the case of polyhedral norms where $p=1, \infty$ (which admit a disjunctive-programming reformulation), and prove that strengthening the original formulation by including, on top of the original 2-norm constraints, the constraints of one of the polyhedral-norms leads to an SBB method where nonzero lower bounds are obtained in a linear (as opposed to exponential) number of SBB nodes. Experimentally, we show that our strengthened formulations lead to speedups from $\frac{1}{4}$ to 1.5 orders of magnitude, drastically improving the problem's solvability to global optimality.
关键词
hyperplane clustering; mathematical programming; spatial branch and bound

评审与讨论

审稿意见
5

This paper studies the hyperplane clustering problem using the L2-norm. To improve computational efficiency, the authors propose solving a generalized and a strengthened formulation utilizing other Lp-norms. All formulations of the clustering problem can be solved by the spatial branch-and-bound (SBB) method proposed by Amaldi & Coniglio (2013). When applied to the formulations proposed by the authors, the optimization time can be reduced by a factor of 1.5. Bounds on the optimal objective values between the classical and generalized formulation are derived.

优点

The significant contribution of the paper is to propose a generalized formulation of the problem that can be solved more efficiently using SBB.

缺点

1, Results regarding clustering accuracy are relatively weak. The SBB algorithm can only find a lower bound, which can make the clustering results hard to interpret. Bounds between strengthened formulations and the original formulation are missing, for instance, bound between HC(2,1),(,1)HC_{(2,1), (\infty, 1)} and HC(2,1)HC_{(2,1)} is not provided.

2, Corollary 2 might be wrong. The authors said that 1/(1+(n1)2n1)1/(1+ \frac{(\sqrt{n} - 1)^2}{n-1}) is strictly smaller than 1/n1/n for all nn. But 1/(1+(n1)2n1)1/(1+ \frac{(\sqrt{n} - 1)^2}{n-1}) converges to 1/21/2, while 1/n1/n converges to 0.

3, No applications using real datasets are provided.

4, Comparisons with existing methods are NOT included in the simulations. In addition, the following paper is highly relevant but is not discussed in sufficient detail: Hyperplane Clustering Via Dual Principal Component Pursuit by Manolis C. Tsakiris and Rene Vidal (ICML 2017). The following works are also related but are not mentioned in the paper: T. Zhang, A. Szlam, and G. Lerman, Median k-flats for hybrid linear modeling with many outliers, in Workshop on Subspace Methods, pages 234–241, 2009; G. Lerman, M. B. McCoy, J. A. Tropp, and T. Zhang, Robust computation of linear models by convex relaxation, Foundations of Computational Mathematics, 15(2):363–410, 2015. Please refer to the papers cited in "Hyperplane Clustering Via Dual Principal Component Pursuit" for more related work.

问题

1, How do these additional constraints affect the clustering results in terms of the hyperplanes? Can some theoretical guarantees be developed for recovering the true hyperplanes?

2, How does the proposed method compare with the methods proposed in "Hyperplane Clustering Via Dual Principal Component Pursuit" in terms of computational efficiency and clustering accuracy?

3, Can the error in Corollary 2 be fixed?

审稿意见
5

This paper considers the k-hyperplane clustering problem where the goal is to find k hyperplanes to minimize the sum of squared distance from every data point to its closest hyperplane. This problem is computationally hard. The authors first show how to relax the L2L_2 constraint to L1L_1 and LL_{\infty} to transform the solution space into a polyhedra then they use the spatial branch-and-bound techniques to find a solution in the relaxed solution space. The experiments show that optimizing the relaxed formulation yields a speedup of tens of times that of solving the original formulation when running in the low-dimensional data set.

The problem studied is important and very hard. I think the ideas presented are interesting and useful. My concern is the algorithm does not scale as the dimension increases (as shown in the theoretical and experimental results).

优点

  1. Simple but useful techniques to tackle a very hard problem.
  2. The experimental results show the techniques are useful in low-dimensional data sets.

缺点

  1. The approximation ratio can be as large as Ω(n)\Omega(n), by corollary 2 of the paper.
  2. The experiment on the high-dimensional data set does not show a significant improvement. This phenomenon has been discussed in the paper. Proposition 3 shows that the branching nodes of the L1L_1 relaxation grow exponentially by the dimension nn. Thus the results may not be very helpful in solving high dimensional clustering tasks.

问题

I see the formulations by only applying the (1,1n)(1,\frac{1}{\sqrt{n}}) or (,1)(\infty,1) relaxtion already yields good speedup in the experiments. Why is it necessary to impose them both simultaneously?

审稿意见
5

The paper considers the 2-norm k-hyperplane clustering problem. The problem is traditionally solved via Mixed Integer Quadratically Constrained Quadratic Programming (MI-QCQP), as reviewed in Section 4.2.

The main proposal is to strengthen this classic MI-QCQP formulation via adding extra norm constraints.

优点

The proposed method seems to be faster than traditional approaches for certain instances, as shown in Tables 1 and 2.

缺点

The paper has a few major weaknesses.

First, the presentation is suboptimal with redundancies and unclarity. For example:

  • The theorems and propositions in Section 3 appear to be natural consequences of the norm equivalence. Technically it is incremental. And it is unclear how this serves the subsequent sections (see below).
  • At the end of the day, the paper proposes adding L1 and L-infinity constraints to the formulation, which already has L2 constraints. This leads to two questions. First, why is Section 3 useful? Second, these constraints are redundant as the L2 constraint wj21|| w_j ||_2\geq 1 implies the L1 and L-infinity constraints, as the paper plots in Figures 1 and 2. While the paper means that the L1 and L-infinity constraints are useful during the execution of the SBB algorithm, this leads to great confusion. And furthermore, since the SBB algorithm is disconnected from the actual implementation (see the point below), and since there is a lack of formal descriptions of the SBB algorithm, it is hard to assess whether the proposed redundant constraints are useful for SBB.
  • The discussions on spatial branch-and-bound in Section 4 are disconnected from the actual implementations of the methods. It appears to me that the algorithms are implemented by writing down the formulation and invoking Gurobi. Note that Gurobi is a commercial, closed-source solver. Its implementation is unlikely to be pure spatial branch-and-bound; if that were the case, and as per Proposition 2, the classic MI-QCQP formulation would take exponential time at every iteration of bound calculation. Tables 1 and 2 show, instead, that the classic MI-QCQP formulation could be fast for some instances. This leads to concerns about the correctness of Proposition 2 or whether it is obtained by considering a worst case. Indeed, having a nonzero lower bound is easy: just add a constraint diϵd_i \geq \epsilon for a sufficiently small epsilon>0. I would guess that doing so can also speed up the algorithm.
  • The introduction of MI-QCQP and the proposed formulation is not clear. Specifically:
    • At Line 302, why is it that The only nonconvexity of the formulation is due to the 2-norm constraints? Isn't that xijx_{ij} being binary is also a non-convex constraint?
    • Typo in Eq. (3f), and Eq. (3f) is not justified: Why do we need a binary variable sjhs_{jh} to bound the entries of wjw_j? Isn't it that we could just take wjh+w_{jh}^+ to be the positive entries of wjhw_{jh}? This uniquely determines wjh+w_{jh}^+ and wjhw_{jh}^-.
    • Constraints in Eq. (3e) are not justified: Why do we want every entry of wjw_j is bounded in [1,1][-1,1]?

问题

See the above.

审稿意见
5

The paper tackles the k-Hyperplane Clustering Problem (k-HC2), emphasizing the use of the 2-norm (Euclidean) distance. The goal in this problem is to identify k hyperplanes that minimize the total squared Euclidean distances between each data point and its nearest hyperplane. This task is particularly challenging due to the NP-hard nature of k-HC2; the computational complexity of fitting multiple points to hyperplanes while minimizing distances grows significantly, especially in higher-dimensional spaces.

优点

  • The authors present an innovative approach to solving k-HC2 by incorporating alternative norm constraints, specifically the 1-norm and ∞-norm, to develop a multi-norm formulation.

  • Strengthening the k-HC2 formulation with 1-norm and ∞-norm constraints significantly accelerates the SBB algorithm, making it possible to solve instances that previously demanded extensive computation and achieving up to a 1.5 orders-of-magnitude improvement in some cases.

  • The paper provides a rigorous theoretical foundation, including proofs and approximation relationships, for applying multiple norm constraints to tackle complex clustering problems.

缺点

The experimental results are somewhat unclear:

  • The results appear to be based on simulations. Are there any findings from real-world datasets?

  • The sample size is restricted under 100. What might be the reason for this limitation?

  • Would it be possible to use plots for comparisons rather than tables?

Adding multiple norm constraints increases the complexity of the MI-QCQP formulation, which could make practical implementation more challenging. How would you address this issue?

问题

See weakness.

评论

Dear all,

I wanted to apologize for the lack of interaction on my part, although I was hoping to be able to reply to the reviewers’ comments.

I am the only author of this paper and, tragically, a member of my family suddenly passed away a few weeks ago. Things have been rather hard lately.

I want to thank you all for reading my paper and giving me your opinion. I wish you all the best. Give a hug to your family members for me.

//The author

AC 元评审

This work modifies the spatial branch-and-bound (SBB) method for the 2-norm k-hyperplane clustering problem to achieve better computational efficiency. In particular, it is shown that the p-norm variants can provide meaningful lowerbounds and greatly reduce the number of SBB nodes. Presentation of the analysis, in particular the statement of Corollary 2, were questioned by the reviewers. Numerical experiments are also considered not very practical.

审稿人讨论附加意见

The author did not provide a rebuttal.

最终决定

Reject