亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb

首頁 > 學院 > 開發設計 > 正文

batch normalization 正向傳播與反向傳播

2019-11-10 20:23:23
字體:
來源:轉載
供稿:網友

Understanding the backward pass through Batch Normalization Layer

At the moment there is a wonderful course running at Standford University, calledCS231n - Convolutional Neural Networks for Visual Recognition, held by Andrej Karpathy, Justin Johnson and Fei-Fei Li. Fortunately all thecourse material is PRovided for free and all the lectures are recorded and uploaded onYoutube. This class gives a wonderful intro to machine learning/deep learning coming along with programming assignments.

Batch Normalization

One Topic, which kept me quite busy for some time was the implementation of Batch Normalization, especially the backward pass. Batch Normalization is a technique to provide any layer in a Neural Network with inputs that are zero mean/unit variance - and this is basically what they like! But BatchNorm consists of one more step which makes this algorithm really powerful. Let’s take a look at the BatchNorm Algorithm:

Algorithm of Batch Normalization copied from the Paper by Ioffe and Szegedy mentioned above.

Look at the last line of the algorithm. After normalizing the input x the result is squashed through a linear function with parameters gamma and beta. These are learnable parameters of the BatchNorm Layer and make it basically possible to say “Hey!! I don’t want zero mean/unit variance input, give me back the raw input - it’s better for me.” Ifgamma = sqrt(var(x)) and beta = mean(x), the original activation is restored. This is, what makes BatchNorm really powerful. We initialize the BatchNorm Parameters to transform the input to zero mean/unit variance distributions but during training they can learn that any other distribution might be better.Anyway, I don’t want to spend to much time on explaining Batch Normalization. If you want to learn more about it, thepaper is very well written andhere Andrej is explaining BatchNorm in class.

Btw: it’s called “Batch” Normalization because we perform this transformation and calculate the statistics only for a subpart (a batch) of the entire trainingsset.

Backpropagation

In this blog post I don’t want to give a lecture in Backpropagation and Stochastic Gradient Descent (SGD). For now I will assume that whoever will read this post, has some basic understanding of these principles. For the rest, let me quote Wiki:

Backpropagation, an abbreviation for “backward propagation of errors”, is a common method of training artificial neural networks used in conjunction with an optimization method such as gradient descent. The method calculates the gradient of a loss function with respect to all the weights in the network. The gradient is fed to the optimization method which in turn uses it to update the weights, in an attempt to minimize the loss function.

Uff, sounds tough, eh? I will maybe write another post about this topic but for now I want to focus on the concrete example of the backwardpass through the BatchNorm-Layer.

Computational Graph of Batch Normalization Layer

I think one of the things I learned from the cs231n class that helped me most understanding backpropagation was the explanation through computational graphs. These Graphs are a good way to visualize the computational flow of fairly complex functions by small, piecewise differentiable subfunctions. For the BatchNorm-Layer it would look something like this:

Computational graph of the BatchNorm-Layer. From left to right, following the black arrows flows the forward pass. The inputs are a matrix X and gamma and beta as vectors. From right to left, following the red arrows flows the backward pass which distributes the gradient from above layer to gamma and beta and all the way back to the input.

I think for all, who followed the course or who know the technique the forwardpass (black arrows) is easy and straightforward to read. From inputx we calculate the mean of every dimension in the feature space and then subtract this vector of mean values from every training example. With this done, following the lower branch, we calculate the per-dimension variance and with that the entire denominator of the normalization equation. Next we invert it and multiply it with difference of inputs and means and we havex_normalized. The last two blobs on the right perform the squashing by multiplying with the inputgamma and finally addingbeta. Et voilà, we have our Batch-Normalized output.

A vanilla implementation of the forwardpass might look like this:

def batchnorm_forward(x, gamma, beta, eps):  N, D = x.shape  #step1: calculate mean  mu = 1./N * np.sum(x, axis = 0)  #step2: subtract mean vector of every trainings example  xmu = x - mu  #step3: following the lower branch - calculation denominator  sq = xmu ** 2  #step4: calculate variance  var = 1./N * np.sum(sq, axis = 0)  #step5: add eps for numerical stability, then sqrt  sqrtvar = np.sqrt(var + eps)  #step6: invert sqrtwar  ivar = 1./sqrtvar  #step7: execute normalization  xhat = xmu * ivar  #step8: Nor the two transformation steps  gammax = gamma * xhat  #step9  out = gammax + beta  #store intermediate  cache = (xhat,gamma,xmu,ivar,sqrtvar,var,eps)  return out, cache

