
- title: '4th Workshop on Learning with Imbalanced Domains: Preface'
  volume: 183
  URL: https://proceedings.mlr.press/v183/moniz22a.html
  PDF: https://proceedings.mlr.press/v183/moniz22a/moniz22a.pdf
  edit: https://github.com/mlresearch//v183/edit/gh-pages/_posts/2022-10-08-moniz22a.md
  series: 'Proceedings of Machine Learning Research'
  container-title: 'Proceedings of the Fourth International Workshop on Learning with Imbalanced Domains: Theory and Applications'
  publisher: 'PMLR'
  author: 
  - given: Nuno
    family: Moniz
  - given: Paula
    family: Branco
  - given: Luís
    family: Torgo
  - given: Nathalie
    family: Japkowicz
  - given: Michal
    family: Wozniak
  - given: Shuo
    family: Wang
  editor: 
  - given: Nuno
    family: Moniz
  - given: Paula
    family: Branco
  - given: Luís
    family: Torgo
  - given: Nathalie
    family: Japkowicz
  - given: Michal
    family: Wozniak
  - given: Shuo
    family: Wang
  page: 1-7
  id: moniz22a
  issued:
    date-parts: 
      - 2022
      - 10
      - 8
  firstpage: 1
  lastpage: 7
  published: 2022-10-08 00:00:00 +0000
- title: 'Systematic Evaluation of CASH Search Strategies for Unsupervised Anomaly Detection'
  abstract: 'Anomaly detection is an important data mining task that aims to detect abnormal examples in a dataset. Dozens of unsupervised algorithms have been developed for this task, each of which can be finely controlled via multiple hyperparameters. Therefore, choosing an algorithm that works well for a new dataset has traditionally been a time-consuming trial-and-error process. Moreover, any ground-truth labels to guide this process are hard to come by in real-world anomaly detection problems. On the other hand, if we are able to collect a small, labeled validation set, we could leverage the AutoML paradigm to automate this model search. While the off-the-shelf AutoML search strategies for combined algorithm selection and hyperparameter optimization (CASH) are effective for supervised classification and regression tasks, they require the availability of plenty of ground-truth labels and large validation sets. It is unclear whether CASH will be equally effective for anomaly detection problems where the validation sets are typically small at best and not always representative of the test set at worst. In this paper, we present a discussion and experimental evaluation of how the structure of the validation set, i.e., its size and label bias, impacts the performance of different CASH search strategies within the context of anomaly detection.'
  volume: 183
  URL: https://proceedings.mlr.press/v183/antoniadis22a.html
  PDF: https://proceedings.mlr.press/v183/antoniadis22a/antoniadis22a.pdf
  edit: https://github.com/mlresearch//v183/edit/gh-pages/_posts/2022-10-08-antoniadis22a.md
  series: 'Proceedings of Machine Learning Research'
  container-title: 'Proceedings of the Fourth International Workshop on Learning with Imbalanced Domains: Theory and Applications'
  publisher: 'PMLR'
  author: 
  - given: Ioannis
    family: Antoniadis
  - given: Vincent
    family: Vercruyssen
  - given: Jesse
    family: Davis
  editor: 
  - given: Nuno
    family: Moniz
  - given: Paula
    family: Branco
  - given: Luís
    family: Torgo
  - given: Nathalie
    family: Japkowicz
  - given: Michal
    family: Wozniak
  - given: Shuo
    family: Wang
  page: 8-22
  id: antoniadis22a
  issued:
    date-parts: 
      - 2022
      - 10
      - 8
  firstpage: 8
  lastpage: 22
  published: 2022-10-08 00:00:00 +0000
