Goto

Collaborating Authors

 Oceania


Learning from Positive and Unlabeled Data with Augmented Classes

arXiv.org Artificial Intelligence

Positive Unlabeled (PU) learning aims to learn a binary classifier from only positive and unlabeled data, which is utilized in many real-world scenarios. However, existing PU learning algorithms cannot deal with the real-world challenge in an open and changing scenario, where examples from unobserved augmented classes may emerge in the testing phase. In this paper, we propose an unbiased risk estimator for PU learning with Augmented Classes (PUAC) by utilizing unlabeled data from the augmented classes distribution, which can be easily collected in many real-world scenarios. Besides, we derive the estimation error bound for the proposed estimator, which provides a theoretical guarantee for its convergence to the optimal solution. Experiments on multiple realistic datasets demonstrate the effectiveness of proposed approach.


How drones, robots and artificial intelligence are helping emergency services tackle wildfires

Daily Mail - Science & tech

Britain recorded its hottest day on record last Tuesday, sparking a series of wildfires across the UK. Firefighters in London described the blazes tearing through homes and buildings as'absolute hell' after receiving 1,600 calls for assistance. They warned the public that wildfires are likely to break out every three years, and that the destruction of homes should be a'wake-up call' to the country. Global experts are urging countries to reach their net-zero targets and halt climate change. This is widely agreed to be the leading cause of the recent spate of wildfires, as rising temperatures evaporate more moisture from the ground, drying out the soil and making vegetation more flammable if sparked.


Kmart halts use of in-store facial recognition amid Australian privacy investigation

Engadget

Retailers in Australia are the latest companies to back away from facial recognition, albeit under pressure. The Guardian reports Kmart and Bunnings have temporarily halted use of facial recognition in their local stores while the Office of the Australian Information Commissioner (OAIC) investigates the privacy implications of their systems. The two chains were trialing the technology to spot banned customers, prevent refund fraud and reduce theft. The investigation started in mid-July, a month after the consumer advocacy group Choice learned that Kmart and Bunnings were testing facial recognition. Bunnings had already paused use as it migrated to a new system.


Google fires software engineer who says AI chatbot LaMDA has feelings

#artificialintelligence

Google has fired a senior software engineer who says the company's artificial intelligence chatbot system has feelings. Blake Lemoine, a software engineer and AI researcher, went public last month with his claim that Google's language technology was sentient and should consequently have its "wants" respected. Google has denied Mr Lemoine's suggestion. It has now confirmed he had been dismissed. The tech giant said Mr Lemoine's claims about The Language Model for Dialogue Applications (LaMDA) being sentient were "wholly unfounded", and the company had "worked to clarify that with him for many months".


The Future of Artificial Intelligence in Australia โ€“ Monash University

#artificialintelligence

Committee for Melbourne's (the Committee's) members recognise the extraordinary benefits that Artificial Intelligence (AI) is already delivering


MAPIE: an open-source library for distribution-free uncertainty quantification

arXiv.org Artificial Intelligence

Estimating uncertainties associated with the predictions of Machine Learning (ML) models is of crucial importance to assess their robustness and predictive power. In this submission, we introduce MAPIE (Model Agnostic Prediction Interval Estimator), an open-source Python library that quantifies the uncertainties of ML models for single-output regression and multi-class classification tasks. MAPIE implements conformal prediction methods, allowing the user to easily compute uncertainties with strong theoretical guarantees on the marginal coverages and with mild assumptions on the model or on the underlying data distribution. MAPIE is hosted on scikit-learn-contrib and is fully "scikit-learn-compatible". As such, it accepts any type of regressor or classifier coming with a scikit-learn API.


Black-box Few-shot Knowledge Distillation

arXiv.org Artificial Intelligence

Knowledge distillation (KD) is an efficient approach to transfer the knowledge from a large "teacher" network to a smaller "student" network. Traditional KD methods require lots of labeled training samples and a white-box teacher (parameters are accessible) to train a good student. However, these resources are not always available in real-world applications. The distillation process often happens at an external party side where we do not have access to much data, and the teacher does not disclose its parameters due to security and privacy concerns. To overcome these challenges, we propose a black-box few-shot KD method to train the student with few unlabeled training samples and a black-box teacher. Our main idea is to expand the training set by generating a diverse set of out-of-distribution synthetic images using MixUp and a conditional variational auto-encoder. These synthetic images along with their labels obtained from the teacher are used to train the student. We conduct extensive experiments to show that our method significantly outperforms recent SOTA few/zero-shot KD methods on image classification tasks. The code and models are available at: https://github.com/nphdang/FS-BBT


Efficient Classification with Counterfactual Reasoning and Active Learning

arXiv.org Artificial Intelligence

Data augmentation is one of the most successful techniques to improve the classification accuracy of machine learning models in computer vision. However, applying data augmentation to tabular data is a challenging problem since it is hard to generate synthetic samples with labels. In this paper, we propose an efficient classifier with a novel data augmentation technique for tabular data. Our method called CCRAL combines causal reasoning to learn counterfactual samples for the original training samples and active learning to select useful counterfactual samples based on a region of uncertainty. By doing this, our method can maximize our model's generalization on the unseen testing data. We validate our method analytically, and compare with the standard baselines. Our experimental results highlight that CCRAL achieves significantly better performance than those of the baselines across several real-world tabular datasets in terms of accuracy and AUC. Data and source code are available at: https://github.com/nphdang/CCRAL.


Stable Parallel Training of Wasserstein Conditional Generative Adversarial Neural Networks

arXiv.org Artificial Intelligence

We propose a stable, parallel approach to train Wasserstein Conditional Generative Adversarial Neural Networks (W-CGANs) under the constraint of a fixed computational budget. Differently from previous distributed GANs training techniques, our approach avoids inter-process communications, reduces the risk of mode collapse and enhances scalability by using multiple generators, each one of them concurrently trained on a single data label. The use of the Wasserstein metric also reduces the risk of cycling by stabilizing the training of each generator. We illustrate the approach on the CIFAR10, CIFAR100, and ImageNet1k datasets, three standard benchmark image datasets, maintaining the original resolution of the images for each dataset. Performance is assessed in terms of scalability and final accuracy within a limited fixed computational time and computational resources. To measure accuracy, we use the inception score, the Frechet inception distance, and image quality. An improvement in inception score and Frechet inception distance is shown in comparison to previous results obtained by performing the parallel approach on deep convolutional conditional generative adversarial neural networks (DC-CGANs) as well as an improvement of image quality of the new images created by the GANs approach. Weak scaling is attained on both datasets using up to 2,000 NVIDIA V100 GPUs on the OLCF supercomputer Summit.


Balancing Stability and Plasticity through Advanced Null Space in Continual Learning

arXiv.org Artificial Intelligence

Continual learning is a learning paradigm that learns tasks sequentially with resources constraints, in which the key challenge is stability-plasticity dilemma, i.e., it is uneasy to simultaneously have the stability to prevent catastrophic forgetting of old tasks and the plasticity to learn new tasks well. In this paper, we propose a new continual learning approach, Advanced Null Space (AdNS), to balance the stability and plasticity without storing any old data of previous tasks. Specifically, to obtain better stability, AdNS makes use of low-rank approximation to obtain a novel null space and projects the gradient onto the null space to prevent the interference on the past tasks. To control the generation of the null space, we introduce a non-uniform constraint strength to further reduce forgetting. Furthermore, we present a simple but effective method, intra-task distillation, to improve the performance of the current task. Finally, we theoretically find that null space plays a key role in plasticity and stability, respectively. Experimental results show that the proposed method can achieve better performance compared to state-of-the-art continual learning approaches.