Note that for the exercise of the cs231n class we had to do a little more (calculate running mean and variance as well as implement different forward pass for trainings mode and test mode) but for the explanation of the backwardpass this piece of code will work.In the cache variable we store some stuff that we need for the computing of the backwardpass, as you will see now!

The power of Chain Rule for backpropagation

For all who kept on reading until now (congratulations!!), we are close to arrive at the backward pass of the BatchNorm-Layer.To fully understand the channeling of the gradient backwards through the BatchNorm-Layer you should have some basic understanding of what the Chain rule is. As a little refresh follows one figure that exemplifies the use of chain rule for the backward pass in computational graphs.

The forwardpass on the left in calculates `z` as a function `f(x,y)` using the input variables `x` and `y` (This could literally be any function, examples are shown in the BatchNorm-Graph above). The right side of the figures shows the backwardpass. Receiving `dL/dz`, the gradient of the loss function with respect to `z` from above, the gradients of `x` and `y` on the loss function can be calculate by applying the chain rule, as shown in the figure.

So again, we only have to multiply the local gradient of the function with the gradient of above to channel the gradient backwards. Some derivations of some basic functions are listed in thecourse material. If you understand that, and with some more basic knowledge in calculus, what will follow is a piece of cake!

Finally: The Backpass of the Batch Normalization

In the comments of aboves code snippet I already numbered the computational steps by consecutive numbers. The Backpropagation follows these steps in reverse order, as we are literally backpassing through the computational graph. We will know take a more detailed look at every single computation of the backwardpass and by that deriving step by step a naive algorithm for the backward pass.

Step 9

Backwardpass through the last summation gate of the BatchNorm-Layer. Enclosed in brackets I put the dimensions of Input/Output

Recall that the derivation of a function f = x + y with respect to any of these two variables is1. This means to channel a gradient through a summation gate, we only need to multiply by1. And because the summation of beta during the forward pass is a row-wise summation, during the backward pass we need to sum up the gradient over all of its columns (take a look at the dimensions). So after the first step of backpropagation we already got the gradient for one learnable parameter: beta

Step 8

Next follows the backward pass through the multiplication gate of the normalized input and the vector of gamma.

For any function f = x * y the derivation with respect to one of the inputs is simply just the other input variable. This also means, that for this step of the backward pass we need the variables used in the forward pass of this gate (luckily stored in the cache of aboves function). So again we get the gradients of the two inputs of these gates by applying chain rule ( = multiplying the local gradient with the gradient from above). For gamma, as for beta in step 9, we need to sum up the gradients over dimension N, because the multiplication was again row-wise. So we now have the gradient for the second learnable parameter of the BatchNorm-Layergamma and “only” need to backprop the gradient to the inputx, so that we then can backpropagate the gradient to any layer further downwards.

Step 7

This step during the forward pass was the final step of the normalization combining the two branches (nominator and denominator) of the computational graph. During the backward pass we will calculate the gradients that will flow separately through these two branches backwards.

It’s basically the exact same Operation, so lets not waste much time and continue. The two needed variablesxmu andivar for this step are also storedcache variable we pass to the backprop function. (And again: This is one of the main advantages of computational graphs. Splitting complex functions into a handful of simple basic operations. And like this you have a lot of repetitions!)

Step 6

This is a "one input-one output" node where, during the forward pass, we inverted the input (square root of the variance).

The local gradient is visualized in the image and should not be hard to derive by hand. Multiplied by the gradient from above is what we channel to the next step.sqrtvar is also one of the variables passed incache.

Step 5

Again "one input-one output". This node calculates during the forward pass the denominator of the normalization.

The derivation of the local gradient is little magic and should need no explanation.var andeps are also passed in thecache. No more Words to lose!

Step 4

Also a "one input-one output" node. During the forward pass the output of this node is the variance of each feature `d for d in [1...D]`.

The derivation of this steps local gradient might look unclear at the very first glance. But it’s not that hard at the end. Let’s recall that a normal summation gate (see step 9) during the backward pass only transfers the gradient unchanged and evenly to the inputs. With that in mind, it should not be that hard to conclude, that a column-wise summation during the forward pass, during the backward pass means that we evenly distribute the gradient over all rows for each column. And not much more is done here. We create a matrix of ones with the same shape as the input sq of the forward pass, divide it element-wise by the number of rows (thats the local gradient) and multiply it by the gradient from above.

