nway320

所属分类:人工智能/神经网络/深度学习
开发工具:matlab
文件大小:5389KB
下载次数:182
上传日期:2012-12-09 11:48:45
上 传 者516676419
说明:  张量分解程序,支持平行因子分解模型和TUCKER分解模型
(Tensor decomposition process, and support for parallel factorization model and TUCKER decomposition model)

文件列表:
testset1.mat (1394760, 2007-05-09)
testset2.mat (93192, 2007-05-09)
tuck.mat (432, 2007-05-09)
tuckdemo.m (4442, 2007-05-09)
tucker.m (36263, 2011-05-02)
tucker2.m (21793, 2007-07-03)
tucktest.m (4885, 2007-05-09)
two2n.m (2298, 2007-05-09)
ulsr.m (3040, 2007-05-09)
unimodal.m (1938, 2007-05-09)
unimodalcrossproducts.m (5308, 2007-05-09)
brod.mat (1616, 2007-05-09)
calcore.m (3718, 2007-05-09)
ckron.m (1348, 2007-05-15)
claus.mat (492152, 2007-05-09)
cmatrep.m (667, 2007-05-09)
complpol.m (154, 2007-05-09)
contents.m (4580, 2007-07-15)
corcond.m (7557, 2007-05-09)
coredian.m (1405, 2011-05-20)
coreswdn.m (1857, 2011-05-20)
corevarn.m (1294, 2007-05-09)
dataset1.mat (1417392, 2007-05-09)
dataset1res.mat (1403840, 2007-05-09)
dataset2res.mat (1564496, 2007-05-09)
dataset3res.mat (1565536, 2007-05-09)
def.mat (640, 2007-05-09)
demos.m (1310, 2007-05-09)
derdia3.m (2770, 2007-05-09)
derswd3.m (3069, 2007-05-09)
dervar3.m (4067, 2007-05-09)
dorrit.mat (2870128, 2007-05-09)
dorrit.pdf (624167, 2007-05-09)
dtld.m (3538, 2007-08-07)
eemtimize.m (6068, 2007-05-29)
explcore.m (2298, 2007-05-09)
fac2let.m (1753, 2007-05-09)
fastnnls.m (2684, 2007-05-09)
fnipals.m (7124, 2007-05-09)
fnnls.m (2920, 2007-05-09)
... ...

IMPORTANT NOTES ON THE N-WAY TOOLBOX ver. 3.20 There are some important details that are necessary to know in order to be able to use the N-way toolbox properly. These are given here - please read carefully before using the toolbox. CONDITIONS Copyright (C) 1995-2011 Rasmus Bro & Claus Andersson Copenhagen University, DK-1958 Frederiksberg, Denmark, rb@life.ku.dk This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. Preferably refer to C. A. Andersson and R. Bro. The N-way Toolbox for MATLAB. Chemom.Intell.Lab.Syst. 52 (1):1-4, 2000. or alternatively The N-way Toolbox for MATLAB ver. 3.20, http://www.models.life.ku.dk/ R. Bro & C. A. Andersson Faculty of Life Sciences Copenhagen University DK-1958 Frederiksberg Denmark WHERE DOES THE TOOLBOX WORK? The toolbox has been tested on matlab 7.3 in Windows XP/Vista/7 only. The toolbox uses features that are not compatible with matlab 4.x, so if you have matlab 4.x you should use version 1.04 of this toolbox instead. SETTING UP THE TOOLBOX In order to install the toolbox, simply (extract and) copy the files to a directory (e.g. NWAY). After copying all files, go to the 'update' homepage in order to see if newer versions of individual files are available. Copy these files indiviually overwriting the old files. Make sure that the updates are copied after the main files. Make sure that the path ../nway is included in MATLAB's path. If you have e.g. the PLS_toolbox, some files are named identically. This may cause problems depending on which functions you use. If you want to use e.g. the parafac function from the N-way toolbox, you have to ensure that either the path to the N-way toolbox appears before the path to the PLS_toolbox or that you run matlab from the nway directory. In order to get help on what files are present in the toolbox type <> at the matlab command line (if nway is the name of the directory where you have the files. DATA INPUT Unlike, older matlab 4 compatible versions of this toolbox, the data are input directly as multi-way arrays. Hence, there is no need for the DimX used earlier for defining the size of the array. If you have a 10x8x100 array, X, that is held in a 10x(8*100) matrix, i.e. the old matrix format, you can convert to a three-way array by X = reshape(X,10,8,100); This is the format in which the data must be input to the functions. MODEL OUTPUT Also the output has changed in most cases since version 1. With the use of cell arrays, it is much easier to handle the output of a varying number of component matrices. Let the components of a three-way parafac model is held in a cell e.g. called Factors; e.g. arising from the call of a four-component model Factors = parafac(X,3); Then the first mode loadings are held in Factors{1}: A = Factors{1}; B = Factors{2}; C = Factors{3}; For a Tucker model such as [Factors,G]=tucker(X,[3 3 2]); the components are found similarly and G will be a 3x3x2 array. For a tri-PLS2 model (three-way X, two-way Y) two component sets are defined Xfactors - T=Xfactors{1}, Wj=Xfactors{2}, Wk = Xfactors{3} Yfactors - U=Yfactors{1}, Q=Yfactors{2} Instead of using the cell notation, it is possible to use the M-file FAC2LET (factors to letters) to extract components; e.g. [A,B,C] = fac2let(Factors); MISSING DATA For all algorithms the same flag is used for missing elements, namely NaN. If you have a data set, X, where missing elements are, e.g., designated by the number -9999, you can easily modify the data as X(find(X==-9999))=NaN*find(X==-9999); SUPPORT We are VERY interested in and dependent on feedback from the users. If you have problems running the toolbox please supply screendumps as well as version number of the toolbox, MATLAB, and operating system before contacting us. We will do the utmost to help overcoming the problems. In the rare event that the support required is very time-consuming we will have to charge for this service. The authors may be contacted by email: claus@andersson.dk (primarily Tucker and application/helper programs) rb@life.ku.dk (primarily PARAFAC/N-PLS)

近期下载者

相关文件


收藏者