- title: 'Bagging Propensity Weighting: A Robust method for biased PU Learning'
  abstract: 'Propensity weighting enables learning from positive and unlabeled data (PU learning) in the face of labeling bias. PU learning aims to train a binary classification model when only positive and unlabeled data is available to learn from. This problem setting arises commonly in practice. Often, PU data suffers from a labeling bias, where the labeled examples are a biased sample from the positive examples. The probability for a positive example to get selected to be labeled is called its propensity score. Weighting PU datasets using propensity scores, allows to learn an unbiased model from biased PU data. However, this method has a strong downside of being rather unstable. This paper proposes a robust method for learning from biased PU data based on bagging. We show that the proposed method remains unbiased, while it reduces the variance and hence increases robustness. Our experiments confirms this by showing that our method has lower variance and classification error than plain propensity weighting as well as another method that was proposed for variance reduction.'
  volume: 183
  URL: https://proceedings.mlr.press/v183/block22a.html
  PDF: https://proceedings.mlr.press/v183/block22a/block22a.pdf
  edit: https://github.com/mlresearch//v183/edit/gh-pages/_posts/2022-10-08-block22a.md
  series: 'Proceedings of Machine Learning Research'
  container-title: 'Proceedings of the Fourth International Workshop on Learning with Imbalanced Domains: Theory and Applications'
  publisher: 'PMLR'
  author: 
  - given: Sander De
    family: Block
  - given: Jessa
    family: Bekker
  editor: 
  - given: Nuno
    family: Moniz
  - given: Paula
    family: Branco
  - given: Luís
    family: Torgo
  - given: Nathalie
    family: Japkowicz
  - given: Michal
    family: Wozniak
  - given: Shuo
    family: Wang
  page: 23-37
  id: block22a
  issued:
    date-parts: 
      - 2022
      - 10
      - 8
  firstpage: 23
  lastpage: 37
  published: 2022-10-08 00:00:00 +0000
- title: 'DistSMOGN: Distributed SMOGN for Imbalanced Regression Problems'
  abstract: 'Imbalanced domains pose important challenges to learning systems and multiple resampling solutions have been put forward in the past two decades. More recently, it became clear that the imbalance problem arises in several other tasks including regression. Although several resampling solutions were proposed to tackle the imbalanced regression problem, with the emergence of big data this problem has become more difficult as these solutions become unfeasible due to the large volumes of data. In this paper, we propose the first distributed resampling solution for imbalanced regression that is applicable to large amounts of data. Our algorithm, DistSMOGN, is a resampling solution based on SMOGN that addresses simultaneously the imbalanced regression problem and the challenge of dealing with high volumes of data. We apply Scalable KMeans++ as way to obtain coherent cluster that maintain the spatial relationships between the rare cases. Then, we apply the well-known SMOGN method in each cluster to obtain the new synthetic examples. This method allows to generate high quality synthetic examples while dealing with the large volumes of data. Our solution is based on the MapReduce paradigm and we propose an efficient implementation on Apache Spark. The experimental evaluation carried out shows the advantages of DistSMOGN. All the code implementing DistSMOGN is freely available and can be downloaded at https://github.com/ndao1104/distributed-resampling.'
  volume: 183
  URL: https://proceedings.mlr.press/v183/song22a.html
  PDF: https://proceedings.mlr.press/v183/song22a/song22a.pdf
  edit: https://github.com/mlresearch//v183/edit/gh-pages/_posts/2022-10-08-song22a.md
  series: 'Proceedings of Machine Learning Research'
  container-title: 'Proceedings of the Fourth International Workshop on Learning with Imbalanced Domains: Theory and Applications'
  publisher: 'PMLR'
  author: 
  - given: Xin Yue
    family: Song
  - given: Nam
    family: Dao
  - given: Paula
    family: Branco
  editor: 
  - given: Nuno
    family: Moniz
  - given: Paula
    family: Branco
  - given: Luís
    family: Torgo
  - given: Nathalie
    family: Japkowicz
  - given: Michal
    family: Wozniak
  - given: Shuo
    family: Wang
  page: 38-52
  id: song22a
  issued:
    date-parts: 
      - 2022
      - 10
      - 8
  firstpage: 38
  lastpage: 52
  published: 2022-10-08 00:00:00 +0000