Step 3

This node outputs the square of its input, which during the forward pass was a matrix containing the input `x` subtracted by the per-feature `mean`.

I think for all who followed until here, there is not much to explain for the derivation of the local gradient.

Step 2

Now this looks like a more fun gate! two inputs-two outputs! This node subtracts the per-feature mean row-wise of each trainings example `n for n in [1...N]` during the forward pass.

Okay lets see. One of the definitions of backprogatation and computational graphs is, that whenever we have two gradients coming to one node, we simply add them up. Knowing this, the rest is little magic as the local gradient for a subtraction is as hard to derive as for a summation. Note that for mu we have to sum up the gradients over the dimensionN (as we did before forgamma and beta).

Step 1

The function of this node is exactly the same as of step 4. Only that during the forward pass the input was `x` - the input to the BatchNorm-Layer and the output here is `mu`, a vector that contains the mean of each feature.

As this node executes the exact same operation as the one explained in step 4, also the backpropagation of the gradient looks the same. So let’s continue to the last step.

Step 0 - Arriving at the Input

I only added this image to again visualize that at the very end we need to sum up the gradientsdx1 anddx2 to get the final gradientdx. This matrix contains the gradient of the loss function with respect to the input of the BatchNorm-Layer. This gradientdx is also what we give as input to the backwardpass of the next layer, as for this layer we receivedout from the layer above.

Naive implemantation of the backward pass through the BatchNorm-Layer

Putting together every single step the naive implementation of the backwardpass might look something like this:

def batchnorm_backward(dout, cache):  #unfold the variables stored in cache  xhat,gamma,xmu,ivar,sqrtvar,var,eps = cache  #get the dimensions of the input/output  N,D = dout.shape  #step9  dbeta = np.sum(dout, axis=0)  dgammax = dout #not necessary, but more understandable  #step8  dgamma = np.sum(dgammax*xhat, axis=0)  dxhat = dgammax * gamma  #step7  divar = np.sum(dxhat*xmu, axis=0)  dxmu1 = dxhat * ivar  #step6  dsqrtvar = -1. /(sqrtvar**2) * divar  #step5  dvar = 0.5 * 1. /np.sqrt(var+eps) * dsqrtvar  #step4  dsq = 1. /N * np.ones((N,D)) * dvar  #step3  dxmu2 = 2 * xmu * dsq  #step2  dx1 = (dxmu1 + dxmu2)  dmu = -1 * np.sum(dxmu1+dxmu2, axis=0)  #step1  dx2 = 1. /N * np.ones((N,D)) * dmu  #step0  dx = dx1 + dx2  return dx, dgamma, dbeta

Note: This is the naive implementation of the backward pass. There exists an alternative implementation, which is even a bit faster, but I personally found the naive implementation way better for the purpose of understanding backpropagation through the BatchNorm-Layer. This well written blog post gives a more detailed derivation of the alternative (faster) implementation. However, there is a much more calculus involved. But once you have understood the naive implementation, it might not be to hard to follow.

Some final words

First of all I would like to thank the team of the cs231n class, that gratefully make all the material freely available. This gives people like me the possibility to take part in high class courses and learn a lot about deep learning in self-study.(Secondly it made me motivated to write my first blog post!)

And as we have already passed the deadline for the second assignment, I might upload my code during the next days on github.

Clément thorey

aspiring data scientist

Blog Publications AboutArchive

What does the gradient flowing through batch normalization looks like ?

This past week, I have been working on the assignments from theStanford CS classCS231n: Convolutional Neural Networks for Visual Recognition. Inparticular, I spent a few hours deriving a correct expression tobackpropagate the batchnorm regularization(Assigment 2 - Batch Normalization). While this post is mainly for me not to forget about what insights Ihave gained in solving this problem, I hope it could be useful toothers that are struggling with back propagation.

Batch normalization

Batch normalization is a recent idea introduced byIoffe et al, 2015 to ease thetraining of large neural networks. The idea behind it is that neuralnetworks tend to learn better when their input features areuncorrelated with zero mean and unit variance. As each layer within aneural network see the activations of the previous layer as inputs,the same idea could be apply to each layer. Batch normalization doesexactly that by normalizing the activations over the current batch ineach hidden layer, generally right before the non-linearity.

