paper-with-me

Papers

ALiPy: Active Learning in Python

2019-01-12 · Ying-Peng Tang, Guo-Xiang Li, Sheng-Jun Huang

Supervised machine learning methods usually require a large set of labeled examples for model training. However, in many real applications, there are plentiful unlabeled data but limited labeled data; and the acquisition of labels is costly. Active learning (AL) reduces the labeling cost by iteratively selecting the most valuable data to query their labels from the annotator. This article introduces a Python toobox ALiPy for active learning. ALiPy provides a module based implementation of active learning framework, which allows users to conveniently evaluate, compare and analyze the performance of active learning methods. In the toolbox, multiple options are available for each component of the learning framework, including data process, active selection, label query, results visualization, etc. In addition to the implementations of more than 20 state-of-the-art active learning algorithms, ALiPy also supports users to easily configure and implement their own approaches under different active learning settings, such as AL for multi-label data, AL with noisy annotators, AL with different costs and so on. The toolbox is well-documented and open-source on Github, and can be easily installed through PyPI.

📄 PDF Abstract BibTeX arXiv:1901.03802

Code (3)

NUAA-AL/ALiPy 공식 구현 tf
ariapoy/alipy tf
micka-charpak/ProjetAnalyse

Tasks

Active Learning

Similar Papers 제목 키워드 기반

libact: Pool-based Active Learning in Python

2017-10-01 · Yao-Yuan Yang, Shao-Chuan Lee, Yu-An Chung, Tung-En Wu 외

libact is a Python package designed to make active learning easier for general users. The package not only implements several popular active learning strategies, but also features the active-learning-by-learning meta-alg…

Active Learning

DeepAL: Deep Active Learning in Python

2021-11-30 · Kuan-Hao Huang

We present DeepAL, a Python library that implements several common strategies for active learning, with a particular emphasis on deep active learning. DeepAL provides a simple and unified framework based on PyTorch that …

Active Learning

pymdp: A Python library for active inference in discrete state spaces

2022-01-11 · Conor Heins, Beren Millidge, Daphne Demekas, Brennan Klein 외

Active inference is an account of cognition and behavior in complex systems which brings together action, perception, and learning under the theoretical mantle of Bayesian inference. Active inference has seen growing app…

Bayesian Inference

modAL: A modular active learning framework for Python

2018-05-02 · Tivadar Danka, Peter Horvath

modAL is a modular active learning framework for Python, aimed to make active learning research and practice simpler. Its distinguishing features are (i) clear and modular object oriented design (ii) full compatibility w…

Active Learning

Past as a Guide: Leveraging Retrospective Learning for Python Code Completion

2023-11-13 · Seunggyoon Shin, Seunggyu Chang, Sungjoon Choi

This work presents Past as a Guide (PaG), a simple approach for Large Language Models (LLMs) to improve the coding capabilities by integrating the past history with interactive and iterative code refinements. To be speci…

Code CompletionHumanEval