Error tolerance (PAC learning)

From The Right Wiki
Jump to navigationJump to search

In PAC learning, error tolerance refers to the ability of an algorithm to learn when the examples received have been corrupted in some way. In fact, this is a very common and important issue since in many applications it is not possible to access noise-free data. Noise can interfere with the learning process at different levels: the algorithm may receive data that have been occasionally mislabeled, or the inputs may have some false information, or the classification of the examples may have been maliciously adulterated.

Notation and the Valiant learning model

In the following, let X be our n-dimensional input space. Let be a class of functions that we wish to use in order to learn a {0,1}-valued target function f defined over X. Let 𝒟 be the distribution of the inputs over X. The goal of a learning algorithm 𝒜 is to choose the best function h such that it minimizes error(h)=Px𝒟(h(x)f(x)). Let us suppose we have a function size(f) that can measure the complexity of f. Let Oracle(x) be an oracle that, whenever called, returns an example x and its correct label f(x). When no noise corrupts the data, we can define learning in the Valiant setting:[1][2] Definition: We say that f is efficiently learnable using in the Valiant setting if there exists a learning algorithm 𝒜 that has access to Oracle(x) and a polynomial p(,,,) such that for any 0<ε1 and 0<δ1 it outputs, in a number of calls to the oracle bounded by p(1ε,1δ,n,size(f)) , a function h that satisfies with probability at least 1δ the condition error(h)ε. In the following we will define learnability of f when data have suffered some modification.[3][4][5]

Classification noise

In the classification noise model[6] a noise rate 0η<12 is introduced. Then, instead of Oracle(x) that returns always the correct label of example x, algorithm 𝒜 can only call a faulty oracle Oracle(x,η) that will flip the label of x with probability η. As in the Valiant case, the goal of a learning algorithm 𝒜 is to choose the best function h such that it minimizes error(h)=Px𝒟(h(x)f(x)). In applications it is difficult to have access to the real value of η, but we assume we have access to its upperbound ηB.[7] Note that if we allow the noise rate to be 1/2, then learning becomes impossible in any amount of computation time, because every label conveys no information about the target function. Definition: We say that f is efficiently learnable using in the classification noise model if there exists a learning algorithm 𝒜 that has access to Oracle(x,η) and a polynomial p(,,,) such that for any 0η12, 0ε1 and 0δ1 it outputs, in a number of calls to the oracle bounded by p(112ηB,1ε,1δ,n,size(f)) , a function h that satisfies with probability at least 1δ the condition error(h)ε.

Statistical query learning

Statistical Query Learning[8] is a kind of active learning problem in which the learning algorithm 𝒜 can decide if to request information about the likelihood Pf(x) that a function f correctly labels example x, and receives an answer accurate within a tolerance α. Formally, whenever the learning algorithm 𝒜 calls the oracle Oracle(x,α), it receives as feedback probability Qf(x), such that Qf(x)αPf(x)Qf(x)+α. Definition: We say that f is efficiently learnable using in the statistical query learning model if there exists a learning algorithm 𝒜 that has access to Oracle(x,α) and polynomials p(,,), q(,,), and r(,,) such that for any 0<ε1 the following hold:

  1. Oracle(x,α) can evaluate Pf(x) in time q(1ε,n,size(f));
  2. 1α is bounded by r(1ε,n,size(f))
  3. 𝒜 outputs a model h such that err(h)<ε, in a number of calls to the oracle bounded by p(1ε,n,size(f)).

Note that the confidence parameter δ does not appear in the definition of learning. This is because the main purpose of δ is to allow the learning algorithm a small probability of failure due to an unrepresentative sample. Since now Oracle(x,α) always guarantees to meet the approximation criterion Qf(x)αPf(x)Qf(x)+α, the failure probability is no longer needed. The statistical query model is strictly weaker than the PAC model: any efficiently SQ-learnable class is efficiently PAC learnable in the presence of classification noise, but there exist efficient PAC-learnable problems such as parity that are not efficiently SQ-learnable.[8]

Malicious classification

In the malicious classification model[9] an adversary generates errors to foil the learning algorithm. This setting describes situations of error burst, which may occur when for a limited time transmission equipment malfunctions repeatedly. Formally, algorithm 𝒜 calls an oracle Oracle(x,β) that returns a correctly labeled example x drawn, as usual, from distribution 𝒟 over the input space with probability 1β, but it returns with probability β an example drawn from a distribution that is not related to 𝒟. Moreover, this maliciously chosen example may strategically selected by an adversary who has knowledge of f, β, 𝒟, or the current progress of the learning algorithm. Definition: Given a bound βB<12 for 0β<12, we say that f is efficiently learnable using in the malicious classification model, if there exist a learning algorithm 𝒜 that has access to Oracle(x,β) and a polynomial p(,,,,) such that for any 0<ε1, 0<δ1 it outputs, in a number of calls to the oracle bounded by p(11/2βB,1ε,1δ,n,size(f)) , a function h that satisfies with probability at least 1δ the condition error(h)ε.

Errors in the inputs: nonuniform random attribute noise

In the nonuniform random attribute noise[10][11] model the algorithm is learning a Boolean function, a malicious oracle Oracle(x,ν) may flip each i-th bit of example x=(x1,x2,,xn) independently with probability νiν. This type of error can irreparably foil the algorithm, in fact the following theorem holds: In the nonuniform random attribute noise setting, an algorithm 𝒜 can output a function h such that error(h)<ε only if ν<2ε.

See also

References

  1. Valiant, L. G. (August 1985). Learning Disjunction of Conjunctions. In IJCAI (pp. 560–566).
  2. Valiant, Leslie G. "A theory of the learnable." Communications of the ACM 27.11 (1984): 1134–1142.
  3. Laird, P. D. (1988). Learning from good and bad data. Kluwer Academic Publishers.
  4. Kearns, Michael. "Efficient noise-tolerant learning from statistical queries Archived 3 May 2013 at the Wayback Machine." Journal of the ACM 45.6 (1998): 983–1006.
  5. Brunk, Clifford A., and Michael J. Pazzani. "An investigation of noise-tolerant relational concept learning algorithms." Proceedings of the 8th International Workshop on Machine Learning. 1991.
  6. Kearns, M. J., & Vazirani, U. V. (1994). An introduction to computational learning theory, chapter 5. MIT press.
  7. Angluin, D., & Laird, P. (1988). Learning from noisy examples. Machine Learning, 2(4), 343–370.
  8. 8.0 8.1 Kearns, M. (1998). [www.cis.upenn.edu/~mkearns/papers/sq-journal.pdf Efficient noise-tolerant learning from statistical queries]. Journal of the ACM, 45(6), 983–1006.
  9. Kearns, M., & Li, M. (1993). [www.cis.upenn.edu/~mkearns/papers/malicious.pdf Learning in the presence of malicious errors]. SIAM Journal on Computing, 22(4), 807–837.
  10. Goldman, S. A., & Sloan, Robert, H. (1991). The difficulty of random attribute noise. Technical Report WUCS 91 29, Washington University, Department of Computer Science.
  11. Sloan, R. H. (1989). Computational learning theory: New models and algorithms (Doctoral dissertation, Massachusetts Institute of Technology).