SlideShare a Scribd company logo
1 of 41
Download to read offline
.




                          Introduction to Tensors
                                PFI Seminar


                                Kenta OONO


                                2012/07/11

Kenta OONO
Introduction to Tensors
Self Introduction




           • Kenta OONO (Twitter:@delta2323 )
           • PSS(Professional and Support Service) Division
           • Jubatus Project
               • msgpack-idl, generation of clients
           • Survey and Prototyping Team
           • 2010 PFI Summer Intern → 2011 Engineer




Kenta OONO
Introduction to Tensors
Agenda




           • What is Tensor?
           • Decomposition of Matrices and Tensors
           • Symmetry Parametrized by Young Diagram




Kenta OONO
Introduction to Tensors
Agenda




           • What is Tensor?
           • Decomposition of Matrices and Tensors
           • Symmetry Parametrized by Young Diagram




Kenta OONO
Introduction to Tensors
Vector as a Special Case of Tensor
       Consider a n dimensional vector (Below is the case n = 3)
                                          
                                           7
                                           
                                      v = 4                           (1)
                                           9
       When we write this vector as v = (vi ), we have v1 = 7, v2 = 4,
       and v3 = 9. As v has One index, this vector is regarded as Rank 1
       Tensor.

       Note
           • We use 1-index notation, not 0-index.
           • We somtimes use rank in a different meaning, (also in the
               context of tensors).
Kenta OONO
Introduction to Tensors
Matrix as a Special Case of Tensor

       Consider a n × n Matrix (Below is the case n = 3).
                                                    
                                     7 10 3
                                           
                                A = 4 −1 −2                          (2)
                                     9 4  5
       We write this matrix as A = (aij )1≤i,j≤3 .
           • e.g. a11 = 7, a23 = −2, a32 = 4.
       A has Two indices (namely i and j) and these indeices run through
       1 to 3. A can be regarded as Rank 2 Tensor.

       → What happens if the number of indices are not just 1 or 2 ?


Kenta OONO
Introduction to Tensors
An Example of Rank 3 Tensor

       Consider the set of real numbers X = (xijk )1≤i,j,k≤3 . As i, j, k run
       throuth 1 to 3 independently, this set contains 3 × 3 × 3 = 27
       elements.
       If we fix the value of i, we can write this set in a matrix form.

                                                                           
               7 10 3             10 2 1              5 −10 18
                                                            
       x1∗∗ = 4 −1 −2 , x2∗∗ =  3 −1 0 , x3∗∗ = −4  1    −2 
               9 4  5              8 1 4              9 −4 −10
                                                           (3)
       Note
           • In some field, we concatenate these matrix and name it X(1)
                • This is called Flattening or Matricing of X .


Kenta OONO
Introduction to Tensors
Is This a Multidimensional Array?



       We can realize a tensor as a multiple dimensional array in most
       programming languages.

       PseudoCode(C like):
         int[3][3][3] x;
         x[1][1][2] = -1;




Kenta OONO
Introduction to Tensors
Inner Product of Tensors


       Let X = (xijk ), Y = (yijk ) be two rank 3 tensors and G = (g ij ) be
       a symmetric (i.e. g ij = g ji ) and positive definite matrix. We can
       introduce an inner product of X and Y by:

                                           ∑
                                           n
                          < X , Y >=                   g ai g bj g ck xabc yijk   (4)
                                       a,b,c,i,j,k=1

       Note:
        • We can similarly define an inner product of two arbitrary rank
          tensor
                   • X and Y must have same rank.




Kenta OONO
Introduction to Tensors
An Example of Inner Product (Vector)

       Let’s consider the case of rank 1 tensor ( = vector). We can write
       X = (xi ), Y = (yi ). And we set G = (g ij ) an identity matrix:
                                                      
                                     1 ···           0
                                    .               .
                                G = . 1
                                     .               .
                                                     .                   (5)
                                     0 ···           1
       In this case, this definition of inner product reduce to ordinal inner
       product of two vectors, namely,
                                       ∑                    ∑
                          < X , Y >=         g ai xa yi =       xi yi    (6)
                                       a,i                  i