- title: 'The Hidden Cost of Fraud: An Instance-Dependent Cost-Sensitive Approach for Positive and Unlabeled Learning'
  abstract: 'Financial institutions have increasingly suffered pressure to implement better and faster fraud detection systems to minimize the cost of fraud. This issue has attracted attention from the literature over recent years. Despite the practical relevance, few works have considered label uncertainty in fraud detection. The incomplete label information naturally arises because fraudsters strive to go undetected. Most fraud detection systems operate by spending more resources to investigate only few suspicious cases and quickly process the rest as unsuspicious. That is, we only have positive label information of some fraudsters whereas the rest of the positives, together with legitimate non-fraudsters, remain unlabeled. This setting is referred to as learning from positive and unlabeled data, or PU learning. Besides the issue of undetected fraudsters, fraud detection is commonly regarded as a cost-sensitive classification task in which the misclassification cost can substantially vary between examples. Thus, this work introduces a novel technique that integrates PU learning and the instance-dependent cost-sensitive framework: PU-CSBoost. PU-CSBoost can directly minimize financial loss through an instance-dependent cost measure that also incorporates the misclassification cost due to hidden fraudsters. Our empirical analysis compares PU-CSBoost with CSBoost, its non-PU counterpart, and other PU techniques specialized in imbalanced learning. The experimental results emphasize the PU-CSBoost''s potential to diminish financial losses under the PU setting. Moreover, the results suggest a quick drop in cost-sensitive performance by CSBoost when hidden fraudsters are present. Thus, ignoring the issue of hidden fraudsters can lead to an underwhelming performance in cost savings for techniques based on the cost-sensitive framework.'
  volume: 183
  URL: https://proceedings.mlr.press/v183/vasquez22a.html
  PDF: https://proceedings.mlr.press/v183/vasquez22a/vasquez22a.pdf
  edit: https://github.com/mlresearch//v183/edit/gh-pages/_posts/2022-10-08-vasquez22a.md
  series: 'Proceedings of Machine Learning Research'
  container-title: 'Proceedings of the Fourth International Workshop on Learning with Imbalanced Domains: Theory and Applications'
  publisher: 'PMLR'
  author: 
  - given: Carlos Ortega
    family: Vasquez
  - given: Jochen De
    family: Weerdt
  - given: Seppe
    prefix: vanden
    family: Broucke
  editor: 
  - given: Nuno
    family: Moniz
  - given: Paula
    family: Branco
  - given: Luís
    family: Torgo
  - given: Nathalie
    family: Japkowicz
  - given: Michal
    family: Wozniak
  - given: Shuo
    family: Wang
  page: 53-67
  id: vasquez22a
  issued:
    date-parts: 
      - 2022
      - 10
      - 8
  firstpage: 53
  lastpage: 67
  published: 2022-10-08 00:00:00 +0000
- title: 'Improving Imbalanced Learning by Pre-finetuning with Data Augmentation'
  abstract: 'Imbalanced data is ubiquitous in the real world, where there is an uneven distribution of classes in the datasets. Such class imbalance poses a major challenge for modern deep learning, even with the typical class-balanced approaches such as re-sampling and re-weighting. In this work, we introduced a simple training strategy, namely pre-finetuning, as a new intermediate training stage in between the pretrained model and finetuning. We leveraged the idea of data augmentation to learn an initial representation that better fits the imbalanced distribution of the domain task during the pre-finetuning stage. We tested our method on manually contrived imbalanced datasets (both two-class and multi-class) and the FDA drug labeling dataset for ADME (i.e., absorption, distribution, metabolism, and excretion) classification. We found that, compared with standard single-stage training (i.e., vanilla finetuning), our method consistently attains improved model performance by large margins. Our work demonstrated that pre-finetuning is a simple, yet effective, learning strategy for imbalanced data.'
  volume: 183
  URL: https://proceedings.mlr.press/v183/shi22a.html
  PDF: https://proceedings.mlr.press/v183/shi22a/shi22a.pdf
  edit: https://github.com/mlresearch//v183/edit/gh-pages/_posts/2022-10-08-shi22a.md
  series: 'Proceedings of Machine Learning Research'
  container-title: 'Proceedings of the Fourth International Workshop on Learning with Imbalanced Domains: Theory and Applications'
  publisher: 'PMLR'
  author: 
  - given: Yiwen
    family: Shi
  - given: Taha
    family: ValizadehAslani
  - given: Jing
    family: Wang
  - given: Ping
    family: Ren
  - given: Yi
    family: Zhang
  - given: Meng
    family: Hu
  - given: Liang
    family: Zhao
  - given: Hualou
    family: Liang
  editor: 
  - given: Nuno
    family: Moniz
  - given: Paula
    family: Branco
  - given: Luís
    family: Torgo
  - given: Nathalie
    family: Japkowicz
  - given: Michal
    family: Wozniak
  - given: Shuo
    family: Wang
  page: 68-82
  id: shi22a
  issued:
    date-parts: 
      - 2022
      - 10
      - 8
  firstpage: 68
  lastpage: 82
  published: 2022-10-08 00:00:00 +0000
