Response to Reviewer j18Y (1/2)
We sincerely appreciate the reviewer for the feedback. Hope this response answers the reviewer’s questions.
>**1. The notion of a "window" refers to a fixed-length interval within a sorted dataset. The "Best Window Selection (BWS)" algorithm operates under the assumption that the most optimal subset should be contiguous regarding the level of difficulty. However, the paper lacks an in-depth analysis of this particular aspect.**
We’d like to highlight that the rationale behind the “window” selection from a sorted dataset mainly lies on two critical merits of this approach: 1) computational efficiency in searching for the optimal subset and 2) flexibility in choosing the data subset, enabling the selection of easy, moderate, or hard data subsets. In particular, this flexibility is pivotal in achieving competitive performances across a broad range of selection ratios.
As pointed out by the reviewer, the optimal subset might not be necessarily strictly contiguous in terms of the difficulty level of the samples. However, our theoretical analysis in Sec. 3.1 and the ablation study in Table 3 deliver some insights on the benefit of choosing samples from the continuous interval. First of all, in the simple toy example of binary classification problem introduced in Sec. 3.1, we show that the difficulty level of the optimal subset indeed changes depending on the subset size. In particular, for sample-deficient regimes, it is better to select easy samples (that are farther from the decision boundary), while selecting difficult samples (closer to the decision boundary) is more beneficial for sample-sufficient regimes. This theoretical analysis aligns well with the empirical findings (summarized in Table 1) that the previous score-based selection methods, which select rare or difficult-to-classify samples, achieve a better performance in high selection ratios, while the coreset selection methods, which select representative samples approximating the average behavior of the total dataset, achieves a stronger performance in low selection ratios. So, we can see that the optimal subset should be composed of relatively easy (hard) samples in low (high) selection ratios.
Then, the remaining question is whether there exists such a desirable difficulty level for the subset in the intermediate selection ratios. We do not provide theoretical analysis on this aspect, but present some empirical evidence in our ablation study. In particular, our ablation study in Table 3 compares different types of subsets (in addition to the hard-only or easy-only windows), such as “Hard-easy”, which combines the easy and hard samples with equal proportions or “25-75\%”, which includes random samples from a moderate regime after pruning a fixed portion of too easy or hard samples. Compared to these non-contiguous subset selection methods, our window selection consistently achieves better performance over all the selection ratios (10 to 40\%) by cleverly choosing the window starting point. This ablation study, combined with our pruning experiment results summarized in Figure 4, partly demonstrate that our window selection, which prunes top $s$\% of the most difficult samples and top $(100-w-s)$\% of the easiest samples with a properly chosen $s$ for a fixed width of $w$\%, provides a good enough flexibility in choosing a subset of competitive performances across a broad range of selection ratios.
Lastly, we provide further evidence that even though our method selects samples from a contiguous range of difficulty level, our subset maintains diversity in sample selection (in the embedding space), which is often considered as a desirable criteria in subset selection. To show this, we compute the coverage (\%) of the full dataset from the $k$-nearest neighbors of the selected samples from our method (BWS), and compare this coverage with that of random selection. For example, for the subset ratio of 10% and $k=3$, if the coverage is 30\%, it means that all the selected samples do not share their neighborhoods within distance 3 in the embedding space. The tables below show that the coverage of our method is as high as that of the random selection, showing that selecting samples of similar difficulty does not reduce the sample diversity in the embedding space compared to the random selection.
The portion included in the 3-nearest neighborhood (k=3)
| Subset ratio | 1% | 5% | 10% | 20% | 30% |
|:-------------:|:----:|:-----:|:-----:|:-----:|:-----:|
| Window subset | 2.9% | 13.2% | 25.2% | 42.7% | 55.0% |
| Random subset | 2.9% | 13.9% | 26.0% | 45.3% | 59.6% |
The portion included in the 5-nearest neighborhood (k=5)
| Subset ratio | 1% | 5% | 10% | 20% | 30% |
|:-------------:|:----:|:-----:|:-----:|:-----:|:-----:|
| Window subset | 4.8% | 19.3% | 36.5% | 56.2% | 67.4% |
| Random subset | 4.8% | 21.7% | 38.3% | 60.7% | 74.2% |