Mathematical Reinforcement to the Minibatch of Deep Learning

Abstract

We elucidate a practical method in Deep Learning called the minibatch which is very useful to avoid local minima. The mathematical structure of this method is, however, a bit obscure. We emphasize that a certain condition, which is not explicitly stated in ordinary expositions, is essential for the minibatch method. We present a comprehensive description Deep Learning for non-experts with the mathematical reinforcement.

Share and Cite:

Fujii, K. (2018) Mathematical Reinforcement to the Minibatch of Deep Learning. Advances in Pure Mathematics, 8, 307-320. doi: 10.4236/apm.2018.83016.

1. Introduction

Deep Learning is one of Machine Learning methods and it has attracted much attention recently. Leaning in general is divided into the supervised learning and unsupervised learning. In this paper we discuss only supervised learning. For general introduction to Deep Learning, see for example [1] . The monographs [2] [3] [4] are standard textbooks.

*Dedicated to the memory of Professor Ichiro Yokota.

Deep Learning is based on big data, so the supervised learning will give a heavy load to the computer. In order to alleviate the burden we usually use a practical method called the minibatch (a collection of randomly selected small data from big data, see Figure 5). Although the method is commonly used it is not widely understood why it is so effective from the mathematical viewpoint. We point out in Theorem II that a certain condition, which is practically satisfied in ordinary applications, is essential for the effectiveness of the minibatch method.

In this paper we present a short and concise review of Deep Learning for non-experts and provide a mathematical reinforcement to the minibatch from the viewpoint of Linear Algebra. Theorem I and II in the text are our main results and some related problems are presented.

After reading this paper, readers are encouraged to tackle a remarkable paper [5] which is definitely a monumental achievement.

2. Simple Neural Network

As a general introduction to Neuron Dynamics see for example [6] [7] .

For non-experts let us draw a neuron model based on the step function S ( x ) . In Figure 1 the set { x 1 , x 2 , , x n } is the input data, z = S ( y ) is the output data and the set { w 1 , w 2 , , w n } is the weights of synaptic connections. The parameter q is the threshold of the neuron.

Here, z = S ( x ) is a simple step function defined by