- title: 'Performance and model complexity on imbalanced datasets using resampling and cost-sensitive algorithms'
  abstract: 'Imbalanced datasets occur across industries, and many applications with high economical interest deal with them, such as fraud detection and churn prediction. Resampling is commonly used to overcome the tendency of machine learning algorithms to favor the majority class error minimization, while cost-sensitive algorithms are less used. In this paper, cost-sensitive algorithms (BayesMinimumRisk, Thresholding, Cost-Sensitive Decision Tree and Cost-Sensitive Random Forest) and resampling techniques (SMOTE, SMOTETomek and TomekLinks) combined with kNN, Decision Tree, Random Forest and AdaBoost were compared on binary classification problems. The results were analyzed with respect to relative performance over different imbalance ratios. The influence of these techniques for handling the class imbalance on the machine learning models complexities was also investigated. The experiments were performed using synthetic datasets and 90 real-world datasets.'
  volume: 183
  URL: https://proceedings.mlr.press/v183/silva-freitas-junior22a.html
  PDF: https://proceedings.mlr.press/v183/silva-freitas-junior22a/silva-freitas-junior22a.pdf
  edit: https://github.com/mlresearch//v183/edit/gh-pages/_posts/2022-10-08-silva-freitas-junior22a.md
  series: 'Proceedings of Machine Learning Research'
  container-title: 'Proceedings of the Fourth International Workshop on Learning with Imbalanced Domains: Theory and Applications'
  publisher: 'PMLR'
  author: 
  - given: Jairo
    prefix: da
    family: Silva Freitas Junior
  - given: Paulo Henrique
    family: Pisani
  editor: 
  - given: Nuno
    family: Moniz
  - given: Paula
    family: Branco
  - given: Luís
    family: Torgo
  - given: Nathalie
    family: Japkowicz
  - given: Michal
    family: Wozniak
  - given: Shuo
    family: Wang
  page: 83-97
  id: silva-freitas-junior22a
  issued:
    date-parts: 
      - 2022
      - 10
      - 8
  firstpage: 83
  lastpage: 97
  published: 2022-10-08 00:00:00 +0000
- title: 'Adversarial oversampling for multi-class imbalanced data classification with convolutional neural networks'
  abstract: 'Although many methods have been proposed for dealing with class imbalance, the problem of multi-class imbalanced classification still received significantly smaller attention. This problem is particularly important in image imbalanced classification since it has many critical applications, e.g., in the medical domain. One group of effective methods for imbalanced data are oversampling algorithms; however, they are usually not designed to work with image data. The current methods also work in separation from the learning algorithm, not considering the difficulties encountered during the training.  In this work, we propose a new oversampling algorithm for neural networks that changes oversampled instances during training to further expand the decision region of minority classes, providing better recognition of minority classes. Experiments performed on various datasets with several configurations of class-imbalanced distributions demonstrate that the proposed method provides significant F-measure and G-mean improvements on imbalanced classification tasks.'
  volume: 183
  URL: https://proceedings.mlr.press/v183/wojciechowski22a.html
  PDF: https://proceedings.mlr.press/v183/wojciechowski22a/wojciechowski22a.pdf
  edit: https://github.com/mlresearch//v183/edit/gh-pages/_posts/2022-10-08-wojciechowski22a.md
  series: 'Proceedings of Machine Learning Research'
  container-title: 'Proceedings of the Fourth International Workshop on Learning with Imbalanced Domains: Theory and Applications'
  publisher: 'PMLR'
  author: 
  - given: Adam
    family: Wojciechowski
  - given: Mateusz
    family: Lango
  editor: 
  - given: Nuno
    family: Moniz
  - given: Paula
    family: Branco
  - given: Luís
    family: Torgo
  - given: Nathalie
    family: Japkowicz
  - given: Michal
    family: Wozniak
  - given: Shuo
    family: Wang
  page: 98-111
  id: wojciechowski22a
  issued:
    date-parts: 
      - 2022
      - 10
      - 8
  firstpage: 98
  lastpage: 111
  published: 2022-10-08 00:00:00 +0000
