REVIEW 5 major objections 5 minor 51 references
Multi-criteria Rank-based Aggregation for Explainable AI
T0 review · 5 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read This paper claims that weighting LIME, SHAP, and ANCHOR explanations by multi-criteria performance scores into a single rank aggregation produces more robust explanations, consistently best or second-best on complexity and faithfulness…
desk verdict The MCDM aggregation framework is a reasonable idea, but the NRC metric defined in Eq. (1) is constant for any tie-free ranking, so the headline robustness results cannot follow from the stated formulas. 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 carrying mechanism is a two-stage weighting procedure: rank-based metrics defined directly on feature-importance rankings, followed by MCDM-to-rank-aggregation fusion. The rank-based metrics—NRC $\mu_{\text{NRC}}(f,g;x)=\left(\sum_{i=1}^{d}1/R_i\right)\log(d+1)(1+\alpha\,\operatorname{std}(R))$, rank-based faithfulness using the correlation between inverse ranks and prediction change, and Spearman stability on autoencoder-noised data—let explainers be scored in ranking space. TOPSIS then assigns each explainer a closeness-to-ideal weight, and WSUM combines the rankings with those weights using squared inverse ranks; this is what produces a single aggregate ranking that inherits the best aspects of its components.
What would settle it
Take a dataset with known ground-truth feature importance (for example, a synthetic linear model where the true weights are known), run the full TOPSIS-WSUM aggregation, and check whether the aggregate ranking recovers the true features at least as well as the best single explainer; separately re-run the experiment with $\alpha=0$ and $\alpha=1$ and check whether the aggregate still avoids worst-case stability—if either check fails, the robustness result depends on the tuned metric rather than the aggregation.
Extended reading notes
Core claim
On the paper's own terms, the discovery is that an ensemble of explanations constructed from rank-based quality metrics is better than any of its parts. For each instance to be explained, LIME, SHAP, and ANCHOR each produce a feature-importance ranking; the paper scores those rankings with three new rank-based metrics—NRC for complexity, a rank-based faithfulness measure, and a Spearman-based stability measure computed with autoencoder-generated in-distribution noise—arranged in a 3x3 matrix. TOPSIS (or EDAS) converts that matrix into a scalar weight per explainer, and a weighted rank aggregation (WSUM, using squared inverse ranks) merges the three rankings into one. In experiments across German credit, Taiwan credit, PAKDD2010, breast cancer, and student depression data, the aggregate explanation lands at the top or second place on NRC and faithfulness and never takes the worst stability value, whereas each component explainer is best on some axis and worst on another. The paper further argues that TOPSIS and WSUM are the best algorithm choices among the eight MCDM methods and three rank aggregation methods tested.
Load-bearing premise
The load-bearing premise is that the three new rank-based scores (complexity, faithfulness, stability) genuinely measure explanation quality: the paper supports them only by correlation with older metrics, and the complexity penalty $\alpha=0.5$ was tuned in preliminary experiments, so if the scores do not track real quality, both the weighting of the explainers and the evaluation of the aggregate are wrong.
Editorial extensions
If this is right
- Practitioners can obtain one local explanation per prediction that is designed to avoid the worst quality failures of any single explainer, at the cost of running the explainers roughly as many times as SHAP.
- The rank-based metrics let non-scoring explainers like ANCHOR be compared directly with scoring explainers like LIME and SHAP on the same ordinal scale.
- Autoencoder-based in-distribution noise gives a way to measure stability of explanations on tabular data with categorical features, replacing ad hoc Gaussian noise.
- TOPSIS with WSUM can be used as a default aggregation recipe, with EDAS as a close alternative.
- Because the aggregate avoids worst-case stability, the resulting explanation is less likely to flip dramatically under small data perturbations, which matters for audits and stakeholder trust.
Reading between the lines
- The equal criterion weights are an assumption, not a result; a natural next experiment is to weight complexity, faithfulness, and stability by task-specific stakes and see whether the aggregate remains robust.
- Since $\alpha=0.5$ in NRC was tuned, a sensitivity sweep over $\alpha$ would reveal whether the complexity advantage of the aggregate survives outside the chosen operating point.
- The robustness claim is an average over 5 or 10 random samples per dataset; one could test whether the aggregate ranking itself is stable across repeated runs, which would strengthen the stability argument.
- The method's cost scales with SHAP, so a practical variant could approximate SHAP or use cheaper explainers while preserving the rank-aggregation benefit.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a multi-criteria rank-based aggregation framework for local explanations. It converts three existing XAI metrics (complexity, faithfulness, stability) into rank-based forms, uses MCDM methods (TOPSIS, EDAS, and others) to assign weights to component explainers (SHAP, LIME, ANCHOR), and then applies weighted rank aggregation (WSUM, Condorcet, Borda) to form an aggregate explanation. The authors evaluate the aggregate on five datasets and report that it often achieves best or second-best scores on the proposed metrics, concluding that the method improves robustness. The paper also compares eight MCDM methods and three rank aggregation methods and identifies TOPSIS and WSUM as the best candidates.
Significance. If the proposed metrics and aggregation were valid, the paper would make a useful practical contribution to explainable AI by turning a multi-criteria decision problem into a rank aggregation problem. Strengths include the model-agnostic formulation, the public code repository, and the use of multiple public datasets. However, the paper's central quantitative claim rests on a metric that is mathematically constant for the standard no-tie ranking case, and on an evaluation that is circular because the aggregate is scored with the same metrics used to construct its weights. Both issues are load-bearing; they cannot be repaired by local editing of the presentation, and the current evidence does not support the conclusion that the proposed method produces more robust explanations.
major comments (5)
- [V-A, Eq. (1)] The NRC metric is constant for any explanation whose importance ranking has no ties. Under Eq. (1), R_i is the rank of feature i; for continuous-valued explainers such as SHAP and LIME, R is a permutation of {1,...,d} in the generic case, so sum_i 1/R_i equals the harmonic number H_d and std(R) equals sqrt((d^2 - 1)/12). Both factors are independent of the explanation, so NRC is constant for all such explanations. The distinct average NRC ranks reported in Tables III-XII can therefore only arise if ties or an unstated modification to the rank construction are present, and neither is specified. The headline NRC results are unsupported by the stated formula, and the alpha=0.5 hyperparameter selected in preliminary experiments (Section VII) cannot rescue a constant metric. The metric must be redefined (for example, using normalized importance scores or a tie-aware rank statistic) and all NRC-based comparisons recomputed.
- [V, 'Validating the Aggregate Explanation'] The evaluation is circular. The MCDM weights in Section V are computed from exactly the three proposed metrics (NRC, faithfulness, stability), and the same three metrics are then used in Tables III-XII to score the aggregate explanation against the component explainers. Because the aggregation procedure is explicitly designed to favor high scores on these criteria, the observation that the aggregate often achieves a best or second-best score is at least partly by construction. To support the claim of enhanced robustness, the aggregate should be evaluated with independent metrics, with ground-truth feature importance, or on criteria not used in the weighting step.
- [VI-B] The experimental basis is very small. Only 10 random instances per dataset are used for RQ2 and RQ3, and only 5 for RQ4, with no error bars, confidence intervals, or effect sizes. The parenthetical Friedman/Finner counts in the tables are based on these tiny samples, so the 'best or second-best' claims are statistically fragile. The concluding statement about a 'comprehensive experimental analysis across five datasets' overstates what 10 (or 5) points per dataset can establish.
- [VI-D] The comparison of MCDM methods is incomplete and not reproducible. The text states that preliminary experiments showed TOPSIS and EDAS consistently outperformed the other six methods, but those preliminary experiments are not described, no results are shown, and no code or protocol is provided. Similarly, Section VI-E omits Borda count results 'due to space constraints'. The abstract's claim that TOPSIS and WSUM are the best candidates is therefore not verifiable from the paper; at minimum, the omitted comparisons should be provided as supplementary material or the claims should be restricted to the reported methods.
- [V-A.c, VI-B] The autoencoder-based stability metric depends on free parameters that are never specified: the number K of nearest neighbors in the latent space and the number of features changed to construct the noisy training set. Section VI.B only reports the 500 training epochs. Since stability is one of the three criteria used both for weighting and evaluation, the stability results cannot be reproduced or interpreted without these parameter values and a sensitivity analysis.
minor comments (5)
- [III] The heading 'AUTOENCODERMODELDESCRIPTION' appears immediately after the ANCHOR subsection with no spacing or separate heading; the formatting should be corrected.
- [V] The phrase 'we chose the squared inverse of the features’ ranks as this value' introduces an unexplained transformation; please justify this choice or cite a source, and specify whether this applies to the rank aggregation only or also to the metrics.
- [V-A, Eq. (2)] The notation r(g(f,x))_i in Eq. (2) is ambiguous: it should clearly denote the rank of feature i under the explanation ranking, rather than the i-th element of an undefined vector.
- [VI] The text uses inconsistent capitalization for SHAP ('Shap' appears in the discussion of Tables III-V), and the table footnotes describe the Friedman/Finner procedure with inconsistent footnote numbers (for example, footnote 2 vs. footnote 3) that should be harmonized.
- [VI-C, Table II] The negative correlations for sensitivity/stability are explained as expected, but the actual magnitudes are not interpreted; it would be helpful to report whether the sign flip yields equivalent rankings, since a Spearman correlation of -0.60 on PAKDD2010 is only moderate.
Circularity Check
Equation (1)'s NRC metric is a constant for any tie-free ranking, so the reported NRC rankings are generated by the formula rather than by the explanations; the aggregate-robustness claim retains independent content only through faithfulness and stability.
-
other
[Section V.A(a), Eq. (1); evaluated in Section VI.D (Tables IIIa-VIIb)]
"µN RC(f, g;x) = ( Σd i=1 1 Ri ) · log(d + 1) · (1 + α · std(R)), where R = r(g(f, x)). (1)"
For any explanation whose d feature-importance scores have no ties, R is a permutation of {1,...,d}; hence Σ 1/R_i is the harmonic number H_d and std(R) = sqrt((d^2−1)/12). Both factors are constants independent of the explanation, so Eq. (1) assigns exactly the same NRC value to every tie-free explanation. The tables (e.g., IIIa: Aggregate 1.6 vs ANCHOR 1.7 vs SHAP 3.4) report distinct NRC average ranks, which cannot follow from the stated formula unless an unstated tie-breaking or modified metric is used. Therefore the conclusion that the aggregate explainer is 'best or second-best' in NRC is an artifact of the formula, not an empirical result derived from the explanations.
full rationale
The paper is self-contained on the aggregation pipeline: TOPSIS/EDAS weights are computed from the three rank-based metrics and then WSUM/Condorcet combine the component rankings, with no load-bearing self-citation and no imported uniqueness theorem. The faithfulness and stability metrics are meaningfully rank-based, and the aggregate's avoidance of worst-case stability is an empirical finding. However, the NRC metric as written is degenerate: for tie-free rankings it depends only on d and α, so the NRC columns in Tables III-XII cannot be produced by Eq. (1). This makes one of the three evaluation criteria on which the 'more robust explanations' claim rests vacuous as stated, and the paper acknowledges α=0.5 was chosen from preliminary experiments. The central robustness conclusion still has independent content through faithfulness and stability, so the circularity is partial, not total.
Assumptions & free parameters
free parameters (3)
- alpha (NRC rank dispersion penalty) =
0.5
- Rank transformation exponent (squared inverse of ranks) =
2
- Autoencoder noise parameters (number of neighbors K and number of features changed)
assumptions (4)
- ad hoc to paper The rank-based metrics NRC, faithfulness, and stability correctly measure explanation complexity, fidelity, and stability.
- domain assumption The autoencoder-based noise generation produces a meaningful dataset perturbation for stability testing.
- domain assumption The same metrics can be used to assign MCDM weights to explainers and to evaluate the aggregated explanation without bias.
- domain assumption Equal weights for the three criteria are an appropriate default.
Cite this review
Pith. "Pith review of Multi-criteria Rank-based Aggregation for Explainable AI." pith.science (2026). https://pith.science/paper/YXDOMOVI
@misc{pith2026250524612,
author = {Pith},
title = {Pith review of: Multi-criteria Rank-based Aggregation for Explainable AI},
year = {2026},
howpublished = {\url{https://pith.science/paper/YXDOMOVI}},
note = {Machine review of arXiv:2505.24612}
}
read the original abstract
Explainability is crucial for improving the transparency of black-box machine learning models. With the advancement of explanation methods such as LIME and SHAP, various XAI performance metrics have been developed to evaluate the quality of explanations. However, different explainers can provide contrasting explanations for the same prediction, introducing trade-offs across conflicting quality metrics. Although available aggregation approaches improve robustness, reducing explanations' variability, very limited research employed a multi-criteria decision-making approach. To address this gap, this paper introduces a multi-criteria rank-based weighted aggregation method that balances multiple quality metrics simultaneously to produce an ensemble of explanation models. Furthermore, we propose rank-based versions of existing XAI metrics (complexity, faithfulness and stability) to better evaluate ranked feature importance explanations. Extensive experiments on publicly available datasets demonstrate the robustness of the proposed model across these metrics. Comparative analyses of various multi-criteria decision-making and rank aggregation algorithms showed that TOPSIS and WSUM are the best candidates for this use case.
Figures
Reference graph
Works this paper leans on
-
[1]
Credit default risk prediction based on deep learning,
X. Gao, Y . Xiong, Z. Xiong, and H. Xiong, “Credit default risk prediction based on deep learning,”Research Square, 2021
work page 2021
-
[2]
Explaining anomalies detected by autoencoders using shapley additive explana- tions,
L. Antwarg, R. M. Miller, B. Shapira, and L. Rokach, “Explaining anomalies detected by autoencoders using shapley additive explana- tions,”Expert Syst. Appl., vol. 186, p. 115736, 2021
work page 2021
-
[3]
European union regulations on algorith- mic decision making and a “right to explanation
B. Goodman and S. Flaxman, “European union regulations on algorith- mic decision making and a “right to explanation”,”AI Magazine, vol. 38, no. 3, p. 50–57, Sep. 2017
work page 2017
-
[4]
K. Jhumka, M. M. Auzine, M. Heenaye-Mamode Khan, S. M. Casseem, S. A. Fedally, and Z. Mungloo-Dilmohamud, “Explainable chronic kidney disease (ckd) prediction using deep learning and shapley additive explanations (shap),” inProceedings of the 2023 7th International Conference on Advances in Artificial Intelligence, ser. ICAAI ’23. New York, NY , USA: Asso...
work page 2023
-
[5]
U. Bhalla, S. Srinivas, and H. Lakkaraju, “Discriminative feature attri- butions: Bridging post hoc explainability and inherent interpretability,” inAdvances in Neural Information Processing Systems, vol. 36. Curran Associates, Inc., 2023, pp. 44 105–44 122
work page 2023
-
[6]
Explainability in Machine Learning: a Pedagogical Perspective
A. Bueff, I. Papantonis, A. Simkute, and V . Belle, “Explainabil- ity in machine learning: a pedagogical perspective,”arXiv preprint arXiv:2202.10335, 2022
work page Pith review arXiv 2022
-
[7]
Interpretability and Explainability: A Machine Learning Zoo Mini-tour
R. Marcinkevi ˇcs and J. E. V ogt, “Interpretability and explainability: A machine learning zoo mini-tour,”arXiv preprint arXiv:2012.01805, 2023
work page Pith review arXiv 2012
-
[8]
Clarity in complexity: how aggregating explanations re- solves the disagreement problem,
O. Mitrut ,, G. Moise, A. Moldoveanu, F. Moldoveanu, M. Leordeanu, and L. Petrescu, “Clarity in complexity: how aggregating explanations re- solves the disagreement problem,”Artificial Intelligence Review, vol. 57, no. 12, pp. 1–53, 2024
work page 2024
Show all 51 references
-
[9]
Stop explaining black box machine learning models for high stakes decisions and use interpretable models instead,
C. Rudin, “Stop explaining black box machine learning models for high stakes decisions and use interpretable models instead,”Nature machine intelligence, vol. 1, no. 5, pp. 206–215, 2019
2019
-
[10]
The disagreement problem in explainable machine learn- ing: A practitioner’s perspective,
S. Krishna, T. Han, A. Gu, J. Pombra, S. Jabbari, S. Wu, and H. Lakkaraju, “The disagreement problem in explainable machine learn- ing: A practitioner’s perspective,”CoRR, vol. abs/2202.01602, 2022
2022 arXiv
-
[11]
Aggregating explanation methods for stable and robust explainability,
L. Rieger and L. K. Hansen, “Aggregating explanation methods for stable and robust explainability,”arXiv preprint arXiv:1903.00519, 2019
1903 arXiv
-
[12]
Towards robust interpretability with self-explaining neural networks,
D. Alvarez Melis and T. Jaakkola, “Towards robust interpretability with self-explaining neural networks,”Advances in neural information processing systems, vol. 31, 2018
2018
-
[13]
Global aggrega- tions of local explanations for black box models,
I. Van Der Linden, H. Haned, and E. Kanoulas, “Global aggrega- tions of local explanations for black box models,”arXiv preprint arXiv:1907.03039, 2019
1907 arXiv
-
[14]
Evaluating and aggregating feature-based model explanations,
U. Bhatt, A. Weller, and J. M. Moura, “Evaluating and aggregating feature-based model explanations,”arXiv preprint arXiv:2005.00631, 2020
2005 arXiv
-
[15]
Methods for multiple attribute decision making,
C.-L. Hwang, K. Yoon, C.-L. Hwang, and K. Yoon, “Methods for multiple attribute decision making,”Multiple attribute decision making: methods and applications a state-of-the-art survey, pp. 58–191, 1981
1981
-
[16]
Multi- criteria inventory classification using a new method of evaluation based on distance from average solution (edas),
M. K. Ghorabaee, E. K. Zavadskas, L. Olfat, and Z. Turskis, “Multi- criteria inventory classification using a new method of evaluation based on distance from average solution (edas),”Informatica, vol. 26, no. 3, pp. 435–451, 2015
2015
-
[17]
Data fusion with estimated weights,
S. Wu and F. Crestani, “Data fusion with estimated weights,” inProceed- ings of the 2002 ACM CIKM International Conference on Information and Knowledge Management, McLean, VA, USA, November 4-9, 2002. ACM, 2002, pp. 648–651
2002
-
[18]
Condorcet fusion for improved re- trieval,
M. Montague and J. A. Aslam, “Condorcet fusion for improved re- trieval,” inProceedings of the Eleventh International Conference on Information and Knowledge Management, ser. CIKM ’02. New York, NY , USA: Association for Computing Machinery, 2002, p. 538–548
2002
-
[19]
Models for metasearch,
J. A. Aslam and M. Montague, “Models for metasearch,” inProceedings of the 24th Annual International ACM SIGIR Conference on Research and Development in Information Retrieval, ser. SIGIR ’01. New York, NY , USA: Association for Computing Machinery, 2001, p. 276–284
2001
-
[20]
Transparency, auditability, and explainability of machine learning models in credit scoring,
M. Bücker, G. Szepannek, A. Gosiewska, and P. Biecek, “Transparency, auditability, and explainability of machine learning models in credit scoring,”J. Oper. Res. Soc., vol. 73, no. 1, pp. 70–90, 2022
2022
-
[21]
Explainable ai for credit assessment in banks,
P. E. de Lange, B. Melsom, C. B. Vennerød, and S. Westgaard, “Explainable ai for credit assessment in banks,”Journal of Risk and Financial Management, vol. 15, no. 12, pp. 1–23, 2022
2022
-
[22]
Glocalx - from local to global explanations of black box ai models,
M. Setzu, R. Guidotti, A. Monreale, F. Turini, D. Pedreschi, and F. Giannotti, “Glocalx - from local to global explanations of black box ai models,”Artificial Intelligence, vol. 294, p. 103457, May 2021
2021
-
[23]
Axiomatic aggregations of abductive explanations,
G. Biradar, Y . Izza, E. Lobo, V . Viswanathan, and Y . Zick, “Axiomatic aggregations of abductive explanations,” inProceedings of the AAAI Conference on Artificial Intelligence, vol. 38, no. 10, 2024, pp. 11 096– 11 104
2024
-
[24]
Vice: Visual counterfac- tual explanations for machine learning models,
O. Gomez, S. Holter, J. Yuan, and E. Bertini, “Vice: Visual counterfac- tual explanations for machine learning models,” inProceedings of the 25th international conference on intelligent user interfaces, 2020, pp. 531–535
2020
-
[25]
Evaluation metrics for xai: A review, taxonomy, and practical applications,
M. A. Kadir, A. Mosavi, and D. Sonntag, “Evaluation metrics for xai: A review, taxonomy, and practical applications,” in2023 IEEE 27th International Conference on Intelligent Engineering Systems (INES), 2023, pp. 000 111–000 124
2023
-
[26]
Gradient-based attribution methods,
M. Ancona, E. Ceolini, C. Öztireli, and M. Gross, “Gradient-based attribution methods,”Explainable AI: Interpreting, explaining and vi- sualizing deep learning, pp. 169–191, 2019
2019
-
[27]
Minimal model explanations,
R. W. Batterman and C. C. Rice, “Minimal model explanations,” Philosophy of Science, vol. 81, no. 3, pp. 349–376, 2014
2014
-
[28]
Inference to the best explanation,
P. Lipton, “Inference to the best explanation,”A Companion to the Philosophy of Science, pp. 184–193, 2017
2017
-
[29]
Can i trust the explainer? verifying post-hoc explanatory methods,
O.-M. Camburu, E. Giunchiglia, J. Foerster, T. Lukasiewicz, and P. Blunsom, “Can i trust the explainer? verifying post-hoc explanatory methods,”arXiv preprint arXiv:1910.02065, 2019
1910 arXiv
-
[30]
Agree: a feature attribution aggregation framework to address explainer dis- agreements with alignment metrics,
C. Pirie, N. Wiratunga, A. Wijekoon, and C. F. Moreno-Garcia, “Agree: a feature attribution aggregation framework to address explainer dis- agreements with alignment metrics,” inCEUR Workshop Proceedings, vol. 3438, 2023
2023
-
[31]
Accelerating the global aggre- gation of local explanations,
A. Mor, Y . Belinkov, and B. Kimelfeld, “Accelerating the global aggre- gation of local explanations,”Proceedings of the AAAI Conference on Artificial Intelligence, vol. 38, pp. 18 807–18 814, 03 2024
2024
-
[32]
Provably better explanations with optimized aggregation of feature attributions,
T. Decker, A. R. Bhattarai, J. Gu, V . Tresp, and F. Buettner, “Provably better explanations with optimized aggregation of feature attributions,” 2024
2024
-
[33]
T-explainer: A model-agnostic explainability framework based on gra- dients,
E. S. Ortigossa, F. F. Dias, B. Barr, C. T. Silva, and L. G. Nonato, “T-explainer: A model-agnostic explainability framework based on gra- dients,”arXiv preprint arXiv:2404.16495, 2024
2024 arXiv
-
[34]
Making deep learning-based predictions for credit scoring explainable,
X. Dastile and T. Celik, “Making deep learning-based predictions for credit scoring explainable,”IEEE Access, vol. 9, pp. 50 426–50 440, 2021
2021
-
[35]
A comparative analysis of lime and shap interpreters with explainable ml- based diabetes predictions,
S. Ahmed, M. Shamim Kaiser, M. S. Hossain, and K. Andersson, “A comparative analysis of lime and shap interpreters with explainable ml- based diabetes predictions,”IEEE Access, pp. 1–1, 2024
2024
-
[36]
Why should i trust you? explaining the predictions of any classifier,
M. T. Ribeiro, S. Singh, and C. Guestrin, “Why should i trust you? explaining the predictions of any classifier,” inProceedings of the 22nd ACM SIGKDD international conference on knowledge discovery and data mining, 2016, pp. 1135–1144
2016
-
[37]
A unified approach to interpreting model predictions,
S. M. Lundberg and S.-I. Lee, “A unified approach to interpreting model predictions,”Advances in neural information processing systems, vol. 30, 2017
2017
-
[38]
Anchors: High-precision model-agnostic explanations,
M. T. Ribeiro, S. Singh, and C. Guestrin, “Anchors: High-precision model-agnostic explanations,” inProceedings of the AAAI conference on artificial intelligence, vol. 32, no. 1, 2018
2018
-
[39]
The new method of multi-criteria complex pro-portional assessment of projects.),
E. K. Zavadskas, A. Kaklauskas, and V . Sarka, “The new method of multi-criteria complex pro-portional assessment of projects.),”Tech- nological and Economic Development of Economy, vol. 3, no. 6, p. 131–139, 1994
1994
-
[40]
The promethee methods for mcdm; the promcalc, gaia and bankadviser software,
J. P. Brans and B. Mareschal, “The promethee methods for mcdm; the promcalc, gaia and bankadviser software,” inReadings in Multiple Criteria Decision Aid, C. A. Bana e Costa, Ed. Berlin, Heidelberg: Springer Berlin Heidelberg, 1990, pp. 216–252
1990
-
[41]
Note—a preference ranking organisation method (the promethee method for multiple criteria decision-making),
J. P. Brans and P. Vincke, “Note—a preference ranking organisation method (the promethee method for multiple criteria decision-making),” Management Science, vol. 31, no. 6, pp. 647–456, 1985
1985
-
[42]
A new additive ratio assessment (aras) method in multicriteria decision-making,
Z. Turskis and E. K. Zavadskas, “A new additive ratio assessment (aras) method in multicriteria decision-making,”Technological and economic development of economy, vol. 16, no. 2, pp. 159–172, 2010
2010
-
[43]
A combined compromise solution (cocoso) method for multi-criteria decision-making problems,
M. Yazdani, P. Zarate, E. Kazimieras Zavadskas, and Z. Turskis, “A combined compromise solution (cocoso) method for multi-criteria decision-making problems,”Management Decision, vol. 57, no. 9, pp. 2501–2519, 2019
2019
-
[44]
A new combinative distance-based assessment (codas) method for multi-criteria decision-making,
M. K. Ghorabaee, E. K. Zavadskas, Z. Turskis, and J. Antucheviciene, “A new combinative distance-based assessment (codas) method for multi-criteria decision-making,”Economic Computation and Economic Cybernetics Studies and Research, vol. 50, no. 3, pp. 25–44, 2016
2016
-
[45]
The selection of transport and handling re- sources in logistics centers using multi-attributive border approximation area comparison (mabac),
D. Pamu ˇcar and G. ´Cirovi´c, “The selection of transport and handling re- sources in logistics centers using multi-attributive border approximation area comparison (mabac),”Expert Systems with Applications, vol. 42, no. 6, pp. 3016–3028, 2015
2015
-
[46]
A com- prehensive study on fidelity metrics for xai,
M. Miró-Nicolau, A. Jaume-i Capó, and G. Moyà-Alcover, “A com- prehensive study on fidelity metrics for xai,”Information Processing & Management, vol. 62, no. 1, p. 103900, 2025
2025
-
[47]
Breast cancer wisconsin (diagnostic),
W. Wolberg, O. Mangasarian, N. Street, and W. Street, “Breast cancer wisconsin (diagnostic),” UCI Machine Learning Repository, 1993, DOI: https://doi.org/10.24432/C5DW2B
1993 doi
-
[48]
Student depression project,
A. J. Jaffer, “Student depression project,” https://www.kaggle.com/code/ afifjamirjaffer/student-depression-project, accessed: 2025-01-14
2025
-
[49]
Statlog (German Credit Data),
H. Hofmann, “Statlog (German Credit Data),” UCI Machine Learning Repository, 1994, DOI: https://doi.org/10.24432/C5NC77
1994 doi
-
[50]
default of credit card clients,
I.-C. Yeh, “default of credit card clients,” UCI Machine Learning Repository, 2016, DOI: https://doi.org/10.24432/C55S3H
2016 doi
-
[51]
Pakdd 2010 data mining com- petition: Re-calibration of a credit risk assessment system based on biased data,
PAKDD 2010 Organizing Committee, “Pakdd 2010 data mining com- petition: Re-calibration of a credit risk assessment system based on biased data,” 2010, available at https://pakdd.org/archive/pakdd2010/ PAKDDCompetition.html
2010
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.