S ( x ) = { 0 x < 0 1 x 0

Since an algorithm called the backpropagation in Neural Network System uses derivatives of some activation functions, the simple step function S ( x ) is not suitable. Therefore, we usually use a function called the sigmoid function instead of the step function (see Figure 2). This function is used for a nonlinear compression of data.

Figure 1. Simple neuron model.

Figure 2. Sigmoid function.

Definition The sigmoid function is defined by

σ ( x ) = 1 1 + e x ( x R ) . (1)

It is easy to see that the function satisfies

σ ( ) = 0 , σ ( 0 ) = 1 2 , σ ( ) = 1

and its derivatives are expressed as polynomials of the original function

σ ( x ) = σ ( x ) ( 1 σ ( x ) ) , σ ( x ) = σ ( x ) ( 1 σ ( x ) ) ( 1 2 σ ( x ) ) . (2)

The graph is as follows.

Comment In Mathematics this is a famous function called the standard logistic function, while in Deep Learning this is called the sigmoid function.

A general logistic function f ( x ) has three parameters { L , λ , x 0 } , the overall height L, the parameter l specifying the inverse width of the transient region and the location of the center x 0 :

f ( x ) = L 1 + e λ ( x x 0 ) .

The standard logistic function is characterized by L = 1 , λ = 1 , x 0 = 0 . See a lecture note [8] as to why the function is so important.

Let us draw a neuron model based on the sigmoid function, See Figure 3.

The most important thing is to improve the set of weights of the synoptic connections { w 1 , w 2 , , w n } by hard learning. For the purpose we prepare m input data and teacher signals. In the following we assume m < n and θ = 0 for simplicity. This causes no problem for the present explanation. There is a suitable value of q for each specific application.

For j = 1 , 2 , , m we set

Input data : x ( j ) = ( x 1 ( j ) , x 2 ( j ) , , x n ( j ) ) T ,

Teacher signal : d (j)

where T denotes the transpose of a vector (or a matrix).

Figure 3. Simple neuron model modified.

Our method is to determine the weights of synaptic connections which match the output data with given teacher signals as much as possible. For the purpose we consider a square error like

E = E ( w ) = 1 2 j = 1 m ( d ( j ) z ( j ) ) 2 , (3)

z ( j ) = σ ( y ( j ) ) = σ ( k = 1 n w k x k ( j ) ) (4)

and determine w = ( w 1 , w 2 , , w n ) T so that E ( w ) is minimized.

We want to realize this purpose by repeated learning. For that we consider a discrete dynamical system. Namely, we set

E = E ( w ( t ) ) = 1 2 j = 1 m ( d ( j ) z ( j ) ( t ) ) 2 ; z ( j ) ( t ) = σ ( y ( j ) ( t ) ) = σ ( k = 1 n w k ( t ) x k ( j ) ) (5)

for t = 0,1,2, , T ( N ) .

The initial value w ( 0 ) is given appropriately (not so important).

2.1. Gradient Descent

For a general introduction to Gradient Descent see for example [9] .

The gradient descent is performed by changing w k ( t ) to

w k ( t + 1 ) = w k ( t ) ϵ E ( w ( t ) ) w k ( t ) ( 0 < ϵ < 1 ) (6)

and we evaluate the error with the renewed weights

E = E ( w ( t + 1 ) ) .

This renewal of the weights is the learning process. This is very popular in Mathematics1. We repeat this procedure T steps which is large enough like

E ( w ( 0 ) ) E ( w ( 1 ) ) E ( w ( T ) ) E ( w ) .

Let us proceed. We set E = E ( w ) for simplicity (t omitted). From (5) simple calculation gives

E w k = j = 1 m ( d ( j ) z ( j ) ) ( z ( j ) w k ) = j = 1 m ( d ( j ) z ( j ) ) σ ( k = 1 n w k x k ( j ) ) { 1 σ ( k = 1 n w k x k ( j ) ) } x k ( j ) = j = 1 m ( d ( j ) z ( j ) ) x k ( j ) σ ( k = 1 n w k x k ( j ) ) { 1 σ ( k = 1 n w k x k ( j ) ) }

and from (6) we obtain

w k ( t + 1 ) = w k ( t ) ϵ E ( w ( t ) ) w k ( t ) = w k ( t ) + ϵ j = 1 m ( d ( j ) z ( j ) ( t ) ) x k ( j ) σ ( k = 1 n w k ( t ) x k ( j ) ) { 1 σ ( k = 1 n w k ( t ) x k ( j ) ) } .

By substituting this into (5) we obtain

z ( j ) ( t + 1 ) = σ ( k = 1 n w k ( t + 1 ) x k (j) )

and the square error becomes

E = E ( w ( t + 1 ) ) = 1 2 j = 1 m ( d ( j ) z ( j ) ( t + 1 ) ) 2 ,

which is complicated enough. The renewal of the weights terminates when all E ( w ) / w k = 0 , which is a critical point as shown in the next subsection.

2.2. Number of Critical Points

Here we evaluate the number of critical points to be encountered in the process. First of all, let us show the definition of a critical point with a simple example.

Definition Let f = f ( x , y , z ) be a smooth function. Then a critical (or stationary) point ( x 0 , y 0 , z 0 ) is defined by

{ f x ( x 0 , y 0 , z 0 ) = 0 , f y ( x 0 , y 0 , z 0 ) = 0 , f z ( x 0 , y 0 , z 0 ) = 0. (7)

A critical point is not necessarily a point giving local minimum or local maximum.

We make an important assumption with respect to the input data.

Assumption (good data) For m < n

{ x ( 1 ) , x ( 2 ) , , x ( m ) } (8)

are linearly independent.

The assumption tells that there is a set of integers k 1 < k 2 < < k m satisfying

| x k 1 ( 1 ) x k 1 ( 2 ) x k 1 ( m ) x k 2 ( 1 ) x k 2 ( 2 ) x k 2 ( m ) x k m ( 1 ) x k m ( 2 ) x k m ( m ) | 0. (9)

Let us recall

E = 1 2 j = 1 m ( d ( j ) z ( j ) ) 2 = 1 2 j = 1 m ( d ( j ) σ ( y ( j ) ) ) 2 , σ ( y ( j ) ) = σ ( k = 1 n w k x k (j) )

and try to find if E has a critical point. Suppose E has a critical point at the weights w = { w 1 , , w n } T ,

0 = E w k = j = 1 m ( d ( j ) z ( j ) ) σ ( y ( j ) ) x k ( j ) , k = 1 , , n .

Let us set

A ( j ) = ( d ( j ) z ( j ) ) σ ( y (j) )

for simplicity. The equation can be written as

j = 1 m A ( j ) x k ( j ) = 0 for k = 1 , , n

and it implies

j = 1 m x k ( j ) A ( j ) = 0 for k = k 1 , k 2 , , k m

or in matrix form

( x k 1 ( 1 ) x k 1 ( 2 ) x k 1 ( m ) x k 2 ( 1 ) x k 2 ( 2 ) x k 2 ( m ) x k m ( 1 ) x k m ( 2 ) x k m ( m ) ) ( A ( 1 ) A ( 2 ) A ( m ) ) = ( 0 0 0 ) .

Since the determinant of coefficient matrix is non-zero from (9) we have

( A ( 1 ) A ( 2 ) A ( m ) ) = ( ( d ( 1 ) z ( 1 ) ) σ ( y ( 1 ) ) ( d ( 2 ) z ( 2 ) ) σ ( y ( 2 ) ) ( d ( m ) z ( m ) ) σ ( y ( m ) ) ) = ( 0 0 0 )

and

d ( j ) z ( j ) = d ( j ) σ ( y ( j ) ) = 0 for j = 1 , 2 , , m

because σ ( y ) 0 . This means

E = 1 2 j = 1 m ( d ( j ) z ( j ) ) 2 = 0.

The result shows that there is no critical point in this process except for E = 0 . Therefore, when modifying w k ( t ) by the gradient descent (6) successively there is no danger of being trapped by points taking local minima. Let us summarize the result :

Theorem I Under the assumption (8) there is only one global minimum E = 0 .

Next, let us explain how to choose linearly independent data. We assume that n is huge and m is sufficiently smaller than n.

For m input data

{ x ( 1 ) , x ( 2 ) , , x ( m ) }

we consider the m × m Gram’s deterninant

G ( x ( 1 ) , x ( 2 ) , , x ( m ) ) = | x ( 1 ) | x ( 1 ) x ( 1 ) | x ( 2 ) x ( 1 ) | x ( m ) x ( 2 ) | x ( 1 ) x ( 2 ) | x ( 2 ) x ( 2 ) | x ( m ) x ( m ) | x ( 1 ) x ( m ) | x ( 2 ) x ( m ) | x ( m ) | . (10)

If m is not large, evaluation of the Gram’s determinant is not so difficult. It is well-known that the input data are linearly independent if the Gram’s determinant is non-zero (see for example [10] ).

Let us give a short explanation for non-experts. For simplicity we consider the case of m = 3 and set

x ( 1 ) = a , x ( 2 ) = b , x ( 3 ) = c .

Then

G ( a , b , c ) = | a | a a | b a | c b | a b | b b | c c | a c | b c | c |

and we assume that { a , b , c } are linearly dependent. For example, we can set

c = α a + β b ( α , β is real ) .

Short calculation after substituting this into the Gram's determinant above gives

G ( a , b , c ) = | a | a a | b a | c b | a b | b b | c α a | a + β b | a α a | b + β b | b α a | c + β b | c |

and some fundamental operations of determinant give

G ( a , b , c ) = | a | a a | b a | c b | a b | b b | c 0 0 0 | = 0.

Namely, we have shown

{ a , b , c } is linearly dependent G ( a , b , c ) = 0.

Taking the contraposition gives

G ( a , b , c ) 0 { a , b , c } is linearly independent .

Comment For n > m we denote by M ( n , m ; R ) a set of all n × m matrices over R and denote

M n , m ( R ) = { ( x ( 1 ) , x ( 2 ) , , x ( m ) ) M ( n , m ; R ) | { x ( 1 ) , x ( 2 ) , , x ( m ) } is linearly independent } .

It is well-known that the subset M n , m ( R ) is open and dense in M ( n , m ; R ) . Therefore, if we choose m vectors from Rn randomly they are almost all linearly independent.

3. Deep Neural Network

Deep Learning is the heart of Artificial Intelligence (AI) and we provide a concise review for non-experts. Deep Learning is a deep neural network consisting of the input layer (K components), the (multiplex) intermediate layers ( M 1 , M 2 , , N components and the output layer (N components). See Figure 4 (in which M 1 = L , M 2 = M , M 3 = N ).

3.1. Backpropagation

First, let us show a figure of deep neural network2 (the figure is short in intermediate layers).

Let us explain some notations.

x = ( x 1 , x 2 , , x K ) T

is the input data. In this case, the weights of synaptic connections are represented by matrices U , V , W given by

U = ( u i j ) M ( L , K ; R ) , V = ( v i j ) M ( M , L ; R ) , W = ( w i j ) M ( N , M ; R ) (11)

and our aim is educating these matrices.

The synaptic connections are expressed as

r i = j = 1 M w i j β j θ , i = 1 , , N

z i = σ (ri)

and

q i = j = 1 L v i j α j θ , i = 1 , , M

β i = σ (qi)

and

p i = j = 1 K u i j x j θ , i = 1 , , L

α i = σ (pi)

respectively. See Figure 4 once more.

A comment is in order. The flow of data is as follows:

x = ( x 1 x 2 x K ) α = ( α 1 α 2 α L ) β = ( β 1 β 2 β M ) z = ( z 1 z 2 z N ) . (12)

Now, if

d = ( d 1 , d 2 , , d N ) T

is a set of teacher signals, then the square error becomes

Figure 4. Deep neural network model.

E = E ( U , V , W ) = 1 2 k = 1 N ( d k z k ) 2 .

Let us consider (discrete) time evolution of the model. For t = 0 , 1 , 2 , , we must determine

t t + 1

U ( t ) U ( t + 1 ) ,

V ( t ) V ( t + 1 ) ,

W ( t ) W ( t + 1 ) ,

E ( t ) E ( t + 1 )

and we expect

E ( t ) 0

if t is large enough (the end of Learning !).

Assume now that the system is in the t-th step

E ( t ) = E ( U ( t ) , V ( t ) , W ( t ) ) = 1 2 k = 1 N ( d k z k ( t ) ) 2 . (13)

Then the time evolution of the weights of synaptic connections is determined by the gradient descent:

w i j ( t + 1 ) = w i j ( t ) ϵ E ( t ) w i j ( t ) , v i j ( t + 1 ) = v i j ( t ) ϵ E ( t ) v i j ( t ) , u i j ( t + 1 ) = u i j ( t ) ϵ E ( t ) u i j ( t ) , (14)

which is a natural generalization of that of Section 2.1.

Before the calculation let us make a comment on the derivatives of a composite function.

Comment Let us explain with a simple example. For a composite function

x f ( x ) g ( f ( x ) ) E ( g ( f ( x ) ) )

the derivative is given by

d E d x = d E ( g ( f ( x ) ) ) d g ( f ( x ) ) d g ( f ( x ) ) d f ( x ) d f ( x ) d x = E ( g ( f ( x ) ) ) g ( f ( x ) ) f ( x ) .

A composite function is in general complicated, while its derivative is not so complicated.

3.2. Calculation

Let us perform the calculation of (14).

1) Case of W ( t ) = ( w i j ( t ) ) : From

E ( t ) w i j ( t ) = E ( t ) z i ( t ) z i ( t ) r i ( t ) r i ( t ) w i j ( t ) = ( d i z i ( t ) ) σ ( r i ( t ) ) β j ( t ) = ( d i z i ( t ) ) σ ( r i ( t ) ) ( 1 σ ( r i ( t ) ) ) β j (t)

we obtain

w i j ( t + 1 ) = w i j ( t ) + ϵ ( d i z i ( t ) ) σ ( r i ( t ) ) ( 1 σ ( r i ( t ) ) ) β j ( t ) .

2) Case of V ( t ) = ( v i j ( t ) ) : From

E ( t ) v i j ( t ) = k = 1 N E ( t ) z k ( t ) z k ( t ) r k ( t ) r k ( t ) β i ( t ) β i ( t ) q i ( t ) q i ( t ) v i j ( t ) = k = 1 N ( d k z k ( t ) ) σ ( r k ( t ) ) w k i ( t ) σ ( q i ( t ) ) α j ( t ) = k = 1 N ( d k z k ( t ) ) σ ( r k ( t ) ) ( 1 σ ( r k ( t ) ) ) × w k i ( t ) σ ( q i ( t ) ) ( 1 σ ( q i ( t ) ) ) α j (t)

we have

v i j ( t + 1 ) = v i j ( t ) + ϵ k = 1 N ( d k z k ( t ) ) σ ( r k ( t ) ) ( 1 σ ( r k ( t ) ) ) × w k i ( t ) σ ( q i ( t ) ) ( 1 σ ( q i ( t ) ) ) α j ( t ) .

3) Case of U ( t ) = ( u i j ( t ) ) : From