- title: 'Assessing the Robustness of Ordinal Classifiers against Imbalanced and Shifting Distributions'
  abstract: 'Ordinal classification aims to categorize instances into ordered classes. An underrated or overrated prediction can have significant impacts in applications such as credit rating. Ordinal approaches based on Machine Learning (ML) algorithms can be employed to capture nonlinear patterns. However, under conditions such as lack of training data, their generalization power can be adversely impacted. In this paper, we propose to experimentally assess the robustness of various ordinal classifiers, with a focus on risk rating tasks. We suggest two types of scenarios to evaluate robustness in Machine Learning: lack of training data and data distribution shift. We also propose the ordinal classifier chains, an extension of the multi-label classifier chains to ordinal tasks. It uses a lightweight bit layout to encode the labels and employs the chain of classifiers to form a connected structure. Using various evaluation metrics, we compare a selection of ML models under different robustness tests. The models are evaluated on a specific risk rating dataset with significant class imbalance. This benchmark offers a picture of which ML models might be more robust in various data contexts.'
  volume: 183
  URL: https://proceedings.mlr.press/v183/bonnier22a.html
  PDF: https://proceedings.mlr.press/v183/bonnier22a/bonnier22a.pdf
  edit: https://github.com/mlresearch//v183/edit/gh-pages/_posts/2022-10-08-bonnier22a.md
  series: 'Proceedings of Machine Learning Research'
  container-title: 'Proceedings of the Fourth International Workshop on Learning with Imbalanced Domains: Theory and Applications'
  publisher: 'PMLR'
  author: 
  - given: Thomas
    family: Bonnier
  - given: Benjamin
    family: Bosch
  editor: 
  - given: Nuno
    family: Moniz
  - given: Paula
    family: Branco
  - given: Luís
    family: Torgo
  - given: Nathalie
    family: Japkowicz
  - given: Michal
    family: Wozniak
  - given: Shuo
    family: Wang
  page: 112-126
  id: bonnier22a
  issued:
    date-parts: 
      - 2022
      - 10
      - 8
  firstpage: 112
  lastpage: 126
  published: 2022-10-08 00:00:00 +0000