To be more specific, for a given input batch x

of size (N,D) goingthrough a hidden layer of size H, some weights w of size (D,H) anda bias b of size (H)

, the common layer structure with batch normlooks like

Affine transformation

h=XW+b

where h

contains the results of the linear transformation (size (N,H)

).

where γ

and β

are learnable parameters and

h^=(h?μ)(σ2+?)?1/2

contains the zero mean and unit variance version of h

(size (N,H)). Indeed, the parameter μ (H) and σ2 (H) are the respective average and standard deviation of each activation over the full batch (of sizeN). Note that, this expression implicitly assume broadcasting as h is of size (N,H) and both μ and σ have size equal to (H)

. A more correct expression would be

hkl^=(hkl?μl)(σ2l+?)?1/2

where

μl=1N∑phplσ2l=1N∑p(hpl?μl)2.

with k=1,…,N

and l=1,…,H

which now see a zero mean and unit variance input and where a

contains the activations of size (N,H). Also note that, as γ and β are learnable parameters, the network can unlearn the batch normalization transformation. In particular, the claim that the non-linearity sees a zero mean and unit variance input is only certainly true in the first forward call asγ and β are usually initialized to 1 and 0

respectively.

Derivation

Implementing the forward pass of the batch norm transformation is straightforward

# Forward pass mu = 1/N*np.sum(h,axis =0) # Size (H,) sigma2 = 1/N*np.sum((h-mu)**2,axis=0)# Size (H,) hath = (h-mu)*(sigma2+epsilon)**(-1./2.)y = gamma*hath+beta 

The trickypart comes with the backward pass. As the assignment proposes, thereare two strategies to implement it.

Write out a computation graph composed of simple operations andbackprop through all intermediate valuesWork out the derivatives on paper.

The 2nd step made me realize I did not fully understand backprogationbefore this assignment. Backpropation, an abbreviation for “backwardpropagation of errors”, calculates the gradient of a loss functionL

with respect to all the parameters of the network. In our case,we need to calculate the gradient with respect toγ,βand the input h

.

Mathematically, this reads dLdγ,dLdβ,dLdh

where eachgradient with respect to a quantity contains a vector of size equal tothe quantity itself. For me, the aha-moment came when I decided toproperly write the expression for these gradients. For instance, thegradient with respect to the inputh

literally reads

dLdh=?????dLdh11..dLdhN1..dLdhkl...dLdh1H..dLdhNH?????.

To derive a close form expression for this expression, we first haveto recall that the main idea behind backpropagation is chainrule. Indeed, thanks to the previous backward pass, i.e. into ReLu inour example, we already know

dLdy=?????dLdy11...dLdyN1...dLdykl...dLdy1H...dLdyNH?????.

where

ykl=γlh^kl+βl

.

We can therefore chain the gradient of the loss with respect to theinput hij

by the gradient of the loss with respect to ALLthe outputs ykl

which reads

dLdhij=∑k,ldLdykldykldhij,

which we can also chain by the gradient with respect to thecentred input h^kl

to break down the problem a little more

dLdhij=∑k,ldLdykldykldh^kldh^kldhij.

The second term in the sum simply readsdykldh^kl=γl

. All the fun part actuallycomes when looking at the third term in the sum.

Instead of jumping right into the full derivation, let’s focus on justthe translation for one moment. Assuming the batch norm as just beinga translation, we have

hkl^=hkl?μl

where the expression of μl

is given above. In that case, we have

dh^kldhij=δi,kδj,l?1Nδj,l.

where δi,j=1

if i=j and 0 otherwise. Therefore, thefirst term is 1 only if k=i and l=j and the second term is 1/Nonly when l=j. Indeed, the gradient of h^ with respect to thej input of the i batch, which is precisely what the left hand termmeans, is non-zero only for terms in thej

dimension. I think if youget this one, you are good to backprop whatever function youencounter so make sure you understand it before going further.

This is just the case of translation though. What if we consider the realbatch normalization transformation ?

In that case, the transformation considers both translation andrescaling and reads

hkl^=(hkl?μl)(σ2l+?)?1/2.

Therefore, the gradient of the centred input h^kl

with respect tothe input hij

reads

dh^kldhij=(δikδjl?1Nδjl)(σ2l+?)?1/2?12(hkl?μl)dσ2ldhij(σ2l+?)?3/2

where

σ2l=1N∑p(hpl?μl)2.