E ( t ) u i j ( t ) = l = 1 N k = 1 M E ( t ) z l ( t ) z l ( t ) r l ( t ) r l ( t ) β k ( t ) β k ( t ) q k ( t ) q k ( t ) α i ( t ) α i ( t ) p i ( t ) p i ( t ) u i j ( t ) = l = 1 N k = 1 M ( d l z l ( t ) ) σ ( r l ( t ) ) w l k ( t ) σ ( q k ( t ) ) v k i ( t ) σ ( p i ( t ) ) x j

we have

u i j ( t + 1 ) = u i j ( t ) + ϵ l = 1 N k = 1 M ( d l z l ( t ) ) σ ( r l ( t ) ) ( 1 σ ( r l ( t ) ) ) w l k ( t ) × σ ( q k ( t ) ) ( 1 σ ( q k ( t ) ) ) v k i ( t ) σ ( p i ( t ) ) ( 1 σ ( p i ( t ) ) ) x j .

The calculation so far is based on one input data, for simplicity. However, we must treat a lot of data simultaneously. Let us denote by a the number of data to be considered.

For l = 1 , 2 , , a we set

Input Data x ( l ) = ( x 1 ( l ) , x 2 ( l ) , , x K ( l ) ) T ,

Teacher Signal d ( l ) = ( d 1 ( l ) , d 2 ( l ) , , d N ( l ) ) T ,