- title: 'Deep Contextual Novelty Detection with Context Prediction'
  abstract: 'Contextual novelty detection models detect novelties with respect to a given context. This is crucial in streaming scenarios where the definition of both normal and novel evolve over time. Such models however require contextual labels not only for training but also for detection during deployment. This creates an often unreasonable burden for additional contextual labels during the deployment of these models. In order to eliminate the need for these labels, we propose to predict this contextual information using an auxiliary prediction strategy which takes advantage of the rarity of novel examples, allowing these labels to instead be inferred.  The inferred labels are then used as a conditioning criterion for deep autoencoders. We evaluate our approach on a large, public industrial machine sound dataset and show that our approach can successfully recognise context and use this to effectively condition novelty detection models, allowing them to outperform their unconditioned counterparts.'
  volume: 183
  URL: https://proceedings.mlr.press/v183/rushe22a.html
  PDF: https://proceedings.mlr.press/v183/rushe22a/rushe22a.pdf
  edit: https://github.com/mlresearch//v183/edit/gh-pages/_posts/2022-10-08-rushe22a.md
  series: 'Proceedings of Machine Learning Research'
  container-title: 'Proceedings of the Fourth International Workshop on Learning with Imbalanced Domains: Theory and Applications'
  publisher: 'PMLR'
  author: 
  - given: Ellen
    family: Rushe
  - given: Brian Mac
    family: Namee
  editor: 
  - given: Nuno
    family: Moniz
  - given: Paula
    family: Branco
  - given: Luís
    family: Torgo
  - given: Nathalie
    family: Japkowicz
  - given: Michal
    family: Wozniak
  - given: Shuo
    family: Wang
  page: 127-138
  id: rushe22a
  issued:
    date-parts: 
      - 2022
      - 10
      - 8
  firstpage: 127
  lastpage: 138
  published: 2022-10-08 00:00:00 +0000
- title: 'Integrating and reporting full multi-view supervised learning experiments using SuMMIT'
  abstract: 'SuMMIT (Supervised Multi Modal Integration Tool) is a software offering many functionalities for running, tuning, and analyzing experiments of supervised classification tasks specifically designed for multi-view data sets. SuMMIT is part of a platform that aggregates multiple tools to deal with multiview datasets such as scikit-multimodallearn (Benielli et al., 2021) or MAGE (Bauvin et al., 2021). This paper presents use cases of SuMMIT, including hyper-parameters optimization, demonstrating the usefulness of such a platform for dealing with the complexity of multi-view benchmarking on an imbalanced dataset. SuMMIT is powered by Python3 and based on scikit-learn, making it easy to use and extend by plugging one''s own specific algorithms, score functions or adding new features. By using continuous integration, we encourage collaborative development.'
  volume: 183
  URL: https://proceedings.mlr.press/v183/bauvin22a.html
  PDF: https://proceedings.mlr.press/v183/bauvin22a/bauvin22a.pdf
  edit: https://github.com/mlresearch//v183/edit/gh-pages/_posts/2022-10-08-bauvin22a.md
  series: 'Proceedings of Machine Learning Research'
  container-title: 'Proceedings of the Fourth International Workshop on Learning with Imbalanced Domains: Theory and Applications'
  publisher: 'PMLR'
  author: 
  - given: Baptiste
    family: Bauvin
  - given: Jacques
    family: Corbeil
  - given: Dominique
    family: Benielli
  - given: Sokol
    family: Koço
  - given: Cecile
    family: Capponi
  editor: 
  - given: Nuno
    family: Moniz
  - given: Paula
    family: Branco
  - given: Luís
    family: Torgo
  - given: Nathalie
    family: Japkowicz
  - given: Michal
    family: Wozniak
  - given: Shuo
    family: Wang
  page: 139-150
  id: bauvin22a
  issued:
    date-parts: 
      - 2022
      - 10
      - 8
  firstpage: 139
  lastpage: 150
  published: 2022-10-08 00:00:00 +0000