As the gradient of the standard deviation σ2l

with respect tothe input hij

reads

dσ2ldhij====1N∑p2(δipδjl?1Nδjl)(hpl?μl)2N(hil?μl)δjl?2N2∑pδjl(hpl?μl)2N(hil?μl)δjl?2Nδjl(1N∑phpl?μl)2N(hil?μl)δjl

we finally have

dh^kldhij=(δikδjl?1Nδjl)(σ2l+?)?1/2?1N(hkl?μl)(hil?μl)δjl(σ2l+?)?3/2.

Wrapping everything together, we finally find that the gradient of theloss functionL

with respect to the layer inputs finally reads

dLdhij=====∑kldLdykldykldh^kldh^kldhij∑kldLdyklγl((δikδjl?1Nδjl)(σ2l+?)?1/2?1N(hkl?μl)(hil?μl)δjl(σ2l+?)?3/2)∑kldLdyklγl((δikδjl?1Nδjl)(σ2l+?)?1/2)?∑kldLdyklγl(1N(hkl?μl)(hil?μl)δjl(σ2l+?)?3/2)dLdyijγj(σ2j+?)?1/2?1N∑kdLdykjγj(σ2j+?)?1/2?1N∑kdLdykjγj((hkj?μj)(hij?μj)(σ2j+?)?3/2)1Nγj(σ2j+?)?1/2(NdLdyij?∑kdLdykj?(hij?μj)(σ2j+?)?1∑kdLdykj(hkj?μj))

The gradients of the loss with respect to γ

and β

is muchmore straightforward and should not pose any problem if you understoodthe previous derivation. They read

dLdγj===∑kldLdykldykldγj∑kldLdyklh^klδlj∑kdLdykj(hkj?μj)(σ2j+?)?1/2dLdβj===∑kldLdykldykldβj∑kldLdyklδlj∑kdLdykj

After the hard work derivation are done, you can simply just drop theseexpressions into python for the calculation. The implementation of thebatch norm backward pass looks like

mu = 1./N*np.sum(h, axis = 0)var = 1./N*np.sum((h-mu)**2, axis = 0)dbeta = np.sum(dy, axis=0)dgamma = np.sum((h - mu) * (var + eps)**(-1. / 2.) * dy, axis=0)dh = (1. / N) * gamma * (var + eps)**(-1. / 2.) * (N * dy - np.sum(dy, axis=0)    - (h - mu) * (var + eps)**(-1.0) * np.sum(dy * (h - mu), axis=0))

and with that, you good to go !

Conclusion

In this post, I focus on deriving an analytical expression for thebackward pass to implement batch-norm in a fully connected neuralnetworks. Indeed, trying to get an expression by just looking at thecentered inputs and trying to match the dimensions to get

, and dh

simply do not work this time. In contrast, workingthe derivative on papers nicely leads to the solution ;)

To finish, I’d like to thank all the team from the CS231 Stanfordclass who do a fantastic work in vulgarizing the knowledge behindneural networks.

For those who want to take a look to my full implementation of batchnormalization for a fully-connected neural networks, you can found ithere.

Written on January 28, 2016

Batch normalization transform

y=γh^+β

.

Non-linearity activation, say ReLu for our example

