Learning Neural Networks with Two Nonlinear Layers in Polynomial Time
Surbhi Goel, Adam Klivans
Introduction
Giving provably efficient algorithms for learning neural networks is a fundamental challenge in the theory of machine learning. Most work in computational learning theory has led to negative results showing that– from a worst-case perspective– even learning the simplest architectures seems computationally intractable [LSSS14, SVWX17]. For example, there are known hardness results for agnostically learning a single ReLU (learning a ReLU in the non-realizable setting) [GKKT16].
As such, much work has focused on finding algorithms that succeed after making various restrictive assumptions on both the network’s architecture and the underlying marginal distribution. Recent work gives evidence that for gradient-based algorithms these types of assumptions are actually necessary [Sha16]. In this paper, we focus on understanding the frontier of efficient neural network learning: what is the most expressive class of neural networks that can be learned, provably, in polynomial-time without taking any additional assumptions?
We give a simple, iterative algorithm that efficiently learns neural networks with one layer of sigmoids feeding into any smooth, monotone activation function (for example, Sigmoid or ReLU). Both the first hidden layer of sigmoids and the output activation function have corresponding hidden weight vectors. The algorithm succeeds with respect to any distribution on the unit ball in dimensions. The network can have an arbitrary feedforward structure, and we assume nothing about these weight vectors other than that they each have -norm at most one in the first layer (the weight vector in the second layer may have polynomially large norm). These networks, even over the unit ball, have polynomially large VC dimension (if the first layer has hidden units, the VC dimension will be [LBW94]).
This is the first provably efficient, assumption-free result for learning neural networks with more than one nonlinear layer; prior work due to Goel et al. [GKKT16] can learn a sum of one hidden layer of sigmoids. While our result “only” handles one additional nonlinear output layer, we stress that 1) the recent (large) literature for learning even one nonlinear layer often requires many assumptions (e.g., Gaussian marginals) and 2) this additional layer allows us to give broad generalizations of many well-known results in computational learning theory.
Our algorithm, which we call Alphatron, combines the expressive power of kernel methods with an additive update rule inspired by work from isotonic regression. Alphatron also outputs a hypothesis that gives efficient oracle access to interpretable features. That is, if the output activation function is , Alphatron constructs a hypothesis of the form where is an implicit encoding of products of features from the instance space, and yields an efficient algorithm for random access to the coefficients of these products.
More specifically, we obtain the following new supervised learning results:
With an appropriate choice of kernel function, we show that Alphatron can learn more general, real-valued versions of well-studied Boolean concept classes in the probabilistic concept model due to Kearns and Schapire. We subsume and improve known algorithms for uniform distribution learning of DNF formulas (queries), majorities of halfspaces, majorities of circuits, and submodular functions, among others. We achieve the first non-i.i.d. noise-tolerant algorithmsPreviously these classes were known to be learnable in the presence of classification noise, where each is label is flipped independently with some fixed probability. for learning these classesNon-iid/agnostic noise tolerance was known for majorities of halfspaces only for , where is the number of halfspace [KKMS08].. Our technical contributions include
Extending the KM algorithm for finding large Fourier coefficients [KM93] to the setting of probabilistic concepts. For the uniform distribution on the hypercube, we can combine the KM algorithm’s sparse approximations with a projection operator to learn smooth, monotone combinations of -bounded functions (it is easy to see that DNF formulas fall into this class). This improves the approach of Gopalan, Kalai, and Klivans [GKK08] for agnostically learning decision trees.
Generalizing the “low-degree” algorithm due to Linial, Mansour, and Nisan [LMN93] to show that for any circuit class that can be approximated by low-degree Fourier polynomials, we can learn monotone combinations of these circuits “for free” in the probabilistic concept model.
Using low-weight (as opposed to just low-degree) polynomial approximators for intersections of halfspaces with a (constant) margin to obtain the first polynomial-time algorithms for learning smooth, monotone combinations (intersection is a special case). The previous best result was a quasipolynomial-time algorithm for PAC learning the special case of ANDs of halfspaces with a (constant) margin [KS08].
We also give the first provably efficient algorithms for nontrivial schemes in multiple instance learning (MIL). Fix an MIL scheme where a learner is given a set of instances , and the learner is told only some function of their labels, namely for some unknown concept and monotone combining function . We give the first provably efficient algorithms for correctly labeling future bags even if the instances within each bag are not identically distributed. Our algorithms hold if the underlying concept is sigmoidal or a halfspace with a margin. If the combining function averages label values (a common case), we obtain bounds that are independent of the bag size.
We learn specifically with respect to square loss, though this will imply polynomial-time learnability for most commonly studied loss functions. When the label is a deterministic Boolean function of , it is easy to see that small square loss will imply small loss.
2 Our Approach
The high-level approach is to use algorithms for isotonic regression to learn monotone combinations of functions approximated by elements of a suitable RKHS. Our starting point is the Isotron algorithm, due to Kalai and Sastry [KS09a], and a refinement due to Kakade, Kalai, Kanade and Shamir [KKKS11] called the GLMtron. These algorithms efficiently learn any generalized linear model (GLM): distributions on instance-label pairs where the conditional mean of given x is equal to for some (known) smooth, non-decreasing function and unknown weight vector w. Their algorithms are simple and use an iterative update rule to minimize square-loss, a non-convex optimization problem in this setting. Both of their papers remark that their algorithms can be kernelized, but no concrete applications are given.
Around the same time, Shalev-Shwartz, Shamir, and Sridharan [SSSS11] used kernel methods and general solvers for convex programs to give algorithms for learning a halfspace under a distributional assumption corresponding to a margin in the non-realizable setting (agnostic learning). Their kernel was composed by Zhang et al. [ZLJ16] to obtain results for learning sparse neural networks with certain smooth activations, and Goel et al. [GKKT16] used a similar approach in conjunction with general tools from approximation theory to obtain learning results for a large class of nonlinear activations including ReLU and Sigmoid.
Combining the above approaches, though not technically deep, is subtle and depends heavily on the choice of model. For example, prior work on kernel methods for learning neural networks has focused almost exclusively on learning in the agnostic model. This model is too challenging, in the sense that the associated optimization problems to be solved seem computationally intractable (even for a single ReLU). The probabilistic concept model, on the other hand, is a more structured noise model and allows for an iterative approach to minimize the empirical loss.
Our algorithm– Alphatron– inherits the best properties of both kernel methods and gradient-based methods: it is a simple, iterative update rule that does not require regularizationWe emphasize this to distinguish our algorithm from the usual kernel methods (e.g., kernel ridge regression and SVMs) where regularization and the representer theorem are key steps., and it learns broad classes of networks whose first layer can be approximated via an appropriate feature expansion into an RKHS.
One technical challenge is handling the approximation error induced from embedding into an RKHS. In some sense, we must learn a noisy GLM. For this, we use a learning rate and a slack variable to account for noise and follow the outline of the analysis of GLMtron (or Isotron). The resulting algorithm is similar to performing gradient descent on the support vectors of a target element in an RKHS. Our convergence bounds depend on the resulting choice of kernel, learning rate, and quality of RKHS embedding. We can then leverage several results from approximation theory and obtain general theorems for various notions of RKHS approximation.
3 Related Work
The literature on provably efficient algorithms for learning neural networks is extensive. In this work we focus on common nonlinear activation functions: sigmoid, ReLU, or threshold. For linear activations, neural networks compute an overall function that is linear and can be learned efficiently using any polynomial-time algorithm for solving linear regression. Livni et al. [LSSS14] observed that neural networks of constant depth with constant degree polynomial activations are equivalent to linear functions in a higher dimensional space (polynomials of degree are equivalent to linear functions over monomials). It is known, however, that any polynomial that computes or even -approximates a single ReLU requires degree [GKKT16]. Thus, linear methods alone do not suffice for obtaining our results.
The vast majority of work on learning neural networks takes strong assumptions on either the underlying marginal distribution (e.g., Gaussian), the structure of the network, or both. Works that fall into these categories include [KOS04, KM13, JSA15, SA14, ZPS17, ZLJ16, ZSJ+17, GK17]. In terms of assumption-free learning results, Goel et al. [GKKT16] used kernel methods to give an efficient, agnostic learning algorithm for sums of sigmoids (i.e., one hidden layer of sigmoids) with respect to any distribution on the unit ball. Daniely [Dan17] used kernel methods in combination with gradient descent to learn neural networks, but the networks he considers have restricted VC dimension. All of the problems we consider in this paper are non-convex optimization problems, as it is known that a single sigmoid with respect to square-loss has exponentially many bad local minima [AHW96].
A Remark on Bounding the 2-Norm. As mentioned earlier, the networks we learn, even over the unit ball, have polynomially large VC dimension (if the first layer has hidden units, the VC dimension will be ). It is easy to see that if we allow the -norm of weight vectors in the first layer to be polynomially large (in the dimension), we arrive at a learning problem statistically close to PAC learning intersections of halfspaces, for which there are known cryptographic hardness results [KS09b]. Further, in the agnostic model, learning even a single ReLU with a bounded norm weight vector (and any distribution on the unit sphere) is as hard as learning sparse parity with noise [GKKT16]. As such, for distribution-free learnability, it seems necessary to have some bound on the norm and some structure in the noise model. Bounding the norm of the weight vectors also aligns nicely with practical tools for learning neural networks. Most gradient-based training algorithms for learning deep nets initialize hidden weight vectors to have unit norm and use techniques such as batch normalization or regularization to prevent the norm of the weight vectors from becoming large.
4 Notation
Note. Due to space limitations, we defer most proofs to the appendix.
The Alphatron Algorithm
Here we present our main algorithm Alphatron (Algorithm 1) and a proof of its correctness. In the next section we will use this algorithm to obtain our most general learning results.
The following theorem generalizes Theorem 1 of [KKKS11] to the bounded noise setting in a high dimensional feature space. We follow the same outline, and their theorem can be recovered by setting and as the zero function.
Alphatron runs in time where is the time required to compute the kernel function .
In this section we use Alphatron to give our most general learnability results for the probablistic concept (p-concept) model. We then state several applications in the next section. Here we show that if a function can be approximated by an element of an appropriate RKHS, then it is p-concept learnable. We assume that the kernel function is efficiently computable, that is, computable in polynomial time in the input dimension. Formally, we define approximation as follows:
Combining Alphatron and the above approximation guarantees, we have the following general learning results:
for some constants . Also Alphatron requires at most iterations. Setting as in theorem statement gives us the required result. ∎
For the simpler case when is uniformly approximated by elements in the RKHS we have,
The proof is the same as the proof of Theorem 2 by re-examining the proof of Theorem 1 and noticing that is uniformly bounded by in each inequality. ∎
Learning Neural Networks
In this section we give polynomial time learnability results for neural networks with two nonlinear layers in the p-concept model. Following Safran and Shamir [SS16], we define a neural network with one (nonlinear) layer with units as follows:
The following theorem is our main result for learning classes of neural networks with two nonlinear layers in polynomial time:
for . The algorithm runs in time polynomial in and .
We also obtain results for networks of ReLUs, but the dependence on the number of hidden units, , and are exponential (the algorithm still runs in polynomial-time in the dimension):
for . The algorithm runs in time polynomial in and .
Although our algorithm does not recover the parameters of the network, it still outputs a hypothesis with interpretable features. More specifically, our learning algorithm outputs the hidden layer as a multivariate polynomial. Given inputs , the hypothesis output by our algorithm Alphatron is of the form where and is dependent on required approximation. As seen in the preliminaries, can be expressed as a polynomial and the coefficients can be computed as follows,
Here, we follow the notation from [GKKT16]; maps ordered tuple for to tuple such that and maps ordered tuple to the number of distinct orderings of the ’s for . The function can be computed from the multinomial theorem (cf. [Wik16]). Thus, the coefficients of the polynomial can be efficiently indexed. Informally, each coefficient can be interpreted as the correlation between the target function and the product of features appearing in the coefficient’s monomial.
Generalizing PAC Learning to Probabilistic Concepts
In this section we show how known algorithms for PAC learning boolean concepts can be generalized to the probabilistic concept model. We use Alphatron to learn real-valued versions of these well-studied concepts.
Here we give an algorithm, KMtron, which combines isotonic regression with the KM algorithm [KM93] for finding large Fourier coefficients of a function (given query access to the function). The KM algorithm takes the place of the “kernel trick” used by Alphatron to provide an estimate for the update step in isotonic regression. Viewed this way, the KM algorithm can be re-interpreted as a query-algorithm for giving estimates of the gradient of square-loss with respect to the uniform distribution on Boolean inputs.
The main application of KMtron is a generalization of celebrated results for PAC learning DNF formulas [Jac97] to the setting of probabilistic concepts. That is, we can efficiently learn any conditional mean that is a smooth, monotone combination of -bounded functions.
KM Algorithm. The KM algorithm learns sparse approximations to boolean functions given query access to the underlying function. The following lemmas about the KM algorithm are important to our analysis.
If has , then returns s.t. .
Let be such that . Then .
Let be such that . Then .
KMtron. The algorithm KMtron is as follows:
The following theorem proves the correctness of KMtron.
As an easy corollary, we also obtain a simple (no Boosting required) polynomial time query-algorithm for learning DNFs under the uniform distributionFeldman [Fel12] was the first to obtain a query-algorithm for PAC learning DNF formulas with respect to the uniform distribution that did not require a Boosting algorithm.:
Let be a DNF formula from with terms. Then is PAC learnable under the uniform distribution using membership queries in time .
2 Extending the “Low-Degree” Algorithm
Here we show that Alphatron can be used to learn any smooth, monotone combination of function classes that are approximated by low-degree polynomials (our other results require us to take advantage of low-weight approximations).
For a class of functions , let denote monotone function applied to a linear combination of (polynomially many) functions from .
For the domain of and degree parameter , our algorithm will incur a sample complexity and running time factor of , so the “kernel trick” is not necessary (we can work explicitly in the feature space). The main point is that using isotonic regression (as opposed to the original “low-degree” algorithm due to Linial, Mansour and Nisan [LMN93]), we can learn for any smooth, monotone and class that has low-degree Fourier approximations (we also obtain non-i.i.d. noise tolerance for these classes due to the definition of the probabilistic concept model). While isotonic regression has the flavor of a boosting algorithm, we do not need to change the underlying distribution on points or add noise to the labels, as all boosting algorithms do.
The above can be generalized to linear combinations of Fourier concentrated functions using the following lemma.
Many concept classes are known to be approximated by low-degree Fourier polynomials. Combining Theorem 7 and Lemma 5, we immediately obtain the following learning results in the probabilistic concept model whose running time matches or improves their best-known PAC counterparts:
), generalizing majorities of constant depth circuits [JKS02].
), generalizing majorities of linear threshold functions [KKMS08].
, generalizing submodular functions [CKKL12].
As a further application, we can learn majorities of halfspaces with respect to the uniform distribution in time for any (choose with each entry and let smoothly interpolate majority with Lipschitz constant ). This improves on the best known bound of [KKMS08]Recent work due to Kane [Kan14] does not apply to majorities of halfspaces, only intersections..
3 Learning Monotone Functions of Halfspaces with a Margin as Probabilistic Concepts
for . The algorithm runs in time polynomial in and .
We now show that Theorem 8 immediately implies the first polynomial-time algorithm for PAC learning intersections of halfspaces with a (constant) margin. Consider -halfspaces . An intersection of these -halfspaces is given by .
This result improves the previous best bound due to Klivans and Servedio [KS08] that had (for constant ) a quasipolynomial dependence on the number of halfspaces .
Klivans and Servedio used random projection along with kernel perceptron and the complete quadratic kernel to obtain their results. Here we directly use the multinomial kernel, which takes advantage of how the polynomial approximator’s weights can be embedded into the corresponding RKHS. We remark that if we are only interested in the special case of PAC learning an intersection of halfspaces with a margin (as opposed to learning in the probabilistic concept model), we can use kernel perceptron along with the multinomial kernel (and a Chebsyshev approximation that will result in an improved dependence), as opposed to Alphatron in conjunction with the multinomial kernel.
Multiple Instance Learning
Multiple Instance Learning (MIL) is a generalization of supervised classification in which a label is assigned to a bag, that is, a set of instances, instead of an individual instance [DLLP97]. The bag label is induced by the labels of the instances in it. The goal we focus on in this work is to label future bags of instances correctly, with high probability. We refer the reader to [Amo13, HVB+16] for an in-depth study of MIL. In this section we apply the previously developed ideas to MIL and give the first provable learning results for concrete schemes that do not rely on unproven assumptions.
Comparison to Previous Work. Under the standard MI assumption, various results are known in the PAC learning setting. Blum and Kalai [BK98] showed a simple reduction from PAC learning MIL to PAC learning with one-sided noise under the assumption that the instances in each bag were drawn independently from a distribution. Sabato and Tishby [ST12] removed the independence assumption and gave sample complexity bounds for learning future bags. All the above results require the existence of an algorithm for PAC learning with one-sided noise, which is itself a challenging problem and not known to exist for even simple concept classes.
In this work, we do not assume instances within each bag are independently distributed, and we do not require the existence of PAC learning algorithms for one-sided noise. Instead, we give efficient algorithms for labeling future bags when the class labeling instances is an unknown halfspace with a margin or an unknown depth-two neural network. We succeed with respect to general monotone, smooth combining functions.
We generalize the deterministic model to allow the labeling function to induce a probability distribution over the labels. This assumption seems more intuitive and less restrictive than the deterministic case as it allows for noise in the labels.
The concept class is -Probabilistic MIL for with sample complexity and running time if under the probabilistic MI assumption for , there exists an algorithm such that for all as the instance labeling function and any distribution on , draws at most iid bags and runs in time at most to return a bag-labeling hypothesis such that with probability ,
The following is our main theorem of learning in the Probabilistic MIL setting.
The concept class is -Probabilistic MIL for monotone -Lipschitz with sample complexity and running time if all are -uniformly approximated by some kernel for large enough constant .
Combining Theorem 9 with learnability Theorems 4 and 8 we can show the following polynomial time Probabilistic MIL results.
References
Appendix A Background
We consider two learning models in our paper, the standard Probably Approximately Correct (PAC) learning model and a relaxation of the standard model, the Probabilistic Concept (p-concept) learning model. For completeness, we define the two models and refer the reader to [Val84, KS90] for a detailed explanation.
We say that a concept class is Probably Approximately Correct (PAC) learnable, if there exists an algorithm such that for every , and over , if is given access to examples drawn from and labeled according to , outputs a hypothesis , such that with probability at least ,
Furthermore, we say that is efficiently PAC learnable to error if can output an satisfying the above with running time and sample complexity polynomial in , , and .
Furthermore, we say that is efficiently p-concept learnable to error if can output an satisfying the above with running time and sample complexity polynomial in , , and .
Here we focus on square loss for p-concept since an efficient algorithm for square-loss implies efficient algorithms of various other standard losses.
A.2 Generalization Bounds
The following standard generalization bound based on Rademacher complexity is useful for our analysis. For a background on Rademacher complexity, we refer the readers to [BM02].
where is the Rademacher complexity of the function class .
For a linear concept class, the Rademacher complexity can be bounded as follows.
The following result is useful for bounding the Rademacher complexity of a smooth function of a concept class.
A.3 Kernel Methods
We assume the reader has a basic working knowledge of kernel methods (for a good resource on kernel methods in machine learning we refer the reader to [SS02]). We denote a kernel function by where is the associated feature map and is the corresponding reproducing kernel Hilbert space (RKHS).
Here we define two kernels and a few of their properties that we will use for our analysis. First, we define a variant of the polynomial kernel, the multinomial kernel due to Goel et al. [GKKT16]:
Also define to be the corresponding RKHS.
It is easy to see that the multinomial kernel is efficiently computable. A multivariate polynomial of degree can be represented as an element . Also, every can be interpreted as a multivariate polynomial of degree such that
where coefficient is as follows,
Here, is used to index the corresponding entry in v.
The following lemma is due to [GKKT16], following an argument of Shalev-Shwartz et al. [SSSS11]:
Let be a given univariate polynomial with . For w such that , the polynomial equals for some with .
For our results on Multiple Instance Learning, we make use of the following known kernel defined over sets of vectors:
Let denote the Kleene closure of .
The feature map corresponding to this kernel is given by
Also define to be the corresponding RKHS.
Fact. If then .
A.4 Approximation Theory
We will make use of a variety of tools from approximation theory to obtain specific embeddings of function classes into a RKHS. The following lemma for approximating the Boolean function was given by [Dan15]:
Let . There exists a polynomial of degree such that
For , .
The above lemma assumes takes on values , but a simple linear transformation also works for .
[GKKT16] showed that activation functions sigmoid: and ReLU: can be -uniformly approximated by the multinomial kernel for dependent on , more formally they showed the following:
Further, . This implies that is -uniformly approximated by .
Further, . This implies that is -uniformly approximated by .
Finally we state the following lemmas that bound the sum of squares of coefficients of a univariate polynomial:
Let be a univariate polynomial of degree . Let be such that . Then .
We have . It follows that is bounded above by
Appendix B Omitted Proofs
Let and . Aslo define . We will use the following lemma:
At iteration in Alphatron, suppose for , then if , then
Expanding the left hand side of the equation above, we have
Here (4) follows from substituting the expression of , (6) follows from bounding and, (8) follows from being monotone and -Lipschitz, that is, . (9) follows from the definition of , the second term follows from the fact that is $\frac{1}{m}\sum_{i=1}^{m}\sum_{i=1}^{m}|\xi(\textbf{x}_{\textbf{i}})|\leq\sqrt{\frac{1}{m}\sum_{i=1}^{m}\sum_{i=1}^{m}\xi(\textbf{x}_{\textbf{i}})^{2}}=\sqrt{\rho}||\Delta||\leq\eta$.
We now bound as follows.
By definition we have that are zero mean iid random variables with norm bounded by . Using Hoeffding’s inequality (and the fact that that the ’s are independent draws), with probability we have
Similarly, we can bound using Hoeffding’s inequality to get,
Now using the previous lemma with and , we have
Thus, for each iteration of Alphatron, one of the following two cases needs to be satisfied, Case 1: Case 2: .
Let be the first iteration where Case 2 holds. We need to show that such an iteration exists. Assume the contradictory, that is, Case 2 fails for each iteration. Since , however, in at most iterations Case 1 will be violated and Case 2 will have to be true. If then exists such that
We need to bound in terms of . Define , and . Using Theorem 11 and 12 we have . By definition of Rademacher complexity, we have
Here, are iid Rademacher variables hence and are drawn iid from .
Recall that is an element of as (case 1 is satisfied in iteration ) and . A direct application of Theorem 10 on with loss function , gives us, with probability ,
The last step is to show that we can indeed find a hypothesis satisfying the above guarantee. Since for all , is up to constants equal to we can do so by choosing the hypothesis with the minimum using a fresh sample set of size . This holds as given the sample size, by Chernoff bound using the fact that is bounded in $h^{t}t\leq T\epsilon_{0}1-\delta/T1-\delta\epsilon_{0}=1/\sqrt{m}$ will give us the required bound.
B.2 Proof of Theorem 4
We first extend the approximation guarantees to linear combinations of function classes using the following lemma.
We have for each , for some such that . Consider . We have ,
Also . Thus v satisfies the required approximation. ∎
Combining Lemmas 8 and 12 we have that for activation function is -uniformly approximated by some kernel with and sufficiently large constant . Thus by Theorem 3, we have that there exists an algorithm that outputs a hypothesis such that, with probability ,
for some constants . Setting and gives us the required result (the claimed bounds on running time also follow directly from Theorem 3).
B.3 Proof of Theorem 6
For a suitable choice of , .
Let us define the following polynomials for , . For all ,
From Lemma 1, implying since .
Using Lemma 4, we have . Since and , using Lemma 2, . Using Triangle inequality, we get,
Observe that . Combining these two observations, we have
for large enough constant . Therefore,
Here, (13) follows from the triangle inequality and (B.3), (14) follows from projecting to a convex set reducing the distance to points in the convex set, (16) follows from being monotone, -Lipschitz with output bounded in $\thetaCk\sqrt{\theta k}\leq\lambda^{2}$ gives the required result. ∎
As long as , we have . Since , after , there must be some such that does not hold, at this iteration, for . The last step of choosing the best would give us the required hypothesis (similar to Alphatron). Observe that each iteration of KMtron runs in time (Lemma 1) and KMtron is run for iterations giving us the required runtime.
B.4 Proof of Corollary 2
Let be the ANDs corresponding to each term of the DNF. Let . By definition of , if then and if then . Observe that using the well known fact that AND has bounded by .
Observe that is -Lipschitz. It is easy to see that on . Hence, given query access to is the same as query access to over .
B.5 Proof of Theorem 7
We use Lemma 7 to show the existence of polynomial of degree such that for , and for , .
Since for each , , we have such that is bounded in $1+\epsilon_{0}ip(\textbf{w}_{\textbf{i}}\cdot\textbf{x})=\langle\textbf{v}_{\textbf{i}},\psi_{d}(\textbf{x})\rangle||\textbf{v}_{\textbf{i}}||=\left(\frac{1}{\epsilon_{0}}\right)^{O(1/\rho)}\psi_{d}d\sum_{i=1}^{t}\textbf{a}_{i}h_{i}(\textbf{x})\left(\epsilon_{0}A,A\left(\frac{1}{\epsilon_{0}}\right)^{O(1/\rho)}\right)\mathcal{MK}_{d}$.
Subsequently, applying Theorem 3, we get that there exists an algorithm that outputs a hypothesis such that with probability ,
for some constants . Setting and to gives us the required result.
B.6 Proof of Corollary 3
Let . Consider the following ,
B.7 Proof of Theorem 8
Consider polynomial . We have,
We also know that (since ) for all , thus for all . Also observe that
where the equality follows from Parseval’s Theorem. This implies that is -approximated by kernel and RKHS with feature map of all monomials of degree . This kernel takes time to compute. Now, we apply Theorem 2 after renormalizing the kernel to get the required result.
B.8 Proof of Lemma 5
For all , we have . Let and be as in the lemma, we have,
Here the first inequality follows from Cauchy-Schwarz, the second follows from rearranging the sum and using the fact that and the third follows from the Fourier concentration of each .
B.9 Proof of Theorem 9
The following lemma is useful for our analysis.
We have that for such that . Let be the mean map kernel of and be the corresponding vector. We will show that v -approximates in . This follows from the following,
Consider that is -uniformly approximated by some kernel for large enough constant (to be chosen later). Using Lemma 14 we know that is -uniformly approximated by the mean map kernel of . Applying Theorem 3, we get that with probability ,
for sufficiently large constant . Choosing gives the result.