- title: 'Probabilistic Metric to measure the imbalance in multi-class problems'
  abstract: 'In machine learning, imbalanced data has been one of the most relevant issue that the classifiers have to deal with. The most  common techniques applied in this scenario are all, somehow, based on oversampling or under sampling concepts, In the former, the number of instances of minority classes are, somehow, increased while in the latter, the number of instances in the majority classes are somehow reduced. By increasing Pre-processing, approaches as the ones described have been well succeeded in binary classification problems.However, as the larger the number of classes, less effective the pre-processing approaches are. Another related problem is that the metrics that evaluate the predictive performance of the classifiers can be not effective in the presence of imbalanced data. The metrics used to measure the predictive performance of classifiers, can be divided into three groups: threshold, ranking and Probabilistic metrics. This paper aimed to purpose a probabilistic metric with the main objective of, given the results of a classifier in a multi-class domain,  verify the relation between these result and the imbalance problem. The main purpose of this work, is to build a probabilistic metric based on non-parametric approaches, to measure the effect of imbalance feature of dataset in multi-class problems. As part of the work, a comparison with the existing metrics will be implemented and analyzed, both to understand the relation between them and to choose the best of them according to each scenario'
  volume: 183
  URL: https://proceedings.mlr.press/v183/agostinho22a.html
  PDF: https://proceedings.mlr.press/v183/agostinho22a/agostinho22a.pdf
  edit: https://github.com/mlresearch//v183/edit/gh-pages/_posts/2022-10-08-agostinho22a.md
  series: 'Proceedings of Machine Learning Research'
  container-title: 'Proceedings of the Fourth International Workshop on Learning with Imbalanced Domains: Theory and Applications'
  publisher: 'PMLR'
  author: 
  - given: Solander Patricio Lopes
    family: Agostinho
  - given: João
    family: Mendes-Moreira
  editor: 
  - given: Nuno
    family: Moniz
  - given: Paula
    family: Branco
  - given: Luís
    family: Torgo
  - given: Nathalie
    family: Japkowicz
  - given: Michal
    family: Wozniak
  - given: Shuo
    family: Wang
  page: 151-162
  id: agostinho22a
  issued:
    date-parts: 
      - 2022
      - 10
      - 8
  firstpage: 151
  lastpage: 162
  published: 2022-10-08 00:00:00 +0000
- title: 'CNN and diffusion MRI’s 4th degree rotational invariants for Alzheimer’s disease identification'
  abstract: 'Recently, a general analytical formula to extract all the Rotation Invariant Features (RIFs) of the diffusion Magnetic Resonance Imaging (dMRI) signal was proposed. The features extracted using this formula represent a generalisation of the usual second degree RIFs such as the mean diffusivity. In this work, we study the usefulness of all the 12 algebraically independent RIFs extracted from 4th degree spherical harmonics that model the dMRI signal per voxel in the context of Alzheimer Disease (AD) identification. To do so, and since we are working with imbalanced data sets, we first introduce a non-linear metric to evaluate the performance of the models, the (B-score). This proposed metric allows high score only when both classes are distinguished correctly. We use the proposed metric in conjunction with a deep Convolutional Neural Network that operates on subject slices to identify if a subject has AD or not. We find that micro-structure information communicated by RIFs is indeed useful to AD identification and that not all RIFs are equivalently useful. We also identify the two best RIF combinations for the ADNI - SIEMENS and the ADNI - GE medical data sets respectively. The combination of these RIFs achieves a classification B-score of 73.62% and 72.31% on the previous data sets respectively. We note the importance of combining high degree RIFs with low degree ones to improve the classification performance.'
  volume: 183
  URL: https://proceedings.mlr.press/v183/bouayed22a.html
  PDF: https://proceedings.mlr.press/v183/bouayed22a/bouayed22a.pdf
  edit: https://github.com/mlresearch//v183/edit/gh-pages/_posts/2022-10-08-bouayed22a.md
  series: 'Proceedings of Machine Learning Research'
  container-title: 'Proceedings of the Fourth International Workshop on Learning with Imbalanced Domains: Theory and Applications'
  publisher: 'PMLR'
  author: 
  - given: Aymene Mohammed
    family: Bouayed
  - given: Samuel
    family: Deslauriers-Gauthier
  - given: Mauro
    family: Zucchelli
  - given: Rachid
    family: Deriche
  editor: 
  - given: Nuno
    family: Moniz
  - given: Paula
    family: Branco
  - given: Luís
    family: Torgo
  - given: Nathalie
    family: Japkowicz
  - given: Michal
    family: Wozniak
  - given: Shuo
    family: Wang
  page: 163-174
  id: bouayed22a
  issued:
    date-parts: 
      - 2022
      - 10
      - 8
  firstpage: 163
  lastpage: 174
  published: 2022-10-08 00:00:00 +0000