a=ReLu(y)
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
日韩欧美精品免费在线| 日韩av免费看| 日韩中文字幕免费看| 亚洲精品一区二区在线| 日韩大片在线观看视频| 岛国av午夜精品| 亚洲精品午夜精品| 亚洲美女在线观看| 久久激情视频免费观看| 日韩av第一页| 亚洲影院在线看| 欧美性在线观看| 亚洲小视频在线观看| 日韩女在线观看| 亚洲变态欧美另类捆绑| 欧美性猛交xxxx乱大交极品| 亚洲2020天天堂在线观看| 91久久久国产精品| 久久久精品在线观看| 国产精品激情av在线播放| 国外色69视频在线观看| 亚洲视频在线免费看| 国产精品久久av| 欧美午夜女人视频在线| 91九色国产视频| 精品国产999| 久久国产精品久久久| 欧美精品videos性欧美| 色樱桃影院亚洲精品影院| 国内精品视频一区| 国模gogo一区二区大胆私拍| 亚洲精品乱码久久久久久金桔影视| 国产精品一久久香蕉国产线看观看| 91精品国产九九九久久久亚洲| 日韩hd视频在线观看| 青青久久av北条麻妃海外网| 久久久91精品国产一区不卡| 欧美日韩不卡合集视频| 在线播放国产一区中文字幕剧情欧美| 久久99国产综合精品女同| 国产精品99久久久久久久久| 欧美黄色免费网站| 国产精品电影观看| 国产精品丝袜白浆摸在线| 日韩电影中文字幕一区| 91探花福利精品国产自产在线| 在线a欧美视频| 欧美成人免费网| 日韩亚洲一区二区| 亚洲人免费视频| 超碰97人人做人人爱少妇| 欧美巨猛xxxx猛交黑人97人| 欧美特黄级在线| 亚洲精品中文字幕女同| 1769国内精品视频在线播放| 亚洲精品白浆高清久久久久久| 91视频-88av| 亚洲精品免费av| 国产精品美女999| 亚洲最大在线视频| 亚洲天堂成人在线视频| 国产精彩精品视频| 国产精品美女久久久久av超清| 久久久免费高清电视剧观看| 日韩美女福利视频| 夜夜嗨av一区二区三区免费区| 国产视频久久网| 亚洲成人a级网| 日韩电影免费观看在线| 亚洲视频999| 91在线播放国产| 亚洲最大的av网站| 一二美女精品欧洲| 亚洲国产成人av在线| 亚洲精品成人免费| 色悠久久久久综合先锋影音下载| 国产一区深夜福利| 欧美电影免费观看大全| 欧美精品激情blacked18| 日韩精品中文字幕在线播放| 一区二区三区视频免费| 亚洲变态欧美另类捆绑| 色一情一乱一区二区| 日韩精品黄色网| 亚洲国产精品va在看黑人| 久久精品国产亚洲7777| 久久久91精品| 久久视频这里只有精品| 97精品在线视频| 国产suv精品一区二区三区88区| 精品国产自在精品国产浪潮| 91精品中国老女人| 免费97视频在线精品国自产拍| 日韩在线视频线视频免费网站| 国产成人精品久久二区二区91| 亚洲天堂av高清| 精品亚洲永久免费精品| 久久精品影视伊人网| 96精品久久久久中文字幕| 精品亚洲va在线va天堂资源站| 狠狠做深爱婷婷久久综合一区| 77777少妇光屁股久久一区| 久久久精品电影| 日本欧美一级片| 欧美在线视频一区二区| 国内精品久久久久久中文字幕| 亚洲xxxx3d| 国产精品黄色影片导航在线观看| 久久色精品视频| 国产精品视频白浆免费视频| 欧美成人免费va影院高清| 97在线免费视频| 久久久久www| 久久久久999| 国产精品久久色| 中文字幕亚洲欧美在线| 91九色蝌蚪国产| 日本精品中文字幕| 久久天天躁狠狠躁夜夜躁| 亚州精品天堂中文字幕| 九九久久久久久久久激情| 国产精品xxxxx| 国产精品白丝av嫩草影院| 午夜免费在线观看精品视频| 精品自在线视频| 久久91精品国产91久久跳| 欧美成在线视频| 国产成人精品免高潮费视频| 日韩国产高清污视频在线观看| 国产精品偷伦一区二区| 国产区精品在线观看| 夜夜躁日日躁狠狠久久88av| 黑人狂躁日本妞一区二区三区| 欧美日韩精品在线播放| 国产99在线|中文| 美女啪啪无遮挡免费久久网站| 国产香蕉一区二区三区在线视频| 欧美成aaa人片免费看| 亚洲欧美色婷婷| 久久久久久久久久av| 欧美高清在线视频观看不卡| 亚洲福利视频二区| 亚洲成人中文字幕| 欧美日韩美女视频| 欧美俄罗斯乱妇| 日韩中文在线观看| 欧美综合国产精品久久丁香| 色中色综合影院手机版在线观看| 久久频这里精品99香蕉| 久久全球大尺度高清视频| 98视频在线噜噜噜国产| 国产精品久久久久久一区二区| 亚洲精品日韩丝袜精品| 亚洲一区二区日本| 亚洲激情视频网站| 国产亚洲欧美另类中文| 97香蕉久久夜色精品国产| 国产精品亚洲视频在线观看| 日韩欧美精品免费在线| 日韩在线观看网址| 疯狂欧美牲乱大交777| 久久久久久久久久亚洲| 亚洲欧美国产一本综合首页| 久久艹在线视频|