Il existe une grande littérature sur les «tests de propriétés» - le problème de faire un petit nombre de requêtes de boîte noire à une fonction pour distinguer deux cas:
is a member of some class of functions
is -far from every function in class .
The range of the function is sometimes Boolean: , but not always.
Here, -far is generally taken to mean Hamming distance: the fraction of points of that would need to be changed in order to place in class . This is a natural metric if has a Boolean range, but seems less natural if the range is say real-valued.
My question: does there exist a strand of the property-testing literature that tests for closeness to some class with respect to other metrics?
It's usually not called property testing (and it really isn't), but there is a large body of work on deciding properties of a matrix by looking at a small induced minor. This is very similar to the goal in property testing. See for instance the paper by Rudelson and Vershynin:
http://portal.acm.org/citation.cfm?id=1255449
There are earlier papers by Frieze-Kannan. The point is that typically the metric they use is some matrix norm such as spectral norm, frobenius norm or cut norm. If you want, you can think of some of these results as property testing algorithms in a metric other than Hamming distance.
la source
The work of Berman, Raskhodnikova, and Yaroslavtsev [1] introduces testing of functionsf:[n]d→R with regard to Lp distances, for p≥1 . It is meant to capture situations where the magnitude of the noise is what matters (rather than the more brittle Hamming distance). (Some results pertaining to Lp distances can also be found in [2]).
See e.g Chapter 12 (Section 12.4) of Goldreich's Introduction to Property Testing for a discussion of testing with regard to edit andLp distances.
(Note thatL1 testing is not the same as distribution testing (typically with regard to L1 /total variation) as (i) the object testing is not the same (functions whether probability distributions), (ii) the type of access is different (query- vs. sample-based, typically), and (iii) the L1 distance as defined in [1] is normalized (by n ) for scaling issues, and is not in distribution testing (as the mass is always 1 by definition).
[1]Lp Testing. Berman, Raskhodnikova, and Yaroslavtsev, STOC'14.
[2] Testingk -Monotonicity. Canonne, Grigorescu, Guo, Kumar, and Wimmer, ITCS'17.
la source