Output Data z ( l ) = ( z 1 ( l ) , z 2 ( l ) , , z N ( l ) ) T .

By taking all these into consideration the square error function in (13) changes to

E ^ ( t ) = l = 1 a E ( l ) ( t ) = l = 1 a { 1 2 k = 1 N ( d k ( l ) z k ( l ) ( t ) ) 2 } (15)

at the t-th step.

In this case the calculation is very simple. For example, since

w i j ( t + 1 ) = w i j ( t ) ϵ E ^ ( t ) w i j ( t ) = w i j ( t ) ϵ l = 1 a E ( l ) ( t ) w i j (t)

it is only changed to

w i j ( t + 1 ) = w i j ( t ) + ϵ l = 1 a ( d i ( l ) z i ( l ) ( t ) ) σ ( r i ( l ) ( t ) ) ( 1 σ ( r i ( l ) ( t ) ) ) β j ( l ) ( t ) .

The calculation for both v i j ( t ) and u i j ( t ) is quite similar (omitted).

In the following we make a mysterious assumption.

Assumption We assume that the data in the final step of the intermediate layers are linearly independent:

1 ) a < M , 2 ) { β ( 1 ) , β ( 2 ) , , β ( a ) } are linearly independent . (16)

See Figure 4 and the flow of data (12).