- title: 'Data complexity and classification accuracy correlation in oversampling algorithms'
  abstract: 'Purpose: This work proposes the hypothesis that data oversampling may lead to dataset simplification according to selected data difficulty metrics and that such simplification positively affects the quality of selected classifier learning methods. Methods: A set of computer experiments was performed for 47 benchmark datasets to make the hypothesis plausible. The experiments considered five oversampling methods, five classifiers, and 22 metrics for data difficulty assessment. The experiments aim to establish: (a) whether there is a relationship between resampling and change in the difficulty of the training data and (b) whether there is a relationship between changes in the values of training set difficulty metrics and classification quality. Results: Based on the obtained results, the research hypothesis was confirmed. It was indicated which measures correlate with selected classifiers. The experiments showed the relationship between the change of assessed difficulty measures after oversampling and the classification quality of selected models. Conclusion: The obtained results allow using the selected measures to predict whether a given oversampling method leads to favorable modifications of the learning set for a given type of classifier. Showed relationship between difficulty measures and classification will allow using the mentioned measures as a learning criterion. For example, guided oversampling can treat the modification of the learning set as an optimization task. During the oversampling process, no estimation of classification quality metrics will be required, but only an evaluation of the training set difficulty. This may contribute to the proposition of computationally efficient methods.'
  volume: 183
  URL: https://proceedings.mlr.press/v183/komorniczak22a.html
  PDF: https://proceedings.mlr.press/v183/komorniczak22a/komorniczak22a.pdf
  edit: https://github.com/mlresearch//v183/edit/gh-pages/_posts/2022-10-08-komorniczak22a.md
  series: 'Proceedings of Machine Learning Research'
  container-title: 'Proceedings of the Fourth International Workshop on Learning with Imbalanced Domains: Theory and Applications'
  publisher: 'PMLR'
  author: 
  - given: Joanna
    family: Komorniczak
  - given: Paweł
    family: Ksieniewicz
  - given: Michał
    family: Woźniak
  editor: 
  - given: Nuno
    family: Moniz
  - given: Paula
    family: Branco
  - given: Luís
    family: Torgo
  - given: Nathalie
    family: Japkowicz
  - given: Michal
    family: Wozniak
  - given: Shuo
    family: Wang
  page: 175-186
  id: komorniczak22a
  issued:
    date-parts: 
      - 2022
      - 10
      - 8
  firstpage: 175
  lastpage: 186
  published: 2022-10-08 00:00:00 +0000
- title: 'The Influence of Multiple Classes on Learning from Imbalanced Data Streams'
  abstract: 'This work is aimed at examining the influence of  local data characteristics and drifts on the difficulties of learning online classifiers from multi-class imbalanced data streams. The results of many experiments with synthetically generated data streams have shown a much greater role of the overlapping between many minority classes (the type of borderline examples)  than for streams with one minority class. The presence of rare examples in the stream is the most difficult single factor. Unlike binary streams, the specialized UOB and OOB classifiers perform well enough for even high imbalance ratios. The most challenging for all classifiers are complex scenarios integrating many drifts and factors  simultaneously, which worsen the evaluation measures stronger than for binary ones.'
  volume: 183
  URL: https://proceedings.mlr.press/v183/lipska22a.html
  PDF: https://proceedings.mlr.press/v183/lipska22a/lipska22a.pdf
  edit: https://github.com/mlresearch//v183/edit/gh-pages/_posts/2022-10-08-lipska22a.md
  series: 'Proceedings of Machine Learning Research'
  container-title: 'Proceedings of the Fourth International Workshop on Learning with Imbalanced Domains: Theory and Applications'
  publisher: 'PMLR'
  author: 
  - given: Agnieszka
    family: Lipska
  - given: Jerzy
    family: Stefanowski
  editor: 
  - given: Nuno
    family: Moniz
  - given: Paula
    family: Branco
  - given: Luís
    family: Torgo
  - given: Nathalie
    family: Japkowicz
  - given: Michal
    family: Wozniak
  - given: Shuo
    family: Wang
  page: 187-198
  id: lipska22a
  issued:
    date-parts: 
      - 2022
      - 10
      - 8
  firstpage: 187
  lastpage: 198
  published: 2022-10-08 00:00:00 +0000