Kenta OONO
Introduction to Tensors
An Example of Tensor
       Suppose we have a (smooth) function f : R3 → R. We can derive
       tensors of arbitrary rank from this function.
       Taking Gradient, we obtain rank 1 tensor. (Please replace (1, 2,
       3) with (x , y , z) and vice versa.
                                                            ∂f 
                                                            ∂x 
                                    ∇f = (∇i f ) =  ∂y 
                                                     ∂f
                                                                               (7)
                                                            ∂f
                                                            ∂z
       Similarly, Hessian is an example of rank 2 tensor.
                                                                         
                                                    ∂2f       ∂2f     ∂2f
                                                  ∂x2∂x     ∂x ∂y   ∂x ∂z 
                          H(f ) = (Hij (f )) =    ∂ f        ∂2f     ∂2f 
                                                                               (8)
                                                  ∂y ∂x     ∂y ∂y   ∂y ∂z 
                                                    ∂2f       ∂2f     ∂2f
                                                   ∂z∂x      ∂z∂y    ∂z∂z

Kenta OONO
Introduction to Tensors
Supersymmetry Property


       By taking derivative, we can create an arbitrary rank of tensors.
       These tensors are (Super)Symmetric in the sense that
       interchange of any two indices remains the tensor identical. For
       example,

                          fx y z = fx zy = fy x z = fy zx = fzx y = fzy x .   (9)
       Note:
           • Afterward, we write this symmetry as                  .




Kenta OONO
Introduction to Tensors
Agenda




           • What is Tensor?
           • Decomposition of Matrices and Tensors
           • Symmetry Parametrized by Young Diagram




Kenta OONO
Introduction to Tensors
Decompose!


       It is fundamental in mathematics to decompose some object into
       simpler, easier-to-handle objects.
                                      ∑          √
          • Fourier Expansion : f =       an exp( −1nx )
                                          n∈Z
                                              ∑
           • Legendre Polynomial : P =              ak Pk
                                                k
                                      1 dk 2
                   • where Pk (x ) =           (x − 1)k
                                     k!2k dx k
           • Jordan-H¨lder : e = G0 ◁ G1 ◁ G2 ◁ · · · ◁ Gn−1 ◁ Gn = G
                     o




Kenta OONO
Introduction to Tensors
Decomposition of Matrix

       There are many theories regarding the decomposition (or,
       factorization) of matrices.
           • SVD
           • LU
           • QR
           • Cholesky
           • Jordan
           • Diagonalization ...
       Although we have theories of factorization of Tensors (e.g. Tucker
       Decomposition, higher-order SVD etc.) We do NOT go this
       direction. Instead, we consider decomposition of matrix into
       Summation of matrix.
Kenta OONO
Introduction to Tensors
Example: Projection to Axis




Kenta OONO
Introduction to Tensors
Example of Decomposition of Matrix


       We can decompose matrix into Symmetric part and
       Antisymmetric part.

       Example:
                                                          
           7 10 3               7 7       6           0 3 −3
                                                          
         4 −1 −2 =           7 −1      1   +   −3 0 −3
           9 4  5               6 1       5           3 3 0
                              Symmetric   Part   Antisymmetric Part
                    A             Asym                  Aanti
                                                                  (10)



Kenta OONO
Introduction to Tensors
How to Calculate Sym. and Antisym. Part

       We can calculate the symmetic and antisymmetric part by simple
       calculation (Exercise!).
                                                       
                                   7 10 3            7 4 9
                               1                       
                   Asym =        4 −1 −2 + 10 −1 4
                               2
                                   9 4    5          3 −2 5       (11)
                    sym                 1
                   aij     =              (aij + aji )
                                        2
                                                       
                                   7 10 3            7 4 9
                               1                        
                   Aanti   =     4 −1 −2 − 10 −1 4
                               2
                                   9 4    5          3 −2 5       (12)
                                        1
                    anti
                   aij     =              (aij − aji )
                                        2

Kenta OONO
Introduction to Tensors
Picture of Projection to Sym. and Antisym. Part




Kenta OONO
Introduction to Tensors
Notation Using Young Diagram

       We can symbolize symmetry and antisymmetry with Young
       Diagram

                                                        
             7 10 3      7 7 6       0 3 −3
                                       
            4 −1 −2 = 7 −1 1 + −3 0 −3
             9 4  5      6 1 5       3 3 0                             (13)

                          A       Asym              Aanti

       The number of boxes indicates rank of the tensor (one box for
       vector and two boxes for matrix).


Kenta OONO
Introduction to Tensors
Agenda


           • What is Tensor?
           • Decomposition of Matrices and Tensors
           • Symmetry Parametrized by Young Diagram


       Note:
           • From now on, we concentrate on Rank 3 Tensors (i.e.
               k = 3).
           • And we assume that n = 3, that is, indices run from 1 to 3.




Kenta OONO
Introduction to Tensors
Symmetrizing Operator



       We consider the transformation of tensor:

                           T       : X = (xijk ) → X ′ = (xijk ),
                                                            ′
                                                                            (14)
                      ′
              where xijk   = 1 (xijk + xikj + xjik + xjki + xkij + xkji )
                             6                                              (15)
                           = x(ijk) .




Kenta OONO
Introduction to Tensors
Young Diagram and Symmetry of Tensor (Sym. Case)


       Let X = (x123 ) be a tensor of rank 3, we call X Has a Symmetry
       of      , if interchange of any of two indices doesn’t change each
       entry of X .

       Example:
           • If X has a symmetry of             , then

                                        x112 = x121 = x211
                                                                           (16)
                          x123 = x132 = x213 = x231 = x312 = x321 etc...

           • Symmetric matrices have a symmetry of



Kenta OONO
Introduction to Tensors
Property of T
           • For all X , T  (X ) has symmetry of       .
           • If X has symmetry of     , then T    (X ) = X .
           • For all X , T   (T     (X )) = T    (X ).




Kenta OONO
Introduction to Tensors
Antisymmetrizing Operator
       Next, we consider Antisymmetrization of tensors:

                            T : X = (xijk ) → X ′ = (xijk ),
                                                       ′
                                                                            (17)

                      ′
              where xijk   = 1 (xijk − xikj − xjik + xjki + xkij − xkji )
                             6                                              (18)
                           = x[ijk] .




Kenta OONO
Introduction to Tensors
Young Diagram and Symmetry of Tensor (Antisym. Case)

       Let X = (x123 ) be a tensor of rank k, we call X has a symmetry of

         if interchange of any of two indices change only the sign of
       each entry of X .

       Example.

           • If X has a symmetry of , then
                • x123 = −x132 = −x213 = x231 = x312 = −x321
                • x112 = 0, because x112 must be equal to −x112 .

           • Antisymmetric matrix has a symmetry of



Kenta OONO
Introduction to Tensors
Orthogonality of Projection
       T           and T       are orthogonal in the sense

                           T       ◦ T (X ) = T ◦ T          (X ) = 0.   (19)




Kenta OONO
Introduction to Tensors
Counting Dimension




       How many dimension do the vector space consisting of tensors ...
           • with symmetry      have ?

           • with symmetry   have ?




Kenta OONO
Introduction to Tensors
Dimensions of each subvector spaces.
       If n = 3 (that is, i, j and k runs through 1 to 3), then each
       dimension is as follows.




       But dimension of total space is 3 × 3 × 3 = 27. This is larger than
       1 + 10 = 11.
Kenta OONO
Introduction to Tensors
Young Diagram

       Young Diagram is an arrangent of boxes of the same size so that:
           • two adjacent boxes share one of their side.
           • the number of boxes in each row is non-increasing.
           • the number of boxes in each column is non-increasing.
       Here is an example of Young Diagram with 10 boxes.



                                                                     (20)
                          English Notation French Notation



Kenta OONO
Introduction to Tensors
Decomposition of Tensor (of Rank 3)


       We have three types of Young Diagram which have three boxes,
       namely,



                                                                 (21)
                                 ,         ,      and
                          Symmetric Antisymmetric       ???


       → What symmetry does              represent?



Kenta OONO
Introduction to Tensors
Coefficients of Symmetrizers
       We list coneffients of each operator in a tabular form.

                                            Coefficient of xijk
                                ijk   ikj      jik   jki kij     kji

                                1/6   1/6      1/6   1/6   1/6   1/6



                                1/6   -1/6    -1/6   1/6   1/6   -1/6



                          Sum    1


Kenta OONO
Introduction to Tensors
Coefficients of Symmetrizers

                                             Coefficient of xijk
                                ijk   ikj      jik    jki      kij   kji

                                1/6   1/6       1/6    1/6    1/6    1/6



                                1/6   -1/6     -1/6    1/6    1/6    -1/6


                                4/6                    -2/6   -2/6
                          Sum    1


Kenta OONO
Introduction to Tensors
Symmetrizer T




       We consider the transformation of tensor:

                                 T     : X = (xijk ) → X ′ = (xijk ),
                                                                ′
                                                                        (22)

               ′
       where xijk =       1
                              (2xijk − xjki − xkij ).
                          3




Kenta OONO
Introduction to Tensors
Property of T

           • For all X , T   (X ) has symmetry of   .

           • If X has symmetry of , then T (X ) = X .
                           (       )
           • For all X , T   T (X ) = T (X ).




Kenta OONO
Introduction to Tensors
Tensors with Symmetry of



       Let X = (xijk ) be a tensor of rank 3. We say X Has a Symmetry
       of        , if
                                      1
                             xijk =     (2xijk − xjki − xkij )   (23)
                                      3
       for all 1 ≤ i, j, k ≤ n.




Kenta OONO
Introduction to Tensors
Where This Equation ”Symmetric” ?

       Remember that X has a symmetry of               , if
                                      1
                             xijk =     (2xijk − xjki − xkij )   (24)
                                      3
       for all 1 ≤ i, j, k ≤ n.

       This equation can be transormed as follows :
                                    1
                                      (2xijk − xjki − xkij )
                                  xijk =
                                    3                            (25)
                           ⇔ 3xijk = 2xijk − xjki − xkij
                           ⇔ xijk + xjki + xkij = 0



Kenta OONO
Introduction to Tensors
Projection to Each Symmetrized Tensors




Kenta OONO
Introduction to Tensors
Decomposition of Higher Rank Tensors

       Higher rank tensors are also decompose into symmetric tensors
       parametrized by Young Diagram.


                                         ⊕              ⊕
             Rn×n×n×n×n =



                          ⊕          ⊕         ⊕         ⊕



                                                                   (26)


Kenta OONO
Introduction to Tensors
Summary




           • Tensors as a Generalization of Vectors and Matrices.
           • Decomposition of Matrices and Tensors
           • Symmetry of Tensors Parametrized by Young Diagrams.




Kenta OONO
Introduction to Tensors
References


           • T G. Kolda and B W. Bader, Tensor Decompositions and
               Applications
               • 2009, SIAM Review Vol. 51, No 3, pp 455-500
           • D S. Watkins, Fundamentals of Matrix Computations 3rd. ed.

                   • 2010, A Wiley Series of Texts, Monographs and Tracts
           • W. Fulton and J Harris, Representation Theory
              • 1991, Graduate Texts in Mathematics Readins in Mathematics.
           • And Google ”Representation Theory”, ”Symmetric Group”,
               ”Young Diagram” and so on.



Kenta OONO
Introduction to Tensors

More Related Content

What's hot

problems-and-exercises-in-integral-equations-krasnov-kiselev-makarenko.pdf
problems-and-exercises-in-integral-equations-krasnov-kiselev-makarenko.pdfproblems-and-exercises-in-integral-equations-krasnov-kiselev-makarenko.pdf
problems-and-exercises-in-integral-equations-krasnov-kiselev-makarenko.pdfShivamSharma340355
 
Point Collocation Method used in the solving of Differential Equations, parti...
Point Collocation Method used in the solving of Differential Equations, parti...Point Collocation Method used in the solving of Differential Equations, parti...
Point Collocation Method used in the solving of Differential Equations, parti...Suddhasheel GHOSH, PhD
 
Interpolation with Finite differences
Interpolation with Finite differencesInterpolation with Finite differences
Interpolation with Finite differencesDr. Nirav Vyas
 
First order linear differential equation
First order linear differential equationFirst order linear differential equation
First order linear differential equationNofal Umair
 
Tensorizing Neural Network
Tensorizing Neural NetworkTensorizing Neural Network
Tensorizing Neural NetworkRuochun Tzeng
 
Eigen values and eigen vectors engineering
Eigen values and eigen vectors engineeringEigen values and eigen vectors engineering
Eigen values and eigen vectors engineeringshubham211
 
Fractional calculus and applications
Fractional calculus and applicationsFractional calculus and applications
Fractional calculus and applicationsPlusOrMinusZero
 
InfoGAN: Interpretable Representation Learning by Information Maximizing Gene...
InfoGAN: Interpretable Representation Learning by Information Maximizing Gene...InfoGAN: Interpretable Representation Learning by Information Maximizing Gene...
InfoGAN: Interpretable Representation Learning by Information Maximizing Gene...Joonhyung Lee
 
Mth3101 Advanced Calculus Chapter 2
Mth3101 Advanced Calculus Chapter 2Mth3101 Advanced Calculus Chapter 2
Mth3101 Advanced Calculus Chapter 2saya efan
 
On the Numerical Solution of Differential Equations
On the Numerical Solution of Differential EquationsOn the Numerical Solution of Differential Equations
On the Numerical Solution of Differential EquationsKyle Poe
 
Numerical Analysis and Its application to Boundary Value Problems
Numerical Analysis and Its application to Boundary Value ProblemsNumerical Analysis and Its application to Boundary Value Problems
Numerical Analysis and Its application to Boundary Value ProblemsGobinda Debnath
 
Tensor Train decomposition in machine learning
Tensor Train decomposition in machine learningTensor Train decomposition in machine learning
Tensor Train decomposition in machine learningAlexander Novikov
 
Homogeneous Linear Differential Equations
 Homogeneous Linear Differential Equations Homogeneous Linear Differential Equations
Homogeneous Linear Differential EquationsAMINULISLAM439
 
Numerical solution of ordinary differential equations GTU CVNM PPT
Numerical solution of ordinary differential equations GTU CVNM PPTNumerical solution of ordinary differential equations GTU CVNM PPT
Numerical solution of ordinary differential equations GTU CVNM PPTPanchal Anand
 
Quotient groups-Group theory
Quotient groups-Group theoryQuotient groups-Group theory
Quotient groups-Group theoryAyush Agrawal
 
Higher Differential Equation
Higher Differential EquationHigher Differential Equation
Higher Differential Equationgtuautonomous
 
power series & radius of convergence
power series & radius of convergencepower series & radius of convergence
power series & radius of convergencejigar sable
 

What's hot (20)

problems-and-exercises-in-integral-equations-krasnov-kiselev-makarenko.pdf
problems-and-exercises-in-integral-equations-krasnov-kiselev-makarenko.pdfproblems-and-exercises-in-integral-equations-krasnov-kiselev-makarenko.pdf
problems-and-exercises-in-integral-equations-krasnov-kiselev-makarenko.pdf
 
Point Collocation Method used in the solving of Differential Equations, parti...
Point Collocation Method used in the solving of Differential Equations, parti...Point Collocation Method used in the solving of Differential Equations, parti...
Point Collocation Method used in the solving of Differential Equations, parti...
 
Interpolation with Finite differences
Interpolation with Finite differencesInterpolation with Finite differences
Interpolation with Finite differences
 
First order linear differential equation
First order linear differential equationFirst order linear differential equation
First order linear differential equation
 
Tensorizing Neural Network
Tensorizing Neural NetworkTensorizing Neural Network
Tensorizing Neural Network
 
Eigen values and eigen vectors engineering
Eigen values and eigen vectors engineeringEigen values and eigen vectors engineering
Eigen values and eigen vectors engineering
 
Fractional calculus and applications
Fractional calculus and applicationsFractional calculus and applications
Fractional calculus and applications
 
InfoGAN: Interpretable Representation Learning by Information Maximizing Gene...
InfoGAN: Interpretable Representation Learning by Information Maximizing Gene...InfoGAN: Interpretable Representation Learning by Information Maximizing Gene...
InfoGAN: Interpretable Representation Learning by Information Maximizing Gene...
 
Mth3101 Advanced Calculus Chapter 2
Mth3101 Advanced Calculus Chapter 2Mth3101 Advanced Calculus Chapter 2
Mth3101 Advanced Calculus Chapter 2
 
On the Numerical Solution of Differential Equations
On the Numerical Solution of Differential EquationsOn the Numerical Solution of Differential Equations
On the Numerical Solution of Differential Equations
 
Power series
Power seriesPower series
Power series
 
Numerical Analysis and Its application to Boundary Value Problems
Numerical Analysis and Its application to Boundary Value ProblemsNumerical Analysis and Its application to Boundary Value Problems
Numerical Analysis and Its application to Boundary Value Problems
 
Tensor Train decomposition in machine learning
Tensor Train decomposition in machine learningTensor Train decomposition in machine learning
Tensor Train decomposition in machine learning
 
Homogeneous Linear Differential Equations
 Homogeneous Linear Differential Equations Homogeneous Linear Differential Equations
Homogeneous Linear Differential Equations
 
Numerical solution of ordinary differential equations GTU CVNM PPT
Numerical solution of ordinary differential equations GTU CVNM PPTNumerical solution of ordinary differential equations GTU CVNM PPT
Numerical solution of ordinary differential equations GTU CVNM PPT
 
Quotient groups-Group theory
Quotient groups-Group theoryQuotient groups-Group theory
Quotient groups-Group theory
 
Number theory
Number theoryNumber theory
Number theory
 
Higher Differential Equation
Higher Differential EquationHigher Differential Equation
Higher Differential Equation
 
power series & radius of convergence
power series & radius of convergencepower series & radius of convergence
power series & radius of convergence
 
GAUSS ELIMINATION METHOD
 GAUSS ELIMINATION METHOD GAUSS ELIMINATION METHOD
GAUSS ELIMINATION METHOD
 

Viewers also liked

Deep learning with Tensorflow in R
Deep learning with Tensorflow in RDeep learning with Tensorflow in R
Deep learning with Tensorflow in Rmikaelhuss
 
システム系論文輪講会20140806
システム系論文輪講会20140806システム系論文輪講会20140806
システム系論文輪講会20140806紘也 金子
 
PFN Spring Internship Final Report: Autonomous Drive by Deep RL
PFN Spring Internship Final Report: Autonomous Drive by Deep RLPFN Spring Internship Final Report: Autonomous Drive by Deep RL
PFN Spring Internship Final Report: Autonomous Drive by Deep RLNaoto Yoshida
 
Chainer Development Plan 2015/12
Chainer Development Plan 2015/12Chainer Development Plan 2015/12
Chainer Development Plan 2015/12Seiya Tokui
 
Capitalicoでのchainer 1.1 → 1.5 バージョンアップ事例
Capitalicoでのchainer 1.1 → 1.5 バージョンアップ事例Capitalicoでのchainer 1.1 → 1.5 バージョンアップ事例
Capitalicoでのchainer 1.1 → 1.5 バージョンアップ事例Jun-ya Norimatsu
 
深層学習ライブラリのプログラミングモデル
深層学習ライブラリのプログラミングモデル深層学習ライブラリのプログラミングモデル
深層学習ライブラリのプログラミングモデルYuta Kashino
 
Chainer入門と最近の機能
Chainer入門と最近の機能Chainer入門と最近の機能
Chainer入門と最近の機能Yuya Unno
 
ディープラーニングにおける学習の高速化の重要性とその手法
ディープラーニングにおける学習の高速化の重要性とその手法ディープラーニングにおける学習の高速化の重要性とその手法
ディープラーニングにおける学習の高速化の重要性とその手法Yuko Fujiyama
 
Chainer Contribution Guide
Chainer Contribution GuideChainer Contribution Guide
Chainer Contribution GuideKenta Oono
 
Lighting talk chainer hands on
Lighting talk chainer hands onLighting talk chainer hands on
Lighting talk chainer hands onOgushi Masaya
 
ボケるRNNを学習したい (Chainer meetup 01)
ボケるRNNを学習したい (Chainer meetup 01)ボケるRNNを学習したい (Chainer meetup 01)
ボケるRNNを学習したい (Chainer meetup 01)Motoki Sato
 
Chainer meetup lt
Chainer meetup ltChainer meetup lt
Chainer meetup ltAce12358
 
Introduction to DEEPstation the GUI Deep learning environment for chainer
Introduction to DEEPstation the GUI Deep learning environment for chainerIntroduction to DEEPstation the GUI Deep learning environment for chainer
Introduction to DEEPstation the GUI Deep learning environment for chainerRyo Shimizu
 

Viewers also liked (16)

Deep parking
Deep parkingDeep parking
Deep parking
 
Deep learning with Tensorflow in R
Deep learning with Tensorflow in RDeep learning with Tensorflow in R
Deep learning with Tensorflow in R
 
Herd
HerdHerd
Herd
 
システム系論文輪講会20140806
システム系論文輪講会20140806システム系論文輪講会20140806
システム系論文輪講会20140806
 
PFN Spring Internship Final Report: Autonomous Drive by Deep RL
PFN Spring Internship Final Report: Autonomous Drive by Deep RLPFN Spring Internship Final Report: Autonomous Drive by Deep RL
PFN Spring Internship Final Report: Autonomous Drive by Deep RL
 
Chainer Development Plan 2015/12
Chainer Development Plan 2015/12Chainer Development Plan 2015/12
Chainer Development Plan 2015/12
 
Capitalicoでのchainer 1.1 → 1.5 バージョンアップ事例
Capitalicoでのchainer 1.1 → 1.5 バージョンアップ事例Capitalicoでのchainer 1.1 → 1.5 バージョンアップ事例
Capitalicoでのchainer 1.1 → 1.5 バージョンアップ事例
 
深層学習ライブラリのプログラミングモデル
深層学習ライブラリのプログラミングモデル深層学習ライブラリのプログラミングモデル
深層学習ライブラリのプログラミングモデル
 
Chainer入門と最近の機能
Chainer入門と最近の機能Chainer入門と最近の機能
Chainer入門と最近の機能
 
ディープラーニングにおける学習の高速化の重要性とその手法
ディープラーニングにおける学習の高速化の重要性とその手法ディープラーニングにおける学習の高速化の重要性とその手法
ディープラーニングにおける学習の高速化の重要性とその手法
 
Chainer Contribution Guide
Chainer Contribution GuideChainer Contribution Guide
Chainer Contribution Guide
 
Lighting talk chainer hands on
Lighting talk chainer hands onLighting talk chainer hands on
Lighting talk chainer hands on
 
ボケるRNNを学習したい (Chainer meetup 01)
ボケるRNNを学習したい (Chainer meetup 01)ボケるRNNを学習したい (Chainer meetup 01)
ボケるRNNを学習したい (Chainer meetup 01)
 
Chainer meetup lt
Chainer meetup ltChainer meetup lt
Chainer meetup lt
 
Introduction to DEEPstation the GUI Deep learning environment for chainer
Introduction to DEEPstation the GUI Deep learning environment for chainerIntroduction to DEEPstation the GUI Deep learning environment for chainer
Introduction to DEEPstation the GUI Deep learning environment for chainer
 
CuPy解説
CuPy解説CuPy解説
CuPy解説
 

Similar to tensor-decomposition

Cs229 cvxopt
Cs229 cvxoptCs229 cvxopt
Cs229 cvxoptcerezaso
 
11.solution of linear and nonlinear partial differential equations using mixt...
11.solution of linear and nonlinear partial differential equations using mixt...11.solution of linear and nonlinear partial differential equations using mixt...
11.solution of linear and nonlinear partial differential equations using mixt...Alexander Decker
 
Solution of linear and nonlinear partial differential equations using mixture...
Solution of linear and nonlinear partial differential equations using mixture...Solution of linear and nonlinear partial differential equations using mixture...
Solution of linear and nonlinear partial differential equations using mixture...Alexander Decker
 
Lattices and codes
Lattices and codesLattices and codes
Lattices and codesSpringer
 
11.homotopy perturbation and elzaki transform for solving nonlinear partial d...
11.homotopy perturbation and elzaki transform for solving nonlinear partial d...11.homotopy perturbation and elzaki transform for solving nonlinear partial d...
11.homotopy perturbation and elzaki transform for solving nonlinear partial d...Alexander Decker
 
Homotopy perturbation and elzaki transform for solving nonlinear partial diff...
Homotopy perturbation and elzaki transform for solving nonlinear partial diff...Homotopy perturbation and elzaki transform for solving nonlinear partial diff...
Homotopy perturbation and elzaki transform for solving nonlinear partial diff...Alexander Decker
 
Intro probability 3
Intro probability 3Intro probability 3
Intro probability 3Phong Vo
 
L. Jonke - A Twisted Look on Kappa-Minkowski: U(1) Gauge Theory
L. Jonke - A Twisted Look on Kappa-Minkowski: U(1) Gauge TheoryL. Jonke - A Twisted Look on Kappa-Minkowski: U(1) Gauge Theory
L. Jonke - A Twisted Look on Kappa-Minkowski: U(1) Gauge TheorySEENET-MTP
 
Quantum modes - Ion Cotaescu
Quantum modes - Ion CotaescuQuantum modes - Ion Cotaescu
Quantum modes - Ion CotaescuSEENET-MTP
 
Exponentials integrals
Exponentials integralsExponentials integrals
Exponentials integralsTarun Gehlot
 
Change of variables in double integrals
Change of variables in double integralsChange of variables in double integrals
Change of variables in double integralsTarun Gehlot
 
Change of variables in double integrals
Change of variables in double integralsChange of variables in double integrals
Change of variables in double integralsTarun Gehlot
 
CHAIN RULE AND IMPLICIT FUNCTION
CHAIN RULE AND IMPLICIT FUNCTIONCHAIN RULE AND IMPLICIT FUNCTION
CHAIN RULE AND IMPLICIT FUNCTIONNikhil Pandit
 
A new approach to constants of the motion and the helmholtz conditions
A new approach to constants of the motion and the helmholtz conditionsA new approach to constants of the motion and the helmholtz conditions
A new approach to constants of the motion and the helmholtz conditionsAlexander Decker
 
Andrei rusu-2013-amaa-workshop
Andrei rusu-2013-amaa-workshopAndrei rusu-2013-amaa-workshop
Andrei rusu-2013-amaa-workshopAndries Rusu
 
Bernheim calculusfinal
Bernheim calculusfinalBernheim calculusfinal
Bernheim calculusfinalrahulrasa
 
Reflect tsukuba524
Reflect tsukuba524Reflect tsukuba524
Reflect tsukuba524kazuhase2011
 
The multilayer perceptron
The multilayer perceptronThe multilayer perceptron
The multilayer perceptronESCOM
 
Cunningham slides-ch2
Cunningham slides-ch2Cunningham slides-ch2
Cunningham slides-ch2cunningjames
 

Similar to tensor-decomposition (20)

Cs229 cvxopt
Cs229 cvxoptCs229 cvxopt
Cs229 cvxopt
 
Holographic Cotton Tensor
Holographic Cotton TensorHolographic Cotton Tensor
Holographic Cotton Tensor
 
11.solution of linear and nonlinear partial differential equations using mixt...
11.solution of linear and nonlinear partial differential equations using mixt...11.solution of linear and nonlinear partial differential equations using mixt...
11.solution of linear and nonlinear partial differential equations using mixt...
 
Solution of linear and nonlinear partial differential equations using mixture...
Solution of linear and nonlinear partial differential equations using mixture...Solution of linear and nonlinear partial differential equations using mixture...
Solution of linear and nonlinear partial differential equations using mixture...
 
Lattices and codes
Lattices and codesLattices and codes
Lattices and codes
 
11.homotopy perturbation and elzaki transform for solving nonlinear partial d...
11.homotopy perturbation and elzaki transform for solving nonlinear partial d...11.homotopy perturbation and elzaki transform for solving nonlinear partial d...
11.homotopy perturbation and elzaki transform for solving nonlinear partial d...
 
Homotopy perturbation and elzaki transform for solving nonlinear partial diff...
Homotopy perturbation and elzaki transform for solving nonlinear partial diff...Homotopy perturbation and elzaki transform for solving nonlinear partial diff...
Homotopy perturbation and elzaki transform for solving nonlinear partial diff...
 
Intro probability 3
Intro probability 3Intro probability 3
Intro probability 3
 
L. Jonke - A Twisted Look on Kappa-Minkowski: U(1) Gauge Theory
L. Jonke - A Twisted Look on Kappa-Minkowski: U(1) Gauge TheoryL. Jonke - A Twisted Look on Kappa-Minkowski: U(1) Gauge Theory
L. Jonke - A Twisted Look on Kappa-Minkowski: U(1) Gauge Theory
 
Quantum modes - Ion Cotaescu
Quantum modes - Ion CotaescuQuantum modes - Ion Cotaescu
Quantum modes - Ion Cotaescu
 
Exponentials integrals
Exponentials integralsExponentials integrals
Exponentials integrals
 
Change of variables in double integrals
Change of variables in double integralsChange of variables in double integrals
Change of variables in double integrals
 
Change of variables in double integrals
Change of variables in double integralsChange of variables in double integrals
Change of variables in double integrals
 
CHAIN RULE AND IMPLICIT FUNCTION
CHAIN RULE AND IMPLICIT FUNCTIONCHAIN RULE AND IMPLICIT FUNCTION
CHAIN RULE AND IMPLICIT FUNCTION
 
A new approach to constants of the motion and the helmholtz conditions
A new approach to constants of the motion and the helmholtz conditionsA new approach to constants of the motion and the helmholtz conditions
A new approach to constants of the motion and the helmholtz conditions
 
Andrei rusu-2013-amaa-workshop
Andrei rusu-2013-amaa-workshopAndrei rusu-2013-amaa-workshop
Andrei rusu-2013-amaa-workshop
 
Bernheim calculusfinal
Bernheim calculusfinalBernheim calculusfinal
Bernheim calculusfinal
 
Reflect tsukuba524
Reflect tsukuba524Reflect tsukuba524
Reflect tsukuba524
 
The multilayer perceptron
The multilayer perceptronThe multilayer perceptron
The multilayer perceptron
 
Cunningham slides-ch2
Cunningham slides-ch2Cunningham slides-ch2
Cunningham slides-ch2
 

More from Kenta Oono

Minimax statistical learning with Wasserstein distances (NeurIPS2018 Reading ...
Minimax statistical learning with Wasserstein distances (NeurIPS2018 Reading ...Minimax statistical learning with Wasserstein distances (NeurIPS2018 Reading ...
Minimax statistical learning with Wasserstein distances (NeurIPS2018 Reading ...Kenta Oono
 
Deep learning for molecules, introduction to chainer chemistry
Deep learning for molecules, introduction to chainer chemistryDeep learning for molecules, introduction to chainer chemistry
Deep learning for molecules, introduction to chainer chemistryKenta Oono
 
Overview of Machine Learning for Molecules and Materials Workshop @ NIPS2017
Overview of Machine Learning for Molecules and Materials Workshop @ NIPS2017Overview of Machine Learning for Molecules and Materials Workshop @ NIPS2017
Overview of Machine Learning for Molecules and Materials Workshop @ NIPS2017Kenta Oono
 
Comparison of deep learning frameworks from a viewpoint of double backpropaga...
Comparison of deep learning frameworks from a viewpoint of double backpropaga...Comparison of deep learning frameworks from a viewpoint of double backpropaga...
Comparison of deep learning frameworks from a viewpoint of double backpropaga...Kenta Oono
 
深層学習フレームワーク概要とChainerの事例紹介
深層学習フレームワーク概要とChainerの事例紹介深層学習フレームワーク概要とChainerの事例紹介
深層学習フレームワーク概要とChainerの事例紹介Kenta Oono
 
20170422 数学カフェ Part2
20170422 数学カフェ Part220170422 数学カフェ Part2
20170422 数学カフェ Part2Kenta Oono
 
20170422 数学カフェ Part1
20170422 数学カフェ Part120170422 数学カフェ Part1
20170422 数学カフェ Part1Kenta Oono
 
情報幾何学の基礎、第7章発表ノート
情報幾何学の基礎、第7章発表ノート情報幾何学の基礎、第7章発表ノート
情報幾何学の基礎、第7章発表ノートKenta Oono
 
GTC Japan 2016 Chainer feature introduction
GTC Japan 2016 Chainer feature introductionGTC Japan 2016 Chainer feature introduction
GTC Japan 2016 Chainer feature introductionKenta Oono
 
On the benchmark of Chainer
On the benchmark of ChainerOn the benchmark of Chainer
On the benchmark of ChainerKenta Oono
 
Tokyo Webmining Talk1
Tokyo Webmining Talk1Tokyo Webmining Talk1
Tokyo Webmining Talk1Kenta Oono
 
VAE-type Deep Generative Models
VAE-type Deep Generative ModelsVAE-type Deep Generative Models
VAE-type Deep Generative ModelsKenta Oono
 
Common Design of Deep Learning Frameworks
Common Design of Deep Learning FrameworksCommon Design of Deep Learning Frameworks
Common Design of Deep Learning FrameworksKenta Oono
 
Introduction to Chainer and CuPy
Introduction to Chainer and CuPyIntroduction to Chainer and CuPy
Introduction to Chainer and CuPyKenta Oono
 
Stochastic Gradient MCMC
Stochastic Gradient MCMCStochastic Gradient MCMC
Stochastic Gradient MCMCKenta Oono
 
2015年9月18日 (GTC Japan 2015) 深層学習フレームワークChainerの導入と化合物活性予測への応用
2015年9月18日 (GTC Japan 2015) 深層学習フレームワークChainerの導入と化合物活性予測への応用 2015年9月18日 (GTC Japan 2015) 深層学習フレームワークChainerの導入と化合物活性予測への応用
2015年9月18日 (GTC Japan 2015) 深層学習フレームワークChainerの導入と化合物活性予測への応用 Kenta Oono
 
Introduction to Chainer (LL Ring Recursive)
Introduction to Chainer (LL Ring Recursive)Introduction to Chainer (LL Ring Recursive)
Introduction to Chainer (LL Ring Recursive)Kenta Oono
 
日本神経回路学会セミナー「DeepLearningを使ってみよう!」資料
日本神経回路学会セミナー「DeepLearningを使ってみよう!」資料日本神経回路学会セミナー「DeepLearningを使ってみよう!」資料
日本神経回路学会セミナー「DeepLearningを使ってみよう!」資料Kenta Oono
 
提供AMIについて
提供AMIについて提供AMIについて
提供AMIについてKenta Oono
 
Chainerインストール
ChainerインストールChainerインストール
ChainerインストールKenta Oono
 

More from Kenta Oono (20)

Minimax statistical learning with Wasserstein distances (NeurIPS2018 Reading ...
Minimax statistical learning with Wasserstein distances (NeurIPS2018 Reading ...Minimax statistical learning with Wasserstein distances (NeurIPS2018 Reading ...
Minimax statistical learning with Wasserstein distances (NeurIPS2018 Reading ...
 
Deep learning for molecules, introduction to chainer chemistry
Deep learning for molecules, introduction to chainer chemistryDeep learning for molecules, introduction to chainer chemistry
Deep learning for molecules, introduction to chainer chemistry
 
Overview of Machine Learning for Molecules and Materials Workshop @ NIPS2017
Overview of Machine Learning for Molecules and Materials Workshop @ NIPS2017Overview of Machine Learning for Molecules and Materials Workshop @ NIPS2017
Overview of Machine Learning for Molecules and Materials Workshop @ NIPS2017
 
Comparison of deep learning frameworks from a viewpoint of double backpropaga...
Comparison of deep learning frameworks from a viewpoint of double backpropaga...Comparison of deep learning frameworks from a viewpoint of double backpropaga...
Comparison of deep learning frameworks from a viewpoint of double backpropaga...
 
深層学習フレームワーク概要とChainerの事例紹介
深層学習フレームワーク概要とChainerの事例紹介深層学習フレームワーク概要とChainerの事例紹介
深層学習フレームワーク概要とChainerの事例紹介
 
20170422 数学カフェ Part2
20170422 数学カフェ Part220170422 数学カフェ Part2
20170422 数学カフェ Part2
 
20170422 数学カフェ Part1
20170422 数学カフェ Part120170422 数学カフェ Part1
20170422 数学カフェ Part1
 
情報幾何学の基礎、第7章発表ノート
情報幾何学の基礎、第7章発表ノート情報幾何学の基礎、第7章発表ノート
情報幾何学の基礎、第7章発表ノート
 
GTC Japan 2016 Chainer feature introduction
GTC Japan 2016 Chainer feature introductionGTC Japan 2016 Chainer feature introduction
GTC Japan 2016 Chainer feature introduction
 
On the benchmark of Chainer
On the benchmark of ChainerOn the benchmark of Chainer
On the benchmark of Chainer
 
Tokyo Webmining Talk1
Tokyo Webmining Talk1Tokyo Webmining Talk1
Tokyo Webmining Talk1
 
VAE-type Deep Generative Models
VAE-type Deep Generative ModelsVAE-type Deep Generative Models
VAE-type Deep Generative Models
 
Common Design of Deep Learning Frameworks
Common Design of Deep Learning FrameworksCommon Design of Deep Learning Frameworks
Common Design of Deep Learning Frameworks
 
Introduction to Chainer and CuPy
Introduction to Chainer and CuPyIntroduction to Chainer and CuPy
Introduction to Chainer and CuPy
 
Stochastic Gradient MCMC
Stochastic Gradient MCMCStochastic Gradient MCMC
Stochastic Gradient MCMC
 
2015年9月18日 (GTC Japan 2015) 深層学習フレームワークChainerの導入と化合物活性予測への応用
2015年9月18日 (GTC Japan 2015) 深層学習フレームワークChainerの導入と化合物活性予測への応用 2015年9月18日 (GTC Japan 2015) 深層学習フレームワークChainerの導入と化合物活性予測への応用
2015年9月18日 (GTC Japan 2015) 深層学習フレームワークChainerの導入と化合物活性予測への応用
 
Introduction to Chainer (LL Ring Recursive)
Introduction to Chainer (LL Ring Recursive)Introduction to Chainer (LL Ring Recursive)
Introduction to Chainer (LL Ring Recursive)
 
日本神経回路学会セミナー「DeepLearningを使ってみよう!」資料
日本神経回路学会セミナー「DeepLearningを使ってみよう!」資料日本神経回路学会セミナー「DeepLearningを使ってみよう!」資料
日本神経回路学会セミナー「DeepLearningを使ってみよう!」資料
 
提供AMIについて
提供AMIについて提供AMIについて
提供AMIについて
 
Chainerインストール
ChainerインストールChainerインストール
Chainerインストール
 

Recently uploaded

CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGSujit Pal
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 

Recently uploaded (20)

CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAG
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 

tensor-decomposition

  • 1. . Introduction to Tensors PFI Seminar Kenta OONO 2012/07/11 Kenta OONO Introduction to Tensors
  • 2. Self Introduction • Kenta OONO (Twitter:@delta2323 ) • PSS(Professional and Support Service) Division • Jubatus Project • msgpack-idl, generation of clients • Survey and Prototyping Team • 2010 PFI Summer Intern → 2011 Engineer Kenta OONO Introduction to Tensors
  • 3. Agenda • What is Tensor? • Decomposition of Matrices and Tensors • Symmetry Parametrized by Young Diagram Kenta OONO Introduction to Tensors
  • 4. Agenda • What is Tensor? • Decomposition of Matrices and Tensors • Symmetry Parametrized by Young Diagram Kenta OONO Introduction to Tensors
  • 5. Vector as a Special Case of Tensor Consider a n dimensional vector (Below is the case n = 3)   7   v = 4 (1) 9 When we write this vector as v = (vi ), we have v1 = 7, v2 = 4, and v3 = 9. As v has One index, this vector is regarded as Rank 1 Tensor. Note • We use 1-index notation, not 0-index. • We somtimes use rank in a different meaning, (also in the context of tensors). Kenta OONO Introduction to Tensors
  • 6. Matrix as a Special Case of Tensor Consider a n × n Matrix (Below is the case n = 3).   7 10 3   A = 4 −1 −2 (2) 9 4 5 We write this matrix as A = (aij )1≤i,j≤3 . • e.g. a11 = 7, a23 = −2, a32 = 4. A has Two indices (namely i and j) and these indeices run through 1 to 3. A can be regarded as Rank 2 Tensor. → What happens if the number of indices are not just 1 or 2 ? Kenta OONO Introduction to Tensors
  • 7. An Example of Rank 3 Tensor Consider the set of real numbers X = (xijk )1≤i,j,k≤3 . As i, j, k run throuth 1 to 3 independently, this set contains 3 × 3 × 3 = 27 elements. If we fix the value of i, we can write this set in a matrix form.       7 10 3 10 2 1 5 −10 18       x1∗∗ = 4 −1 −2 , x2∗∗ =  3 −1 0 , x3∗∗ = −4 1 −2  9 4 5 8 1 4 9 −4 −10 (3) Note • In some field, we concatenate these matrix and name it X(1) • This is called Flattening or Matricing of X . Kenta OONO Introduction to Tensors
  • 8. Is This a Multidimensional Array? We can realize a tensor as a multiple dimensional array in most programming languages. PseudoCode(C like): int[3][3][3] x; x[1][1][2] = -1; Kenta OONO Introduction to Tensors
  • 9. Inner Product of Tensors Let X = (xijk ), Y = (yijk ) be two rank 3 tensors and G = (g ij ) be a symmetric (i.e. g ij = g ji ) and positive definite matrix. We can introduce an inner product of X and Y by: ∑ n < X , Y >= g ai g bj g ck xabc yijk (4) a,b,c,i,j,k=1 Note: • We can similarly define an inner product of two arbitrary rank tensor • X and Y must have same rank. Kenta OONO Introduction to Tensors
  • 10. An Example of Inner Product (Vector) Let’s consider the case of rank 1 tensor ( = vector). We can write X = (xi ), Y = (yi ). And we set G = (g ij ) an identity matrix:   1 ··· 0 . . G = . 1 . . . (5) 0 ··· 1 In this case, this definition of inner product reduce to ordinal inner product of two vectors, namely, ∑ ∑ < X , Y >= g ai xa yi = xi yi (6) a,i i Kenta OONO Introduction to Tensors
  • 11. An Example of Tensor Suppose we have a (smooth) function f : R3 → R. We can derive tensors of arbitrary rank from this function. Taking Gradient, we obtain rank 1 tensor. (Please replace (1, 2, 3) with (x , y , z) and vice versa.  ∂f   ∂x  ∇f = (∇i f ) =  ∂y  ∂f (7) ∂f ∂z Similarly, Hessian is an example of rank 2 tensor.   ∂2f ∂2f ∂2f  ∂x2∂x ∂x ∂y ∂x ∂z  H(f ) = (Hij (f )) =  ∂ f ∂2f ∂2f  (8)  ∂y ∂x ∂y ∂y ∂y ∂z  ∂2f ∂2f ∂2f ∂z∂x ∂z∂y ∂z∂z Kenta OONO Introduction to Tensors
  • 12. Supersymmetry Property By taking derivative, we can create an arbitrary rank of tensors. These tensors are (Super)Symmetric in the sense that interchange of any two indices remains the tensor identical. For example, fx y z = fx zy = fy x z = fy zx = fzx y = fzy x . (9) Note: • Afterward, we write this symmetry as . Kenta OONO Introduction to Tensors
  • 13. Agenda • What is Tensor? • Decomposition of Matrices and Tensors • Symmetry Parametrized by Young Diagram Kenta OONO Introduction to Tensors
  • 14. Decompose! It is fundamental in mathematics to decompose some object into simpler, easier-to-handle objects. ∑ √ • Fourier Expansion : f = an exp( −1nx ) n∈Z ∑ • Legendre Polynomial : P = ak Pk k 1 dk 2 • where Pk (x ) = (x − 1)k k!2k dx k • Jordan-H¨lder : e = G0 ◁ G1 ◁ G2 ◁ · · · ◁ Gn−1 ◁ Gn = G o Kenta OONO Introduction to Tensors
  • 15. Decomposition of Matrix There are many theories regarding the decomposition (or, factorization) of matrices. • SVD • LU • QR • Cholesky • Jordan • Diagonalization ... Although we have theories of factorization of Tensors (e.g. Tucker Decomposition, higher-order SVD etc.) We do NOT go this direction. Instead, we consider decomposition of matrix into Summation of matrix. Kenta OONO Introduction to Tensors
  • 16. Example: Projection to Axis Kenta OONO Introduction to Tensors
  • 17. Example of Decomposition of Matrix We can decompose matrix into Symmetric part and Antisymmetric part. Example:       7 10 3 7 7 6 0 3 −3       4 −1 −2 = 7 −1 1 + −3 0 −3 9 4 5 6 1 5 3 3 0 Symmetric Part Antisymmetric Part A Asym Aanti (10) Kenta OONO Introduction to Tensors
  • 18. How to Calculate Sym. and Antisym. Part We can calculate the symmetic and antisymmetric part by simple calculation (Exercise!).     7 10 3 7 4 9 1     Asym = 4 −1 −2 + 10 −1 4 2 9 4 5 3 −2 5 (11) sym 1 aij = (aij + aji ) 2     7 10 3 7 4 9 1     Aanti = 4 −1 −2 − 10 −1 4 2 9 4 5 3 −2 5 (12) 1 anti aij = (aij − aji ) 2 Kenta OONO Introduction to Tensors
  • 19. Picture of Projection to Sym. and Antisym. Part Kenta OONO Introduction to Tensors
  • 20. Notation Using Young Diagram We can symbolize symmetry and antisymmetry with Young Diagram       7 10 3 7 7 6 0 3 −3       4 −1 −2 = 7 −1 1 + −3 0 −3 9 4 5 6 1 5 3 3 0 (13) A Asym Aanti The number of boxes indicates rank of the tensor (one box for vector and two boxes for matrix). Kenta OONO Introduction to Tensors
  • 21. Agenda • What is Tensor? • Decomposition of Matrices and Tensors • Symmetry Parametrized by Young Diagram Note: • From now on, we concentrate on Rank 3 Tensors (i.e. k = 3). • And we assume that n = 3, that is, indices run from 1 to 3. Kenta OONO Introduction to Tensors
  • 22. Symmetrizing Operator We consider the transformation of tensor: T : X = (xijk ) → X ′ = (xijk ), ′ (14) ′ where xijk = 1 (xijk + xikj + xjik + xjki + xkij + xkji ) 6 (15) = x(ijk) . Kenta OONO Introduction to Tensors
  • 23. Young Diagram and Symmetry of Tensor (Sym. Case) Let X = (x123 ) be a tensor of rank 3, we call X Has a Symmetry of , if interchange of any of two indices doesn’t change each entry of X . Example: • If X has a symmetry of , then x112 = x121 = x211 (16) x123 = x132 = x213 = x231 = x312 = x321 etc... • Symmetric matrices have a symmetry of Kenta OONO Introduction to Tensors
  • 24. Property of T • For all X , T (X ) has symmetry of . • If X has symmetry of , then T (X ) = X . • For all X , T (T (X )) = T (X ). Kenta OONO Introduction to Tensors
  • 25. Antisymmetrizing Operator Next, we consider Antisymmetrization of tensors: T : X = (xijk ) → X ′ = (xijk ), ′ (17) ′ where xijk = 1 (xijk − xikj − xjik + xjki + xkij − xkji ) 6 (18) = x[ijk] . Kenta OONO Introduction to Tensors
  • 26. Young Diagram and Symmetry of Tensor (Antisym. Case) Let X = (x123 ) be a tensor of rank k, we call X has a symmetry of if interchange of any of two indices change only the sign of each entry of X . Example. • If X has a symmetry of , then • x123 = −x132 = −x213 = x231 = x312 = −x321 • x112 = 0, because x112 must be equal to −x112 . • Antisymmetric matrix has a symmetry of Kenta OONO Introduction to Tensors
  • 27. Orthogonality of Projection T and T are orthogonal in the sense T ◦ T (X ) = T ◦ T (X ) = 0. (19) Kenta OONO Introduction to Tensors
  • 28. Counting Dimension How many dimension do the vector space consisting of tensors ... • with symmetry have ? • with symmetry have ? Kenta OONO Introduction to Tensors
  • 29. Dimensions of each subvector spaces. If n = 3 (that is, i, j and k runs through 1 to 3), then each dimension is as follows. But dimension of total space is 3 × 3 × 3 = 27. This is larger than 1 + 10 = 11. Kenta OONO Introduction to Tensors
  • 30. Young Diagram Young Diagram is an arrangent of boxes of the same size so that: • two adjacent boxes share one of their side. • the number of boxes in each row is non-increasing. • the number of boxes in each column is non-increasing. Here is an example of Young Diagram with 10 boxes. (20) English Notation French Notation Kenta OONO Introduction to Tensors
  • 31. Decomposition of Tensor (of Rank 3) We have three types of Young Diagram which have three boxes, namely, (21) , , and Symmetric Antisymmetric ??? → What symmetry does represent? Kenta OONO Introduction to Tensors
  • 32. Coefficients of Symmetrizers We list coneffients of each operator in a tabular form. Coefficient of xijk ijk ikj jik jki kij kji 1/6 1/6 1/6 1/6 1/6 1/6 1/6 -1/6 -1/6 1/6 1/6 -1/6 Sum 1 Kenta OONO Introduction to Tensors
  • 33. Coefficients of Symmetrizers Coefficient of xijk ijk ikj jik jki kij kji 1/6 1/6 1/6 1/6 1/6 1/6 1/6 -1/6 -1/6 1/6 1/6 -1/6 4/6 -2/6 -2/6 Sum 1 Kenta OONO Introduction to Tensors
  • 34. Symmetrizer T We consider the transformation of tensor: T : X = (xijk ) → X ′ = (xijk ), ′ (22) ′ where xijk = 1 (2xijk − xjki − xkij ). 3 Kenta OONO Introduction to Tensors
  • 35. Property of T • For all X , T (X ) has symmetry of . • If X has symmetry of , then T (X ) = X . ( ) • For all X , T T (X ) = T (X ). Kenta OONO Introduction to Tensors
  • 36. Tensors with Symmetry of Let X = (xijk ) be a tensor of rank 3. We say X Has a Symmetry of , if 1 xijk = (2xijk − xjki − xkij ) (23) 3 for all 1 ≤ i, j, k ≤ n. Kenta OONO Introduction to Tensors
  • 37. Where This Equation ”Symmetric” ? Remember that X has a symmetry of , if 1 xijk = (2xijk − xjki − xkij ) (24) 3 for all 1 ≤ i, j, k ≤ n. This equation can be transormed as follows : 1 (2xijk − xjki − xkij ) xijk = 3 (25) ⇔ 3xijk = 2xijk − xjki − xkij ⇔ xijk + xjki + xkij = 0 Kenta OONO Introduction to Tensors
  • 38. Projection to Each Symmetrized Tensors Kenta OONO Introduction to Tensors
  • 39. Decomposition of Higher Rank Tensors Higher rank tensors are also decompose into symmetric tensors parametrized by Young Diagram. ⊕ ⊕ Rn×n×n×n×n = ⊕ ⊕ ⊕ ⊕ (26) Kenta OONO Introduction to Tensors
  • 40. Summary • Tensors as a Generalization of Vectors and Matrices. • Decomposition of Matrices and Tensors • Symmetry of Tensors Parametrized by Young Diagrams. Kenta OONO Introduction to Tensors
  • 41. References • T G. Kolda and B W. Bader, Tensor Decompositions and Applications • 2009, SIAM Review Vol. 51, No 3, pp 455-500 • D S. Watkins, Fundamentals of Matrix Computations 3rd. ed. • 2010, A Wiley Series of Texts, Monographs and Tracts • W. Fulton and J Harris, Representation Theory • 1991, Graduate Texts in Mathematics Readins in Mathematics. • And Google ”Representation Theory”, ”Symmetric Group”, ”Young Diagram” and so on. Kenta OONO Introduction to Tensors