We can show that there is no critical point in our system except for E ^ = 0 . Therefore, when modifying u i j ( t ) , v i j ( t ) , w i j ( t ) by the gradient descent (14) (replaced by E ^ ) successively there is no danger of being trapped by points taking local minima.

Proof: The proof is essentially the same as that of Section 2.2. However, the proof is the heart of the paper, so we repeat it.

A critical point is defined by the equations

{ E ^ ( t ) w i j ( t ) = 0 , E ^ ( t ) v i j ( t ) = 0 , E ^ ( t ) u i j ( t ) = 0.

From (15) we have and set

0 = E ^ ( t ) w i j ( t ) = l = 1 a ( d i ( l ) z i ( l ) ( t ) ) σ ( r i ( l ) ( t ) ) β j ( l ) ( t ) = l = 1 a β j ( l ) ( t ) ( d i ( l ) z i ( l ) ( t ) ) σ ( r i ( l ) ( t ) ) ( is omitted ) l = 1 a β j ( l ) ( t ) A i ( l ) ( j = 1 , 2 , , M )

and it implies

0 = l = 1 a β j ( l ) ( t ) A i ( l ) ( j = j 1 < j 2 < < j a ) .

Therefore, its matrix form becomes

( β j 1 ( 1 ) β j 1 ( 2 ) β j 1 ( a ) β j 2 ( 1 ) β j 2 ( 2 ) β j 2 ( a ) β j a ( 1 ) β j a ( 2 ) β j a ( a ) ) ( A i ( 1 ) A i ( 2 ) A i ( a ) ) = ( 0 0 0 ) .

Since the determinant of coefficient matrix is non-zero from (16) we have

( A i ( 1 ) A i ( 2 ) A i ( a ) ) = ( 0 0 0 )

and

A i l ( d i ( l ) z i ( l ) ( t ) ) σ ( r i ( l ) ( t ) ) = 0 ( l = 1 , 2 , , a )

and σ ( r i ( l ) ( t ) ) 0 gives

d i ( l ) z i ( l ) ( t ) = 0 ( l = 1 , 2 , , a ) .

Moreover, these equations are independent of i = 1 , 2 , , N , so that we finally obtain

E ^ ( t ) = l = 1 a E ( l ) ( t ) = l = 1 a { 1 2 k = 1 N ( d k ( l ) z k ( l ) ( t ) ) 2 } = 0.

Let us summarize the result :

Theorem II Under the assumption (16) there is only one global minimum E ^ = 0 .

Let us emphasize that the assumption (16) is “local” because it refers to the linear independence of the data of the layer one step before the last of the flow:

x = ( x 1 x 2 x K ) α = ( α 1 α 2 α L ) β = ( β 1 β 2 β M ) z = ( z 1 z 2 z N ) .

A question arises naturally.

Problem I What is the meaning of the assumption in the total flow of data ?

Last in this section let us comment on the minibatch of Deep Learning. When input data A is huge the calculation of time evolution of the weights of synaptic connections will give a heavy load to the computer. In order to alleviate it the minibatch is practical and very useful, see Figure 5.

Figure 5. Minibatch.

Then a question also arises naturally.

Problem II Is there a relation between A and T?

One may conjecture

T = [ A / a ]

where [k] is the Gauss symbol, which is the greatest integer less than or equal to k. For example, [3.14] = 3. However, I do not believe this is correct.

4. Concluding Remarks

Nowadays, studying Deep Learning is standard for university students in the world. However, it is not so easy for them because Deep Learning requires a lot of knowledge.

In this paper, we treated the minibatch of Deep Learning and gave the mathematical reinforcement to it from the viewpoint of Linear Algebra and presented some related problems. We expect that young researchers will solve the problems in the near future.

As a related topic of Artificial Intelligence, there is Information Retrieval. Since there is no more space, we only refer to some relevant works [11] [12] [13] .

Acknowledgements

We wish to thank Ryu Sasaki for useful suggestions and comments.

NOTES

1However, to choose ò in (6) correctly is a very hard problem.

2Figure 4 is of course not perfect because drawing a figure of a big size is not easy.

Conflicts of Interest

The authors declare no conflicts of interest.

References

[1] Wikipedia. Deep Learning.
https://en.wikipedia.org/wiki/Deep_learning
[2] Patterson, J. and Gibson, A. (2017) Deep Learning: A Practitioner’s Approach. O’Reilly Media, Inc., Sebastopol, CA.
[3] Okaya, T. (2015) Deep Learning. Kodansha Ltd., Tokyo. (In Japanese)
[4] Mizoguchi, R. and Ishida, R. (2000) Artificial Intelligence. Ohmsha Ltd., Tokyo. (In Japanese)
[5] Le, Q.V., et al. (2012) Building High-Level Features Using Large Scale Unsupervised Learning. Proceedings of the 29th International Conference on Machine Learning, Edinburgh, June 27th-July 3rd, 2012, 11.
[6] Aihara, K. and Kanzaki, R. (2008) Theoretical and Engineering Approaches to Brainscience. University of Tokyo Press, Tokyo. (In Japanese)
[7] Amari, S. (2016) Brain·Heart·Artificial Intelligence. Blue Backs B-1968. Kodansha Ltd., Tokyo. (In Japanese)
[8] Fujii, K. (2014) Verhulst Model of Population Growth. Lecture Note. Yokohama City University, Yokohama. (In Japanese)
[9] Wikipedia. Gradient Descent.
https://en.wikipedia.org/wiki/Gradient_descent
[10] Kasahara, K. (2000) Linear Algebra. Saiensu Ltd., Tokyo. (In Japanese)
[11] Kita, K., Tsuda, K. and Shishibori, M. (2002) Information Retrieval Algorithms. Kyoritsu Shuppann, Ltd., Tokyo. (In Japanese)
[12] Fujii, K. and Oike, H. (2015) A Superintroduction to Google Matrices for Undergraduates. Far East Journal of Mathematical Education, 14, 55-68.
https://doi.org/10.17654/FJMEFeb2015_055_068
[13] Fujii, K. and Oike, H. (2015) How to Understand Google from the Mathematical Point of View. Yokohama City University, Yokohama.

Copyright © 2024 by authors and Scientific Research Publishing Inc.

Creative Commons License

This work and the related PDF file are licensed under a Creative Commons Attribution 4.0 International License.