REVIEW 3 major objections 5 minor 55 references
Resampling strategies for imbalanced regression: a survey and empirical analysis
T0 review · 3 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read Resampling nearly always helps imbalanced regression, but the best strategy depends on the data, the model, and the metric.
desk verdict A useful, broad empirical benchmark on resampling for imbalanced regression, held back by one missing experimental parameter and some overclaimed dataset findings—revisable, not fatal. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing mechanism is the automatic relevance function $\varphi(y)$, built by pchip interpolation over control points derived from quartile-based boxplot statistics of the target variable. This function assigns each target value a relevance score between 0 and 1, and a threshold $t_R$ splits the data into rare and normal examples. The same function drives both halves of the study: each resampling strategy uses it to decide which cases to duplicate, remove, or synthesize, and both evaluation metrics (the utility-based F1-score and the SERA metric) compute scores from it. The whole comparison is therefore a comparison of strategies under one particular definition of which target values count as rare.
What would settle it
Re-run the 30-dataset comparison with a domain-defined relevance function, for example the NO2 concentration thresholds the paper cites, in place of the pchip/quartile-boxplot one; if the ranking of strategies changes substantially, the reported winners are artifacts of that automatic relevance definition rather than properties of imbalanced regression.
Extended reading notes
Core claim
The paper's central claim is that resampling strategies improve imbalanced regression performance for the vast majority of models, and that the improvement is statistically significant when tested across multiple datasets. The best overall strategies are Gaussian noise, random over-sampling, and WERCS, while SmoteR, SMOGN, and random under-sampling are weaker in these experiments. No strategy wins everywhere: the winning combination shifts with the dataset and the learning algorithm, and the two evaluation metrics (utility-based F1-score and SERA) sometimes disagree. The paper also finds that the hardest problems are small datasets with few rare cases and high imbalance ratios, and that models perform better when the number of features is small.
Load-bearing premise
The whole comparison rests on the automatic relevance function correctly marking which target values are rare and important, because that same function decides both what each resampling strategy changes and what both metrics reward.
Editorial extensions
If this is right
- Practitioners should not default to no resampling: for most regression models, applying Gaussian noise, random over-sampling, or WERCS improves imbalance-aware performance over the raw data.
- There is no universal best strategy; resampling should be treated as a tunable component of the modeling pipeline, selected per dataset and per evaluation metric.
- Strategies that inflate the training set, like random over-sampling (about 1421 percent growth), can be replaced by lighter ones like Gaussian noise and WERCS (about 1 to 3 percent growth) with comparable gains, saving training time.
- Datasets that are small, have few rare cases, or have a high imbalance ratio are where resampling choices matter most, and default pipelines are most likely to fail there.
- The two imbalance-aware evaluation lenses, F1-score and SERA, can disagree about which strategy wins, so reported performance should be metric-specific.
Reading between the lines
- Beyond the paper: because the same automatic relevance function both selects rare cases for resampling and scores the results, the reported ranking is conditional on that choice of $\varphi$; adopting a domain-defined relevance function, such as regulatory thresholds, could reorder the winners.
- Beyond the paper: the finding that dataset size and imbalance ratio drive difficulty suggests that a meta-learning approach recommending a resampling strategy from dataset characteristics could be feasible.
- Beyond the paper: a direct test of the paper's conclusions would be to repeat the 30-dataset comparison with a different relevance threshold, for instance $t_R = 0.5$ or $0.9$, and check whether the Gaussian-noise, random-over-sampling, and WERCS advantage persists.
- Beyond the paper: SERA's global, threshold-free evaluation combined with WERCS's threshold-free resampling suggests these two may be a particularly robust pairing when domain knowledge about the relevance threshold is absent.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper surveys and empirically evaluates six resampling strategies (SmoteR, Random Over-sampling, Random Under-sampling, Introduction of Gaussian Noise, SMOGN, and WERCS) for imbalanced regression, together with six regression models and two imbalanced-aware evaluation metrics (utility-based F1-score and SERA). It proposes a taxonomy of imbalanced regression approaches, reports win counts and Friedman/Nemenyi statistical analyses over 30 datasets, and derives practical lessons: resampling is usually beneficial, the best strategy depends on dataset, model, and metric, and dataset characteristics such as size and imbalance ratio affect performance. The authors provide code and data on GitHub.
Significance. If the findings hold, this is a useful and reasonably comprehensive benchmark for an under-studied problem, and the practical guidance (resample, but choose the strategy conditionally) is actionable. The paper's strengths include the multi-dataset experimental design, the use of appropriate non-parametric comparisons (Friedman and Nemenyi), the explicit treatment of both local and global metrics, and the public release of code and data. The main weakness is that one load-bearing experimental condition — the utility parameter p in Eq. (10) — is never reported, which makes the F1-score branch of the evidence non-reproducible. The dependence of the whole study on the pchip-based relevance function is a known limitation of the field and is acknowledged by the authors; I do not treat that as a flaw of this manuscript.
major comments (3)
- [Section 4.3, Eq. (10), Tables 6 and 8] The utility parameter p is never specified. The F1-score results in Tables 6 and 8 and Figure 6 are computed through the utility function U^p_phi in Eq. (4), which depends on the weighted relevance phi_p in Eq. (10), but the manuscript does not state the value of p used, nor whether it was fixed or tuned. Since the headline ranking of RO as the best strategy under F1 rests on this branch of the evidence, the F1 results are not reproducible as written. Please report p (and the beta value in Eq. 16), and ideally include a sensitivity analysis over p to show whether the strategy rankings change.
- [Section 5, RQ5, Figures 9-13] The claim that dataset size, number of rare cases, number of attributes, and imbalance ratio 'significantly influence' predictive performance is not supported by any statistical test reported in the paper; the evidence consists of visual inspection of line/scatter plots. Because RQ5 is one of the stated contributions, please either add appropriate statistical analyses (e.g., correlation or regression on per-dataset best F1 or on strategy ranks) or soften the wording to descriptive statements such as 'appear to be associated with' or 'show an association with'.
- [Section 5, Tables 10-11 and Figures 6-7] The SMOGN strategy did not complete on the california, heat, and wine-quality datasets (Tables 8 and 9), but the Friedman and Nemenyi analyses do not state how missing values were handled. Please clarify whether the statistical tests and average ranks in Tables 10-11 use complete cases only or some imputation, since this affects interpretation of the SMOGN results and of the overall statistical comparisons.
minor comments (5)
- [Abstract] There is a typo: 'wich uses metrics' should be 'which uses metrics'.
- [Section 5, after Tables 6 and 7] The paragraph beginning 'By observing the score by rows...' is repeated verbatim twice; please remove the duplicate.
- [Eq. (16)] The stated range '0 <= beta <= 1' is non-standard for the F-beta formula; F1-score normally corresponds to beta = 1. Please state explicitly which beta was used to compute the reported F1-scores, or simplify the equation to the balanced F1 form.
- [Table 6] The XG row sums to 30.1 and the grand total to 180.1, presumably due to rounding of 1/n tie scores; please make the displayed totals consistent with 30 datasets and 180 dataset-model combinations.
- [Section 5 and Appendix D] The text says that datasets with fewer features exhibit superior performance, but later states that a higher number of attributes leads to better model performance. Please reconcile these statements, since they appear contradictory without further explanation of the different analyses.
Circularity Check
No significant circularity: the headline claims are empirical rankings over 30 external datasets; the shared relevance function and the unreported utility parameter p are methodology and reproducibility concerns, not definitional reductions.
full rationale
This is an empirical benchmark study, not a derivation. The central claims — that resampling helps most regression models, that GN/RO/WERCS lead, and that the best strategy is context-dependent — are supported by external evidence: win counts over 30 standard datasets (Tables 6 and 7), per-dataset best/worst tables (Tables 8 and 9), and Friedman/Nemenyi significance tests (Figures 6 and 7). No equation in the paper constructs a reported outcome from its own input. Two structural couplings deserve scrutiny but are not circular. First, the relevance function phi is used both to define rare cases for every resampling strategy and to score both metrics (F1, Eqs. 14–16; SERA, Eq. 18); Section 2.1 explicitly states that 'using a different relevance function alters both the model evaluation and data resampling.' That is a stated modeling assumption shared with the field, and the outcome is not forced by it: WERCS, the strategy whose weights are most directly derived from phi (Algorithm 9, lines 3–7), wins only 10 times under F1 but 36 times under SERA, while RO wins 62 times under F1 but only 26 under SERA. This divergence between metrics shows the ranking is empirical, not definitional. Second, hyperparameters were tuned with SERA in nested cross-validation (Section 4.1) before F1 was reported; this couples the two metrics but does not define the results. The never-stated utility weight p in Eq. (10) is a genuine reproducibility gap (the skeptic's point), and the attribute-count claims in Section 5 ('datasets with fewer features exhibit superior performance') contradict Appendix D ('a higher number leads to better model performance'); both are correctness risks, not circularity. The only self-citation involving the authors, reference [20] (Roy, Cruz, Sabourin, Cavalcanti), appears within a background list of eight binary-classification empirical studies in the Introduction and is not load-bearing. A score of 1 reflects that minor self-citation and the shared-phi coupling; the core experimental claims are self-contained against external benchmarks.
Assumptions & free parameters
free parameters (3)
- relevance threshold tR =
0.8
- utility weighting parameter p =
not reported
- resampling hyperparameters (u, o, k, delta) =
tuned per dataset by inner 2-fold CV on SERA; values not listed
assumptions (4)
- domain assumption The pchip relevance function with Tukey boxplot control points correctly captures the user-relevance of target values.
- domain assumption F1-score for regression and SERA are valid measures of imbalanced-regression performance.
- domain assumption The 30 benchmark datasets are representative of imbalanced regression problems.
- standard math Friedman and Nemenyi tests are applied correctly with the 30 datasets as independent blocks.
Cite this review
Pith. "Pith review of Resampling strategies for imbalanced regression: a survey and empirical analysis." pith.science (2026). https://pith.science/paper/3JRDDQP3
@misc{pith2026250711902,
author = {Pith},
title = {Pith review of: Resampling strategies for imbalanced regression: a survey and empirical analysis},
year = {2026},
howpublished = {\url{https://pith.science/paper/3JRDDQP3}},
note = {Machine review of arXiv:2507.11902}
}
read the original abstract
Imbalanced problems can arise in different real-world situations, and to address this, certain strategies in the form of resampling or balancing algorithms are proposed. This issue has largely been studied in the context of classification, and yet, the same problem features in regression tasks, where target values are continuous. This work presents an extensive experimental study comprising various balancing and predictive models, and wich uses metrics to capture important elements for the user and to evaluate the predictive model in an imbalanced regression data context. It also proposes a taxonomy for imbalanced regression approaches based on three crucial criteria: regression model, learning process, and evaluation metrics. The study offers new insights into the use of such strategies, highlighting the advantages they bring to each model's learning process, and indicating directions for further studies. The code, data and further information related to the experiments performed herein can be found on GitHub: https://github.com/JusciAvelino/imbalancedRegression.
Reference graph
Works this paper leans on
-
[10]
Neurocomputing 343, 76–99 (2019)
Branco, P., Torgo, L., Ribeiro, R.P.: Pre-processing approaches for imbalanced distributions in regression. Neurocomputing 343, 76–99 (2019)
work page 2019
-
[1]
Expert systems with applications 73, 220–239 (2017)
Haixiang, G., Yijing, L., Shang, J., Mingyun, G., Yuanyue, H., Bing, G.: Learning from class-imbalanced data: Review of methods and applications. Expert systems with applications 73, 220–239 (2017)
work page 2017
-
[2]
Progress in Artificial Intelligence 5(4), 221–232 (2016)
Krawczyk, B.: Learning from imbalanced data: open challenges and future directions. Progress in Artificial Intelligence 5(4), 221–232 (2016)
work page 2016
-
[3]
Journal of Big Data 6(1), 1–54 (2019)
Johnson, J.M., Khoshgoftaar, T.M.: Survey on deep learning with class imbalance. Journal of Big Data 6(1), 1–54 (2019)
work page 2019
-
[4]
UBL: an R package for Utility-based Learning
Branco, P., Ribeiro, R.P., Torgo, L.: Ubl: an r package for utility-based learning. arXiv preprint arXiv:1604.08079 (2016)
work page Pith review arXiv 2016
-
[5]
In: First International Workshop on Learning with Imbalanced Domains: Theory and Applications, vol
Branco, P.O., Torgo, L., Ribeiro, R.P.: Smogn: a pre-processing approach for imbalanced regression. In: First International Workshop on Learning with Imbalanced Domains: Theory and Applications, vol. 74, pp. 36–50 (2017)
work page 2017
-
[6]
Ribeiro, R.: Utility-based regression. Ph. D. dissertation (2011) 41
work page 2011
-
[7]
Knowledge-Based Systems 119, 232–256 (2017)
Rathore, S.S., Kumar, S.: Linear and non-linear heterogeneous ensemble methods to predict the number of faults in software systems. Knowledge-Based Systems 119, 232–256 (2017)
work page 2017
Show all 55 references
-
[8]
Machine Learning 109(9), 1803–1835 (2020)
Ribeiro, R.P., Moniz, N.: Imbalanced regression and extreme value prediction. Machine Learning 109(9), 1803–1835 (2020)
2020
-
[9]
In: Portuguese Conference on Artificial Intelligence, pp
Torgo, L., Ribeiro, R.P., Pfahringer, B., Branco, P.: Smote for regression. In: Portuguese Conference on Artificial Intelligence, pp. 378–389 (2013). Springer
2013
-
[11]
In: ICSOFT, pp
Bal, P.R., Kumar, S.: Cross project software defect prediction using extreme learning machine: An ensemble based study. In: ICSOFT, pp. 354–361 (2018)
2018
-
[12]
IEEE Transactions on Reliability 69(4), 1355–1375 (2020)
Bal, P.R., Kumar, S.: Wr-elm: Weighted regularization extreme learning machine for imbalance learning in software fault prediction. IEEE Transactions on Reliability 69(4), 1355–1375 (2020)
2020
-
[13]
Expert Systems with Applications 82, 357–382 (2017)
Rathore, S.S., Kumar, S.: Towards an ensemble based system for predicting the number of software faults. Expert Systems with Applications 82, 357–382 (2017)
2017
-
[14]
Journal of Chemical Information and Modeling 60(8), 4098–4107 (2020)
Gado, J.E., Beckham, G.T., Payne, C.M.: Improving enzyme optimum temper- ature prediction with resampling strategies and ensemble learning. Journal of Chemical Information and Modeling 60(8), 4098–4107 (2020)
2020
-
[15]
Toxics 9(12), 333 (2021)
Agrawal, A., Petersen, M.R.: Detecting arsenic contamination using satellite imagery and machine learning. Toxics 9(12), 333 (2021)
2021
-
[16]
In: International Conference on Discovery Science, pp
Torgo, L., Ribeiro, R.: Precision and recall for regression. In: International Conference on Discovery Science, pp. 332–346 (2009). Springer
2009
-
[17]
Expert Systems with Applications 158, 113026 (2020)
Garc ´ ıa, V., S´ anchez, J.S., Marqu´ es, A., Florencia, R., Rivera, G.: Understanding the apparent superiority of over-sampling through an analysis of local information for class-imbalanced data. Expert Systems with Applications 158, 113026 (2020)
2020
-
[18]
Applied Soft Computing 83, 105662 (2019)
Kov´ acs, G.: An empirical comparison and evaluation of minority oversampling techniques on a large number of imbalanced datasets. Applied Soft Computing 83, 105662 (2019)
2019
-
[19]
Foundations of Computing and Decision Sciences 42(2), 149–176 (2017)
Wojciechowski, S., Wilk, S.: Difficulty factors and preprocessing in imbalanced data sets: an experimental study on artificial data. Foundations of Computing and Decision Sciences 42(2), 149–176 (2017)
2017
-
[20]
Neurocomput- ing 286, 179–192 (2018) 42
Roy, A., Cruz, R.M., Sabourin, R., Cavalcanti, G.D.: A study on combining dynamic selection and data preprocessing for imbalance learning. Neurocomput- ing 286, 179–192 (2018) 42
2018
-
[21]
International Journal of Engineering & Technology 8, 390–397 (2019)
Ali, H., Salleh, M.N.M., Hussain, K., Ahmad, A., Ullah, A., Muhammad, A., Naseem, R., Khan, M.: A review on data preprocessing methods for class imbal- ance problem. International Journal of Engineering & Technology 8, 390–397 (2019)
2019
-
[22]
In: 2015 IEEE Trustcom/BigDataSE/ISPA, vol
Del Rio, S., Ben ´ ıtez, J.M., Herrera, F.: Analysis of data preprocessing increasing the oversampling ratio for extremely imbalanced big data classification. In: 2015 IEEE Trustcom/BigDataSE/ISPA, vol. 2, pp. 180–185 (2015). IEEE
2015
-
[23]
Information Sciences 325, 98–117 (2015)
D ´ ıez-Pastor, J.F., Rodr ´ ıguez, J.J., Garc ´ ıa-Osorio, C.I., Kuncheva, L.I.: Diversity techniques improve the performance of the best imbalance learning ensembles. Information Sciences 325, 98–117 (2015)
2015
-
[24]
Knowledge-Based Systems 227, 107222 (2021)
Moniz, N., Monteiro, H.: No free lunch in imbalanced learning. Knowledge-Based Systems 227, 107222 (2021)
2021
-
[25]
International Journal of Pattern Recognition and Artificial Intelligence 33(11), 1940009 (2019)
Cruz, R.M., Souza, M.A., Sabourin, R., Cavalcanti, G.D.: Dynamic ensemble selection and data preprocessing for multi-class imbalance learning. International Journal of Pattern Recognition and Artificial Intelligence 33(11), 1940009 (2019)
2019
-
[26]
Pattern Recognition 57, 164–178 (2016)
S´ aez, J.A., Krawczyk, B., Wo´ zniak, M.: Analyzing the oversampling of differ- ent classes and types of examples in multi-class imbalanced datasets. Pattern Recognition 57, 164–178 (2016)
2016
-
[27]
arXiv preprint arXiv:2204.03719 (2022)
Aguiar, G., Krawczyk, B., Cano, A.: A survey on learning from imbalanced data streams: taxonomy, challenges, empirical study, and reproducible experimental framework. arXiv preprint arXiv:2204.03719 (2022)
2022 arXiv
-
[28]
In: Joint European Conference on Machine Learning and Knowledge Discovery in Databases, pp
Zyblewski, P., Sabourin, R., Wo´ zniak, M.: Data preprocessing and dynamic ensemble selection for imbalanced data stream classification. In: Joint European Conference on Machine Learning and Knowledge Discovery in Databases, pp. 367–379 (2019). Springer
2019
-
[29]
ACM Computing Surveys (CSUR) 49(2), 1–50 (2016)
Branco, P., Torgo, L., Ribeiro, R.P.: A survey of predictive modeling on imbalanced domains. ACM Computing Surveys (CSUR) 49(2), 1–50 (2016)
2016
-
[30]
Mathematics of Computation 52(186), 471–494 (1989)
Dougherty, R.L., Edelman, A.S., Hyman, J.M.: Nonnegativity-, monotonicity-, or convexity-preserving cubic and quintic hermite interpolation. Mathematics of Computation 52(186), 471–494 (1989)
1989
-
[31]
Tukey, J.: Exploratory Data Analysis, limited prelim. ed. Addison-Wesley, Reading, Mass (1970)
1970
-
[32]
Computational statistics & data analysis 52(12), 5186–5201 (2008)
Hubert, M., Vandervieren, E.: An adjusted boxplot for skewed distributions. Computational statistics & data analysis 52(12), 5186–5201 (2008)
2008
-
[33]
SIAM 43 Journal on Numerical Analysis 17(2), 238–246 (1980)
Fritsch, F.N., Carlson, R.E.: Monotone piecewise cubic interpolation. SIAM 43 Journal on Numerical Analysis 17(2), 238–246 (1980)
1980
-
[34]
IEEE Transactions on Systems, Man, and Cybernetics, Part C (Applications and Reviews) 42(4), 463–484 (2011)
Galar, M., Fernandez, A., Barrenechea, E., Bustince, H., Herrera, F.: A review on ensembles for the class imbalance problem: bagging-, boosting-, and hybrid- based approaches. IEEE Transactions on Systems, Man, and Cybernetics, Part C (Applications and Reviews) 42(4), 463–484 (2011)
2011
-
[35]
Information sciences 250, 113–141 (2013)
L´ opez, V., Fern´ andez, A., Garc ´ ıa, S., Palade, V., Herrera, F.: An insight into classification with imbalanced data: Empirical results and current trends on using data intrinsic characteristics. Information sciences 250, 113–141 (2013)
2013
-
[36]
In: Second International Workshop on Learning with Imbalanced Domains: Theory and Applications, pp
Branco, P., Torgo, L., Ribeiro, R.P.: Rebagg: Resampled bagging for imbalanced regression. In: Second International Workshop on Learning with Imbalanced Domains: Theory and Applications, pp. 67–81 (2018)
2018
-
[37]
In: 2018 IEEE 5th International Con- ference on Data Science and Advanced Analytics (DSAA), pp
Moniz, N., Ribeiro, R., Cerqueira, V., Chawla, N.: Smoteboost for regression: Improving the prediction of extreme values. In: 2018 IEEE 5th International Con- ference on Data Science and Advanced Analytics (DSAA), pp. 150–159 (2018). IEEE
2018
-
[38]
In: Proceedings of the First International Workshop on Learning with Imbalanced Domains: Theory and Applications, vol
Moniz, N.M., Branco, P.O., Torgo, L.: Evaluation of ensemble methods in imbal- anced regression tasks. In: Proceedings of the First International Workshop on Learning with Imbalanced Domains: Theory and Applications, vol. 74, pp. 129–140 (2017)
2017
-
[39]
In: European Conference on Principles of Data Mining and Knowledge Discovery, pp
Torgo, L., Ribeiro, R.: Predicting outliers. In: European Conference on Principles of Data Mining and Knowledge Discovery, pp. 447–458 (2003). Springer
2003
-
[40]
In: International Conference on Machine Learning, pp
Yang, Y., Zha, K., Chen, Y., Wang, H., Katabi, D.: Delving into deep imbalanced regression. In: International Conference on Machine Learning, pp. 11842–11851 (2021). PMLR
2021
-
[41]
Machine Learning 110, 2187–2211 (2021)
Steininger, M., Kobs, K., Davidson, P., Krause, A., Hotho, A.: Density-based weighting for imbalanced regression. Machine Learning 110, 2187–2211 (2021)
2021
-
[42]
Journal of artificial intelligence research 16, 321–357 (2002)
Chawla, N.V., Bowyer, K.W., Hall, L.O., Kegelmeyer, W.P.: Smote: synthetic minority over-sampling technique. Journal of artificial intelligence research 16, 321–357 (2002)
2002
-
[43]
Expert Systems with Applications, 116387 (2022)
Camacho, L., Douzas, G., Bacao, F.: Geometric smote for regression. Expert Systems with Applications, 116387 (2022)
2022
-
[44]
: Addressing the curse of imbalanced training sets: one-sided selection
Kubat, M., Matwin, S., et al. : Addressing the curse of imbalanced training sets: one-sided selection. In: Icml, vol. 97, p. 179 (1997). Citeseer
1997
-
[45]
ACM SIGKDD explorations 44 newsletter 6(1), 20–29 (2004)
Batista, G.E., Prati, R.C., Monard, M.C.: A study of the behavior of several meth- ods for balancing machine learning training data. ACM SIGKDD explorations 44 newsletter 6(1), 20–29 (2004)
2004
-
[46]
Computational Statistics 14(2), 277–292 (1999)
Lee, S.S.: Regularization in skewed binary classification. Computational Statistics 14(2), 277–292 (1999)
1999
-
[47]
Computational statistics & data analysis 34(2), 165–191 (2000)
Lee, S.S.: Noisy replication in skewed binary classification. Computational statistics & data analysis 34(2), 165–191 (2000)
2000
-
[48]
In: Fourth International Workshop on Learning with Imbalanced Domains: Theory and Applications, pp
Song, X.Y., Dao, N., Branco, P.: Distsmogn: Distributed smogn for imbal- anced regression problems. In: Fourth International Workshop on Learning with Imbalanced Domains: Theory and Applications, pp. 38–52 (2022). PMLR
2022
-
[49]
Data Mining and Knowledge Discovery 35, 2389–2466 (2021)
Aminian, E., Ribeiro, R.P., Gama, J.: Chebyshev approaches for imbalanced data streams regression models. Data Mining and Knowledge Discovery 35, 2389–2466 (2021)
2021
-
[50]
In: International Symposium on Intelligent Data Analysis, pp
Moniz, N., Torgo, L., Rodrigues, F.: Resampling approaches to improve news importance prediction. In: International Symposium on Intelligent Data Analysis, pp. 215–226 (2014). Springer
2014
-
[51]
In: European Conference on Prin- ciples of Data Mining and Knowledge Discovery, pp
Torgo, L., Ribeiro, R.: Utility-based regression. In: European Conference on Prin- ciples of Data Mining and Knowledge Discovery, pp. 597–604 (2007). Springer
2007
-
[52]
International Journal of Data Science and Analytics 3(3), 161–181 (2017)
Moniz, N., Branco, P., Torgo, L.: Resampling strategies for imbalanced time series forecasting. International Journal of Data Science and Analytics 3(3), 161–181 (2017)
2017
-
[53]
Oliveira Branco, P.A.: Utility-based predictive analytics (2018)
2018
-
[54]
Journal of Machine Learning Research 7(Jan), 1–30 (2006)
Demˇ sar, J.: Statistical comparisons of classifiers over multiple data sets. Journal of Machine Learning Research 7(Jan), 1–30 (2006)
2006
-
[55]
Machine Learning107(1), 209– 246 (2018) 45
Lorena, A.C., Maciel, A.I., Miranda, P.B., Costa, I.G., Prudˆ encio, R.B.: Data complexity meta-features for regression problems. Machine Learning107(1), 209– 246 (2018) 45
2018
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.