PARAFAC2 for semiconductor etch analysis

Component models have been used to detect errors in semiconductor etch processes [WGB+99], where the datasets have three natural modes: sample, measurement and time. However, the time required for measuring different samples may vary, which leads to a stack of matrices, one for each sample. This makes PARAFAC2 a natural choice [WGM01], as it naturally handles time profiles of different lengths.

In this example, we repeat some of the analysis from [WGM01] and show how total variation (TV) regularization can reduce noise in the components. TV regularization is well suited for reducing noise without overly smoothing sharp transitions [ROF92].

Setup

import matplotlib.pyplot as plt
import numpy as np
from tensorly.decomposition import parafac2

from matcouply.data import get_semiconductor_etch_machine_data
from matcouply.decomposition import parafac2_aoadmm

Data loading and preprocessing

train_data, train_metadata, test_data, test_metadata = get_semiconductor_etch_machine_data()
Loading semiconductor etch data from Wise et al. (1999) - J. Chemom. 13(3‐4), pp.379-396.
The data is available at: http://eigenvector.com/data/Etch/

  0%|          | 0/3 [00:00<?, ?it/s]
 33%|███▎      | 1/3 [00:00<00:01,  1.45it/s]
 67%|██████▋   | 2/3 [00:01<00:00,  1.40it/s]
100%|██████████| 3/3 [00:02<00:00,  1.44it/s]
100%|██████████| 3/3 [00:02<00:00,  1.43it/s]

The dataset contains three experiments (experiments 29, 31 and 33). In [WGM01], the authors highlight the components obtained for experiment 29, so let’s look at the same experiment.

dataset_29 = [key for key in train_data if key.isnumeric() and key.startswith("29")]
matrices = [train_data[key].values for key in dataset_29]

Before analysing, we apply the same preprocessing steps as in [WGM01] — centering and scaling each matrix based on the global mean and standard deviation.

stacked = np.concatenate(matrices, axis=0)
mean = stacked.mean(0, keepdims=True)
std = stacked.std(0, keepdims=True)
standardised = [(m - mean) / std for m in matrices]

Fit a PARAFAC2 model

Let’s begin by fitting an unregularized PARAFAC2 model using the alternating least squares algorithm [KTBB99] with the implementation in TensorLy [KPAP19]. This algorithm is comparable with the one used in [WGM01].

We also impose non-negativity on the \(\mathbf{A}\)-matrix to handle the special sign indeterminacy of PARAFAC2 [Har72]. The \(\mathbf{A}\)-matrix elements in [WGM01] are also non-negative, so this shouldn’t change the components.

Similarly as [WGM01], we extract two components.

pf2, rec_err = parafac2(
    standardised, 2, n_iter_max=10_000, return_errors=True, nn_modes=[0], random_state=0, tol=1e-9, verbose=True
)
Starting iteration 0
reconstruction error=0.4047390516835262
iteration 1, reconstruction error: 0.32389239397720115, decrease = 0.08084665770632504
iteration 2, reconstruction error: 0.3237816798118356, decrease = 0.00011071416536556633
iteration 3, reconstruction error: 0.3237804829845924, decrease = 1.196827243199472e-06
iteration 4, reconstruction error: 0.3237792815795732, decrease = 1.2014050191910819e-06
PARAFAC2 reconstruction error=0.9013060648187836
Starting iteration 1
reconstruction error=0.274971280703725
iteration 1, reconstruction error: 0.27441828730642615, decrease = 0.0005529933972988621
iteration 2, reconstruction error: 0.2744156299017013, decrease = 2.657404724826229e-06
iteration 3, reconstruction error: 0.27441316265724447, decrease = 2.4672444568496488e-06
iteration 4, reconstruction error: 0.2744106736738322, decrease = 2.4889834122632237e-06
PARAFAC2 reconstruction error=0.8722949410661656, variation=0.02901112375261805.
Starting iteration 2
reconstruction error=0.2715188240707739
iteration 1, reconstruction error: 0.2712319206773192, decrease = 0.00028690339345466276
iteration 2, reconstruction error: 0.27123024205986596, decrease = 1.678617453260145e-06
iteration 3, reconstruction error: 0.2712286540042355, decrease = 1.5880556304415094e-06
iteration 4, reconstruction error: 0.2712270527207251, decrease = 1.6012835103995648e-06
PARAFAC2 reconstruction error=0.86723920841064, variation=0.005055732655525613.
Starting iteration 3
reconstruction error=0.26636216151884984
iteration 1, reconstruction error: 0.2659178726439867, decrease = 0.0004442888748631413
iteration 2, reconstruction error: 0.26591753047510985, decrease = 3.4216887684346275e-07
iteration 3, reconstruction error: 0.2659173747687443, decrease = 1.5570636557882267e-07
iteration 4, reconstruction error: 0.2659172186863327, decrease = 1.560824115509618e-07
PARAFAC2 reconstruction error=0.863150987797254, variation=0.004088220613385984.
Starting iteration 4
reconstruction error=0.25491297457487866
iteration 1, reconstruction error: 0.25395384489651074, decrease = 0.0009591296783679204
iteration 2, reconstruction error: 0.25395186494013033, decrease = 1.9799563804046016e-06
iteration 3, reconstruction error: 0.25395023036112907, decrease = 1.6345790012639583e-06
iteration 4, reconstruction error: 0.2539485902370329, decrease = 1.6401240961472219e-06
PARAFAC2 reconstruction error=0.8543086395581765, variation=0.00884234823907748.
Starting iteration 5
reconstruction error=0.23678281132547846
iteration 1, reconstruction error: 0.23563260533163907, decrease = 0.0011502059938393872
iteration 2, reconstruction error: 0.23562877813575442, decrease = 3.827195884653634e-06
iteration 3, reconstruction error: 0.23562525407392967, decrease = 3.5240618247445177e-06
iteration 4, reconstruction error: 0.2356217442687439, decrease = 3.5098051857640478e-06
PARAFAC2 reconstruction error=0.8382544247467911, variation=0.01605421481138536.
Starting iteration 6
reconstruction error=0.2210250660987922
iteration 1, reconstruction error: 0.2204993498137152, decrease = 0.0005257162850769992
iteration 2, reconstruction error: 0.22049652587770074, decrease = 2.8239360144455272e-06
iteration 3, reconstruction error: 0.2204938068339131, decrease = 2.719043787652309e-06
iteration 4, reconstruction error: 0.22049110728665824, decrease = 2.6995472548474453e-06
PARAFAC2 reconstruction error=0.8254945275659602, variation=0.012759897180830926.
Starting iteration 7
reconstruction error=0.21371188222675758
iteration 1, reconstruction error: 0.2135671675551296, decrease = 0.0001447146716279657
iteration 2, reconstruction error: 0.2135651664185485, decrease = 2.0011365811090087e-06
iteration 3, reconstruction error: 0.21356319860822665, decrease = 1.9678103218567777e-06
iteration 4, reconstruction error: 0.21356124659327683, decrease = 1.95201494981867e-06
PARAFAC2 reconstruction error=0.8206723416900406, variation=0.004822185875919649.
Starting iteration 8
reconstruction error=0.21100139179105068
iteration 1, reconstruction error: 0.2109651602869257, decrease = 3.623150412498943e-05
iteration 2, reconstruction error: 0.2109635553176689, decrease = 1.6049692568020912e-06
iteration 3, reconstruction error: 0.21096196762486727, decrease = 1.5876928016189673e-06
iteration 4, reconstruction error: 0.21096039326212312, decrease = 1.574362744144464e-06
PARAFAC2 reconstruction error=0.8193618788842636, variation=0.0013104628057769574.
Starting iteration 9
reconstruction error=0.20992582696167547
iteration 1, reconstruction error: 0.2099160339450788, decrease = 9.793016596676418e-06
iteration 2, reconstruction error: 0.20991462443350356, decrease = 1.40951157523439e-06
iteration 3, reconstruction error: 0.20991322801375564, decrease = 1.3964197479177098e-06
iteration 4, reconstruction error: 0.20991184361038895, decrease = 1.38440336669432e-06
PARAFAC2 reconstruction error=0.8190337677007892, variation=0.00032811118347442214.
Starting iteration 10
reconstruction error=0.20944165894069058
iteration 1, reconstruction error: 0.2094382993042186, decrease = 3.3596364719945537e-06
iteration 2, reconstruction error: 0.20943700263936088, decrease = 1.2966648577084072e-06
iteration 3, reconstruction error: 0.20943571757696963, decrease = 1.2850623912485926e-06
iteration 4, reconstruction error: 0.20943444374268733, decrease = 1.2738342823059856e-06
PARAFAC2 reconstruction error=0.8189520332248738, variation=8.173447591541816e-05.
Starting iteration 11
reconstruction error=0.20920293020546435
iteration 1, reconstruction error: 0.20920119110855093, decrease = 1.7390969134223333e-06
iteration 2, reconstruction error: 0.2091999707813244, decrease = 1.2203272265198795e-06
iteration 3, reconstruction error: 0.20919876130957124, decrease = 1.2094717531663246e-06
iteration 4, reconstruction error: 0.20919756251555002, decrease = 1.1987940212176973e-06
PARAFAC2 reconstruction error=0.8189312562153285, variation=2.0777009545280833e-05.
Starting iteration 12
reconstruction error=0.2090787998126627
iteration 1, reconstruction error: 0.20907750184695906, decrease = 1.297965703639381e-06
iteration 2, reconstruction error: 0.20907634041620488, decrease = 1.161430754181847e-06
iteration 3, reconstruction error: 0.2090751893408983, decrease = 1.1510753065713253e-06
iteration 4, reconstruction error: 0.20907404850687278, decrease = 1.1408340255258942e-06
PARAFAC2 reconstruction error=0.8189256618017104, variation=5.594413618026373e-06.
Starting iteration 13
reconstruction error=0.20901194219691693
iteration 1, reconstruction error: 0.2090107897795679, decrease = 1.152417349020718e-06
iteration 2, reconstruction error: 0.20900967828061437, decrease = 1.111498953543233e-06
iteration 3, reconstruction error: 0.2090085767348404, decrease = 1.1015457739571577e-06
iteration 4, reconstruction error: 0.20900748505204197, decrease = 1.091682798437521e-06
PARAFAC2 reconstruction error=0.8189238889251945, variation=1.7728765159263915e-06.
Starting iteration 14
reconstruction error=0.20897463618648449
iteration 1, reconstruction error: 0.2089735529053197, decrease = 1.0832811647987217e-06
iteration 2, reconstruction error: 0.20897248632226434, decrease = 1.0665830553480138e-06
iteration 3, reconstruction error: 0.20897142933547003, decrease = 1.056986794312209e-06
iteration 4, reconstruction error: 0.20897038186533484, decrease = 1.0474701351848026e-06
PARAFAC2 reconstruction error=0.8189230939722615, variation=7.949529330364413e-07.
Starting iteration 15
reconstruction error=0.20895278868656533
iteration 1, reconstruction error: 0.20895175351666367, decrease = 1.035169901658639e-06
iteration 2, reconstruction error: 0.2089507287308246, decrease = 1.024785839076614e-06
iteration 3, reconstruction error: 0.20894971320877764, decrease = 1.0155220469543202e-06
iteration 4, reconstruction error: 0.20894870687646497, decrease = 1.0063323126752177e-06
PARAFAC2 reconstruction error=0.8189225599675974, variation=5.340046640434082e-07.
Starting iteration 16
reconstruction error=0.20893908636319572
iteration 1, reconstruction error: 0.2089380926045475, decrease = 9.93758648232257e-07
iteration 2, reconstruction error: 0.20893710743070318, decrease = 9.85173844308962e-07
iteration 3, reconstruction error: 0.20893613120352708, decrease = 9.76227176097133e-07
iteration 4, reconstruction error: 0.20893516385239466, decrease = 9.67351132419303e-07
PARAFAC2 reconstruction error=0.8189221049093249, variation=4.550582725082464e-07.
Starting iteration 17
reconstruction error=0.20892971030413376
iteration 1, reconstruction error: 0.20892875509695763, decrease = 9.552071761342873e-07
iteration 2, reconstruction error: 0.2089278078206409, decrease = 9.472763167206466e-07
iteration 3, reconstruction error: 0.20892686918501377, decrease = 9.386356271401386e-07
iteration 4, reconstruction error: 0.20892593912196322, decrease = 9.30063050547103e-07
PARAFAC2 reconstruction error=0.8189216821276858, variation=4.2278163914222233e-07.
Starting iteration 18
reconstruction error=0.2089226655675916
iteration 1, reconstruction error: 0.20892174714869313, decrease = 9.18418898460116e-07
iteration 2, reconstruction error: 0.20892083630121447, decrease = 9.108474786634346e-07
iteration 3, reconstruction error: 0.20891993379762083, decrease = 9.025035936360837e-07
iteration 4, reconstruction error: 0.20891903957188912, decrease = 8.942257317123836e-07
PARAFAC2 reconstruction error=0.8189212793284995, variation=4.0279918633867595e-07.
Starting iteration 19
reconstruction error=0.20891691138197552
iteration 1, reconstruction error: 0.20891602833914458, decrease = 8.830428309403171e-07
iteration 2, reconstruction error: 0.2089151525874821, decrease = 8.757516624657846e-07
iteration 3, reconstruction error: 0.2089142848911413, decrease = 8.676963408060789e-07
iteration 4, reconstruction error: 0.2089134251859814, decrease = 8.597051598946415e-07
PARAFAC2 reconstruction error=0.818920892978514, variation=3.863499854483976e-07.
Starting iteration 20
reconstruction error=0.20891190516290178
iteration 1, reconstruction error: 0.208911056220081, decrease = 8.489428207913985e-07
iteration 2, reconstruction error: 0.20891021431282927, decrease = 8.419072517196202e-07
iteration 3, reconstruction error: 0.20890938018012897, decrease = 8.341327003003052e-07
iteration 4, reconstruction error: 0.20890855375961906, decrease = 8.264205099139943e-07
PARAFAC2 reconstruction error=0.8189205217871537, variation=3.711913603154926e-07.
Starting iteration 21
reconstruction error=0.20890736359355797
iteration 1, reconstruction error: 0.20890654754354362, decrease = 8.160500143405969e-07
iteration 2, reconstruction error: 0.20890573828436226, decrease = 8.092591813613215e-07
iteration 3, reconstruction error: 0.20890493652653638, decrease = 8.017578258801006e-07
iteration 4, reconstruction error: 0.20890414220944079, decrease = 7.943170955981849e-07
PARAFAC2 reconstruction error=0.8189201650448948, variation=3.567422588446334e-07.
Starting iteration 22
reconstruction error=0.2089031378403965
iteration 1, reconstruction error: 0.20890235352148795, decrease = 7.843189085421365e-07
iteration 2, reconstruction error: 0.20890157575608692, decrease = 7.777654010276969e-07
iteration 3, reconstruction error: 0.20890080522630744, decrease = 7.705297794813326e-07
iteration 4, reconstruction error: 0.2089000418732276, decrease = 7.633530798301091e-07
PARAFAC2 reconstruction error=0.8189198221995186, variation=3.428453761999961e-07.
Starting iteration 23
reconstruction error=0.2088991486335498
iteration 1, reconstruction error: 0.20889839492057619, decrease = 7.537129736168158e-07
iteration 2, reconstruction error: 0.2088976475303219, decrease = 7.473902542964872e-07
iteration 3, reconstruction error: 0.20889690711735517, decrease = 7.404129667154535e-07
iteration 4, reconstruction error: 0.2088961736244372, decrease = 7.334929179869665e-07
PARAFAC2 reconstruction error=0.8189194927482127, variation=3.294513059026727e-07.
Starting iteration 24
reconstruction error=0.20889535261901257
iteration 1, reconstruction error: 0.2088946284195455, decrease = 7.241994670614815e-07
iteration 2, reconstruction error: 0.20889391031834853, decrease = 7.18101196978127e-07
iteration 3, reconstruction error: 0.208893198943439, decrease = 7.113749095344346e-07
iteration 4, reconstruction error: 0.2088924942392454, decrease = 7.047041935825948e-07
PARAFAC2 reconstruction error=0.8189191762102267, variation=3.16537986044807e-07.
Starting iteration 25
reconstruction error=0.20889172497712605
iteration 1, reconstruction error: 0.2088910292297652, decrease = 6.957473608348863e-07
iteration 2, reconstruction error: 0.2088903393625007, decrease = 6.898672645083703e-07
iteration 3, reconstruction error: 0.2088896559778049, decrease = 6.833846958043122e-07
iteration 4, reconstruction error: 0.20888897902175255, decrease = 6.769560523534057e-07
PARAFAC2 reconstruction error=0.8189188721200057, variation=3.0409022100386096e-07.
Starting iteration 26
reconstruction error=0.20888825046924958
iteration 1, reconstruction error: 0.2088875821427761, decrease = 6.683264734685945e-07
iteration 2, reconstruction error: 0.20888691948446153, decrease = 6.626583145818987e-07
iteration 3, reconstruction error: 0.2088862630722075, decrease = 6.564122540242412e-07
iteration 4, reconstruction error: 0.20888561285371923, decrease = 6.50218488273957e-07
PARAFAC2 reconstruction error=0.8189185800254807, variation=2.920945250117768e-07.
Starting iteration 27
reconstruction error=0.20888491883665677
iteration 1, reconstruction error: 0.2088842769295426, decrease = 6.419071141849919e-07
iteration 2, reconstruction error: 0.2088836404848333, decrease = 6.364447092954695e-07
iteration 3, reconstruction error: 0.2088830100568167, decrease = 6.30428016595852e-07
iteration 4, reconstruction error: 0.20888238559479502, decrease = 6.244620216755425e-07
PARAFAC2 reconstruction error=0.81891829948762, variation=2.805378607195763e-07.
Starting iteration 28
reconstruction error=0.2088817224404241
iteration 1, reconstruction error: 0.20888110598046308, decrease = 6.16459961022553e-07
iteration 2, reconstruction error: 0.20888049478329598, decrease = 6.111971670996752e-07
iteration 3, reconstruction error: 0.20887988938049876, decrease = 6.054027972268727e-07
iteration 4, reconstruction error: 0.2088792897229525, decrease = 5.996575462574594e-07
PARAFAC2 reconstruction error=0.8189180300802665, variation=2.6940735342595445e-07.
Starting iteration 29
reconstruction error=0.20887865505240916
iteration 1, reconstruction error: 0.2088780630964042, decrease = 5.919560049638672e-07
iteration 2, reconstruction error: 0.20887747620965505, decrease = 5.868867491432006e-07
iteration 3, reconstruction error: 0.208876894901905, decrease = 5.813077500471664e-07
iteration 4, reconstruction error: 0.2088763191255804, decrease = 5.757763245906045e-07
PARAFAC2 reconstruction error=0.8189177713900182, variation=2.586902483336928e-07.
Starting iteration 30
reconstruction error=0.20887571123627754
iteration 1, reconstruction error: 0.20887514286971867, decrease = 5.683665588729347e-07
iteration 2, reconstruction error: 0.20887457938486498, decrease = 5.634848536939518e-07
iteration 3, reconstruction error: 0.20887402127047672, decrease = 5.581143882604778e-07
iteration 4, reconstruction error: 0.2088734684805136, decrease = 5.527899631097011e-07
PARAFAC2 reconstruction error=0.8189175230160957, variation=2.483739225400683e-07.
Starting iteration 31
reconstruction error=0.2088728860304799
iteration 1, reconstruction error: 0.20887234036716373, decrease = 5.456633161704527e-07
iteration 2, reconstruction error: 0.20887179940391534, decrease = 5.409632483910354e-07
iteration 3, reconstruction error: 0.20887126360932953, decrease = 5.357945858097679e-07
iteration 4, reconstruction error: 0.20887073293885652, decrease = 5.306704730090317e-07
PARAFAC2 reconstruction error=0.8189172845701896, variation=2.384459060200683e-07.
Starting iteration 32
reconstruction error=0.20887017478541736
iteration 1, reconstruction error: 0.20886965096707144, decrease = 5.238183459210788e-07
iteration 2, reconstruction error: 0.20886913167296564, decrease = 5.192941057996503e-07
iteration 3, reconstruction error: 0.20886861735231843, decrease = 5.143206472102424e-07
iteration 4, reconstruction error: 0.2088681079620506, decrease = 5.093902678277029e-07
PARAFAC2 reconstruction error=0.818917055676286, variation=2.2889390360880668e-07.
Starting iteration 33
reconstruction error=0.2088675730792966
iteration 1, reconstruction error: 0.20886707027513282, decrease = 5.028041637766822e-07
iteration 2, reconstruction error: 0.20886657182509538, decrease = 4.984500374394241e-07
iteration 3, reconstruction error: 0.2088660781597885, decrease = 4.936653068832175e-07
iteration 4, reconstruction error: 0.2088655892375669, decrease = 4.889222215975764e-07
PARAFAC2 reconstruction error=0.8189168359704729, variation=2.1970581309815884e-07.
Starting iteration 34
reconstruction error=0.20886507667401882
iteration 1, reconstruction error: 0.20886459408027783, decrease = 4.825937409969061e-07
iteration 2, reconstruction error: 0.2088641156761496, decrease = 4.784041282290818e-07
iteration 3, reconstruction error: 0.20886364187436451, decrease = 4.7380178508360515e-07
iteration 4, reconstruction error: 0.20886317263467621, decrease = 4.6923968829992724e-07
PARAFAC2 reconstruction error=0.8189166251007313, variation=2.1086974166806272e-07.
Starting iteration 35
reconstruction error=0.208862681491399
iteration 1, reconstruction error: 0.20886221833085084, decrease = 4.631605481641987e-07
iteration 2, reconstruction error: 0.20886175920089364, decrease = 4.591299571921059e-07
iteration 3, reconstruction error: 0.20886130449708684, decrease = 4.547038068014597e-07
iteration 4, reconstruction error: 0.2088608541805561, decrease = 4.503165307312429e-07
PARAFAC2 reconstruction error=0.8189164227267125, variation=2.0237401876510575e-07.
Starting iteration 36
reconstruction error=0.20886038359971304
iteration 1, reconstruction error: 0.20885993912113204, decrease = 4.4447858099649906e-07
iteration 2, reconstruction error: 0.20885949851948882, decrease = 4.4060164322567985e-07
iteration 3, reconstruction error: 0.20885906217386943, decrease = 4.3634561938676875e-07
iteration 4, reconstruction error: 0.20885863004672856, decrease = 4.321271408758154e-07
PARAFAC2 reconstruction error=0.8189162285195035, variation=1.94207208981112e-07.
Starting iteration 37
reconstruction error=0.20885817920540686
iteration 1, reconstruction error: 0.20885775268303064, decrease = 4.2652237622342604e-07
iteration 2, reconstruction error: 0.20885732988919456, decrease = 4.2279383608012644e-07
iteration 3, reconstruction error: 0.2088569111871639, decrease = 4.1870203065785816e-07
iteration 4, reconstruction error: 0.20885649654068805, decrease = 4.146464758492119e-07
PARAFAC2 reconstruction error=0.8189160421613839, variation=1.863581196026587e-07.
Starting iteration 38
reconstruction error=0.20885606464743864
iteration 1, reconstruction error: 0.20885565538040207, decrease = 4.092670365662965e-07
iteration 2, reconstruction error: 0.20885524969864333, decrease = 4.0568175874167167e-07
iteration 3, reconstruction error: 0.20885484795022666, decrease = 4.0174841667295347e-07
iteration 4, reconstruction error: 0.20885445010017764, decrease = 3.9785004901649046e-07
PARAFAC2 reconstruction error=0.8189158633455736, variation=1.7881581027001658e-07.
Starting iteration 39
reconstruction error=0.2088540363928903
iteration 1, reconstruction error: 0.20885364370465306, decrease = 3.926882372329299e-07
iteration 2, reconstruction error: 0.20885325446343325, decrease = 3.8924121981143145e-07
iteration 3, reconstruction error: 0.2088528690027092, decrease = 3.854607240616481e-07
iteration 4, reconstruction error: 0.20885248728873823, decrease = 3.817139709594297e-07
PARAFAC2 reconstruction error=0.8189156917759757, variation=1.7156959797315352e-07.
Starting iteration 40
reconstruction error=0.2088520910332293
iteration 1, reconstruction error: 0.20885171427098143, decrease = 3.767622478723087e-07
iteration 2, reconstruction error: 0.20885134082236223, decrease = 3.734486191953046e-07
iteration 3, reconstruction error: 0.20885097100686073, decrease = 3.698155014997262e-07
iteration 4, reconstruction error: 0.20885060479193218, decrease = 3.6621492854882476e-07
PARAFAC2 reconstruction error=0.8189155271669133, variation=1.6460906238080497e-07.
Starting iteration 41
reconstruction error=0.20885022528085861
iteration 1, reconstruction error: 0.2088498638149235, decrease = 3.6146593512809133e-07
iteration 2, reconstruction error: 0.20884950553397885, decrease = 3.5828094463452587e-07
iteration 3, reconstruction error: 0.2088491507440824, decrease = 3.547898964617602e-07
iteration 4, reconstruction error: 0.2088487994138567, decrease = 3.513302256896722e-07
PARAFAC2 reconstruction error=0.8189153692428635, variation=1.5792404983727693e-07.
Starting iteration 42
reconstruction error=0.20884843596582917
iteration 1, reconstruction error: 0.2088480891890531, decrease = 3.467767760723106e-07
iteration 2, reconstruction error: 0.2088477454732518, decrease = 3.4371580129310964e-07
iteration 3, reconstruction error: 0.20884740511159658, decrease = 3.4036165522111084e-07
iteration 4, reconstruction error: 0.2088470680738373, decrease = 3.370377592848417e-07
PARAFAC2 reconstruction error=0.8189152177381896, variation=1.515046738065351e-07.
Starting iteration 43
reconstruction error=0.20884672003259258
iteration 1, reconstruction error: 0.20884638735974745, decrease = 3.3267284513249784e-07
iteration 2, reconstruction error: 0.20884605762835015, decrease = 3.297313972971949e-07
iteration 3, reconstruction error: 0.20884573111920904, decrease = 3.2650914111309604e-07
iteration 4, reconstruction error: 0.20884540780317298, decrease = 3.2331603605495474e-07
PARAFAC2 reconstruction error=0.8189150723968714, variation=1.45341318202874e-07.
Starting iteration 44
reconstruction error=0.20884507453682774
iteration 1, reconstruction error: 0.20884475540399683, decrease = 3.1913283091156153e-07
iteration 2, reconstruction error: 0.20884443909744513, decrease = 3.163065517008956e-07
iteration 3, reconstruction error: 0.20884412588612689, decrease = 3.1321131824246784e-07
iteration 4, reconstruction error: 0.20884381574195687, decrease = 3.101441700126273e-07
PARAFAC2 reconstruction error=0.8189149329722353, variation=1.394246361696716e-07.
Starting iteration 45
reconstruction error=0.2088434966422621
iteration 1, reconstruction error: 0.20884319050622596, decrease = 3.0613603613227625e-07
iteration 2, reconstruction error: 0.20884288708553597, decrease = 3.0342068998989724e-07
iteration 3, reconstruction error: 0.20884258663777858, decrease = 3.004477573953501e-07
iteration 4, reconstruction error: 0.2088422891358914, decrease = 2.9750188718091763e-07
PARAFAC2 reconstruction error=0.8189147992266845, variation=1.337455507455232e-07.
Starting iteration 46
reconstruction error=0.20884198361751696
iteration 1, reconstruction error: 0.2088416899551523, decrease = 2.9366236467542883e-07
iteration 2, reconstruction error: 0.2088413989013124, decrease = 2.9105383989036504e-07
iteration 3, reconstruction error: 0.20884111070267247, decrease = 2.8819863992501915e-07
iteration 4, reconstruction error: 0.20884082533316833, decrease = 2.8536950413826645e-07
PARAFAC2 reconstruction error=0.8189146709314329, variation=1.2829525164459454e-07.
Starting iteration 47
reconstruction error=0.20884053283299142
iteration 1, reconstruction error: 0.20884025114067092, decrease = 2.8169232049735093e-07
iteration 2, reconstruction error: 0.20883997195403198, decrease = 2.791866389462161e-07
iteration 3, reconstruction error: 0.20883969550929093, decrease = 2.7644474104304706e-07
iteration 4, reconstruction error: 0.20883942178135187, decrease = 2.7372793906521586e-07
PARAFAC2 reconstruction error=0.8189145478662369, variation=1.2306519603377808e-07.
Starting iteration 48
reconstruction error=0.20883914175775906
iteration 1, reconstruction error: 0.20883887155075065, decrease = 2.702070084070751e-07
iteration 2, reconstruction error: 0.2088386037504426, decrease = 2.678003080403002e-07
iteration 3, reconstruction error: 0.20883833858301573, decrease = 2.6516742687721084e-07
iteration 4, reconstruction error: 0.2088380760243116, decrease = 2.6255870413938176e-07
PARAFAC2 reconstruction error=0.8189144298191345, variation=1.1804710231544391e-07.
Starting iteration 49
reconstruction error=0.20883780795651957
iteration 1, reconstruction error: 0.20883754876839694, decrease = 2.5918812263103774e-07
iteration 2, reconstruction error: 0.20883729189172714, decrease = 2.568766697963465e-07
iteration 3, reconstruction error: 0.2088370375430764, decrease = 2.543486507522452e-07
iteration 4, reconstruction error: 0.20883678569918682, decrease = 2.518438895759978e-07
PARAFAC2 reconstruction error=0.8189143165861851, variation=1.1323294946130602e-07.
Starting iteration 50
reconstruction error=0.20883652908655384
iteration 1, reconstruction error: 0.20883628046862227, decrease = 2.486179315752679e-07
iteration 2, reconstruction error: 0.20883603407050963, decrease = 2.4639811263549305e-07
iteration 3, reconstruction error: 0.20883579009956388, decrease = 2.4397094575134837e-07
iteration 4, reconstruction error: 0.20883554853340155, decrease = 2.4156616232340333e-07
PARAFAC2 reconstruction error=0.818914207971211, variation=1.0861497412584242e-07.
Starting iteration 51
reconstruction error=0.20883530289477464
iteration 1, reconstruction error: 0.2088350644154872, decrease = 2.384792874565722e-07
iteration 2, reconstruction error: 0.2088348280678871, decrease = 2.363476000744047e-07
iteration 3, reconstruction error: 0.20883459405047478, decrease = 2.340174123371952e-07
iteration 4, reconstruction error: 0.20883436234172045, decrease = 2.3170875432243498e-07
PARAFAC2 reconstruction error=0.8189141037855482, variation=1.0418566276371166e-07.
Starting iteration 52
reconstruction error=0.20883412721477404
iteration 1, reconstruction error: 0.20883389845917813, decrease = 2.2875559591017947e-07
iteration 2, reconstruction error: 0.20883367175051556, decrease = 2.2670866256513378e-07
iteration 3, reconstruction error: 0.20883344727881312, decrease = 2.2447170244799253e-07
iteration 4, reconstruction error: 0.20883322502335866, decrease = 2.2225545445730965e-07
PARAFAC2 reconstruction error=0.8189140038477971, variation=9.993775107464131e-08.
Starting iteration 53
reconstruction error=0.2088329999639683
iteration 1, reconstruction error: 0.20883278053314408, decrease = 2.1943082423314664e-07
iteration 2, reconstruction error: 0.208832563067769, decrease = 2.1746537506861507e-07
iteration 3, reconstruction error: 0.20883234774974646, decrease = 2.153180225505924e-07
iteration 4, reconstruction error: 0.20883213455915176, decrease = 2.1319059470559232e-07
PARAFAC2 reconstruction error=0.8189139079835798, variation=9.586421734208983e-08.
Starting iteration 54
reconstruction error=0.2088319191407576
iteration 1, reconstruction error: 0.2088317086512841, decrease = 2.1048947351776093e-07
iteration 2, reconstruction error: 0.20883150004893314, decrease = 2.0860235094843915e-07
iteration 3, reconstruction error: 0.20883129350782081, decrease = 2.0654111232421002e-07
iteration 4, reconstruction error: 0.2088310890087822, decrease = 2.0449903861963215e-07
PARAFAC2 reconstruction error=0.8189138160253016, variation=9.195827821439906e-08.
Starting iteration 55
reconstruction error=0.20883088282177942
iteration 1, reconstruction error: 0.20883068090520435, decrease = 2.0191657507107053e-07
iteration 2, reconstruction error: 0.20883048080046746, decrease = 2.0010473689158204e-07
iteration 3, reconstruction error: 0.2088302826742266, decrease = 1.9812624085790986e-07
iteration 4, reconstruction error: 0.2088300865080529, decrease = 1.961661736937792e-07
PARAFAC2 reconstruction error=0.8189137278119187, variation=8.82133828206122e-08.
Starting iteration 56
reconstruction error=0.20882988915920306
iteration 1, reconstruction error: 0.20882969546151903, decrease = 1.936976840311022e-07
iteration 2, reconstruction error: 0.20882950350333077, decrease = 1.9195818826145405e-07
iteration 3, reconstruction error: 0.20882931344415195, decrease = 1.9005917881176337e-07
iteration 4, reconstruction error: 0.20882912526626035, decrease = 1.881778916024146e-07
PARAFAC2 reconstruction error=0.8189136431887104, variation=8.46232083295817e-08.
Starting iteration 57
reconstruction error=0.20882893637809233
iteration 1, reconstruction error: 0.208828750559234, decrease = 1.8581885832813505e-07
iteration 2, reconstruction error: 0.20882856641036887, decrease = 1.8414886512885253e-07
iteration 3, reconstruction error: 0.2088283840841616, decrease = 1.8232620727087756e-07
iteration 4, reconstruction error: 0.20882820356356893, decrease = 1.805205926685982e-07
PARAFAC2 reconstruction error=0.8189135620070572, variation=8.118165317760884e-08.
Starting iteration 58
reconstruction error=0.20882802277383256
iteration 1, reconstruction error: 0.20882784450718583, decrease = 1.7826664672204728e-07
iteration 2, reconstruction error: 0.20882766784376702, decrease = 1.7666341881050762e-07
iteration 3, reconstruction error: 0.20882749292967406, decrease = 1.7491409295966598e-07
iteration 4, reconstruction error: 0.20882731974852728, decrease = 1.7318114678421814e-07
PARAFAC2 reconstruction error=0.8189134841242233, variation=7.788283395981921e-08.
Starting iteration 59
reconstruction error=0.20882714670962052
iteration 1, reconstruction error: 0.2088269756815367, decrease = 1.710280838340683e-07
iteration 2, reconstruction error: 0.20882680619255503, decrease = 1.6948898165503046e-07
iteration 3, reconstruction error: 0.20882663838248441, decrease = 1.6781007061705822e-07
iteration 4, reconstruction error: 0.2088264722355779, decrease = 1.6614690651062247e-07
PARAFAC2 reconstruction error=0.8189134094031467, variation=7.472107654837856e-08.
Starting iteration 60
reconstruction error=0.20882630661402724
iteration 1, reconstruction error: 0.20882614252335638, decrease = 1.6409067085665363e-07
iteration 2, reconstruction error: 0.20882597991020774, decrease = 1.6261314864096654e-07
iteration 3, reconstruction error: 0.20882581890836308, decrease = 1.6100184466183443e-07
iteration 4, reconstruction error: 0.208825659502689, decrease = 1.5940567407723982e-07
PARAFAC2 reconstruction error=0.8189133377122338, variation=7.169091287284601e-08.
Starting iteration 61
reconstruction error=0.20882550097861322
iteration 1, reconstruction error: 0.20882534353625867, decrease = 1.574423545425141e-07
iteration 2, reconstruction error: 0.20882518751229256, decrease = 1.5602396610803204e-07
iteration 3, reconstruction error: 0.2088250330347265, decrease = 1.5447756607223084e-07
iteration 4, reconstruction error: 0.2088248800890152, decrease = 1.5294571129031986e-07
PARAFAC2 reconstruction error=0.8189132689251598, variation=6.87870740367913e-08.
Starting iteration 62
reconstruction error=0.20882472835562804
iteration 1, reconstruction error: 0.20882457728408796, decrease = 1.51071540083203e-07
iteration 2, reconstruction error: 0.2088244275741673, decrease = 1.4970992065488353e-07
iteration 3, reconstruction error: 0.2088242793483472, decrease = 1.4822582009021978e-07
iteration 4, reconstruction error: 0.20882413259264745, decrease = 1.4675569975919345e-07
PARAFAC2 reconstruction error=0.8189132029206745, variation=6.600448532179115e-08.
Starting iteration 63
reconstruction error=0.20882398735576554
iteration 1, reconstruction error: 0.208823842388718, decrease = 1.4496704753286238e-07
iteration 2, reconstruction error: 0.20882369872879078, decrease = 1.4365992723197607e-07
iteration 3, reconstruction error: 0.20882355649317377, decrease = 1.4223561700665854e-07
iteration 4, reconstruction error: 0.20882341566842616, decrease = 1.4082474761312191e-07
PARAFAC2 reconstruction error=0.818913139582414, variation=6.33382605252919e-08.
Starting iteration 64
reconstruction error=0.20882327664598305
iteration 1, reconstruction error: 0.2088231375278609, decrease = 1.391181221332971e-07
iteration 2, reconstruction error: 0.2088229996645537, decrease = 1.3786330721465845e-07
iteration 3, reconstruction error: 0.20882286316817122, decrease = 1.364963824745935e-07
iteration 4, reconstruction error: 0.2088227280258047, decrease = 1.3514236651968048e-07
PARAFAC2 reconstruction error=0.8189130787987198, variation=6.078369418904828e-08.
Starting iteration 65
reconstruction error=0.20882259494739783
iteration 1, reconstruction error: 0.20882246143299202, decrease = 1.3351440580899876e-07
iteration 2, reconstruction error: 0.2088223291231955, decrease = 1.3230979650780128e-07
iteration 3, reconstruction error: 0.2088221981252663, decrease = 1.30997929198573e-07
iteration 4, reconstruction error: 0.20882206842679593, decrease = 1.2969847038024618e-07
PARAFAC2 reconstruction error=0.8189130204624598, variation=5.833625993378888e-08.
Starting iteration 66
reconstruction error=0.20882194103323742
iteration 1, reconstruction error: 0.20882181288729576, decrease = 1.2814594166354887e-07
iteration 2, reconstruction error: 0.20882168589778813, decrease = 1.269895076316807e-07
iteration 3, reconstruction error: 0.20882156016732362, decrease = 1.257304645119195e-07
iteration 4, reconstruction error: 0.2088214356839709, decrease = 1.2448335270920374e-07
PARAFAC2 reconstruction error=0.818912964470858, variation=5.59916017994766e-08.
Starting iteration 67
reconstruction error=0.20882131372685903
iteration 1, reconstruction error: 0.20882119072371785, decrease = 1.2300314117252853e-07
iteration 2, reconstruction error: 0.2088210688307858, decrease = 1.2189293205344676e-07
iteration 3, reconstruction error: 0.20882094814621271, decrease = 1.206845730850059e-07
iteration 4, reconstruction error: 0.20882082865854518, decrease = 1.1948766753810958e-07
PARAFAC2 reconstruction error=0.8189129107253288, variation=5.374552924930498e-08.
Starting iteration 68
reconstruction error=0.20882071189983387
iteration 1, reconstruction error: 0.2088205938230446, decrease = 1.1807678926278875e-07
iteration 2, reconstruction error: 0.2088204768121182, decrease = 1.1701092639260224e-07
iteration 3, reconstruction error: 0.20882036096093032, decrease = 1.1585118789292359e-07
iteration 4, reconstruction error: 0.2088202462584816, decrease = 1.147024487058168e-07
PARAFAC2 reconstruction error=0.8189128591313155, variation=5.159401328391766e-08.
Starting iteration 69
reconstruction error=0.20882013447008738
iteration 1, reconstruction error: 0.20882002111206588, decrease = 1.1335802149736729e-07
iteration 2, reconstruction error: 0.2088199087773634, decrease = 1.1233470248450672e-07
iteration 3, reconstruction error: 0.2088197975557695, decrease = 1.1122159390697384e-07
iteration 4, reconstruction error: 0.20881968743671198, decrease = 1.1011905751145967e-07
PARAFAC2 reconstruction error=0.8189128095981363, variation=4.95331792249587e-08.
Starting iteration 70
reconstruction error=0.2088195804001182
iteration 1, reconstruction error: 0.20881947156180042, decrease = 1.0883831777497299e-07
iteration 2, reconstruction error: 0.2088193637059916, decrease = 1.0785580881189638e-07
iteration 3, reconstruction error: 0.20881925691856495, decrease = 1.0678742665137797e-07
iteration 4, reconstruction error: 0.20881915118936764, decrease = 1.057291973138863e-07
PARAFAC2 reconstruction error=0.8189127620388333, variation=4.7559302940314296e-08.
Starting iteration 71
reconstruction error=0.20881904869524845
iteration 1, reconstruction error: 0.20881894418576302, decrease = 1.0450948542684024e-07
iteration 2, reconstruction error: 0.2088188406196371, decrease = 1.0356612592521408e-07
iteration 3, reconstruction error: 0.20881873807900564, decrease = 1.0254063145809234e-07
iteration 4, reconstruction error: 0.20881863655411056, decrease = 1.0152489507420093e-07
PARAFAC2 reconstruction error=0.818912716370028, variation=4.566880529299766e-08.
Starting iteration 72
reconstruction error=0.20881853840196754
iteration 1, reconstruction error: 0.2088184380383051, decrease = 1.0036366243637573e-07
iteration 2, reconstruction error: 0.20881833858046095, decrease = 9.945784415488212e-08
iteration 3, reconstruction error: 0.20881824010698066, decrease = 9.847348028668712e-08
iteration 4, reconstruction error: 0.20881814260849163, decrease = 9.74984890322883e-08
PARAFAC2 reconstruction error=0.8189126725117815, variation=4.38582465900339e-08.
Starting iteration 73
reconstruction error=0.2088180486062977
iteration 1, reconstruction error: 0.2088179522130152, decrease = 9.639328252264434e-08
iteration 2, reconstruction error: 0.2088178566895501, decrease = 9.552346508234777e-08
iteration 3, reconstruction error: 0.20881776211100594, decrease = 9.457854416305977e-08
iteration 4, reconstruction error: 0.20881766846839023, decrease = 9.364261571720434e-08
PARAFAC2 reconstruction error=0.8189126303874583, variation=4.212432314076864e-08.
Starting iteration 74
reconstruction error=0.20881757843225518
iteration 1, reconstruction error: 0.20881748584116896, decrease = 9.25910862148438e-08
iteration 2, reconstruction error: 0.20881739408537575, decrease = 9.175579321341054e-08
iteration 3, reconstruction error: 0.2088173032366928, decrease = 9.084868296538318e-08
iteration 4, reconstruction error: 0.2088172132864791, decrease = 8.995021369417877e-08
PARAFAC2 reconstruction error=0.8189125899235975, variation=4.046386081757447e-08.
Starting iteration 75
reconstruction error=0.20881712704032532
iteration 1, reconstruction error: 0.20881703809022995, decrease = 8.895009537268628e-08
iteration 2, reconstruction error: 0.20881694994232186, decrease = 8.814790808386874e-08
iteration 3, reconstruction error: 0.20881686266527613, decrease = 8.727704572941697e-08
iteration 4, reconstruction error: 0.20881677625078338, decrease = 8.641449275592628e-08
PARAFAC2 reconstruction error=0.818912551049786, variation=3.887381150313729e-08.
Starting iteration 76
reconstruction error=0.20881669362602404
iteration 1, reconstruction error: 0.20881660816241104, decrease = 8.546361299210936e-08
iteration 2, reconstruction error: 0.20881652346924662, decrease = 8.46931644260529e-08
iteration 3, reconstruction error: 0.2088164396121886, decrease = 8.385705801972065e-08
iteration 4, reconstruction error: 0.20881635658326078, decrease = 8.30289278164198e-08
PARAFAC2 reconstruction error=0.8189125136985376, variation=3.735124842751958e-08.
Starting iteration 77
reconstruction error=0.20881627741849917
iteration 1, reconstruction error: 0.2088161952932896, decrease = 8.212520957728842e-08
iteration 2, reconstruction error: 0.20881611390809982, decrease = 8.138518978184628e-08
iteration 3, reconstruction error: 0.20881603332570162, decrease = 8.058239819863644e-08
iteration 4, reconstruction error: 0.20881595353843413, decrease = 7.978726748736342e-08
PARAFAC2 reconstruction error=0.8189124778051764, variation=3.58933611721568e-08.
Starting iteration 78
reconstruction error=0.208815877679179
iteration 1, reconstruction error: 0.20881579875046982, decrease = 7.892870917958206e-08
iteration 2, reconstruction error: 0.20881572053260686, decrease = 7.821786296435818e-08
iteration 3, reconstruction error: 0.20881564308560552, decrease = 7.74470013398254e-08
iteration 4, reconstruction error: 0.2088155664021017, decrease = 7.668350382461497e-08
PARAFAC2 reconstruction error=0.8189124433077236, variation=3.449745278327754e-08.
Starting iteration 79
reconstruction error=0.20881549370046956
iteration 1, reconstruction error: 0.20881541783228158, decrease = 7.586818798199779e-08
iteration 2, reconstruction error: 0.20881534264697768, decrease = 7.518530389938327e-08
iteration 3, reconstruction error: 0.20881526820192772, decrease = 7.444504995790524e-08
iteration 4, reconstruction error: 0.20881519449005914, decrease = 7.371186858118328e-08
PARAFAC2 reconstruction error=0.8189124101467897, variation=3.3160933887721455e-08.
Starting iteration 80
reconstruction error=0.20881512480452072
iteration 1, reconstruction error: 0.20881505186656293, decrease = 7.293795778462453e-08
iteration 2, reconstruction error: 0.20881497958468662, decrease = 7.228187631769245e-08
iteration 3, reconstruction error: 0.2088149080137297, decrease = 7.157095691101567e-08
iteration 4, reconstruction error: 0.2088148371468956, decrease = 7.086683409540662e-08
PARAFAC2 reconstruction error=0.8189123782654705, variation=3.188131925124793e-08.
Starting iteration 81
reconstruction error=0.20881477034200308
iteration 1, reconstruction error: 0.20881470020944193, decrease = 7.013256114740685e-08
iteration 2, reconstruction error: 0.20881463070726933, decrease = 6.950217260048852e-08
iteration 3, reconstruction error: 0.20881456188790212, decrease = 6.881936720493087e-08
iteration 4, reconstruction error: 0.2088144937448152, decrease = 6.814308692315585e-08
PARAFAC2 reconstruction error=0.8189123476092447, variation=3.0656225780134605e-08.
Starting iteration 82
reconstruction error=0.20881442969096234
iteration 1, reconstruction error: 0.2088143622442007, decrease = 6.744676164793795e-08
iteration 2, reconstruction error: 0.20881429540320337, decrease = 6.684099732034987e-08
iteration 3, reconstruction error: 0.20881422921806955, decrease = 6.61851338179531e-08
iteration 4, reconstruction error: 0.20881416368253086, decrease = 6.553553869026452e-08
PARAFAC2 reconstruction error=0.8189123181258795, variation=2.9483365193705424e-08.
Starting iteration 83
reconstruction error=0.20881410225569758
iteration 1, reconstruction error: 0.20881403738016266, decrease = 6.487553491640874e-08
iteration 2, reconstruction error: 0.2088139730867903, decrease = 6.429337234825638e-08
iteration 3, reconstruction error: 0.20881390942346537, decrease = 6.366332494511795e-08
iteration 4, reconstruction error: 0.20881384638416542, decrease = 6.30392999467766e-08
PARAFAC2 reconstruction error=0.8189122897653365, variation=2.8360543025129914e-08.
Starting iteration 84
reconstruction error=0.20881378746570056
iteration 1, reconstruction error: 0.20881372505163434, decrease = 6.241406622087275e-08
iteration 2, reconstruction error: 0.2088136631971159, decrease = 6.18545184516428e-08
iteration 3, reconstruction error: 0.208813601947906, decrease = 6.124920989836191e-08
iteration 4, reconstruction error: 0.20881354129821594, decrease = 6.064969004793141e-08
PARAFAC2 reconstruction error=0.8189122624796821, variation=2.7285654402575688e-08.
Starting iteration 85
reconstruction error=0.20881348477461223
iteration 1, reconstruction error: 0.2088134247168809, decrease = 6.005773131589898e-08
iteration 2, reconstruction error: 0.20881336519702262, decrease = 5.9519858292000904e-08
iteration 3, reconstruction error: 0.2088133062587704, decrease = 5.893825222313964e-08
iteration 4, reconstruction error: 0.20881324789656147, decrease = 5.8362208926743264e-08
PARAFAC2 reconstruction error=0.8189122362230017, variation=2.6256680385472464e-08.
Starting iteration 86
reconstruction error=0.20881319365923318
iteration 1, reconstruction error: 0.20881313585713382, decrease = 5.780209935690728e-08
iteration 2, reconstruction error: 0.20881307857214182, decrease = 5.7284991999972945e-08
iteration 3, reconstruction error: 0.20881302184604048, decrease = 5.6726101343995694e-08
iteration 4, reconstruction error: 0.2088129656734883, decrease = 5.6172552165278944e-08
PARAFAC2 reconstruction error=0.8189122109513167, variation=2.5271684966909902e-08.
Starting iteration 87
reconstruction error=0.20881291361857426
iteration 1, reconstruction error: 0.20881285797565968, decrease = 5.564291458148851e-08
iteration 2, reconstruction error: 0.20881280282994974, decrease = 5.5145709942916454e-08
iteration 3, reconstruction error: 0.2088127482213689, decrease = 5.460858085171161e-08
iteration 4, reconstruction error: 0.20881269414478548, decrease = 5.407658340561561e-08
PARAFAC2 reconstruction error=0.8189121866225058, variation=2.432881096581241e-08.
Starting iteration 88
reconstruction error=0.2088126441729422
iteration 1, reconstruction error: 0.2088125905968353, decrease = 5.3576106912034405e-08
iteration 2, reconstruction error: 0.20881253749886228, decrease = 5.3097973018445543e-08
iteration 3, reconstruction error: 0.2088124849171722, decrease = 5.258169008537372e-08
iteration 4, reconstruction error: 0.20881243284683307, decrease = 5.207033912379977e-08
PARAFAC2 reconstruction error=0.8189121631962272, variation=2.3426278583649207e-08.
Starting iteration 89
reconstruction error=0.2088123848630564
iteration 1, reconstruction error: 0.20881233326528806, decrease = 5.15977683357427e-08
iteration 2, reconstruction error: 0.20881228212738648, decrease = 5.1137901579956235e-08
iteration 3, reconstruction error: 0.2088122314857915, decrease = 5.064159497303322e-08
iteration 4, reconstruction error: 0.20881218133576396, decrease = 5.015002754737985e-08
PARAFAC2 reconstruction error=0.8189121406338464, variation=2.2562380741497634e-08.
Starting iteration 90
reconstruction error=0.20881213524920098
iteration 1, reconstruction error: 0.20881208554504996, decrease = 4.970415101723802e-08
iteration 2, reconstruction error: 0.20881203628325962, decrease = 4.926179034137057e-08
iteration 3, reconstruction error: 0.2088119874986424, decrease = 4.8784617207031644e-08
iteration 4, reconstruction error: 0.20881193918664584, decrease = 4.831199656996077e-08
PARAFAC2 reconstruction error=0.8189121188983652, variation=2.1735481192663997e-08.
Starting iteration 91
reconstruction error=0.2088118949104191
iteration 1, reconstruction error: 0.20881184701875918, decrease = 4.789165991558875e-08
iteration 2, reconstruction error: 0.2088117995526834, decrease = 4.7466075792090834e-08
iteration 3, reconstruction error: 0.20881175254545167, decrease = 4.70072317182435e-08
iteration 4, reconstruction error: 0.20881170599268414, decrease = 4.655276752973947e-08
PARAFAC2 reconstruction error=0.8189120979543537, variation=2.0944011525081407e-08.
Starting iteration 92
reconstruction error=0.2088116634437288
iteration 1, reconstruction error: 0.20881161728686387, decrease = 4.6156864941249154e-08
iteration 2, reconstruction error: 0.2088115715395222, decrease = 4.574734166484795e-08
iteration 3, reconstruction error: 0.20881152623346275, decrease = 4.5306059459626624e-08
iteration 4, reconstruction error: 0.20881148136447916, decrease = 4.486898358413427e-08
PARAFAC2 reconstruction error=0.8189120777678854, variation=2.018646827472992e-08.
Starting iteration 93
reconstruction error=0.20881144046337033
iteration 1, reconstruction error: 0.20881139596691722, decrease = 4.449645310544703e-08
iteration 2, reconstruction error: 0.20881135186458885, decrease = 4.41023283725972e-08
iteration 3, reconstruction error: 0.20881130818672508, decrease = 4.367786377024174e-08
iteration 4, reconstruction error: 0.20881126492928231, decrease = 4.3257442766675425e-08
PARAFAC2 reconstruction error=0.818912058306475, variation=1.946141048314587e-08.
Starting iteration 94
reconstruction error=0.20881122560009577
iteration 1, reconstruction error: 0.20881118269282764, decrease = 4.29072681273901e-08
iteration 2, reconstruction error: 0.20881114016493438, decrease = 4.252789326253392e-08
iteration 3, reconstruction error: 0.20881109804539524, decrease = 4.211953913424438e-08
iteration 4, reconstruction error: 0.2088110563303193, decrease = 4.1715075949078084e-08
PARAFAC2 reconstruction error=0.8189120395390178, variation=1.8767457143908928e-08.
Starting iteration 95
reconstruction error=0.2088110185004782
iteration 1, reconstruction error: 0.2088109771141913, decrease = 4.138628689753787e-08
iteration 2, reconstruction error: 0.20881093609315632, decrease = 4.1021034985488924e-08
iteration 3, reconstruction error: 0.20881089546504358, decrease = 4.0628112735197064e-08
iteration 4, reconstruction error: 0.20881085522610954, decrease = 4.023893404592194e-08
PARAFAC2 reconstruction error=0.8189120214357329, variation=1.810328487117374e-08.
Starting iteration 96
reconstruction error=0.20881081882623528
iteration 1, reconstruction error: 0.2088107788956416, decrease = 3.9930593692671934e-08
iteration 2, reconstruction error: 0.2088107393167645, decrease = 3.957887709238328e-08
iteration 3, reconstruction error: 0.20881070011602954, decrease = 3.92007349636625e-08
iteration 4, reconstruction error: 0.20881066128983342, decrease = 3.882619611927929e-08
PARAFAC2 reconstruction error=0.8189120039681075, variation=1.746762545717928e-08.
Starting iteration 97
reconstruction error=0.20881062625360977
iteration 1, reconstruction error: 0.2088105877161945, decrease = 3.85374152589435e-08
iteration 2, reconstruction error: 0.2088105495175343, decrease = 3.819866020715601e-08
iteration 3, reconstruction error: 0.20881051168285453, decrease = 3.7834679778026015e-08
iteration 4, reconstruction error: 0.20881047420870158, decrease = 3.7474152947414296e-08
PARAFAC2 reconstruction error=0.8189119871088433, variation=1.6859264206914304e-08.
Starting iteration 98
reconstruction error=0.20881044047275543
iteration 1, reconstruction error: 0.2088104032686729, decrease = 3.7204082536934635e-08
iteration 2, reconstruction error: 0.20881036639092984, decrease = 3.687774305372038e-08
iteration 3, reconstruction error: 0.20881032986360712, decrease = 3.65273227220797e-08
iteration 4, reconstruction error: 0.20881029368337753, decrease = 3.618022959006595e-08
PARAFAC2 reconstruction error=0.8189119708318069, variation=1.6277036385403676e-08.
Starting iteration 99
reconstruction error=0.20881026118714552
iteration 1, reconstruction error: 0.20881022525910495, decrease = 3.592804057039878e-08
iteration 2, reconstruction error: 0.20881018964550657, decrease = 3.5613598375894284e-08
iteration 3, reconstruction error: 0.20881015436934372, decrease = 3.527616285192714e-08
iteration 4, reconstruction error: 0.2088101194274125, decrease = 3.494193120956446e-08
PARAFAC2 reconstruction error=0.8189119551119797, variation=1.571982721770837e-08.
Starting iteration 100
reconstruction error=0.20881008811301638
iteration 1, reconstruction error: 0.20881005340617328, decrease = 3.470684309392347e-08
iteration 2, reconstruction error: 0.2088100190023779, decrease = 3.440379539587646e-08
iteration 3, reconstruction error: 0.20880998492357766, decrease = 3.407880022621157e-08
iteration 4, reconstruction error: 0.20880995116669293, decrease = 3.3756884731950265e-08
PARAFAC2 reconstruction error=0.8189119399254119, variation=1.518656778110028e-08.
Starting iteration 101
reconstruction error=0.20880992097882908
iteration 1, reconstruction error: 0.2088098874406826, decrease = 3.353814648221487e-08
iteration 2, reconstruction error: 0.20880985419466755, decrease = 3.324601505205749e-08
iteration 3, reconstruction error: 0.2088098212617371, decrease = 3.2932930438267505e-08
iteration 4, reconstruction error: 0.20880978863892502, decrease = 3.262281209059914e-08
PARAFAC2 reconstruction error=0.8189119252491774, variation=1.4676234449950698e-08.
Starting iteration 102
reconstruction error=0.20880975952475744
iteration 1, reconstruction error: 0.20880972710504717, decrease = 3.241971027745372e-08
iteration 2, reconstruction error: 0.20880969496701776, decrease = 3.2138029404382706e-08
iteration 3, reconstruction error: 0.20880966313066374, decrease = 3.183635402526086e-08
iteration 4, reconstruction error: 0.20880963159312912, decrease = 3.1537534611603135e-08
PARAFAC2 reconstruction error=0.8189119110613305, variation=1.4187846897328882e-08.
Starting iteration 103
reconstruction error=0.20880960350217845
iteration 1, reconstruction error: 0.208809572152801, decrease = 3.134937745508104e-08
iteration 2, reconstruction error: 0.20880954107509114, decrease = 3.107770985000258e-08
iteration 3, reconstruction error: 0.20880951028813102, decrease = 3.0786960120154916e-08
iteration 4, reconstruction error: 0.20880947978917025, decrease = 3.0498960773561734e-08
PARAFAC2 reconstruction error=0.8189118973408646, variation=1.37204659855783e-08.
Starting iteration 104
reconstruction error=0.20880945267321113
iteration 1, reconstruction error: 0.20880942234811914, decrease = 3.0325091993077535e-08
iteration 2, reconstruction error: 0.2088093922851065, decrease = 3.006301263486222e-08
iteration 3, reconstruction error: 0.20880936250237675, decrease = 2.9782729754623816e-08
iteration 4, reconstruction error: 0.20880933299728907, decrease = 2.9505087678627362e-08
PARAFAC2 reconstruction error=0.8189118840676725, variation=1.32731921009821e-08.
Starting iteration 105
reconstruction error=0.20880930681025597
iteration 1, reconstruction error: 0.20880927746537725, decrease = 2.9344878721415668e-08
iteration 2, reconstruction error: 0.20880924837339213, decrease = 2.9091985126461495e-08
iteration 3, reconstruction error: 0.20880921955166964, decrease = 2.882172248086512e-08
iteration 4, reconstruction error: 0.20880919099766615, decrease = 2.855400349499604e-08
PARAFAC2 reconstruction error=0.8189118712225087, variation=1.2845163710473173e-08.
Starting iteration 106
reconstruction error=0.20880916569555869
iteration 1, reconstruction error: 0.20880913728871126, decrease = 2.8406847429884863e-08
iteration 2, reconstruction error: 0.20880910912595732, decrease = 2.8162753934468654e-08
iteration 3, reconstruction error: 0.2088090812238707, decrease = 2.7902086613407207e-08
iteration 4, reconstruction error: 0.20880905357999796, decrease = 2.7643872746452303e-08
PARAFAC2 reconstruction error=0.8189118587869534, variation=1.2435555363232709e-08.
Starting iteration 107
reconstruction error=0.20880902912079274
iteration 1, reconstruction error: 0.20880900161160007, decrease = 2.7509192673802474e-08
iteration 2, reconstruction error: 0.20880897433807638, decrease = 2.7273523689475e-08
iteration 3, reconstruction error: 0.2088089473160288, decrease = 2.7022047571767516e-08
iteration 4, reconstruction error: 0.20880892054309572, decrease = 2.677293309272244e-08
PARAFAC2 reconstruction error=0.8189118467433756, variation=1.2043577801712502e-08.
Starting iteration 108
reconstruction error=0.20880889688665852
iteration 1, reconstruction error: 0.20880887023648012, decrease = 2.6650178397424895e-08
iteration 2, reconstruction error: 0.20880884381389864, decrease = 2.6422581483886987e-08
iteration 3, reconstruction error: 0.2088088176339931, decrease = 2.6179905548984195e-08
iteration 4, reconstruction error: 0.20880879169448824, decrease = 2.593950484963692e-08
PARAFAC2 reconstruction error=0.8189118350749024, variation=1.1668473187675943e-08.
Starting iteration 109
reconstruction error=0.2088087688024935
iteration 1, reconstruction error: 0.20880874297434704, decrease = 2.5828146454909273e-08
iteration 2, reconstruction error: 0.2088087173660671, decrease = 2.5608279941025103e-08
iteration 3, reconstruction error: 0.2088086919920354, decrease = 2.537403170910224e-08
iteration 4, reconstruction error: 0.20880866685005847, decrease = 2.5141976917053555e-08
PARAFAC2 reconstruction error=0.818911823765385, variation=1.1309517433666372e-08.
Starting iteration 110
reconstruction error=0.20880864468591454
iteration 1, reconstruction error: 0.20880861964440645, decrease = 2.5041508089351794e-08
iteration 2, reconstruction error: 0.20880859481536065, decrease = 2.4829045791596727e-08
iteration 3, reconstruction error: 0.2088085702124941, decrease = 2.4602866549594538e-08
iteration 4, reconstruction error: 0.20880854583369038, decrease = 2.437880372574419e-08
PARAFAC2 reconstruction error=0.8189118127993681, variation=1.0966016872338002e-08.
Starting iteration 111
reconstruction error=0.20880852436244918
iteration 1, reconstruction error: 0.20880850007370982, decrease = 2.4288739353117705e-08
iteration 2, reconstruction error: 0.2088084759903425, decrease = 2.4083367328175953e-08
iteration 3, reconstruction error: 0.20880845212542312, decrease = 2.3864919374005922e-08
iteration 4, reconstruction error: 0.20880842847691247, decrease = 2.3648510649731946e-08
PARAFAC2 reconstruction error=0.8189118021620616, variation=1.0637306480099085e-08.
Starting iteration 112
reconstruction error=0.20880840766522227
iteration 1, reconstruction error: 0.20880838409683272, decrease = 2.3568389545536306e-08
iteration 2, reconstruction error: 0.20880836072702721, decrease = 2.336980550743384e-08
iteration 3, reconstruction error: 0.20880833756826622, decrease = 2.3158760992236793e-08
iteration 4, reconstruction error: 0.2088083146185892, decrease = 2.2949677019878933e-08
PARAFAC2 reconstruction error=0.8189117918393112, variation=1.0322750432223415e-08.
Starting iteration 113
reconstruction error=0.20880829443459883
iteration 1, reconstruction error: 0.20880827155554463, decrease = 2.287905420672587e-08
iteration 2, reconstruction error: 0.2088082488685649, decrease = 2.2686979739283686e-08
iteration 3, reconstruction error: 0.2088082263855463, decrease = 2.2483018585761627e-08
iteration 4, reconstruction error: 0.2088082041045892, decrease = 2.228095710710143e-08
PARAFAC2 reconstruction error=0.8189117818175713, variation=1.002173988240429e-08.
Starting iteration 114
reconstruction error=0.20880818451790326
iteration 1, reconstruction error: 0.20880816229849486, decrease = 2.2219408396528806e-08
iteration 2, reconstruction error: 0.20880814026493524, decrease = 2.203355961571951e-08
iteration 3, reconstruction error: 0.20880811842854569, decrease = 2.1836389557661207e-08
iteration 4, reconstruction error: 0.208808096787499, decrease = 2.1641046676901254e-08
PARAFAC2 reconstruction error=0.8189117720838798, variation=9.733691519464571e-09.
Starting iteration 115
reconstruction error=0.2088080777691035
iteration 1, reconstruction error: 0.20880805618093715, decrease = 2.15881663656603e-08
iteration 2, reconstruction error: 0.2088080347726522, decrease = 2.140828495034164e-08
iteration 3, reconstruction error: 0.20880801355503695, decrease = 2.1217615248092514e-08
iteration 4, reconstruction error: 0.20880799252633292, decrease = 2.1028704028092093e-08
PARAFAC2 reconstruction error=0.8189117626258332, variation=9.458046568155964e-09.
Starting iteration 116
reconstruction error=0.20880797404853368
iteration 1, reconstruction error: 0.2088079530644287, decrease = 2.098410498141412e-08
iteration 2, reconstruction error: 0.20880793225448693, decrease = 2.080994176978379e-08
iteration 3, reconstruction error: 0.20880791162899295, decrease = 2.062549397940927e-08
iteration 4, reconstruction error: 0.20880789118624457, decrease = 2.0442748382976106e-08
PARAFAC2 reconstruction error=0.8189117534315619, variation=9.194271344270533e-09.
Starting iteration 117
reconstruction error=0.2088078732226189
iteration 1, reconstruction error: 0.20880785281656394, decrease = 2.0406054956900732e-08
iteration 2, reconstruction error: 0.20880783257919844, decrease = 2.0237365505604288e-08
iteration 3, reconstruction error: 0.20880781252031874, decrease = 2.0058879696138732e-08
iteration 4, reconstruction error: 0.2088077926382851, decrease = 1.9882033630569396e-08
PARAFAC2 reconstruction error=0.8189117444897086, variation=8.941853257837806e-09.
Starting iteration 118
reconstruction error=0.2088077751636162
iteration 1, reconstruction error: 0.20880775531071896, decrease = 1.9852897242822465e-08
iteration 2, reconstruction error: 0.2088077356212742, decrease = 1.968944476904433e-08
iteration 3, reconstruction error: 0.20880771610460466, decrease = 1.951666953048381e-08
iteration 4, reconstruction error: 0.20880769675913083, decrease = 1.9345473833976e-08
PARAFAC2 reconstruction error=0.8189117357894053, variation=8.700303255615438e-09.
Starting iteration 119
reconstruction error=0.20880767974935507
iteration 1, reconstruction error: 0.20880766042580687, decrease = 1.9323548205996133e-08
iteration 2, reconstruction error: 0.2088076412606855, decrease = 1.9165121378783567e-08
iteration 3, reconstruction error: 0.20880762226287558, decrease = 1.8997809908549712e-08
iteration 4, reconstruction error: 0.20880760343084925, decrease = 1.8832026327242346e-08
PARAFAC2 reconstruction error=0.8189117273202535, variation=8.469151824286314e-09.
Starting iteration 120
reconstruction error=0.20880758686301457
iteration 1, reconstruction error: 0.20880756804602557, decrease = 1.8816988994752037e-08
iteration 2, reconstruction error: 0.20880754938265517, decrease = 1.8663370404681245e-08
iteration 3, reconstruction error: 0.2088075308813624, decrease = 1.8501292775585654e-08
iteration 4, reconstruction error: 0.20880751254066707, decrease = 1.8340695323582068e-08
PARAFAC2 reconstruction error=0.8189117190723028, variation=8.247950766815393e-09.
Starting iteration 121
reconstruction error=0.20880749639287605
iteration 1, reconstruction error: 0.20880747806064515, decrease = 1.83322308999756e-08
iteration 2, reconstruction error: 0.20880745987742522, decrease = 1.818321992974603e-08
iteration 3, reconstruction error: 0.20880744185126568, decrease = 1.8026159537276598e-08
iteration 4, reconstruction error: 0.2088074239807466, decrease = 1.7870519092300086e-08
PARAFAC2 reconstruction error=0.8189117110360336, variation=8.036269205646818e-09.
Starting iteration 122
reconstruction error=0.20880740823211338
iteration 1, reconstruction error: 0.2088073903637781, decrease = 1.7868335283610648e-08
iteration 2, reconstruction error: 0.20880737264003973, decrease = 1.772373836583796e-08
iteration 3, reconstruction error: 0.20880735506856668, decrease = 1.757147305436746e-08
iteration 4, reconstruction error: 0.20880733764797682, decrease = 1.7420589859540314e-08
PARAFAC2 reconstruction error=0.8189117032023362, variation=7.8336973574622e-09.
Starting iteration 123
reconstruction error=0.20880732227857646
iteration 1, reconstruction error: 0.20880730485417748, decrease = 1.7424398979226652e-08
iteration 2, reconstruction error: 0.20880728757014957, decrease = 1.7284027903352595e-08
iteration 3, reconstruction error: 0.20880727043378858, decrease = 1.7136360996872213e-08
iteration 4, reconstruction error: 0.20880725344375864, decrease = 1.6990029938490636e-08
PARAFAC2 reconstruction error=0.8189116955624954, variation=7.639840760020888e-09.
Starting iteration 124
reconstruction error=0.20880723843459395
iteration 1, reconstruction error: 0.20880722143503577, decrease = 1.69995581777993e-08
iteration 2, reconstruction error: 0.20880720457180021, decrease = 1.6863235557940115e-08
iteration 3, reconstruction error: 0.208807187851826, decrease = 1.6719974210710475e-08
iteration 4, reconstruction error: 0.20880717127382736, decrease = 1.657799864052123e-08
PARAFAC2 reconstruction error=0.818911688108173, variation=7.454322381583722e-09.
Starting iteration 125
reconstruction error=0.20880715660677826
iteration 1, reconstruction error: 0.20880714001379067, decrease = 1.659298759504324e-08
iteration 2, reconstruction error: 0.20880712355324763, decrease = 1.646054303972022e-08
iteration 3, reconstruction error: 0.20880710723174856, decrease = 1.632149906893865e-08
iteration 4, reconstruction error: 0.20880709104804934, decrease = 1.6183699214078473e-08
PARAFAC2 reconstruction error=0.8189116808313909, variation=7.276782176823815e-09.
Starting iteration 126
reconstruction error=0.20880707670584436
iteration 1, reconstruction error: 0.20880706050194606, decrease = 1.620389830647717e-08
iteration 2, reconstruction error: 0.20880704442677558, decrease = 1.6075170472529265e-08
iteration 3, reconstruction error: 0.20880702848661287, decrease = 1.594016271755372e-08
iteration 4, reconstruction error: 0.2088070126802532, decrease = 1.5806359665582193e-08
PARAFAC2 reconstruction error=0.8189116737245163, variation=7.106874533313601e-09.
Starting iteration 127
reconstruction error=0.2088069986464188
iteration 1, reconstruction error: 0.208806982814886, decrease = 1.5831532806931392e-08
iteration 2, reconstruction error: 0.20880696710852306, decrease = 1.5706362932466078e-08
iteration 3, reconstruction error: 0.20880695153329912, decrease = 1.5575223943908867e-08
iteration 4, reconstruction error: 0.20880693608804954, decrease = 1.5445249579304487e-08
PARAFAC2 reconstruction error=0.8189116667802471, variation=6.944269270725556e-09.
Starting iteration 128
reconstruction error=0.20880692234689072
iteration 1, reconstruction error: 0.2088069068717238, decrease = 1.5475166925682515e-08
iteration 2, reconstruction error: 0.20880689151831916, decrease = 1.5353404630991108e-08
iteration 3, reconstruction error: 0.20880687629234904, decrease = 1.5225970123600163e-08
iteration 4, reconstruction error: 0.2088068611926827, decrease = 1.5099666322848648e-08
PARAFAC2 reconstruction error=0.8189116599915964, variation=6.788650641631477e-09.
Starting iteration 129
reconstruction error=0.20880684772923247
iteration 1, reconstruction error: 0.20880683259512903, decrease = 1.5134103442671076e-08
iteration 2, reconstruction error: 0.2088068175795153, decrease = 1.501561372463378e-08
iteration 3, reconstruction error: 0.20880680268778892, decrease = 1.4891726379806514e-08
iteration 4, reconstruction error: 0.2088067879188593, decrease = 1.4768929634811911e-08
PARAFAC2 reconstruction error=0.8189116533518814, variation=6.63971500003413e-09.
Starting iteration 130
reconstruction error=0.20880677471885237
iteration 1, reconstruction error: 0.20880675991116482, decrease = 1.4807687548357151e-08
iteration 2, reconstruction error: 0.20880674521883863, decrease = 1.4692326189003069e-08
iteration 3, reconstruction error: 0.20880673064700458, decrease = 1.4571834044962984e-08
iteration 4, reconstruction error: 0.20880671619459756, decrease = 1.4452407021137148e-08
PARAFAC2 reconstruction error=0.8189116468547075, variation=6.497173909991716e-09.
Starting iteration 131
reconstruction error=0.20880670324444658
iteration 1, reconstruction error: 0.20880668874916444, decrease = 1.4495282141258059e-08
iteration 2, reconstruction error: 0.2088066743662518, decrease = 1.4382912638666312e-08
iteration 3, reconstruction error: 0.20880666010056875, decrease = 1.4265683051517541e-08
iteration 4, reconstruction error: 0.20880664595109646, decrease = 1.4149472288282894e-08
PARAFAC2 reconstruction error=0.8189116404939579, variation=6.360749593703474e-09.
Starting iteration 132
reconstruction error=0.20880663323785045
iteration 1, reconstruction error: 0.20880661904157327, decrease = 1.4196277181577344e-08
iteration 2, reconstruction error: 0.20880660495479178, decrease = 1.4086781491284839e-08
iteration 3, reconstruction error: 0.20880659098212928, decrease = 1.3972662499250887e-08
iteration 4, reconstruction error: 0.20880657712258308, decrease = 1.3859546205141626e-08
PARAFAC2 reconstruction error=0.8189116342637812, variation=6.230176707866519e-09.
Starting iteration 133
reconstruction error=0.2088065646339052
iteration 1, reconstruction error: 0.2088065507238156, decrease = 1.3910089607938048e-08
iteration 2, reconstruction error: 0.2088065369204675, decrease = 1.3803348103413882e-08
iteration 3, reconstruction error: 0.20880652322825116, decrease = 1.3692216332961138e-08
iteration 4, reconstruction error: 0.20880650964619704, decrease = 1.35820541202758e-08
PARAFAC2 reconstruction error=0.8189116281585788, variation=6.105202454698144e-09.
Starting iteration 134
reconstruction error=0.20880649737033297
iteration 1, reconstruction error: 0.20880648373416438, decrease = 1.3636168583186503e-08
iteration 2, reconstruction error: 0.20880647020210097, decrease = 1.3532063414256612e-08
iteration 3, reconstruction error: 0.2088064567783094, decrease = 1.3423791578315303e-08
iteration 4, reconstruction error: 0.2088064434618471, decrease = 1.3316462293966325e-08
PARAFAC2 reconstruction error=0.818911622172996, variation=5.985582807177536e-09.
Starting iteration 135
reconstruction error=0.20880643138760274
iteration 1, reconstruction error: 0.20880641801362454, decrease = 1.3373978202668724e-08
iteration 2, reconstruction error: 0.20880640474122397, decrease = 1.3272400567476694e-08
iteration 3, reconstruction error: 0.20880639157435252, decrease = 1.3166871454250995e-08
iteration 4, reconstruction error: 0.2088063785120993, decrease = 1.3062253223505849e-08
PARAFAC2 reconstruction error=0.81891161630191, variation=5.871085950737154e-09.
Starting iteration 136
reconstruction error=0.208806366628817
iteration 1, reconstruction error: 0.2088063535058053, decrease = 1.3123011705085119e-08
iteration 2, reconstruction error: 0.20880634048195093, decrease = 1.3023854356086773e-08
iteration 3, reconstruction error: 0.20880632756100098, decrease = 1.2920949948869165e-08
iteration 4, reconstruction error: 0.20880631474207, decrease = 1.2818930972269271e-08
PARAFAC2 reconstruction error=0.8189116105404206, variation=5.761489396682862e-09.
Starting iteration 137
reconstruction error=0.20880630303959316
iteration 1, reconstruction error: 0.20880629015681385, decrease = 1.2882779315548376e-08
iteration 2, reconstruction error: 0.20880627737087107, decrease = 1.2785942776760706e-08
iteration 3, reconstruction error: 0.20880626468531674, decrease = 1.2685554329205928e-08
iteration 4, reconstruction error: 0.20880625209929318, decrease = 1.2586023556693249e-08
PARAFAC2 reconstruction error=0.8189116048838405, variation=5.656580093216235e-09.
Starting iteration 138
reconstruction error=0.2088062405679585
iteration 1, reconstruction error: 0.2088062279151433, decrease = 1.2652815184477362e-08
iteration 2, reconstruction error: 0.20880621535693797, decrease = 1.2558205336743455e-08
iteration 3, reconstruction error: 0.20880620289671384, decrease = 1.2460224130261821e-08
iteration 4, reconstruction error: 0.20880619053363336, decrease = 1.2363080476029964e-08
PARAFAC2 reconstruction error=0.8189115993276854, variation=5.556155091568371e-09.
Starting iteration 139
reconstruction error=0.2088061791642446
iteration 1, reconstruction error: 0.2088061667315673, decrease = 1.2432677304330397e-08
iteration 2, reconstruction error: 0.20880615439137254, decrease = 1.2340194754933975e-08
iteration 3, reconstruction error: 0.2088061421468475, decrease = 1.224452503278961e-08
iteration 4, reconstruction error: 0.20880612999718148, decrease = 1.2149666023253403e-08
PARAFAC2 reconstruction error=0.8189115938676663, variation=5.460019103509239e-09.
Starting iteration 140
reconstruction error=0.20880611878097674
iteration 1, reconstruction error: 0.20880610655904364, decrease = 1.2221933104461513e-08
iteration 2, reconstruction error: 0.20880609442755074, decrease = 1.2131492893585616e-08
iteration 3, reconstruction error: 0.20880608238951545, decrease = 1.2038035290817817e-08
iteration 4, reconstruction error: 0.20880607044414948, decrease = 1.1945365974153077e-08
PARAFAC2 reconstruction error=0.8189115884996807, variation=5.3679856115707025e-09.
Starting iteration 141
reconstruction error=0.20880605937280006
iteration 1, reconstruction error: 0.20880604735262479, decrease = 1.202017527179855e-08
iteration 2, reconstruction error: 0.20880603542092757, decrease = 1.1931697213585224e-08
iteration 3, reconstruction error: 0.20880602358057151, decrease = 1.1840356056724843e-08
iteration 4, reconstruction error: 0.20880601183078532, decrease = 1.1749786199555246e-08
PARAFAC2 reconstruction error=0.8189115832198044, variation=5.279876313935006e-09.
Starting iteration 142
reconstruction error=0.20880600089636114
iteration 1, reconstruction error: 0.20880598906934453, decrease = 1.182701661606167e-08
iteration 2, reconstruction error: 0.2088059773289325, decrease = 1.1740412031446823e-08
iteration 3, reconstruction error: 0.20880596567782692, decrease = 1.1651105580323673e-08
iteration 4, reconstruction error: 0.20880595411528435, decrease = 1.1562542562293388e-08
PARAFAC2 reconstruction error=0.8189115780242835, variation=5.195520902390172e-09.
Starting iteration 143
reconstruction error=0.20880594331024108
iteration 1, reconstruction error: 0.20880593166816105, decrease = 1.1642080022244983e-08
iteration 2, reconstruction error: 0.20880592011088855, decrease = 1.1557272500128946e-08
iteration 3, reconstruction error: 0.20880590864097573, decrease = 1.1469912825079476e-08
iteration 4, reconstruction error: 0.2088058972576969, decrease = 1.1383278819554477e-08
PARAFAC2 reconstruction error=0.818911572909528, variation=5.114755508017765e-09.
Starting iteration 144
reconstruction error=0.2088058865748604
iteration 1, reconstruction error: 0.2088058751098544, decrease = 1.1465006000133116e-08
iteration 2, reconstruction error: 0.20880586372792817, decrease = 1.1381926234843576e-08
iteration 3, reconstruction error: 0.2088058524314982, decrease = 1.1296429958118637e-08
iteration 4, reconstruction error: 0.20880584121985346, decrease = 1.1211644751485395e-08
PARAFAC2 reconstruction error=0.8189115678721037, variation=5.03742425550513e-09.
Starting iteration 145
reconstruction error=0.20880583065240296
iteration 1, reconstruction error: 0.20880581935694617, decrease = 1.1295456792126402e-08
iteration 2, reconstruction error: 0.2088058081429155, decrease = 1.1214030676276465e-08
iteration 3, reconstruction error: 0.20880579701259325, decrease = 1.1130322247199231e-08
iteration 4, reconstruction error: 0.2088057859652884, decrease = 1.10473048486881e-08
PARAFAC2 reconstruction error=0.8189115629087259, variation=4.963377819855452e-09.
Starting iteration 146
reconstruction error=0.20880577550673474
iteration 1, reconstruction error: 0.20880576437363327, decrease = 1.1133101468496776e-08
iteration 2, reconstruction error: 0.20880575332037135, decrease = 1.105326191686018e-08
iteration 3, reconstruction error: 0.2088057423491033, decrease = 1.0971268060711026e-08
iteration 4, reconstruction error: 0.20880573145916037, decrease = 1.0889942919645179e-08
PARAFAC2 reconstruction error=0.8189115580162534, variation=4.892472538209347e-09.
Starting iteration 147
reconstruction error=0.20880572110333548
iteration 1, reconstruction error: 0.208805710125707, decrease = 1.0977628472907952e-08
iteration 2, reconstruction error: 0.20880569922639788, decrease = 1.08993091219034e-08
iteration 3, reconstruction error: 0.20880568840744054, decrease = 1.0818957341118818e-08
iteration 4, reconstruction error: 0.20880567766818087, decrease = 1.0739259675984769e-08
PARAFAC2 reconstruction error=0.8189115531916807, variation=4.824572630290902e-09.
Starting iteration 148
reconstruction error=0.20880566740922235
iteration 1, reconstruction error: 0.20880565658048772, decrease = 1.0828734631207482e-08
iteration 2, reconstruction error: 0.20880564582861236, decrease = 1.075187536225819e-08
iteration 3, reconstruction error: 0.20880563515551223, decrease = 1.0673100125924151e-08
iteration 4, reconstruction error: 0.20880562456055102, decrease = 1.0594961213916676e-08
PARAFAC2 reconstruction error=0.818911548432135, variation=4.759545757515582e-09.
Starting iteration 149
reconstruction error=0.20880561439289191
iteration 1, reconstruction error: 0.20880560370675189, decrease = 1.068614002841528e-08
iteration 2, reconstruction error: 0.2088055930960751, decrease = 1.0610676781652728e-08
iteration 3, reconstruction error: 0.20880558256266338, decrease = 1.0533411726187936e-08
iteration 4, reconstruction error: 0.2088055721058988, decrease = 1.0456764565347498e-08
PARAFAC2 reconstruction error=0.8189115437348669, variation=4.697268130016141e-09.
Starting iteration 150
reconstruction error=0.20880556202424244
iteration 1, reconstruction error: 0.20880555147467783, decrease = 1.0549564610773388e-08
iteration 2, reconstruction error: 0.20880554099923437, decrease = 1.0475443457114153e-08
iteration 3, reconstruction error: 0.20880553059961132, decrease = 1.0399623051604578e-08
iteration 4, reconstruction error: 0.20880552027519936, decrease = 1.0324411964246494e-08
PARAFAC2 reconstruction error=0.8189115390972479, variation=4.6376189555275005e-09.
Starting iteration 151
reconstruction error=0.20880551027452143
iteration 1, reconstruction error: 0.20880549985577287, decrease = 1.0418748558338464e-08
iteration 2, reconstruction error: 0.20880548950986133, decrease = 1.0345911544140662e-08
iteration 3, reconstruction error: 0.20880547923838028, decrease = 1.0271481054591192e-08
iteration 4, reconstruction error: 0.2088054690407397, decrease = 1.0197640565312582e-08
PARAFAC2 reconstruction error=0.8189115345167637, variation=4.580484214145031e-09.
Starting iteration 152
reconstruction error=0.20880545911626475
iteration 1, reconstruction error: 0.20880544882282753, decrease = 1.0293437213704237e-08
iteration 2, reconstruction error: 0.20880543860098935, decrease = 1.022183818144562e-08
iteration 3, reconstruction error: 0.20880542845225428, decrease = 1.014873507454439e-08
iteration 4, reconstruction error: 0.20880541837604077, decrease = 1.007621350246346e-08
PARAFAC2 reconstruction error=0.8189115299910099, variation=4.525753771744689e-09.
Starting iteration 153
reconstruction error=0.20880540852324017
iteration 1, reconstruction error: 0.20880539834984474, decrease = 1.0173395431634091e-08
iteration 2, reconstruction error: 0.20880538824686748, decrease = 1.010297726034004e-08
iteration 3, reconstruction error: 0.208805378215713, decrease = 1.0031154490386385e-08
iteration 4, reconstruction error: 0.20880536825582208, decrease = 9.959890912014657e-09
PARAFAC2 reconstruction error=0.8189115255176865, variation=4.473323378384464e-09.
Starting iteration 154
reconstruction error=0.2088053584703861
iteration 1, reconstruction error: 0.2088053484119997, decrease = 1.0058386373801298e-08
iteration 2, reconstruction error: 0.20880533842289073, decrease = 9.989108984420625e-09
iteration 3, reconstruction error: 0.2088053285043851, decrease = 9.918505627926066e-09
iteration 4, reconstruction error: 0.20880531865592675, decrease = 9.848458354388967e-09
PARAFAC2 reconstruction error=0.8189115210945948, variation=4.4230917817245086e-09.
Starting iteration 155
reconstruction error=0.2088053089337786
iteration 1, reconstruction error: 0.20880529898557829, decrease = 9.948200319076506e-09
iteration 2, reconstruction error: 0.20880528910557175, decrease = 9.880006535123442e-09
iteration 3, reconstruction error: 0.20880527929499001, decrease = 9.810581735880675e-09
iteration 4, reconstruction error: 0.2088052695532916, decrease = 9.741698420162592e-09
PARAFAC2 reconstruction error=0.818911516719631, variation=4.3749637246293105e-09.
Starting iteration 156
reconstruction error=0.20880525989055562
iteration 1, reconstruction error: 0.20880525004793826, decrease = 9.842617360034112e-09
iteration 2, reconstruction error: 0.2088052402724665, decrease = 9.775471765394173e-09
iteration 3, reconstruction error: 0.2088052305652942, decrease = 9.707172288209165e-09
iteration 4, reconstruction error: 0.2088052209258915, decrease = 9.639402720473811e-09
PARAFAC2 reconstruction error=0.8189115123907837, variation=4.328847280632431e-09.
Starting iteration 157
reconstruction error=0.20880521131889515
iteration 1, reconstruction error: 0.20880520157745275, decrease = 9.741442402733114e-09
iteration 2, reconstruction error: 0.20880519190215094, decrease = 9.675301809730641e-09
iteration 3, reconstruction error: 0.20880518229406955, decrease = 9.608081386058842e-09
iteration 4, reconstruction error: 0.20880517275269106, decrease = 9.541378492849972e-09
PARAFAC2 reconstruction error=0.8189115081061297, variation=4.284654075981109e-09.
Starting iteration 158
reconstruction error=0.20880516319794648
iteration 1, reconstruction error: 0.20880515355347004, decrease = 9.644476439696348e-09
iteration 2, reconstruction error: 0.20880514397416544, decrease = 9.579304599549587e-09
iteration 3, reconstruction error: 0.20880513446104695, decrease = 9.513118487403105e-09
iteration 4, reconstruction error: 0.20880512501360401, decrease = 9.447442939070072e-09
PARAFAC2 reconstruction error=0.818911503863829, variation=4.242300621903894e-09.
Starting iteration 159
reconstruction error=0.208805115507812
iteration 1, reconstruction error: 0.20880510595626914, decrease = 9.551542862196172e-09
iteration 2, reconstruction error: 0.20880509646897258, decrease = 9.48729655947389e-09
iteration 3, reconstruction error: 0.20880508704686718, decrease = 9.422105401446501e-09
iteration 4, reconstruction error: 0.20880507768945153, decrease = 9.357415647892608e-09
PARAFAC2 reconstruction error=0.8189114996621225, variation=4.201706538253802e-09.
Starting iteration 160
reconstruction error=0.2088050682294806
iteration 1, reconstruction error: 0.20880505876701946, decrease = 9.462461147968781e-09
iteration 2, reconstruction error: 0.20880504936791375, decrease = 9.399105715957035e-09
iteration 3, reconstruction error: 0.2088050400330451, decrease = 9.334868655841433e-09
iteration 4, reconstruction error: 0.20880503076191984, decrease = 9.27112525639373e-09
PARAFAC2 reconstruction error=0.8189114954993281, variation=4.1627944424860175e-09.
Starting iteration 161
reconstruction error=0.20880502134480633
iteration 1, reconstruction error: 0.20880501196774082, decrease = 9.377065512961025e-09
iteration 2, reconstruction error: 0.20880500265317922, decrease = 9.31456159425359e-09
iteration 3, reconstruction error: 0.2088049934019353, decrease = 9.25124390982468e-09
iteration 4, reconstruction error: 0.2088049842135293, decrease = 9.188406008275862e-09
PARAFAC2 reconstruction error=0.8189114913738366, variation=4.1254915039701245e-09.
Starting iteration 162
reconstruction error=0.20880497483646418
iteration 1, reconstruction error: 0.2088049655412733, decrease = 9.29519086700914e-09
iteration 2, reconstruction error: 0.20880495630776186, decrease = 9.233511455430943e-09
iteration 3, reconstruction error: 0.20880494713669184, decrease = 9.171070014524219e-09
iteration 4, reconstruction error: 0.20880493802758668, decrease = 9.10910516460639e-09
PARAFAC2 reconstruction error=0.8189114872841099, variation=4.089726668432547e-09.
Starting iteration 163
reconstruction error=0.20880492868791248
iteration 1, reconstruction error: 0.20880491947122412, decrease = 9.2166883569611e-09
iteration 2, reconstruction error: 0.20880491031542686, decrease = 9.155797259241538e-09
iteration 3, reconstruction error: 0.208804901221225, decrease = 9.09420186379073e-09
iteration 4, reconstruction error: 0.20880489218815493, decrease = 9.033070069719429e-09
PARAFAC2 reconstruction error=0.8189114832286766, variation=4.055433322491808e-09.
Starting iteration 164
reconstruction error=0.20880488288335447
iteration 1, reconstruction error: 0.20880487374194606, decrease = 9.141408408019913e-09
iteration 2, reconstruction error: 0.20880486466067297, decrease = 9.081273094624365e-09
iteration 3, reconstruction error: 0.20880485564018533, decrease = 9.020487634625596e-09
iteration 4, reconstruction error: 0.2088048466800243, decrease = 8.960161029802904e-09
PARAFAC2 reconstruction error=0.8189114792061303, variation=4.022546296056362e-09.
Starting iteration 165
reconstruction error=0.20880483740771852
iteration 1, reconstruction error: 0.20880482833850875, decrease = 9.06920977206127e-09
iteration 2, reconstruction error: 0.20880481932871003, decrease = 9.009798712655837e-09
iteration 3, reconstruction error: 0.20880481037891316, decrease = 8.949796875823424e-09
iteration 4, reconstruction error: 0.2088048014886731, decrease = 8.890240071890432e-09
PARAFAC2 reconstruction error=0.8189114752151254, variation=3.991004859926761e-09.
Starting iteration 166
reconstruction error=0.20880479224661325
iteration 1, reconstruction error: 0.2088047832466565, decrease = 8.999956752075988e-09
iteration 2, reconstruction error: 0.2088047743054112, decrease = 8.941245299709522e-09
iteration 3, reconstruction error: 0.20880476542342039, decrease = 8.881990809506135e-09
iteration 4, reconstruction error: 0.20880475660024594, decrease = 8.823174441063841e-09
PARAFAC2 reconstruction error=0.8189114712543758, variation=3.960749617171189e-09.
Starting iteration 167
reconstruction error=0.2088047473862994
iteration 1, reconstruction error: 0.2088047384527796, decrease = 8.933519785037092e-09
iteration 2, reconstruction error: 0.2088047295772964, decrease = 8.875483209491719e-09
iteration 3, reconstruction error: 0.20880472076035345, decrease = 8.81694295351565e-09
iteration 4, reconstruction error: 0.20880471200151035, decrease = 8.758843095257873e-09
PARAFAC2 reconstruction error=0.8189114673226514, variation=3.9317243905045984e-09.
Starting iteration 168
reconstruction error=0.2088047028136652
iteration 1, reconstruction error: 0.20880469394389053, decrease = 8.869774664743701e-09
iteration 2, reconstruction error: 0.20880468513150457, decrease = 8.812385959844349e-09
iteration 3, reconstruction error: 0.20880467637696237, decrease = 8.754542202282778e-09
iteration 4, reconstruction error: 0.2088046676798436, decrease = 8.69711877515833e-09
PARAFAC2 reconstruction error=0.8189114634187763, variation=3.903875112065691e-09.
Starting iteration 169
reconstruction error=0.2088046585162048
iteration 1, reconstruction error: 0.20880464970759371, decrease = 8.80861109053832e-09
iteration 2, reconstruction error: 0.2088046409557504, decrease = 8.751843305621065e-09
iteration 3, reconstruction error: 0.20880463226109297, decrease = 8.694657438468312e-09
iteration 4, reconstruction error: 0.20880462362319638, decrease = 8.63789659244496e-09
PARAFAC2 reconstruction error=0.8189114595416254, variation=3.877150933639939e-09.
Starting iteration 170
reconstruction error=0.2088046144819698
iteration 1, reconstruction error: 0.20880460573206255, decrease = 8.749907243199573e-09
iteration 2, reconstruction error: 0.20880459703832382, decrease = 8.693738728915434e-09
iteration 3, reconstruction error: 0.20880458840113156, decrease = 8.637192266958138e-09
iteration 4, reconstruction error: 0.2088045798200723, decrease = 8.581059252055212e-09
PARAFAC2 reconstruction error=0.8189114556901238, variation=3.8515015621243265e-09.
Starting iteration 171
reconstruction error=0.20880457069956596
iteration 1, reconstruction error: 0.20880456200600472, decrease = 8.693561232009372e-09
iteration 2, reconstruction error: 0.20880455336804044, decrease = 8.637964288293887e-09
iteration 3, reconstruction error: 0.2088045447860048, decrease = 8.582035637694219e-09
iteration 4, reconstruction error: 0.2088045362594975, decrease = 8.526507305761655e-09
PARAFAC2 reconstruction error=0.8189114518632432, variation=3.826880590196424e-09.
Starting iteration 172
reconstruction error=0.2088045271581162
iteration 1, reconstruction error: 0.2088045185186526, decrease = 8.639463616733067e-09
iteration 2, reconstruction error: 0.20880450993423216, decrease = 8.584420424506689e-09
iteration 3, reconstruction error: 0.20880450140514878, decrease = 8.529083384001268e-09
iteration 4, reconstruction error: 0.2088044929310122, decrease = 8.474136586889003e-09
PARAFAC2 reconstruction error=0.8189114480600004, variation=3.80324283177913e-09.
Starting iteration 173
reconstruction error=0.2088044838472487
iteration 1, reconstruction error: 0.2088044752597269, decrease = 8.587521804770404e-09
iteration 2, reconstruction error: 0.20880446672671535, decrease = 8.533011547351421e-09
iteration 3, reconstruction error: 0.20880445824847624, decrease = 8.478239110765173e-09
iteration 4, reconstruction error: 0.20880444982461702, decrease = 8.423859221284857e-09
PARAFAC2 reconstruction error=0.8189114442794553, variation=3.780545099196786e-09.
Starting iteration 174
reconstruction error=0.2088044407570591
iteration 1, reconstruction error: 0.20880443221942127, decrease = 8.537637818939459e-09
iteration 2, reconstruction error: 0.20880442373578, decrease = 8.48364126171397e-09
iteration 3, reconstruction error: 0.2088044153063659, decrease = 8.429414111166267e-09
iteration 4, reconstruction error: 0.20880440693079252, decrease = 8.375573373742284e-09
PARAFAC2 reconstruction error=0.8189114405207092, variation=3.758746092152876e-09.
Starting iteration 175
reconstruction error=0.2088043978781011
iteration 1, reconstruction error: 0.20880438938838122, decrease = 8.489719871551671e-09
iteration 2, reconstruction error: 0.20880438095216114, decrease = 8.43622008361855e-09
iteration 3, reconstruction error: 0.20880437256964532, decrease = 8.38251582035987e-09
iteration 4, reconstruction error: 0.2088043642404488, decrease = 8.329196526934979e-09
PARAFAC2 reconstruction error=0.8189114367829027, variation=3.737806508752328e-09.
Starting iteration 176
reconstruction error=0.20880435520137003
iteration 1, reconstruction error: 0.20880434675768297, decrease = 8.443687055104121e-09
iteration 2, reconstruction error: 0.20880433836702142, decrease = 8.39066155444712e-09
iteration 3, reconstruction error: 0.20880433002955578, decrease = 8.33746563455584e-09
iteration 4, reconstruction error: 0.2088043217449159, decrease = 8.284639890776546e-09
PARAFAC2 reconstruction error=0.818911433065214, variation=3.717688712434608e-09.
Starting iteration 177
reconstruction error=0.2088043127182674
iteration 1, reconstruction error: 0.20880430431881222, decrease = 8.399455186935967e-09
iteration 2, reconstruction error: 0.20880429597192668, decrease = 8.346885543852878e-09
iteration 3, reconstruction error: 0.20880428767775114, decrease = 8.2941755408239e-09
iteration 4, reconstruction error: 0.20880427943591695, decrease = 8.24183418735025e-09
PARAFAC2 reconstruction error=0.8189114293668577, variation=3.6983562878845078e-09.
Starting iteration 178
reconstruction error=0.20880427042058936
iteration 1, reconstruction error: 0.20880426206364908, decrease = 8.356940278675395e-09
iteration 2, reconstruction error: 0.20880425375883496, decrease = 8.304814114179493e-09
iteration 3, reconstruction error: 0.20880424550626497, decrease = 8.252569988487224e-09
iteration 4, reconstruction error: 0.20880423730556893, decrease = 8.20069603890694e-09
PARAFAC2 reconstruction error=0.8189114256870825, variation=3.6797751512551713e-09.
Starting iteration 179
reconstruction error=0.20880422830052423
iteration 1, reconstruction error: 0.20880421998445212, decrease = 8.3160721087161e-09
iteration 2, reconstruction error: 0.2088042117200804, decrease = 8.26437171475014e-09
iteration 3, reconstruction error: 0.20880420350749934, decrease = 8.21258105965228e-09
iteration 4, reconstruction error: 0.20880419534635025, decrease = 8.1611490898581e-09
PARAFAC2 reconstruction error=0.8189114220251705, variation=3.66191199585586e-09.
Starting iteration 180
reconstruction error=0.2088041863506088
iteration 1, reconstruction error: 0.20880417807383295, decrease = 8.276775848026219e-09
iteration 2, reconstruction error: 0.20880416984834407, decrease = 8.225488873359055e-09
iteration 3, reconstruction error: 0.2088041616742147, decrease = 8.174129373372807e-09
iteration 4, reconstruction error: 0.20880415355108692, decrease = 8.123127781534123e-09
PARAFAC2 reconstruction error=0.8189114183804348, variation=3.644735735441884e-09.
Starting iteration 181
reconstruction error=0.2088041445637319
iteration 1, reconstruction error: 0.2088041363247444, decrease = 8.238987492248384e-09
iteration 2, reconstruction error: 0.20880412813665514, decrease = 8.188089262173293e-09
iteration 3, reconstruction error: 0.20880411999950424, decrease = 8.137150897535861e-09
iteration 4, reconstruction error: 0.20880411191293766, decrease = 8.086566583020982e-09
PARAFAC2 reconstruction error=0.8189114147522194, variation=3.628215394790857e-09.
Starting iteration 182
reconstruction error=0.20880410293311155
iteration 1, reconstruction error: 0.2088040947304801, decrease = 8.202631462950194e-09
iteration 2, reconstruction error: 0.20880408657836272, decrease = 8.152117370041623e-09
iteration 3, reconstruction error: 0.2088040784767796, decrease = 8.101583126585155e-09
iteration 4, reconstruction error: 0.20880407042538124, decrease = 8.051398353581263e-09
PARAFAC2 reconstruction error=0.8189114111398964, variation=3.6123229962825576e-09.
Starting iteration 183
reconstruction error=0.20880406145227928
iteration 1, reconstruction error: 0.2088040532846278, decrease = 8.1676514718243e-09
iteration 2, reconstruction error: 0.20880404516712103, decrease = 8.117506777871597e-09
iteration 3, reconstruction error: 0.20880403709975973, decrease = 8.067361306762777e-09
iteration 4, reconstruction error: 0.20880402908220141, decrease = 8.017558311701478e-09
PARAFAC2 reconstruction error=0.8189114075428657, variation=3.5970306733190682e-09.
Starting iteration 184
reconstruction error=0.20880402011507254
iteration 1, reconstruction error: 0.2088040119810883, decrease = 8.133984236158298e-09
iteration 2, reconstruction error: 0.20880400389688936, decrease = 8.084198949154242e-09
iteration 3, reconstruction error: 0.20880399586246332, decrease = 8.03442604113691e-09
iteration 4, reconstruction error: 0.20880398787746854, decrease = 7.984994776499832e-09
PARAFAC2 reconstruction error=0.818911403960554, variation=3.5823117805477978e-09.
Starting iteration 185
reconstruction error=0.2088039789156107
iteration 1, reconstruction error: 0.20880397081403573, decrease = 8.101574966445924e-09
iteration 2, reconstruction error: 0.20880396276190435, decrease = 8.052131378333272e-09
iteration 3, reconstruction error: 0.20880395475918026, decrease = 8.002724094513525e-09
iteration 4, reconstruction error: 0.20880394680553266, decrease = 7.953647601643965e-09
PARAFAC2 reconstruction error=0.8189114003924127, variation=3.5681412269283896e-09.
Starting iteration 186
reconstruction error=0.20880393784829368
iteration 1, reconstruction error: 0.20880392977792703, decrease = 8.070366652734862e-09
iteration 2, reconstruction error: 0.2088039217566715, decrease = 8.021255520906934e-09
iteration 3, reconstruction error: 0.20880391378447702, decrease = 7.972194487892992e-09
iteration 4, reconstruction error: 0.20880390586100805, decrease = 7.923468964277092e-09
PARAFAC2 reconstruction error=0.8189113968379174, variation=3.5544953647104194e-09.
Starting iteration 187
reconstruction error=0.2088038969077763
iteration 1, reconstruction error: 0.20880388886747178, decrease = 8.040304505518847e-09
iteration 2, reconstruction error: 0.20880388087595753, decrease = 7.991514255900611e-09
iteration 3, reconstruction error: 0.20880387293316577, decrease = 7.942791757642453e-09
iteration 4, reconstruction error: 0.20880386503876397, decrease = 7.894401798935746e-09
PARAFAC2 reconstruction error=0.8189113932965671, variation=3.541350213076555e-09.
Starting iteration 188
reconstruction error=0.20880385608897678
iteration 1, reconstruction error: 0.208803848077633, decrease = 8.011343782809988e-09
iteration 2, reconstruction error: 0.208803840114771, decrease = 7.962862008659144e-09
iteration 3, reconstruction error: 0.20880383220030516, decrease = 7.914465832703499e-09
iteration 4, reconstruction error: 0.20880382433390843, decrease = 7.866396728450908e-09
PARAFAC2 reconstruction error=0.8189113897678825, variation=3.528684677789329e-09.
Starting iteration 189
reconstruction error=0.20880381538703754
iteration 1, reconstruction error: 0.20880380740360704, decrease = 7.98343050001371e-09
iteration 2, reconstruction error: 0.20880379946835675, decrease = 7.935250290191931e-09
iteration 3, reconstruction error: 0.208803791581191, decrease = 7.887165753839298e-09
iteration 4, reconstruction error: 0.20880378374178438, decrease = 7.839406623855183e-09
PARAFAC2 reconstruction error=0.8189113862514056, variation=3.5164768874551555e-09.
Starting iteration 190
reconstruction error=0.2088037747973361
iteration 1, reconstruction error: 0.20880376684081386, decrease = 7.956522246610476e-09
iteration 2, reconstruction error: 0.2088037589321849, decrease = 7.90862897392941e-09
iteration 3, reconstruction error: 0.20880375107133353, decrease = 7.860851358731935e-09
iteration 4, reconstruction error: 0.20880374325794432, decrease = 7.813389213406907e-09
PARAFAC2 reconstruction error=0.8189113827466984, variation=3.5047071911264993e-09.
Starting iteration 191
reconstruction error=0.20880373431546975
iteration 1, reconstruction error: 0.20880372638489858, decrease = 7.930571171987921e-09
iteration 2, reconstruction error: 0.2088037185019415, decrease = 7.882957092641973e-09
iteration 3, reconstruction error: 0.20880371066646738, decrease = 7.835474102879658e-09
iteration 4, reconstruction error: 0.20880370287816075, decrease = 7.788306638500941e-09
PARAFAC2 reconstruction error=0.8189113792533423, variation=3.4933560488781268e-09.
Starting iteration 192
reconstruction error=0.20880369393724416
iteration 1, reconstruction error: 0.20880368603170696, decrease = 7.905537197094858e-09
iteration 2, reconstruction error: 0.2088036781735085, decrease = 7.858198453059018e-09
iteration 3, reconstruction error: 0.20880367036251382, decrease = 7.810994684387396e-09
iteration 4, reconstruction error: 0.20880366259840666, decrease = 7.764107162744338e-09
PARAFAC2 reconstruction error=0.818911375770937, variation=3.4824053640747366e-09.
Starting iteration 193
reconstruction error=0.20880365365865486
iteration 1, reconstruction error: 0.20880364577727778, decrease = 7.881377078744478e-09
iteration 2, reconstruction error: 0.20880363794297643, decrease = 7.834301346543171e-09
iteration 3, reconstruction error: 0.20880363015559808, decrease = 7.787378353274477e-09
iteration 4, reconstruction error: 0.20880362241484038, decrease = 7.740757701490963e-09
PARAFAC2 reconstruction error=0.8189113722991, variation=3.4718369290587248e-09.
Starting iteration 194
reconstruction error=0.2088036134759024
iteration 1, reconstruction error: 0.20880360561784317, decrease = 7.85805923109173e-09
iteration 2, reconstruction error: 0.2088035978066051, decrease = 7.811238073029969e-09
iteration 3, reconstruction error: 0.2088035900420286, decrease = 7.764576509527998e-09
iteration 4, reconstruction error: 0.20880358232380739, decrease = 7.71822120104737e-09
PARAFAC2 reconstruction error=0.8189113688374655, variation=3.461634534573932e-09.
Starting iteration 195
reconstruction error=0.20880357338535804
iteration 1, reconstruction error: 0.20880356554981444, decrease = 7.835543602841e-09
iteration 2, reconstruction error: 0.20880355776084988, decrease = 7.788964556665334e-09
iteration 3, reconstruction error: 0.20880355001828924, decrease = 7.742560648171803e-09
iteration 4, reconstruction error: 0.20880354232182477, decrease = 7.696464465745123e-09
PARAFAC2 reconstruction error=0.8189113653856841, variation=3.451781416252686e-09.
Starting iteration 196
reconstruction error=0.20880353338356553
iteration 1, reconstruction error: 0.20880352556977402, decrease = 7.81379150271988e-09
iteration 2, reconstruction error: 0.20880351780232395, decrease = 7.76745007202706e-09
iteration 3, reconstruction error: 0.20880351008102482, decrease = 7.72129912784969e-09
iteration 4, reconstruction error: 0.20880350240558126, decrease = 7.675443558508022e-09
PARAFAC2 reconstruction error=0.818911361943421, variation=3.4422631411956672e-09.
Starting iteration 197
reconstruction error=0.20880349346723867
iteration 1, reconstruction error: 0.20880348567446802, decrease = 7.79277065099393e-09
iteration 2, reconstruction error: 0.20880347792780513, decrease = 7.746662894492218e-09
iteration 3, reconstruction error: 0.20880347022705562, decrease = 7.700749510286542e-09
iteration 4, reconstruction error: 0.20880346257192178, decrease = 7.65513383238492e-09
PARAFAC2 reconstruction error=0.8189113585103576, variation=3.4330633891244133e-09.
Starting iteration 198
reconstruction error=0.2088034536332437
iteration 1, reconstruction error: 0.2088034458607959, decrease = 7.772447796483561e-09
iteration 2, reconstruction error: 0.20880343813422908, decrease = 7.726566830790205e-09
iteration 3, reconstruction error: 0.20880343045334193, decrease = 7.680887148531212e-09
iteration 4, reconstruction error: 0.20880342281783756, decrease = 7.63550436766458e-09
PARAFAC2 reconstruction error=0.8189113550861877, variation=3.424169836563351e-09.
Starting iteration 199
reconstruction error=0.2088034138786045
iteration 1, reconstruction error: 0.20880340612580692, decrease = 7.752797570592662e-09
iteration 2, reconstruction error: 0.20880339841867518, decrease = 7.707131738365902e-09
iteration 3, reconstruction error: 0.20880339075699325, decrease = 7.661681927784159e-09
iteration 4, reconstruction error: 0.20880338314047273, decrease = 7.616520525388637e-09
PARAFAC2 reconstruction error=0.81891135167062, variation=3.415567717546253e-09.
Starting iteration 200
reconstruction error=0.2088033742004803
iteration 1, reconstruction error: 0.2088033664666959, decrease = 7.733784418428868e-09
iteration 2, reconstruction error: 0.20880335877836287, decrease = 7.688333025779315e-09
iteration 3, reconstruction error: 0.20880335113526374, decrease = 7.643099125820285e-09
iteration 4, reconstruction error: 0.20880334353710384, decrease = 7.598159906807567e-09
PARAFAC2 reconstruction error=0.818911348263375, variation=3.407245041664453e-09.
Starting iteration 201
reconstruction error=0.2088033345961704
iteration 1, reconstruction error: 0.2088033268807867, decrease = 7.715383693041034e-09
iteration 2, reconstruction error: 0.20880331921064924, decrease = 7.67013746960643e-09
iteration 3, reconstruction error: 0.20880331158553278, decrease = 7.625116454912373e-09
iteration 4, reconstruction error: 0.20880330400514502, decrease = 7.580387761940699e-09
PARAFAC2 reconstruction error=0.818911344864186, variation=3.3991889303308653e-09.
Starting iteration 202
reconstruction error=0.2088032950631071
iteration 1, reconstruction error: 0.20880328736553797, decrease = 7.697569137654625e-09
iteration 2, reconstruction error: 0.20880327971301835, decrease = 7.65251961798441e-09
iteration 3, reconstruction error: 0.20880327210531227, decrease = 7.60770607621808e-09
iteration 4, reconstruction error: 0.20880326454212897, decrease = 7.563183301861898e-09
PARAFAC2 reconstruction error=0.8189113414727982, variation=3.3913878372260342e-09.
Starting iteration 203
reconstruction error=0.20880325559884264
iteration 1, reconstruction error: 0.20880324791853344, decrease = 7.680309194180168e-09
iteration 2, reconstruction error: 0.20880324028307867, decrease = 7.635454768450955e-09
iteration 3, reconstruction error: 0.2088032326922338, decrease = 7.590844869342916e-09
iteration 4, reconstruction error: 0.20880322514571656, decrease = 7.546517244438888e-09
PARAFAC2 reconstruction error=0.8189113380889678, variation=3.3838304380751083e-09.
Starting iteration 204
reconstruction error=0.20880321620105294
iteration 1, reconstruction error: 0.2088032085374692, decrease = 7.663583739825341e-09
iteration 2, reconstruction error: 0.20880320091854937, decrease = 7.618919828367154e-09
iteration 3, reconstruction error: 0.20880319334404662, decrease = 7.574502747242917e-09
iteration 4, reconstruction error: 0.2088031858136756, decrease = 7.530371021191584e-09
PARAFAC2 reconstruction error=0.8189113347124618, variation=3.3765059637147488e-09.
Starting iteration 205
reconstruction error=0.208803176867521
iteration 1, reconstruction error: 0.20880316922015515, decrease = 7.647365851681798e-09
iteration 2, reconstruction error: 0.20880316161726276, decrease = 7.602892398983485e-09
iteration 3, reconstruction error: 0.20880315405860078, decrease = 7.558661974105263e-09
iteration 4, reconstruction error: 0.2088031465438854, decrease = 7.514715377743286e-09
PARAFAC2 reconstruction error=0.8189113313430573, variation=3.3694045331600364e-09.
Starting iteration 206
reconstruction error=0.20880313759615168
iteration 1, reconstruction error: 0.20880312996450784, decrease = 7.631643844652203e-09
iteration 2, reconstruction error: 0.2088031223771654, decrease = 7.587342448767131e-09
iteration 3, reconstruction error: 0.20880311483386518, decrease = 7.543300206691583e-09
iteration 4, reconstruction error: 0.2088031073343265, decrease = 7.499538684507812e-09
PARAFAC2 reconstruction error=0.8189113279805417, variation=3.3625155992922373e-09.
Starting iteration 207
reconstruction error=0.2088030983849322
iteration 1, reconstruction error: 0.20880309076854908, decrease = 7.616383107533764e-09
iteration 2, reconstruction error: 0.20880308319629073, decrease = 7.57225834813191e-09
iteration 3, reconstruction error: 0.20880307566789802, decrease = 7.528392714784005e-09
iteration 4, reconstruction error: 0.20880306818309094, decrease = 7.484807079682909e-09
PARAFAC2 reconstruction error=0.8189113246247116, variation=3.3558300582825495e-09.
Starting iteration 208
reconstruction error=0.20880305923196646
iteration 1, reconstruction error: 0.20880305163039747, decrease = 7.601568985382556e-09
iteration 2, reconstruction error: 0.20880304407278666, decrease = 7.557610814945548e-09
iteration 3, reconstruction error: 0.2088030365588618, decrease = 7.513924871194178e-09
iteration 4, reconstruction error: 0.20880302908835055, decrease = 7.470511237395172e-09
PARAFAC2 reconstruction error=0.8189113212753719, variation=3.349339694480591e-09.
Starting iteration 209
reconstruction error=0.20880302013544208
iteration 1, reconstruction error: 0.2088030125482615, decrease = 7.587180578250141e-09
iteration 2, reconstruction error: 0.20880300500487323, decrease = 7.543388275133012e-09
iteration 3, reconstruction error: 0.20880299750500123, decrease = 7.49987200121538e-09
iteration 4, reconstruction error: 0.20880299004837474, decrease = 7.456626482937878e-09
PARAFAC2 reconstruction error=0.8189113179323376, variation=3.3430342938345348e-09.
Starting iteration 210
reconstruction error=0.20880298109363962
iteration 1, reconstruction error: 0.20880297352044244, decrease = 7.57319718047711e-09
iteration 2, reconstruction error: 0.20880296599087336, decrease = 7.529569079345322e-09
iteration 3, reconstruction error: 0.20880295850465544, decrease = 7.486217923347027e-09
iteration 4, reconstruction error: 0.20880295106151955, decrease = 7.443135885409902e-09
PARAFAC2 reconstruction error=0.8189113145954302, variation=3.3369074170508384e-09.
Starting iteration 211
reconstruction error=0.20880294210492925
iteration 1, reconstruction error: 0.20880293454532214, decrease = 7.559607106966126e-09
iteration 2, reconstruction error: 0.20880292702918887, decrease = 7.51613327132361e-09
iteration 3, reconstruction error: 0.20880291955624328, decrease = 7.472945595665692e-09
iteration 4, reconstruction error: 0.20880291212621926, decrease = 7.4300240127112005e-09
PARAFAC2 reconstruction error=0.8189113112644806, variation=3.3309496272337924e-09.
Starting iteration 212
reconstruction error=0.20880290316775033
iteration 1, reconstruction error: 0.20880289562136384, decrease = 7.546386487922163e-09
iteration 2, reconstruction error: 0.20880288811829462, decrease = 7.503069221481695e-09
iteration 3, reconstruction error: 0.20880288065825958, decrease = 7.460035034156931e-09
iteration 4, reconstruction error: 0.2088028732409911, decrease = 7.417268493847828e-09
PARAFAC2 reconstruction error=0.8189113079393257, variation=3.325154929179064e-09.
Starting iteration 213
reconstruction error=0.20880286428063577
iteration 1, reconstruction error: 0.20880285674711357, decrease = 7.533522194957953e-09
iteration 2, reconstruction error: 0.2088028492567582, decrease = 7.490355363737322e-09
iteration 3, reconstruction error: 0.20880284180928355, decrease = 7.447474664745712e-09
iteration 4, reconstruction error: 0.2088028344044212, decrease = 7.40486233441473e-09
PARAFAC2 reconstruction error=0.8189113046198108, variation=3.3195148851916656e-09.
Starting iteration 214
reconstruction error=0.20880282544217735
iteration 1, reconstruction error: 0.20880281792117927, decrease = 7.520998074328489e-09
iteration 2, reconstruction error: 0.20880281044320226, decrease = 7.47797701539099e-09
iteration 3, reconstruction error: 0.20880280300795556, decrease = 7.4352466961080665e-09
iteration 4, reconstruction error: 0.20880279561517306, decrease = 7.392782497284145e-09
PARAFAC2 reconstruction error=0.8189113013057873, variation=3.3140235000672646e-09.
Starting iteration 215
reconstruction error=0.20880278665104826
iteration 1, reconstruction error: 0.20880277914224957, decrease = 7.508798693933727e-09
iteration 2, reconstruction error: 0.20880277167632696, decrease = 7.46592260236767e-09
iteration 3, reconstruction error: 0.20880276425299044, decrease = 7.42333652881122e-09
iteration 4, reconstruction error: 0.20880275687197158, decrease = 7.381018851670973e-09
PARAFAC2 reconstruction error=0.8189112979971136, variation=3.3086736683785034e-09.
Starting iteration 216
reconstruction error=0.2088027479059867
iteration 1, reconstruction error: 0.2088027404090766, decrease = 7.496910120474709e-09
iteration 2, reconstruction error: 0.2088027329549037, decrease = 7.454172890053457e-09
iteration 3, reconstruction error: 0.20880272554317117, decrease = 7.411732533268989e-09
iteration 4, reconstruction error: 0.2088027181736182, decrease = 7.369552967873005e-09
PARAFAC2 reconstruction error=0.818911294693654, variation=3.303459616965654e-09.
Starting iteration 217
reconstruction error=0.20880270920578836
iteration 1, reconstruction error: 0.2088027017204706, decrease = 7.485317754518661e-09
iteration 2, reconstruction error: 0.20880269427775286, decrease = 7.442717747663252e-09
iteration 3, reconstruction error: 0.20880268687733733, decrease = 7.4004155303786234e-09
iteration 4, reconstruction error: 0.20880267951895873, decrease = 7.358378600885729e-09
PARAFAC2 reconstruction error=0.8189112913952795, variation=3.2983744624459632e-09.
Starting iteration 218
reconstruction error=0.20880267054931698
iteration 1, reconstruction error: 0.20880266307530776, decrease = 7.474009217078859e-09
iteration 2, reconstruction error: 0.2088026556437628, decrease = 7.431544962743786e-09
iteration 3, reconstruction error: 0.2088026482543828, decrease = 7.389379996780576e-09
iteration 4, reconstruction error: 0.20880264090691011, decrease = 7.347472685825807e-09
PARAFAC2 reconstruction error=0.8189112881018658, variation=3.293413763927333e-09.
Starting iteration 219
reconstruction error=0.20880263193549303
iteration 1, reconstruction error: 0.20880262447252085, decrease = 7.462972184679728e-09
iteration 2, reconstruction error: 0.20880261705188102, decrease = 7.420639824839981e-09
iteration 3, reconstruction error: 0.20880260967327352, decrease = 7.378607502772638e-09
iteration 4, reconstruction error: 0.20880260233643683, decrease = 7.336836693738746e-09
PARAFAC2 reconstruction error=0.8189112848132946, variation=3.288571193138523e-09.
Starting iteration 220
reconstruction error=0.20880259336329252
iteration 1, reconstruction error: 0.20880258591109901, decrease = 7.452193501178428e-09
iteration 2, reconstruction error: 0.20880257850110828, decrease = 7.40999073212123e-09
iteration 3, reconstruction error: 0.20880257113301717, decrease = 7.368091109460906e-09
iteration 4, reconstruction error: 0.20880256380657042, decrease = 7.326446754829519e-09
PARAFAC2 reconstruction error=0.8189112815294528, variation=3.2838417540759224e-09.
Starting iteration 221
reconstruction error=0.20880255483174304
iteration 1, reconstruction error: 0.20880254739007673, decrease = 7.441666310947781e-09
iteration 2, reconstruction error: 0.20880253999049056, decrease = 7.399586166023653e-09
iteration 3, reconstruction error: 0.20880253263267523, decrease = 7.357815329234185e-09
iteration 4, reconstruction error: 0.2088025253163762, decrease = 7.316299038828689e-09
PARAFAC2 reconstruction error=0.8189112782502326, variation=3.2792202286913152e-09.
Starting iteration 222
reconstruction error=0.20880251633992147
iteration 1, reconstruction error: 0.20880250890854943, decrease = 7.4313720455077e-09
iteration 2, reconstruction error: 0.20880250151912952, decrease = 7.3894199092983115e-09
iteration 3, reconstruction error: 0.20880249417135932, decrease = 7.3477701978408305e-09
iteration 4, reconstruction error: 0.20880248686498126, decrease = 7.3063780581250626e-09
PARAFAC2 reconstruction error=0.8189112749755301, variation=3.2747025091595106e-09.
Starting iteration 223
reconstruction error=0.20880247788695458
iteration 1, reconstruction error: 0.2088024704656508, decrease = 7.421303765964282e-09
iteration 2, reconstruction error: 0.20880246308617806, decrease = 7.37947275508688e-09
iteration 3, reconstruction error: 0.2088024557482278, decrease = 7.337950247432445e-09
iteration 4, reconstruction error: 0.2088024484515486, decrease = 7.2966792052930884e-09
PARAFAC2 reconstruction error=0.818911271705247, variation=3.270283044365385e-09.
Starting iteration 224
reconstruction error=0.20880243947201713
iteration 1, reconstruction error: 0.20880243206056182, decrease = 7.41145531057974e-09
iteration 2, reconstruction error: 0.20880242469081875, decrease = 7.369743065810397e-09
iteration 3, reconstruction error: 0.2088024173624794, decrease = 7.328339352019597e-09
iteration 4, reconstruction error: 0.20880241007529154, decrease = 7.287187853144417e-09
PARAFAC2 reconstruction error=0.8189112684392891, variation=3.265957948528353e-09.
Starting iteration 225
reconstruction error=0.20880240109432413
iteration 1, reconstruction error: 0.20880239369251055, decrease = 7.401813578722383e-09
iteration 2, reconstruction error: 0.2088023863322943, decrease = 7.360216242036088e-09
iteration 3, reconstruction error: 0.20880237901336224, decrease = 7.318932071509465e-09
iteration 4, reconstruction error: 0.20880237173546443, decrease = 7.277897812185685e-09
PARAFAC2 reconstruction error=0.8189112651775652, variation=3.26172389097934e-09.
Starting iteration 226
reconstruction error=0.20880236275312808
iteration 1, reconstruction error: 0.20880235536076114, decrease = 7.392366940806028e-09
iteration 2, reconstruction error: 0.2088023480098758, decrease = 7.350885344870051e-09
iteration 3, reconstruction error: 0.20880234070015666, decrease = 7.309719135539794e-09
iteration 4, reconstruction error: 0.20880233343135837, decrease = 7.268798285497979e-09
PARAFAC2 reconstruction error=0.81891126191999, variation=3.2575752095809207e-09.
Starting iteration 227
reconstruction error=0.20880232444772945
iteration 1, reconstruction error: 0.20880231706461705, decrease = 7.383112399228509e-09
iteration 2, reconstruction error: 0.20880230972287597, decrease = 7.341741076194452e-09
iteration 3, reconstruction error: 0.20880230242218617, decrease = 7.30068980270282e-09
iteration 4, reconstruction error: 0.20880229516230692, decrease = 7.259879253318502e-09
PARAFAC2 reconstruction error=0.8189112586664805, variation=3.253509461842441e-09.
Starting iteration 228
reconstruction error=0.20880228617746288
iteration 1, reconstruction error: 0.20880227880342683, decrease = 7.374036048446442e-09
iteration 2, reconstruction error: 0.20880227147064956, decrease = 7.332777274271507e-09
iteration 3, reconstruction error: 0.20880226417881398, decrease = 7.291835579792405e-09
iteration 4, reconstruction error: 0.208802256927671, decrease = 7.2511429916044534e-09
PARAFAC2 reconstruction error=0.8189112554169584, variation=3.2495220958494997e-09.
Starting iteration 229
reconstruction error=0.2088022479416941
iteration 1, reconstruction error: 0.20880224057656324, decrease = 7.3651308662991966e-09
iteration 2, reconstruction error: 0.2088022332525777, decrease = 7.323985529161803e-09
iteration 3, reconstruction error: 0.20880222596942438, decrease = 7.2831533304285045e-09
iteration 4, reconstruction error: 0.20880221872686028, decrease = 7.2425641040041455e-09
PARAFAC2 reconstruction error=0.8189112521713477, variation=3.245610669111443e-09.
Starting iteration 230
reconstruction error=0.20880220973983082
iteration 1, reconstruction error: 0.2088022023834377, decrease = 7.3563931335396404e-09
iteration 2, reconstruction error: 0.20880219506808276, decrease = 7.315354932924123e-09
iteration 3, reconstruction error: 0.20880218779345355, decrease = 7.274629204578886e-09
iteration 4, reconstruction error: 0.20880218055930097, decrease = 7.2341525825248e-09
PARAFAC2 reconstruction error=0.8189112489295769, variation=3.2417708517584742e-09.
Starting iteration 231
reconstruction error=0.2088021715713056
iteration 1, reconstruction error: 0.2088021642234929, decrease = 7.347812691627098e-09
iteration 2, reconstruction error: 0.20880215691661116, decrease = 7.306881738555759e-09
iteration 3, reconstruction error: 0.20880214965034877, decrease = 7.2662623973318574e-09
iteration 4, reconstruction error: 0.20880214242445963, decrease = 7.225889137041364e-09
PARAFAC2 reconstruction error=0.818911245691577, variation=3.2379998682330324e-09.
Starting iteration 232
reconstruction error=0.20880213343558818
iteration 1, reconstruction error: 0.20880212609620244, decrease = 7.33938573804771e-09
iteration 2, reconstruction error: 0.2088021187976466, decrease = 7.298555843027188e-09
iteration 3, reconstruction error: 0.20880211153960365, decrease = 7.258042944435772e-09
iteration 4, reconstruction error: 0.20880210432183063, decrease = 7.217773018153295e-09
PARAFAC2 reconstruction error=0.8189112424572823, variation=3.234294720932951e-09.
Starting iteration 233
reconstruction error=0.20880209533217184
iteration 1, reconstruction error: 0.2088020880010711, decrease = 7.3311007264820205e-09
iteration 2, reconstruction error: 0.20880208071069925, decrease = 7.290371861756739e-09
iteration 3, reconstruction error: 0.20880207346073384, decrease = 7.249965405797809e-09
iteration 4, reconstruction error: 0.20880206625094044, decrease = 7.209793401186104e-09
PARAFAC2 reconstruction error=0.8189112392266297, variation=3.230652634300668e-09.
Starting iteration 234
reconstruction error=0.20880205726058307
iteration 1, reconstruction error: 0.2088020499376293, decrease = 7.322953771149443e-09
iteration 2, reconstruction error: 0.20880204265530414, decrease = 7.282325159563285e-09
iteration 3, reconstruction error: 0.20880203541328207, decrease = 7.242022065367948e-09
iteration 4, reconstruction error: 0.20880202821133018, decrease = 7.201951895963177e-09
PARAFAC2 reconstruction error=0.8189112359995594, variation=3.22707027766711e-09.
Starting iteration 235
reconstruction error=0.2088020192203703
iteration 1, reconstruction error: 0.20880201190543157, decrease = 7.314938738067767e-09
iteration 2, reconstruction error: 0.20880200463102122, decrease = 7.274410351865157e-09
iteration 3, reconstruction error: 0.20880199739681754, decrease = 7.234203680539508e-09
iteration 4, reconstruction error: 0.20880199020258147, decrease = 7.194236067986637e-09
PARAFAC2 reconstruction error=0.8189112327760135, variation=3.2235458746754375e-09.
Starting iteration 236
reconstruction error=0.20880198121111068
iteration 1, reconstruction error: 0.20880197390406133, decrease = 7.307049354476902e-09
iteration 2, reconstruction error: 0.20880196663744235, decrease = 7.266618973211791e-09
iteration 3, reconstruction error: 0.20880195941092672, decrease = 7.2265156358941596e-09
iteration 4, reconstruction error: 0.2088019522242869, decrease = 7.186639811029849e-09
PARAFAC2 reconstruction error=0.8189112295559374, variation=3.2200760946565765e-09.
Starting iteration 237
reconstruction error=0.20880194323240242
iteration 1, reconstruction error: 0.2088019359331205, decrease = 7.299281928885293e-09
iteration 2, reconstruction error: 0.2088019286741718, decrease = 7.258948692134837e-09
iteration 3, reconstruction error: 0.20880192145523468, decrease = 7.21893711475019e-09
iteration 4, reconstruction error: 0.20880191427607162, decrease = 7.179163069581662e-09
PARAFAC2 reconstruction error=0.8189112263392783, variation=3.2166591612536877e-09.
Starting iteration 238
reconstruction error=0.20880190528386924
iteration 1, reconstruction error: 0.2088018979922453, decrease = 7.291623943528336e-09
iteration 2, reconstruction error: 0.20880189074085198, decrease = 7.251393319140931e-09
iteration 3, reconstruction error: 0.20880188352937382, decrease = 7.211478164625973e-09
iteration 4, reconstruction error: 0.20880187635757713, decrease = 7.171796684302123e-09
PARAFAC2 reconstruction error=0.8189112231259864, variation=3.2132918548199996e-09.
Starting iteration 239
reconstruction error=0.2088018673651538
iteration 1, reconstruction error: 0.20880186008107288, decrease = 7.284080921765579e-09
iteration 2, reconstruction error: 0.2088018528371285, decrease = 7.243944388779511e-09
iteration 3, reconstruction error: 0.20880184563300516, decrease = 7.20412332566589e-09
iteration 4, reconstruction error: 0.20880183846846997, decrease = 7.164535187342835e-09
PARAFAC2 reconstruction error=0.8189112199160133, variation=3.2099730651324876e-09.
Starting iteration 240
reconstruction error=0.2088018294759204
iteration 1, reconstruction error: 0.20880182219927762, decrease = 7.276642788323073e-09
iteration 2, reconstruction error: 0.2088018149626788, decrease = 7.236598820181683e-09
iteration 3, reconstruction error: 0.20880180776580853, decrease = 7.196870266401589e-09
iteration 4, reconstruction error: 0.20880180060842995, decrease = 7.157378578703799e-09
PARAFAC2 reconstruction error=0.8189112167093132, variation=3.2067001276558926e-09.
Starting iteration 241
reconstruction error=0.20880179161585444
iteration 1, reconstruction error: 0.20880178434654792, decrease = 7.269306517843077e-09
iteration 2, reconstruction error: 0.20880177711719597, decrease = 7.229351950410745e-09
iteration 3, reconstruction error: 0.20880176992747923, decrease = 7.1897167386314464e-09
iteration 4, reconstruction error: 0.20880176277716161, decrease = 7.150317615778334e-09
PARAFAC2 reconstruction error=0.8189112135058426, variation=3.2034705998995605e-09.
Starting iteration 242
reconstruction error=0.20880175378465843
iteration 1, reconstruction error: 0.20880174652259414, decrease = 7.262064283253267e-09
iteration 2, reconstruction error: 0.20880173930038953, decrease = 7.2222046121339645e-09
iteration 3, reconstruction error: 0.20880173211773298, decrease = 7.182656552862099e-09
iteration 4, reconstruction error: 0.208801724974383, decrease = 7.143349967098089e-09
PARAFAC2 reconstruction error=0.8189112103055589, variation=3.200283704707374e-09.
Starting iteration 243
reconstruction error=0.2088017159820527
iteration 1, reconstruction error: 0.2088017087271381, decrease = 7.254914585752559e-09
iteration 2, reconstruction error: 0.2088017015119914, decrease = 7.2151467023218174e-09
iteration 3, reconstruction error: 0.20880169433630322, decrease = 7.175688182536888e-09
iteration 4, reconstruction error: 0.20880168719983455, decrease = 7.1364686660135845e-09
PARAFAC2 reconstruction error=0.8189112071084225, variation=3.1971364444771666e-09.
Starting iteration 244
reconstruction error=0.20880167820777426
iteration 1, reconstruction error: 0.2088016709599199, decrease = 7.247854372227636e-09
iteration 2, reconstruction error: 0.20880166375174694, decrease = 7.208172947414937e-09
iteration 3, reconstruction error: 0.20880165658293853, decrease = 7.168808408009042e-09
iteration 4, reconstruction error: 0.2088016494532678, decrease = 7.129670742678229e-09
PARAFAC2 reconstruction error=0.8189112039143948, variation=3.1940277089859137e-09.
Starting iteration 245
reconstruction error=0.20880164046157323
iteration 1, reconstruction error: 0.20880163322069878, decrease = 7.2408744555829685e-09
iteration 2, reconstruction error: 0.2088016260194156, decrease = 7.201283180879869e-09
iteration 3, reconstruction error: 0.20880161885740592, decrease = 7.162009679761994e-09
iteration 4, reconstruction error: 0.20880161173444678, decrease = 7.122959139183038e-09
PARAFAC2 reconstruction error=0.8189112007234391, variation=3.1909556108544734e-09.
Starting iteration 246
reconstruction error=0.20880160274321988
iteration 1, reconstruction error: 0.2088015955092406, decrease = 7.233979276710656e-09
iteration 2, reconstruction error: 0.20880158831476772, decrease = 7.194472878557789e-09
iteration 3, reconstruction error: 0.20880158115948114, decrease = 7.155286585458498e-09
iteration 4, reconstruction error: 0.208801574043158, decrease = 7.116323141875824e-09
PARAFAC2 reconstruction error=0.8189111975355206, variation=3.1879185957706113e-09.
Starting iteration 247
reconstruction error=0.20880156505250014
iteration 1, reconstruction error: 0.20880155782534038, decrease = 7.2271597595374715e-09
iteration 2, reconstruction error: 0.20880155063759914, decrease = 7.187741235537004e-09
iteration 3, reconstruction error: 0.2088015434889609, decrease = 7.148638236920135e-09
iteration 4, reconstruction error: 0.20880153637919582, decrease = 7.109765082224939e-09
PARAFAC2 reconstruction error=0.8189111943506053, variation=3.1849152204443953e-09.
Starting iteration 248
reconstruction error=0.20880152738920102
iteration 1, reconstruction error: 0.20880152016878986, decrease = 7.220411157859985e-09
iteration 2, reconstruction error: 0.20880151298770852, decrease = 7.181081340679185e-09
iteration 3, reconstruction error: 0.2088015058456461, decrease = 7.142062413700856e-09
iteration 4, reconstruction error: 0.20880149874237203, decrease = 7.103274080044741e-09
PARAFAC2 reconstruction error=0.8189111911686618, variation=3.181943486474381e-09.
Starting iteration 249
reconstruction error=0.20880148975314114
iteration 1, reconstruction error: 0.20880148253940373, decrease = 7.213737412969934e-09
iteration 2, reconstruction error: 0.20880147536491286, decrease = 7.174490862515981e-09
iteration 3, reconstruction error: 0.20880146822935763, decrease = 7.135555230020074e-09
iteration 4, reconstruction error: 0.20880146113250822, decrease = 7.096849413690265e-09
PARAFAC2 reconstruction error=0.8189111879896591, variation=3.179002727726754e-09.
Starting iteration 250
reconstruction error=0.20880145214413628
iteration 1, reconstruction error: 0.2088014449370048, decrease = 7.207131474951112e-09
iteration 2, reconstruction error: 0.20880143776904267, decrease = 7.1679621405085214e-09
iteration 3, reconstruction error: 0.20880143063992676, decrease = 7.129115908721673e-09
iteration 4, reconstruction error: 0.2088014235494326, decrease = 7.090494164030403e-09
PARAFAC2 reconstruction error=0.8189111848135678, variation=3.176091278866977e-09.
Starting iteration 251
reconstruction error=0.20880141456201853
iteration 1, reconstruction error: 0.20880140736143432, decrease = 7.200584212219141e-09
iteration 2, reconstruction error: 0.20880140019993154, decrease = 7.1615027796845254e-09
iteration 3, reconstruction error: 0.2088013930771917, decrease = 7.122739842380099e-09
iteration 4, reconstruction error: 0.2088013859929957, decrease = 7.084196007589583e-09
PARAFAC2 reconstruction error=0.8189111816403596, variation=3.1732082517166305e-09.
Starting iteration 252
reconstruction error=0.2088013770066311
iteration 1, reconstruction error: 0.20880136981253244, decrease = 7.194098650131764e-09
iteration 2, reconstruction error: 0.20880136265742502, decrease = 7.155107423217899e-09
iteration 3, reconstruction error: 0.20880135554100493, decrease = 7.11642009210145e-09
iteration 4, reconstruction error: 0.2088013484630454, decrease = 7.07795952403778e-09
PARAFAC2 reconstruction error=0.8189111784700083, variation=3.1703513148073625e-09.
Starting iteration 253
reconstruction error=0.20880133947783014
iteration 1, reconstruction error: 0.20880133229015616, decrease = 7.187673983777287e-09
iteration 2, reconstruction error: 0.2088013251413901, decrease = 7.148766051345845e-09
iteration 3, reconstruction error: 0.20880131803123267, decrease = 7.110157435041842e-09
iteration 4, reconstruction error: 0.20880131095945328, decrease = 7.071779384304477e-09
PARAFAC2 reconstruction error=0.8189111753024879, variation=3.167520357116871e-09.
Starting iteration 254
reconstruction error=0.20880130197548077
iteration 1, reconstruction error: 0.20880129479417128, decrease = 7.181309491510746e-09
iteration 2, reconstruction error: 0.20880128765169412, decrease = 7.14247716526728e-09
iteration 3, reconstruction error: 0.20880128054774155, decrease = 7.1039525650906654e-09
iteration 4, reconstruction error: 0.20880127348208524, decrease = 7.06565631003464e-09
PARAFAC2 reconstruction error=0.8189111721377738, variation=3.1647141573998283e-09.
Starting iteration 255
reconstruction error=0.2088012644994512
iteration 1, reconstruction error: 0.2088012573244568, decrease = 7.174994376413224e-09
iteration 2, reconstruction error: 0.20880125018821227, decrease = 7.136244539740488e-09
iteration 3, reconstruction error: 0.20880124309041131, decrease = 7.0978009580890955e-09
iteration 4, reconstruction error: 0.20880123603082948, decrease = 7.059581835777706e-09
PARAFAC2 reconstruction error=0.8189111689758425, variation=3.161931272366303e-09.
Starting iteration 256
reconstruction error=0.2088012270496282
iteration 1, reconstruction error: 0.20880121988089576, decrease = 7.168732440998582e-09
iteration 2, reconstruction error: 0.20880121275083366, decrease = 7.1300620962944095e-09
iteration 3, reconstruction error: 0.20880120565913496, decrease = 7.09169870050097e-09
iteration 4, reconstruction error: 0.20880119860557672, decrease = 7.053558237490876e-09
PARAFAC2 reconstruction error=0.8189111658166717, variation=3.159170813837875e-09.
Starting iteration 257
reconstruction error=0.2088011896259012
iteration 1, reconstruction error: 0.2088011824633805, decrease = 7.162520687664653e-09
iteration 2, reconstruction error: 0.20880117533945153, decrease = 7.1239289745061996e-09
iteration 3, reconstruction error: 0.20880116825380882, decrease = 7.085642711457396e-09
iteration 4, reconstruction error: 0.2088011612062248, decrease = 7.047584016373065e-09
PARAFAC2 reconstruction error=0.81891116266024, variation=3.1564316715915197e-09.
Starting iteration 258
reconstruction error=0.2088011522281635
iteration 1, reconstruction error: 0.20880114507180986, decrease = 7.156353648563041e-09
iteration 2, reconstruction error: 0.20880113795396693, decrease = 7.117842926174234e-09
iteration 3, reconstruction error: 0.20880113087433236, decrease = 7.079634573026183e-09
iteration 4, reconstruction error: 0.20880112383268096, decrease = 7.041651400863103e-09
PARAFAC2 reconstruction error=0.8189111595065263, variation=3.153713734604935e-09.
Starting iteration 259
reconstruction error=0.2088011148563271
iteration 1, reconstruction error: 0.20880110770609187, decrease = 7.150235237229907e-09
iteration 2, reconstruction error: 0.20880110059429335, decrease = 7.111798511205691e-09
iteration 3, reconstruction error: 0.20880109352062146, decrease = 7.073671898227829e-09
iteration 4, reconstruction error: 0.2088010864848571, decrease = 7.035764360008301e-09
PARAFAC2 reconstruction error=0.8189111563555116, variation=3.1510146714097687e-09.
Starting iteration 260
reconstruction error=0.2088010775103002
iteration 1, reconstruction error: 0.20880107036614257, decrease = 7.1441576265929285e-09
iteration 2, reconstruction error: 0.20880106326034217, decrease = 7.105800392537276e-09
iteration 3, reconstruction error: 0.20880105619259512, decrease = 7.067747054279039e-09
iteration 4, reconstruction error: 0.2088010491626739, decrease = 7.029921228474123e-09
PARAFAC2 reconstruction error=0.8189111532071766, variation=3.1483350371175334e-09.
Starting iteration 261
reconstruction error=0.20880104019000506
iteration 1, reconstruction error: 0.20880103305188413, decrease = 7.138120927674407e-09
iteration 2, reconstruction error: 0.20880102595204253, decrease = 7.099841603519508e-09
iteration 3, reconstruction error: 0.2088010188901733, decrease = 7.0618692282753415e-09
iteration 4, reconstruction error: 0.20880101186606198, decrease = 7.024111320363957e-09
PARAFAC2 reconstruction error=0.8189111500615033, variation=3.1456732774159946e-09.
Starting iteration 262
reconstruction error=0.20880100289536793
iteration 1, reconstruction error: 0.20880099576324204, decrease = 7.132125889874885e-09
iteration 2, reconstruction error: 0.2088009886693199, decrease = 7.093922144152387e-09
iteration 3, reconstruction error: 0.20880098161329455, decrease = 7.056025347340622e-09
iteration 4, reconstruction error: 0.20880097459494923, decrease = 7.018345321574415e-09
PARAFAC2 reconstruction error=0.8189111469184747, variation=3.143028615149035e-09.
Starting iteration 263
reconstruction error=0.20880096562631673
iteration 1, reconstruction error: 0.2088009585001527, decrease = 7.126164019988224e-09
iteration 2, reconstruction error: 0.20880095141210994, decrease = 7.088042763836455e-09
iteration 3, reconstruction error: 0.2088009443618922, decrease = 7.050217742943232e-09
iteration 4, reconstruction error: 0.2088009373492797, decrease = 7.012612490697734e-09
PARAFAC2 reconstruction error=0.8189111437780741, variation=3.1404006062274448e-09.
Starting iteration 264
reconstruction error=0.20880092838279038
iteration 1, reconstruction error: 0.20880092126254737, decrease = 7.1202430063088684e-09
iteration 2, reconstruction error: 0.2088009141803531, decrease = 7.0821942754761835e-09
iteration 3, reconstruction error: 0.20880090713590366, decrease = 7.044449440440914e-09
iteration 4, reconstruction error: 0.20880090012898928, decrease = 7.006914382046148e-09
PARAFAC2 reconstruction error=0.8189111406402859, variation=3.1377881404281993e-09.
Starting iteration 265
reconstruction error=0.2088008911647362
iteration 1, reconstruction error: 0.20880088405037794, decrease = 7.114358269166843e-09
iteration 2, reconstruction error: 0.20880087697399516, decrease = 7.0763827852982075e-09
iteration 3, reconstruction error: 0.20880086993528546, decrease = 7.0387096984259045e-09
iteration 4, reconstruction error: 0.20880086293403294, decrease = 7.0012525221763156e-09
PARAFAC2 reconstruction error=0.8189111375050946, variation=3.135191328773601e-09.
Starting iteration 266
reconstruction error=0.2088008539720941
iteration 1, reconstruction error: 0.20880084686359207, decrease = 7.108502037000974e-09
iteration 2, reconstruction error: 0.2088008397929868, decrease = 7.070605267944785e-09
iteration 3, reconstruction error: 0.20880083275998296, decrease = 7.033003845968722e-09
iteration 4, reconstruction error: 0.20880082576435757, decrease = 6.9956253845315786e-09
PARAFAC2 reconstruction error=0.8189111343724859, variation=3.132608727973718e-09.
Starting iteration 267
reconstruction error=0.20880081680482107
iteration 1, reconstruction error: 0.20880080970213977, decrease = 7.102681304216318e-09
iteration 2, reconstruction error: 0.20880080263728196, decrease = 7.064857809879754e-09
iteration 3, reconstruction error: 0.20880079560995154, decrease = 7.027330412023858e-09
iteration 4, reconstruction error: 0.20880078861992943, decrease = 6.990022116681871e-09
PARAFAC2 reconstruction error=0.8189111312424459, variation=3.130040004961643e-09.
Starting iteration 268
reconstruction error=0.20880077966287092
iteration 1, reconstruction error: 0.20880077256598414, decrease = 7.0968867726950435e-09
iteration 2, reconstruction error: 0.20880076550684376, decrease = 7.05914038334754e-09
iteration 3, reconstruction error: 0.20880075848515361, decrease = 7.021690145991855e-09
iteration 4, reconstruction error: 0.20880075150070385, decrease = 6.984449768543399e-09
PARAFAC2 reconstruction error=0.8189111281149615, variation=3.127484382581258e-09.
Starting iteration 269
reconstruction error=0.20880074254620945
iteration 1, reconstruction error: 0.2088007354550817, decrease = 7.091127740554981e-09
iteration 2, reconstruction error: 0.20880072840163016, decrease = 7.053451545058209e-09
iteration 3, reconstruction error: 0.20880072138555789, decrease = 7.016072278709373e-09
iteration 4, reconstruction error: 0.20880071440664816, decrease = 6.978909727894944e-09
PARAFAC2 reconstruction error=0.8189111249900194, variation=3.124942082877169e-09.
Starting iteration 270
reconstruction error=0.2088007054547954
iteration 1, reconstruction error: 0.20880069836940354, decrease = 7.085391856564982e-09
iteration 2, reconstruction error: 0.2088006913216131, decrease = 7.047790434588919e-09
iteration 3, reconstruction error: 0.20880068431112944, decrease = 7.010483665803591e-09
iteration 4, reconstruction error: 0.20880067733773422, decrease = 6.973395222376055e-09
PARAFAC2 reconstruction error=0.8189111218676081, variation=3.122411329492536e-09.
Starting iteration 271
reconstruction error=0.20880066838860076
iteration 1, reconstruction error: 0.20880066130891628, decrease = 7.07968447755114e-09
iteration 2, reconstruction error: 0.20880065426676148, decrease = 7.042154803738043e-09
iteration 3, reconstruction error: 0.20880064726183709, decrease = 7.004924390541234e-09
iteration 4, reconstruction error: 0.20880064029393483, decrease = 6.967902255183844e-09
PARAFAC2 reconstruction error=0.8189111187477153, variation=3.119892788561174e-09.
Starting iteration 272
reconstruction error=0.20880063134759774
iteration 1, reconstruction error: 0.20880062427359514, decrease = 7.074002605911289e-09
iteration 2, reconstruction error: 0.20880061723704746, decrease = 7.036547677863325e-09
iteration 3, reconstruction error: 0.20880061023766072, decrease = 6.999386736872282e-09
iteration 4, reconstruction error: 0.2088006032752268, decrease = 6.96243393494278e-09
PARAFAC2 reconstruction error=0.8189111156303304, variation=3.117384905770848e-09.
Starting iteration 273
reconstruction error=0.20880059433176007
iteration 1, reconstruction error: 0.20880058726341397, decrease = 7.068346102867551e-09
iteration 2, reconstruction error: 0.20880058023244946, decrease = 7.030964505050363e-09
iteration 3, reconstruction error: 0.20880057323857884, decrease = 6.993870621530007e-09
iteration 4, reconstruction error: 0.20880056628158386, decrease = 6.956994980100717e-09
PARAFAC2 reconstruction error=0.8189111125154419, variation=3.114888458277676e-09.
Starting iteration 274
reconstruction error=0.20880055734106626
iteration 1, reconstruction error: 0.208800550278355, decrease = 7.062711249172793e-09
iteration 2, reconstruction error: 0.20880054325295364, decrease = 7.025401371762996e-09
iteration 3, reconstruction error: 0.2088005362645706, decrease = 6.988383038919466e-09
iteration 4, reconstruction error: 0.20880052931299684, decrease = 6.951573761071472e-09
PARAFAC2 reconstruction error=0.8189111094030401, variation=3.1124017807471205e-09.
Starting iteration 275
reconstruction error=0.20880052037549804
iteration 1, reconstruction error: 0.2088005133183962, decrease = 7.057101847340874e-09
iteration 2, reconstruction error: 0.20880050629853406, decrease = 7.019862136026234e-09
iteration 3, reconstruction error: 0.20880049931561928, decrease = 6.9829147741895525e-09
iteration 4, reconstruction error: 0.2088004923694421, decrease = 6.946177188993374e-09
PARAFAC2 reconstruction error=0.8189111062931153, variation=3.1099248731791818e-09.
Starting iteration 276
reconstruction error=0.20880048343503865
iteration 1, reconstruction error: 0.20880047638352772, decrease = 7.051510930722316e-09
iteration 2, reconstruction error: 0.208800469369184, decrease = 7.014343716971183e-09
iteration 3, reconstruction error: 0.20880046239171438, decrease = 6.977469629854127e-09
iteration 4, reconstruction error: 0.20880045545091522, decrease = 6.940799157639788e-09
PARAFAC2 reconstruction error=0.8189111031856572, variation=3.107458068640767e-09.
Starting iteration 277
reconstruction error=0.20880044651967475
iteration 1, reconstruction error: 0.20880043947373006, decrease = 7.045944688810479e-09
iteration 2, reconstruction error: 0.20880043246488314, decrease = 7.008846919509537e-09
iteration 3, reconstruction error: 0.20880042549284092, decrease = 6.97204222133152e-09
iteration 4, reconstruction error: 0.20880041855739664, decrease = 6.935444274436264e-09
PARAFAC2 reconstruction error=0.8189111000806572, variation=3.105000034864247e-09.
Starting iteration 278
reconstruction error=0.20880040962939583
iteration 1, reconstruction error: 0.20880040258899965, decrease = 7.040396182711461e-09
iteration 2, reconstruction error: 0.20880039558562874, decrease = 7.003370910974027e-09
iteration 3, reconstruction error: 0.2088003886189946, decrease = 6.966634130689542e-09
iteration 4, reconstruction error: 0.2088003816888906, decrease = 6.9301040184210905e-09
PARAFAC2 reconstruction error=0.8189110969781069, variation=3.102550216738109e-09.
Starting iteration 279
reconstruction error=0.20880037276419183
iteration 1, reconstruction error: 0.2088003657293233, decrease = 7.034868521049731e-09
iteration 2, reconstruction error: 0.20880035873141217, decrease = 6.9979111394502524e-09
iteration 3, reconstruction error: 0.2088003517701669, decrease = 6.961245274661465e-09
iteration 4, reconstruction error: 0.20880034484538232, decrease = 6.924784579087628e-09
PARAFAC2 reconstruction error=0.8189110938779973, variation=3.1001096134630757e-09.
Starting iteration 280
reconstruction error=0.20880033592405411
iteration 1, reconstruction error: 0.20880032889469707, decrease = 7.029357040888584e-09
iteration 2, reconstruction error: 0.20880032190222414, decrease = 6.992472934008731e-09
iteration 3, reconstruction error: 0.20880031494634918, decrease = 6.9558749593578995e-09
iteration 4, reconstruction error: 0.20880030802686628, decrease = 6.91948290332256e-09
PARAFAC2 reconstruction error=0.8189110907803209, variation=3.097676448682307e-09.
Starting iteration 281
reconstruction error=0.20880029910897877
iteration 1, reconstruction error: 0.20880029208511466, decrease = 7.023864101451949e-09
iteration 2, reconstruction error: 0.2088002850980645, decrease = 6.987050160667252e-09
iteration 3, reconstruction error: 0.20880027814754604, decrease = 6.9505184663309905e-09
iteration 4, reconstruction error: 0.20880027123334707, decrease = 6.9141989633703105e-09
PARAFAC2 reconstruction error=0.8189110876850698, variation=3.095251055462711e-09.
Starting iteration 282
reconstruction error=0.20880026231896354
iteration 1, reconstruction error: 0.20880025530057467, decrease = 7.018388870072556e-09
iteration 2, reconstruction error: 0.2088002483189334, decrease = 6.981641265113581e-09
iteration 3, reconstruction error: 0.20880024137374745, decrease = 6.945185954121413e-09
iteration 4, reconstruction error: 0.20880023446481857, decrease = 6.908928873450293e-09
PARAFAC2 reconstruction error=0.8189110845922365, variation=3.092833322781985e-09.
Starting iteration 283
reconstruction error=0.20880022555400476
iteration 1, reconstruction error: 0.20880021854107492, decrease = 7.012929847949323e-09
iteration 2, reconstruction error: 0.20880021156482173, decrease = 6.976253186241621e-09
iteration 3, reconstruction error: 0.20880020462495985, decrease = 6.9398618796068234e-09
iteration 4, reconstruction error: 0.20880019772128486, decrease = 6.903674992786435e-09
PARAFAC2 reconstruction error=0.8189110815018138, variation=3.0904226955286163e-09.
Starting iteration 284
reconstruction error=0.20880018881410264
iteration 1, reconstruction error: 0.20880018180661564, decrease = 7.007487007326674e-09
iteration 2, reconstruction error: 0.20880017483573818, decrease = 6.9708774586008104e-09
iteration 3, reconstruction error: 0.20880016790118108, decrease = 6.934557095217286e-09
iteration 4, reconstruction error: 0.20880016100274454, decrease = 6.898436544222619e-09
PARAFAC2 reconstruction error=0.8189110784137953, variation=3.0880185075687905e-09.
Starting iteration 285
reconstruction error=0.20880015209925742
iteration 1, reconstruction error: 0.20880014509720016, decrease = 7.002057267335715e-09
iteration 2, reconstruction error: 0.20880013813168147, decrease = 6.965518689616701e-09
iteration 3, reconstruction error: 0.20880013120241836, decrease = 6.929263107746664e-09
iteration 4, reconstruction error: 0.2088001243092048, decrease = 6.893213555514421e-09
PARAFAC2 reconstruction error=0.818911075328174, variation=3.08562131401402e-09.
Starting iteration 286
reconstruction error=0.20880011540947271
iteration 1, reconstruction error: 0.2088001084128305, decrease = 6.996642210044257e-09
iteration 2, reconstruction error: 0.20880010145265596, decrease = 6.960174547820941e-09
iteration 3, reconstruction error: 0.2088000945286683, decrease = 6.923987661000552e-09
iteration 4, reconstruction error: 0.20880008764066776, decrease = 6.8880005310578696e-09
PARAFAC2 reconstruction error=0.8189110722449439, variation=3.083230115663582e-09.
Starting iteration 287
reconstruction error=0.20880007874475268
iteration 1, reconstruction error: 0.2088000717535109, decrease = 6.991241779941149e-09
iteration 2, reconstruction error: 0.20880006479866886, decrease = 6.954842035611364e-09
iteration 3, reconstruction error: 0.20880005787994668, decrease = 6.918722178506087e-09
iteration 4, reconstruction error: 0.20880005099713986, decrease = 6.882806824481946e-09
PARAFAC2 reconstruction error=0.818911069164099, variation=3.0808449125174775e-09.
Starting iteration 288
reconstruction error=0.20880004210510025
iteration 1, reconstruction error: 0.20880003511924655, decrease = 6.985853701069189e-09
iteration 2, reconstruction error: 0.20880002816972398, decrease = 6.949522568522326e-09
iteration 3, reconstruction error: 0.20880002125625177, decrease = 6.913472211378391e-09
iteration 4, reconstruction error: 0.20880001437863022, decrease = 6.87762155560101e-09
PARAFAC2 reconstruction error=0.8189110660856329, variation=3.078466037642613e-09.
Starting iteration 289
reconstruction error=0.20880000549052302
iteration 1, reconstruction error: 0.20879999851004197, decrease = 6.980481054297272e-09
iteration 2, reconstruction error: 0.20879999156582263, decrease = 6.9442193384450235e-09
iteration 3, reconstruction error: 0.20879998465759045, decrease = 6.908232180746765e-09
iteration 4, reconstruction error: 0.20879997778514178, decrease = 6.8724486657067985e-09
PARAFAC2 reconstruction error=0.8189110630095406, variation=3.076092269793662e-09.
Starting iteration 290
reconstruction error=0.2087999689010239
iteration 1, reconstruction error: 0.20879996192590547, decrease = 6.975118427288152e-09
iteration 2, reconstruction error: 0.20879995498698395, decrease = 6.938921520704966e-09
iteration 3, reconstruction error: 0.20879994808397637, decrease = 6.9030075822151815e-09
iteration 4, reconstruction error: 0.20879994121668674, decrease = 6.867289625844819e-09
PARAFAC2 reconstruction error=0.8189110599358166, variation=3.073724053059834e-09.
Starting iteration 291
reconstruction error=0.20879993233661442
iteration 1, reconstruction error: 0.20879992536684475, decrease = 6.9697696780668394e-09
iteration 2, reconstruction error: 0.2087999184332057, decrease = 6.933639051798224e-09
iteration 3, reconstruction error: 0.2087999115354134, decrease = 6.897792281801429e-09
iteration 4, reconstruction error: 0.20879990467327508, decrease = 6.862138329788436e-09
PARAFAC2 reconstruction error=0.8189110568644554, variation=3.0713611653965245e-09.
Starting iteration 292
reconstruction error=0.20879989579730243
iteration 1, reconstruction error: 0.20879988883287223, decrease = 6.964430199207783e-09
iteration 2, reconstruction error: 0.20879988190450097, decrease = 6.928371265590982e-09
iteration 3, reconstruction error: 0.20879987501191477, decrease = 6.892586196238781e-09
iteration 4, reconstruction error: 0.20879986815491383, decrease = 6.857000939275437e-09
PARAFAC2 reconstruction error=0.8189110537954521, variation=3.0690032737368256e-09.
Starting iteration 293
reconstruction error=0.20879985928309572
iteration 1, reconstruction error: 0.20879985232399115, decrease = 6.9591045703809584e-09
iteration 2, reconstruction error: 0.2087998454008799, decrease = 6.923111250944913e-09
iteration 3, reconstruction error: 0.20879983851348743, decrease = 6.887392461907282e-09
iteration 4, reconstruction error: 0.20879983166161317, decrease = 6.851874262414626e-09
PARAFAC2 reconstruction error=0.8189110507288022, variation=3.0666499339915276e-09.
Starting iteration 294
reconstruction error=0.20879982279400214
iteration 1, reconstruction error: 0.20879981584021548, decrease = 6.953786657604155e-09
iteration 2, reconstruction error: 0.2087998089223535, decrease = 6.9178619777066075e-09
iteration 3, reconstruction error: 0.20879980204014398, decrease = 6.882209524494698e-09
iteration 4, reconstruction error: 0.2087997951933886, decrease = 6.846755384870562e-09
PARAFAC2 reconstruction error=0.8189110476645007, variation=3.064301479227538e-09.
Starting iteration 295
reconstruction error=0.20879978633003665
iteration 1, reconstruction error: 0.20879977938155325, decrease = 6.948483399771277e-09
iteration 2, reconstruction error: 0.20879977246893128, decrease = 6.912621974830557e-09
iteration 3, reconstruction error: 0.20879976559189772, decrease = 6.877033553731593e-09
iteration 4, reconstruction error: 0.20879975875024817, decrease = 6.841649552447038e-09
PARAFAC2 reconstruction error=0.8189110446025434, variation=3.0619573543333445e-09.
Starting iteration 296
reconstruction error=0.20879974989120337
iteration 1, reconstruction error: 0.20879974294801704, decrease = 6.943186331431761e-09
iteration 2, reconstruction error: 0.20879973604062585, decrease = 6.9073911868056115e-09
iteration 3, reconstruction error: 0.20879972916875283, decrease = 6.87187301506853e-09
iteration 4, reconstruction error: 0.2087997223322045, decrease = 6.836548327449066e-09
PARAFAC2 reconstruction error=0.8189110415429255, variation=3.0596178923758544e-09.
Starting iteration 297
reconstruction error=0.20879971347751886
iteration 1, reconstruction error: 0.20879970653961957, decrease = 6.937899282855042e-09
iteration 2, reconstruction error: 0.2087996996374491, decrease = 6.902170474054614e-09
iteration 3, reconstruction error: 0.2087996927707313, decrease = 6.866717805475986e-09
iteration 4, reconstruction error: 0.208799685939271, decrease = 6.831460286349511e-09
PARAFAC2 reconstruction error=0.8189110384856434, variation=3.0572820941543455e-09.
Starting iteration 298
reconstruction error=0.20879967708899283
iteration 1, reconstruction error: 0.20879967015637058, decrease = 6.932622254041121e-09
iteration 2, reconstruction error: 0.20879966325941238, decrease = 6.896958198998604e-09
iteration 3, reconstruction error: 0.20879965639783893, decrease = 6.861573448313507e-09
iteration 4, reconstruction error: 0.20879964957145977, decrease = 6.826379156388285e-09
PARAFAC2 reconstruction error=0.8189110354306925, variation=3.0549508478472376e-09.
Starting iteration 299
reconstruction error=0.2087996407256358
iteration 1, reconstruction error: 0.20879963379828212, decrease = 6.927353690677762e-09
iteration 2, reconstruction error: 0.2087996269065223, decrease = 6.891759829485977e-09
iteration 3, reconstruction error: 0.2087996200500886, decrease = 6.8564336985765806e-09
iteration 4, reconstruction error: 0.20879961322878288, decrease = 6.821305714721504e-09
PARAFAC2 reconstruction error=0.8189110323780695, variation=3.052623043231506e-09.
Starting iteration 300
reconstruction error=0.20879960438746142
iteration 1, reconstruction error: 0.20879959746536625, decrease = 6.922095174832776e-09
iteration 2, reconstruction error: 0.20879959057880323, decrease = 6.886563014285585e-09
iteration 3, reconstruction error: 0.20879958372749774, decrease = 6.85130549515911e-09
iteration 4, reconstruction error: 0.2087995769112562, decrease = 6.816241543416979e-09
PARAFAC2 reconstruction error=0.8189110293277704, variation=3.0502991243963606e-09.
Starting iteration 301
reconstruction error=0.2087995680744803
iteration 1, reconstruction error: 0.2087995611576375, decrease = 6.916842792970002e-09
iteration 2, reconstruction error: 0.20879955427625974, decrease = 6.881377773160224e-09
iteration 3, reconstruction error: 0.20879954743007473, decrease = 6.846185007791661e-09
iteration 4, reconstruction error: 0.2087995406188896, decrease = 6.81118511591805e-09
PARAFAC2 reconstruction error=0.8189110262797915, variation=3.0479788692971965e-09.
Starting iteration 302
reconstruction error=0.20879953178670543
iteration 1, reconstruction error: 0.2087995248751073, decrease = 6.911598127157248e-09
iteration 2, reconstruction error: 0.2087995179989086, decrease = 6.8761986937726505e-09
iteration 3, reconstruction error: 0.20879951115783715, decrease = 6.8410714593181154e-09
iteration 4, reconstruction error: 0.20879950435170158, decrease = 6.8061355718018746e-09
PARAFAC2 reconstruction error=0.8189110232341293, variation=3.0456621669117112e-09.
Starting iteration 303
reconstruction error=0.20879949552415303
iteration 1, reconstruction error: 0.20879948861779107, decrease = 6.906361954550633e-09
iteration 2, reconstruction error: 0.2087994817467607, decrease = 6.8710303835484154e-09
iteration 3, reconstruction error: 0.20879947491079504, decrease = 6.835965654650167e-09
iteration 4, reconstruction error: 0.20879946810969974, decrease = 6.8010952980479544e-09
PARAFAC2 reconstruction error=0.8189110201907805, variation=3.0433487951952998e-09.
Starting iteration 304
reconstruction error=0.20879945928683144
iteration 1, reconstruction error: 0.20879945238569872, decrease = 6.901132720837921e-09
iteration 2, reconstruction error: 0.208799445519832, decrease = 6.865866708505308e-09
iteration 3, reconstruction error: 0.20879943868896525, decrease = 6.8308667611205465e-09
iteration 4, reconstruction error: 0.20879943189290634, decrease = 6.7960589100746205e-09
PARAFAC2 reconstruction error=0.8189110171497418, variation=3.0410387541479622e-09.
Starting iteration 305
reconstruction error=0.2087994230747562
iteration 1, reconstruction error: 0.2087994161788427, decrease = 6.895913506888007e-09
iteration 2, reconstruction error: 0.20879940931813504, decrease = 6.860707668643329e-09
iteration 3, reconstruction error: 0.20879940249235943, decrease = 6.825775611396523e-09
iteration 4, reconstruction error: 0.2087993957013246, decrease = 6.791034817821284e-09
PARAFAC2 reconstruction error=0.8189110141110099, variation=3.038731932747396e-09.
Starting iteration 306
reconstruction error=0.20879938688793986
iteration 1, reconstruction error: 0.20879937999723858, decrease = 6.890701287343148e-09
iteration 2, reconstruction error: 0.2087993731416784, decrease = 6.8555601751008055e-09
iteration 3, reconstruction error: 0.20879936632098628, decrease = 6.820692122211369e-09
iteration 4, reconstruction error: 0.20879935953497705, decrease = 6.786009226766865e-09
PARAFAC2 reconstruction error=0.8189110110745819, variation=3.036427997926694e-09.
Starting iteration 307
reconstruction error=0.20879935072639622
iteration 1, reconstruction error: 0.20879934384090335, decrease = 6.885492870312149e-09
iteration 2, reconstruction error: 0.20879933699048295, decrease = 6.850420397608303e-09
iteration 3, reconstruction error: 0.2087993301748712, decrease = 6.8156117416506845e-09
iteration 4, reconstruction error: 0.2087993233938745, decrease = 6.78099670858856e-09
PARAFAC2 reconstruction error=0.8189110080404546, variation=3.0341272827527632e-09.
Starting iteration 308
reconstruction error=0.2087993145901334
iteration 1, reconstruction error: 0.20879930770984045, decrease = 6.8802929464872875e-09
iteration 2, reconstruction error: 0.20879930086455828, decrease = 6.845282174428036e-09
iteration 3, reconstruction error: 0.20879929405401612, decrease = 6.810542158008914e-09
iteration 4, reconstruction error: 0.20879928727803115, decrease = 6.775984967566373e-09
PARAFAC2 reconstruction error=0.8189110050086252, variation=3.031829343136394e-09.
Starting iteration 309
reconstruction error=0.20879927847916996
iteration 1, reconstruction error: 0.20879927160407155, decrease = 6.875098407244096e-09
iteration 2, reconstruction error: 0.20879926476391988, decrease = 6.840151667297789e-09
iteration 3, reconstruction error: 0.20879925795844342, decrease = 6.80547646014773e-09
iteration 4, reconstruction error: 0.2087992511874602, decrease = 6.770983218551407e-09
PARAFAC2 reconstruction error=0.8189110019790907, variation=3.029534512144494e-09.
Starting iteration 310
reconstruction error=0.20879924239351869
iteration 1, reconstruction error: 0.2087992355236071, decrease = 6.869911584050925e-09
iteration 2, reconstruction error: 0.2087992286885767, decrease = 6.8350304027742226e-09
iteration 3, reconstruction error: 0.20879922188816136, decrease = 6.800415341956523e-09
iteration 4, reconstruction error: 0.2087992151221752, decrease = 6.765986160228721e-09
PARAFAC2 reconstruction error=0.8189109989518492, variation=3.0272415685317355e-09.
Starting iteration 311
reconstruction error=0.20879920633318907
iteration 1, reconstruction error: 0.20879919946846198, decrease = 6.864727092326106e-09
iteration 2, reconstruction error: 0.20879919263854668, decrease = 6.829915299988443e-09
iteration 3, reconstruction error: 0.20879918584318705, decrease = 6.79535963610256e-09
iteration 4, reconstruction error: 0.20879917908219106, decrease = 6.760995985288787e-09
PARAFAC2 reconstruction error=0.8189109959268969, variation=3.0249522886549585e-09.
Starting iteration 312
reconstruction error=0.20879917029819847
iteration 1, reconstruction error: 0.20879916343864435, decrease = 6.859554119165168e-09
iteration 2, reconstruction error: 0.20879915661384024, decrease = 6.824804110738825e-09
iteration 3, reconstruction error: 0.20879914982353018, decrease = 6.790310064230809e-09
iteration 4, reconstruction error: 0.2087991430675197, decrease = 6.756010473285556e-09
PARAFAC2 reconstruction error=0.818910992904232, variation=3.0226648961573233e-09.
Starting iteration 313
reconstruction error=0.20879913428855582
iteration 1, reconstruction error: 0.20879912743417073, decrease = 6.854385087295967e-09
iteration 2, reconstruction error: 0.20879912061447561, decrease = 6.81969511417968e-09
iteration 3, reconstruction error: 0.20879911382920505, decrease = 6.785270567633006e-09
iteration 4, reconstruction error: 0.20879910707817856, decrease = 6.751026487838985e-09
PARAFAC2 reconstruction error=0.8189109898838516, variation=3.020380390239552e-09.
Starting iteration 314
reconstruction error=0.2087990983042716
iteration 1, reconstruction error: 0.20879909145505102, decrease = 6.849220579585591e-09
iteration 2, reconstruction error: 0.2087990846404571, decrease = 6.814593916937284e-09
iteration 3, reconstruction error: 0.20879907786022606, decrease = 6.7802310432796276e-09
iteration 4, reconstruction error: 0.2087990711141712, decrease = 6.746054853623562e-09
PARAFAC2 reconstruction error=0.8189109868657535, variation=3.01809810476783e-09.
Starting iteration 315
reconstruction error=0.20879906234536325
iteration 1, reconstruction error: 0.20879905550130481, decrease = 6.8440584310991426e-09
iteration 2, reconstruction error: 0.2087990486918044, decrease = 6.809500407989333e-09
iteration 3, reconstruction error: 0.20879904191660592, decrease = 6.7751984855757286e-09
iteration 4, reconstruction error: 0.2087990351755212, decrease = 6.741084718209223e-09
PARAFAC2 reconstruction error=0.8189109838499352, variation=3.0158182617867624e-09.
Starting iteration 316
reconstruction error=0.2087990264118422
iteration 1, reconstruction error: 0.20879901957293664, decrease = 6.83890555297495e-09
iteration 2, reconstruction error: 0.20879901276852667, decrease = 6.804409979910275e-09
iteration 3, reconstruction error: 0.20879900599835383, decrease = 6.770172839010158e-09
iteration 4, reconstruction error: 0.20879899926223613, decrease = 6.736117691419352e-09
PARAFAC2 reconstruction error=0.8189109808363944, variation=3.013540861296349e-09.
Starting iteration 317
reconstruction error=0.20879899050371897
iteration 1, reconstruction error: 0.2087989836699594, decrease = 6.833759585989085e-09
iteration 2, reconstruction error: 0.20879897687063675, decrease = 6.799322632700111e-09
iteration 3, reconstruction error: 0.208798970105488, decrease = 6.765148746756822e-09
iteration 4, reconstruction error: 0.20879896337432963, decrease = 6.731158380679503e-09
PARAFAC2 reconstruction error=0.8189109778251288, variation=3.011265570229682e-09.
Starting iteration 318
reconstruction error=0.20879895462100578
iteration 1, reconstruction error: 0.20879894779239064, decrease = 6.82861514555988e-09
iteration 2, reconstruction error: 0.20879894099814683, decrease = 6.794243806451661e-09
iteration 3, reconstruction error: 0.20879893423801604, decrease = 6.7601307884856965e-09
iteration 4, reconstruction error: 0.2087989275118139, decrease = 6.726202150808547e-09
PARAFAC2 reconstruction error=0.8189109748161363, variation=3.0089924996090645e-09.
Starting iteration 319
reconstruction error=0.20879891876371337
iteration 1, reconstruction error: 0.20879891194023567, decrease = 6.823477699535729e-09
iteration 2, reconstruction error: 0.2087989051510669, decrease = 6.78916878271707e-09
iteration 3, reconstruction error: 0.20879889839595095, decrease = 6.75511593883904e-09
iteration 4, reconstruction error: 0.2087988916746996, decrease = 6.7212513610304114e-09
PARAFAC2 reconstruction error=0.8189109718094146, variation=3.006721649434496e-09.
Starting iteration 320
reconstruction error=0.20879888293185542
iteration 1, reconstruction error: 0.20879887611351136, decrease = 6.818344056025438e-09
iteration 2, reconstruction error: 0.20879886932941372, decrease = 6.784097644763065e-09
iteration 3, reconstruction error: 0.20879886257930647, decrease = 6.750107250930171e-09
iteration 4, reconstruction error: 0.20879885586300212, decrease = 6.71630434601056e-09
PARAFAC2 reconstruction error=0.818910968804962, variation=3.0044526866390697e-09.
Starting iteration 321
reconstruction error=0.20879884712543975
iteration 1, reconstruction error: 0.20879884031222623, decrease = 6.813213521139616e-09
iteration 2, reconstruction error: 0.20879883353319434, decrease = 6.77903189139073e-09
iteration 3, reconstruction error: 0.20879882678809114, decrease = 6.745103198202429e-09
iteration 4, reconstruction error: 0.20879882007673067, decrease = 6.711360467370753e-09
PARAFAC2 reconstruction error=0.818910965802776, variation=3.0021859442896925e-09.
Starting iteration 322
reconstruction error=0.20879881134448175
iteration 1, reconstruction error: 0.20879880453639182, decrease = 6.808089925147698e-09
iteration 2, reconstruction error: 0.20879879776242263, decrease = 6.773969191131712e-09
iteration 3, reconstruction error: 0.20879879102231808, decrease = 6.740104557811932e-09
iteration 4, reconstruction error: 0.20879878431589458, decrease = 6.706423499869274e-09
PARAFAC2 reconstruction error=0.8189109628028548, variation=2.9999212003417597e-09.
Starting iteration 323
reconstruction error=0.20879877558898832
iteration 1, reconstruction error: 0.20879876878602047, decrease = 6.8029678557124384e-09
iteration 2, reconstruction error: 0.20879876201710623, decrease = 6.7689142346782916e-09
iteration 3, reconstruction error: 0.208798755281998, decrease = 6.735108221134212e-09
iteration 4, reconstruction error: 0.20879874858051148, decrease = 6.701486532367795e-09
PARAFAC2 reconstruction error=0.8189109598051965, variation=2.9976583437729687e-09.
Starting iteration 324
reconstruction error=0.20879873985897277
iteration 1, reconstruction error: 0.20879873306111696, decrease = 6.797855806039976e-09
iteration 2, reconstruction error: 0.20879872629725843, decrease = 6.763858528824329e-09
iteration 3, reconstruction error: 0.20879871956714272, decrease = 6.730115714725926e-09
iteration 4, reconstruction error: 0.20879871287058388, decrease = 6.696558835228572e-09
PARAFAC2 reconstruction error=0.8189109568097991, variation=2.9953973745833196e-09.
Starting iteration 325
reconstruction error=0.2087987041544427
iteration 1, reconstruction error: 0.20879869736169743, decrease = 6.792745282924173e-09
iteration 2, reconstruction error: 0.20879869060289077, decrease = 6.758806653239802e-09
iteration 3, reconstruction error: 0.2087986838777606, decrease = 6.72513017496712e-09
iteration 4, reconstruction error: 0.2087986771861295, decrease = 6.691631110333773e-09
PARAFAC2 reconstruction error=0.8189109538166606, variation=2.9931385148174172e-09.
Starting iteration 326
reconstruction error=0.20879866847540934
iteration 1, reconstruction error: 0.20879866168777297, decrease = 6.7876363696317554e-09
iteration 2, reconstruction error: 0.20879865493400743, decrease = 6.753765546818613e-09
iteration 3, reconstruction error: 0.20879864821386282, decrease = 6.720144607452738e-09
iteration 4, reconstruction error: 0.20879864152715555, decrease = 6.686707271219561e-09
PARAFAC2 reconstruction error=0.8189109508257794, variation=2.9908812093637493e-09.
Starting iteration 327
reconstruction error=0.20879863282188113
iteration 1, reconstruction error: 0.208798626039346, decrease = 6.782535116878208e-09
iteration 2, reconstruction error: 0.20879861929062232, decrease = 6.748723690996883e-09
iteration 3, reconstruction error: 0.2087986125754571, decrease = 6.715165229431719e-09
iteration 4, reconstruction error: 0.20879860589366905, decrease = 6.6817880395309e-09
PARAFAC2 reconstruction error=0.8189109478371532, variation=2.9886261243561307e-09.
Starting iteration 328
reconstruction error=0.20879859719386837
iteration 1, reconstruction error: 0.2087985904164345, decrease = 6.77743386412466e-09
iteration 2, reconstruction error: 0.2087985836727496, decrease = 6.743684916044046e-09
iteration 3, reconstruction error: 0.20879857696255838, decrease = 6.710191208236793e-09
iteration 4, reconstruction error: 0.2087985702856857, decrease = 6.676872693622826e-09
PARAFAC2 reconstruction error=0.8189109448507811, variation=2.9863721495715367e-09.
Starting iteration 329
reconstruction error=0.20879856159138435
iteration 1, reconstruction error: 0.20879855481904247, decrease = 6.772341881733368e-09
iteration 2, reconstruction error: 0.2087985480803902, decrease = 6.73865227507342e-09
iteration 3, reconstruction error: 0.20879854137516907, decrease = 6.705221128333605e-09
iteration 4, reconstruction error: 0.20879853470321025, decrease = 6.67195881876026e-09
PARAFAC2 reconstruction error=0.8189109418666606, variation=2.9841205062552945e-09.
Starting iteration 330
reconstruction error=0.20879852601442708
iteration 1, reconstruction error: 0.20879851924717877, decrease = 6.767248317274266e-09
iteration 2, reconstruction error: 0.20879851251355444, decrease = 6.733624324795073e-09
iteration 3, reconstruction error: 0.20879850581330503, decrease = 6.7002494108514554e-09
iteration 4, reconstruction error: 0.20879849914625154, decrease = 6.667053492614983e-09
PARAFAC2 reconstruction error=0.8189109388847903, variation=2.981870306228984e-09.
Starting iteration 331
reconstruction error=0.20879849046301455
iteration 1, reconstruction error: 0.20879848370085358, decrease = 6.762160970064102e-09
iteration 2, reconstruction error: 0.20879847697225495, decrease = 6.728598622718351e-09
iteration 3, reconstruction error: 0.20879847027697027, decrease = 6.695284687774361e-09
iteration 4, reconstruction error: 0.20879846361482213, decrease = 6.66214813871413e-09
PARAFAC2 reconstruction error=0.8189109359051686, variation=2.9796216605149084e-09.
Starting iteration 332
reconstruction error=0.20879845493715243
iteration 1, reconstruction error: 0.2087984481800727, decrease = 6.757079729080573e-09
iteration 2, reconstruction error: 0.20879844145649662, decrease = 6.72357608477725e-09
iteration 3, reconstruction error: 0.20879843476617593, decrease = 6.690320686342233e-09
iteration 4, reconstruction error: 0.208798428108927, decrease = 6.657248946551064e-09
PARAFAC2 reconstruction error=0.8189109329277936, variation=2.977375013202277e-09.
Starting iteration 333
reconstruction error=0.20879841943684582
iteration 1, reconstruction error: 0.20879841268484958, decrease = 6.751996239895419e-09
iteration 2, reconstruction error: 0.20879840596629226, decrease = 6.718557321594432e-09
iteration 3, reconstruction error: 0.20879839928092628, decrease = 6.6853659830279355e-09
iteration 4, reconstruction error: 0.2087983926285773, decrease = 6.652348977231881e-09
PARAFAC2 reconstruction error=0.8189109299526639, variation=2.975129698157275e-09.
Starting iteration 334
reconstruction error=0.20879838396210423
iteration 1, reconstruction error: 0.2087983772151846, decrease = 6.746919634093018e-09
iteration 2, reconstruction error: 0.20879837050164216, decrease = 6.7135424441922e-09
iteration 3, reconstruction error: 0.20879836382123165, decrease = 6.680410502557521e-09
iteration 4, reconstruction error: 0.20879835717377723, decrease = 6.647454420249943e-09
PARAFAC2 reconstruction error=0.8189109269797775, variation=2.9728863815137174e-09.
Starting iteration 335
reconstruction error=0.2087983485129397
iteration 1, reconstruction error: 0.2087983417710897, decrease = 6.741850022695672e-09
iteration 2, reconstruction error: 0.20879833506255674, decrease = 6.708532951371637e-09
iteration 3, reconstruction error: 0.20879832838709866, decrease = 6.6754580752004244e-09
iteration 4, reconstruction error: 0.2087983217445342, decrease = 6.642564470693557e-09
PARAFAC2 reconstruction error=0.8189109240091336, variation=2.9706439530485795e-09.
Starting iteration 336
reconstruction error=0.20879831308934796
iteration 1, reconstruction error: 0.20879830635256838, decrease = 6.736779578631058e-09
iteration 2, reconstruction error: 0.20879829964904645, decrease = 6.703521931994416e-09
iteration 3, reconstruction error: 0.2087982929785346, decrease = 6.67051183733669e-09
iteration 4, reconstruction error: 0.2087982863408624, decrease = 6.637672217424395e-09
PARAFAC2 reconstruction error=0.8189109210407299, variation=2.9684036340071884e-09.
Starting iteration 337
reconstruction error=0.2087982776913473
iteration 1, reconstruction error: 0.20879827095963197, decrease = 6.731715324059806e-09
iteration 2, reconstruction error: 0.2087982642611141, decrease = 6.698517851511099e-09
iteration 3, reconstruction error: 0.20879825759554696, decrease = 6.66556715378519e-09
iteration 4, reconstruction error: 0.20879825096275698, decrease = 6.6327899839180304e-09
PARAFAC2 reconstruction error=0.8189109180745653, variation=2.966164647233427e-09.
Starting iteration 338
reconstruction error=0.20879824231893812
iteration 1, reconstruction error: 0.20879823559228392, decrease = 6.7266542058685985e-09
iteration 2, reconstruction error: 0.2087982288987663, decrease = 6.693517601297216e-09
iteration 3, reconstruction error: 0.20879822223814157, decrease = 6.660624746190891e-09
iteration 4, reconstruction error: 0.20879821561023457, decrease = 6.627907001011124e-09
PARAFAC2 reconstruction error=0.818910915110638, variation=2.9639273257942023e-09.
Starting iteration 339
reconstruction error=0.20879820697212398
iteration 1, reconstruction error: 0.20879820025053022, decrease = 6.721593753811206e-09
iteration 2, reconstruction error: 0.20879819356201132, decrease = 6.6885189053955685e-09
iteration 3, reconstruction error: 0.20879818690632432, decrease = 6.655687001533295e-09
iteration 4, reconstruction error: 0.2087981802832957, decrease = 6.62302862552977e-09
PARAFAC2 reconstruction error=0.8189109121489466, variation=2.961691336622607e-09.
Starting iteration 340
reconstruction error=0.20879817165093778
iteration 1, reconstruction error: 0.2087981649343959, decrease = 6.716541878226678e-09
iteration 2, reconstruction error: 0.2087981582508757, decrease = 6.6835202094939206e-09
iteration 3, reconstruction error: 0.20879815160012263, decrease = 6.650753059389558e-09
iteration 4, reconstruction error: 0.20879814498196927, decrease = 6.618153358672885e-09
PARAFAC2 reconstruction error=0.8189109091894899, variation=2.9594566797186417e-09.
Starting iteration 341
reconstruction error=0.20879813635533492
iteration 1, reconstruction error: 0.2087981296438465, decrease = 6.711488420574341e-09
iteration 2, reconstruction error: 0.20879812296531497, decrease = 6.67853153335507e-09
iteration 3, reconstruction error: 0.20879811631949657, decrease = 6.645818395600855e-09
iteration 4, reconstruction error: 0.20879810970621546, decrease = 6.6132811171737416e-09
PARAFAC2 reconstruction error=0.8189109062322661, variation=2.9572237991715156e-09.
Starting iteration 342
reconstruction error=0.2087981010853488
iteration 1, reconstruction error: 0.2087980943789092, decrease = 6.706439598103131e-09
iteration 2, reconstruction error: 0.20879808770536637, decrease = 6.673542829460644e-09
iteration 3, reconstruction error: 0.20879808106447573, decrease = 6.640890642950481e-09
iteration 4, reconstruction error: 0.2087980744560668, decrease = 6.60840893118575e-09
PARAFAC2 reconstruction error=0.818910903277274, variation=2.9549921398697165e-09.
Starting iteration 343
reconstruction error=0.2087980658409853
iteration 1, reconstruction error: 0.20879805913959068, decrease = 6.701394605901356e-09
iteration 2, reconstruction error: 0.20879805247103342, decrease = 6.668557261946262e-09
iteration 3, reconstruction error: 0.20879804583506822, decrease = 6.635965194012883e-09
iteration 4, reconstruction error: 0.20879803923152535, decrease = 6.603542879179969e-09
PARAFAC2 reconstruction error=0.818910900324512, variation=2.952762034880152e-09.
Starting iteration 344
reconstruction error=0.20879803062224592
iteration 1, reconstruction error: 0.20879802392589322, decrease = 6.696352694568475e-09
iteration 2, reconstruction error: 0.2087980172623177, decrease = 6.663575524701315e-09
iteration 3, reconstruction error: 0.20879801063127634, decrease = 6.63104135489867e-09
iteration 4, reconstruction error: 0.2087980040325988, decrease = 6.598677548819154e-09
PARAFAC2 reconstruction error=0.8189108973739787, variation=2.950533262158217e-09.
Starting iteration 345
reconstruction error=0.20879799542913366
iteration 1, reconstruction error: 0.20879798873781977, decrease = 6.691313891860062e-09
iteration 2, reconstruction error: 0.20879798207922443, decrease = 6.658595341768603e-09
iteration 3, reconstruction error: 0.20879797545310314, decrease = 6.626121290542741e-09
iteration 4, reconstruction error: 0.20879796885928545, decrease = 6.5938176863067355e-09
PARAFAC2 reconstruction error=0.8189108944256729, variation=2.9483058217039115e-09.
Starting iteration 346
reconstruction error=0.20879796026165306
iteration 1, reconstruction error: 0.20879795357537564, decrease = 6.6862774206200015e-09
iteration 2, reconstruction error: 0.2087979469217559, decrease = 6.653619738505867e-09
iteration 3, reconstruction error: 0.20879794030055157, decrease = 6.6212043348112815e-09
iteration 4, reconstruction error: 0.20879793371159144, decrease = 6.588960127507093e-09
PARAFAC2 reconstruction error=0.8189108914795928, variation=2.946080046584143e-09.
Starting iteration 347
reconstruction error=0.20879792511980938
iteration 1, reconstruction error: 0.2087979184385623, decrease = 6.681247083362152e-09
iteration 2, reconstruction error: 0.2087979117899158, decrease = 6.648646494467059e-09
iteration 3, reconstruction error: 0.20879790517362534, decrease = 6.616290459948715e-09
iteration 4, reconstruction error: 0.2087978985895228, decrease = 6.584102540951875e-09
PARAFAC2 reconstruction error=0.8189108885357376, variation=2.9438552706650967e-09.
Starting iteration 348
reconstruction error=0.208797890003601
iteration 1, reconstruction error: 0.2087978833273858, decrease = 6.6762151917920676e-09
iteration 2, reconstruction error: 0.20879787668370947, decrease = 6.643676331297144e-09
iteration 3, reconstruction error: 0.2087978700723298, decrease = 6.611379665955042e-09
iteration 4, reconstruction error: 0.20879786349308097, decrease = 6.579248840177243e-09
PARAFAC2 reconstruction error=0.8189108855941054, variation=2.9416321600805873e-09.
Starting iteration 349
reconstruction error=0.20879785491303482
iteration 1, reconstruction error: 0.20879784824184844, decrease = 6.671186381090877e-09
iteration 2, reconstruction error: 0.20879784160313922, decrease = 6.638709221240546e-09
iteration 3, reconstruction error: 0.2087978349966688, decrease = 6.606470426273603e-09
iteration 4, reconstruction error: 0.20879782842226902, decrease = 6.574399774583739e-09
PARAFAC2 reconstruction error=0.8189108826546951, variation=2.939410270741405e-09.
Starting iteration 350
reconstruction error=0.20879781984811466
iteration 1, reconstruction error: 0.20879781318195012, decrease = 6.666164537039165e-09
iteration 2, reconstruction error: 0.20879780654820568, decrease = 6.633744442652301e-09
iteration 3, reconstruction error: 0.20879779994664066, decrease = 6.601565016861599e-09
iteration 4, reconstruction error: 0.20879779337708693, decrease = 6.569553734347977e-09
PARAFAC2 reconstruction error=0.8189108797175053, variation=2.9371898246921546e-09.
Starting iteration 351
reconstruction error=0.20879778480884129
iteration 1, reconstruction error: 0.20879777814769554, decrease = 6.661145746100772e-09
iteration 2, reconstruction error: 0.2087977715189128, decrease = 6.628782744932948e-09
iteration 3, reconstruction error: 0.20879776492225163, decrease = 6.59666116176183e-09
iteration 4, reconstruction error: 0.20879775835754158, decrease = 6.5647100533361424e-09
PARAFAC2 reconstruction error=0.8189108767825349, variation=2.9349703778436265e-09.
Starting iteration 352
reconstruction error=0.20879774979521395
iteration 1, reconstruction error: 0.2087977431390862, decrease = 6.656127760074071e-09
iteration 2, reconstruction error: 0.2087977365152613, decrease = 6.623824905238607e-09
iteration 3, reconstruction error: 0.2087977299234986, decrease = 6.59176269124373e-09
iteration 4, reconstruction error: 0.20879772336363378, decrease = 6.559864818012073e-09
PARAFAC2 reconstruction error=0.8189108738497822, variation=2.9327527073519377e-09.
Starting iteration 353
reconstruction error=0.20879771480723727
iteration 1, reconstruction error: 0.20879770815612522, decrease = 6.651112050004571e-09
iteration 2, reconstruction error: 0.2087977015372543, decrease = 6.6188709235692755e-09
iteration 3, reconstruction error: 0.20879769495039086, decrease = 6.586863443569513e-09
iteration 4, reconstruction error: 0.2087976883953651, decrease = 6.555025744425791e-09
PARAFAC2 reconstruction error=0.8189108709192464, variation=2.930535814016366e-09.
Starting iteration 354
reconstruction error=0.20879767984491054
iteration 1, reconstruction error: 0.2087976731988111, decrease = 6.646099448559539e-09
iteration 2, reconstruction error: 0.20879766658489493, decrease = 6.613916164743827e-09
iteration 3, reconstruction error: 0.20879766000292455, decrease = 6.581970385388658e-09
iteration 4, reconstruction error: 0.2087976534527371, decrease = 6.550187447995626e-09
PARAFAC2 reconstruction error=0.8189108679909256, variation=2.9283208080599366e-09.
Starting iteration 355
reconstruction error=0.20879764490823918
iteration 1, reconstruction error: 0.20879763826714925, decrease = 6.641089927983401e-09
iteration 2, reconstruction error: 0.20879763165817938, decrease = 6.6089698713689415e-09
iteration 3, reconstruction error: 0.2087976250811028, decrease = 6.5770765778072615e-09
iteration 4, reconstruction error: 0.20879761853574982, decrease = 6.5453529818348954e-09
PARAFAC2 reconstruction error=0.8189108650648189, variation=2.9261066902819266e-09.
Starting iteration 356
reconstruction error=0.20879760999722333
iteration 1, reconstruction error: 0.2087976033611352, decrease = 6.636088123457284e-09
iteration 2, reconstruction error: 0.2087975967571163, decrease = 6.6040189150573525e-09
iteration 3, reconstruction error: 0.20879759018492738, decrease = 6.572188904208076e-09
iteration 4, reconstruction error: 0.20879758364440498, decrease = 6.540522401454751e-09
PARAFAC2 reconstruction error=0.8189108621409249, variation=2.9238940157938487e-09.
Starting iteration 357
reconstruction error=0.20879757511185676
iteration 1, reconstruction error: 0.2087975684807759, decrease = 6.631080851082771e-09
iteration 2, reconstruction error: 0.20879756188170015, decrease = 6.5990757580625115e-09
iteration 3, reconstruction error: 0.20879755531439892, decrease = 6.567301230608891e-09
iteration 4, reconstruction error: 0.20879754877870327, decrease = 6.535695651344042e-09
PARAFAC2 reconstruction error=0.8189108592192424, variation=2.9216824515287954e-09.
Starting iteration 358
reconstruction error=0.2087975402521498
iteration 1, reconstruction error: 0.2087975336260661, decrease = 6.626083709493358e-09
iteration 2, reconstruction error: 0.20879752703193202, decrease = 6.594134072113178e-09
iteration 3, reconstruction error: 0.20879752046951386, decrease = 6.5624181644352575e-09
iteration 4, reconstruction error: 0.2087975139386457, decrease = 6.5308681518327916e-09
PARAFAC2 reconstruction error=0.8189108562997702, variation=2.9194722195313716e-09.
Starting iteration 359
reconstruction error=0.20879750541809627
iteration 1, reconstruction error: 0.20879749879700824, decrease = 6.621088038949452e-09
iteration 2, reconstruction error: 0.20879749220781427, decrease = 6.589193968231655e-09
iteration 3, reconstruction error: 0.2087974856502768, decrease = 6.557537457485552e-09
iteration 4, reconstruction error: 0.20879747912423388, decrease = 6.526042928278741e-09
PARAFAC2 reconstruction error=0.8189108533825067, variation=2.9172635418461823e-09.
Starting iteration 360
reconstruction error=0.20879747060969858
iteration 1, reconstruction error: 0.20879746399360624, decrease = 6.6160923406499705e-09
iteration 2, reconstruction error: 0.208797457409347, decrease = 6.584259248931801e-09
iteration 3, reconstruction error: 0.20879745085668874, decrease = 6.552658249336929e-09
iteration 4, reconstruction error: 0.2087974443354664, decrease = 6.521222339905819e-09
PARAFAC2 reconstruction error=0.8189108504674508, variation=2.915055863361715e-09.
Starting iteration 361
reconstruction error=0.2087974358269532
iteration 1, reconstruction error: 0.20879742921585187, decrease = 6.611101333042768e-09
iteration 2, reconstruction error: 0.20879742263652737, decrease = 6.579324501876371e-09
iteration 3, reconstruction error: 0.20879741608874292, decrease = 6.547784453525551e-09
iteration 4, reconstruction error: 0.2087974095723427, decrease = 6.516400224976238e-09
PARAFAC2 reconstruction error=0.8189108475546015, variation=2.9128492951002727e-09.
Starting iteration 362
reconstruction error=0.20879740106986167
iteration 1, reconstruction error: 0.20879739446374906, decrease = 6.606112601392766e-09
iteration 2, reconstruction error: 0.20879738788935776, decrease = 6.574391309133176e-09
iteration 3, reconstruction error: 0.20879738134644477, decrease = 6.5429129891825255e-09
iteration 4, reconstruction error: 0.2087973748348605, decrease = 6.511584271784443e-09
PARAFAC2 reconstruction error=0.8189108446439572, variation=2.9106442811510647e-09.
Starting iteration 363
reconstruction error=0.20879736633842505
iteration 1, reconstruction error: 0.20879735973729652, decrease = 6.601128532679468e-09
iteration 2, reconstruction error: 0.2087973531678322, decrease = 6.5694643058833435e-09
iteration 3, reconstruction error: 0.20879734662979227, decrease = 6.5380399427716895e-09
iteration 4, reconstruction error: 0.20879734012302165, decrease = 6.5067706223054245e-09
PARAFAC2 reconstruction error=0.8189108417355171, variation=2.9084401553802763e-09.
Starting iteration 364
reconstruction error=0.20879733163263808
iteration 1, reconstruction error: 0.2087973250364944, decrease = 6.596143686810052e-09
iteration 2, reconstruction error: 0.2087973184719533, decrease = 6.56454110514737e-09
iteration 3, reconstruction error: 0.20879731193878406, decrease = 6.533169227829205e-09
iteration 4, reconstruction error: 0.2087973054368209, decrease = 6.501963162319768e-09
PARAFAC2 reconstruction error=0.8189108388292795, variation=2.9062375839217225e-09.
Starting iteration 365
reconstruction error=0.208797296952501
iteration 1, reconstruction error: 0.208797290361336, decrease = 6.591164974922847e-09
iteration 2, reconstruction error: 0.20879728380171728, decrease = 6.559618737078665e-09
iteration 3, reconstruction error: 0.20879727727341726, decrease = 6.528300011687804e-09
iteration 4, reconstruction error: 0.2087972707762608, decrease = 6.497156451734654e-09
PARAFAC2 reconstruction error=0.818910835925243, variation=2.9040364557531007e-09.
Starting iteration 366
reconstruction error=0.20879726229801324
iteration 1, reconstruction error: 0.20879725571182697, decrease = 6.586186263035643e-09
iteration 2, reconstruction error: 0.20879724915712833, decrease = 6.554698644967161e-09
iteration 3, reconstruction error: 0.20879724263368743, decrease = 6.523440898575927e-09
iteration 4, reconstruction error: 0.20879723614134155, decrease = 6.4923458831245284e-09
PARAFAC2 reconstruction error=0.8189108330234071, variation=2.9018359937182936e-09.
Starting iteration 367
reconstruction error=0.20879722766917191
iteration 1, reconstruction error: 0.20879722108796128, decrease = 6.581210632017331e-09
iteration 2, reconstruction error: 0.20879721453818118, decrease = 6.549780107167891e-09
iteration 3, reconstruction error: 0.2087972080195979, decrease = 6.518583284265134e-09
iteration 4, reconstruction error: 0.20879720153205564, decrease = 6.487542253408307e-09
PARAFAC2 reconstruction error=0.8189108301237701, variation=2.8996369749734185e-09.
Starting iteration 368
reconstruction error=0.20879719306597494
iteration 1, reconstruction error: 0.2087971864897353, decrease = 6.576239636180148e-09
iteration 2, reconstruction error: 0.20879717994486835, decrease = 6.54486695395029e-09
iteration 3, reconstruction error: 0.2087971734311458, decrease = 6.513722561329871e-09
iteration 4, reconstruction error: 0.20879716694840714, decrease = 6.4827386514476615e-09
PARAFAC2 reconstruction error=0.8189108272263308, variation=2.897439288496173e-09.
Starting iteration 369
reconstruction error=0.20879715848841812
iteration 1, reconstruction error: 0.20879715191715023, decrease = 6.571267890942423e-09
iteration 2, reconstruction error: 0.2087971453771941, decrease = 6.539956132201041e-09
iteration 3, reconstruction error: 0.20879713886832685, decrease = 6.5088672507318535e-09
iteration 4, reconstruction error: 0.20879713239038414, decrease = 6.477942710025886e-09
PARAFAC2 reconstruction error=0.818910824331088, variation=2.8952428232642546e-09.
Starting iteration 370
reconstruction error=0.20879712393650232
iteration 1, reconstruction error: 0.20879711737020082, decrease = 6.566301502530791e-09
iteration 2, reconstruction error: 0.2087971108351532, decrease = 6.5350476141645686e-09
iteration 3, reconstruction error: 0.20879710433113585, decrease = 6.504017352471081e-09
iteration 4, reconstruction error: 0.20879709785799522, decrease = 6.473140634621899e-09
PARAFAC2 reconstruction error=0.8189108214380406, variation=2.8930473572330584e-09.
Starting iteration 371
reconstruction error=0.20879708941022251
iteration 1, reconstruction error: 0.208797082848882, decrease = 6.561340526456405e-09
iteration 2, reconstruction error: 0.20879707631874447, decrease = 6.530137514060286e-09
iteration 3, reconstruction error: 0.20879706981957932, decrease = 6.499165150497532e-09
iteration 4, reconstruction error: 0.20879706335122614, decrease = 6.4683531864062616e-09
PARAFAC2 reconstruction error=0.8189108185471873, variation=2.890853334491794e-09.
Starting iteration 372
reconstruction error=0.20879705490957898
iteration 1, reconstruction error: 0.20879704835319784, decrease = 6.556381132449829e-09
iteration 2, reconstruction error: 0.20879704182796266, decrease = 6.525235185517175e-09
iteration 3, reconstruction error: 0.20879703533364435, decrease = 6.4943183053500775e-09
iteration 4, reconstruction error: 0.20879702887008403, decrease = 6.463560325853379e-09
PARAFAC2 reconstruction error=0.8189108156585269, variation=2.8886604219735545e-09.
Starting iteration 373
reconstruction error=0.20879702043456036
iteration 1, reconstruction error: 0.20879701388313945, decrease = 6.551420905775984e-09
iteration 2, reconstruction error: 0.20879700736280435, decrease = 6.52033510517569e-09
iteration 3, reconstruction error: 0.20879700087333133, decrease = 6.489473014514857e-09
iteration 4, reconstruction error: 0.2087969944145615, decrease = 6.458769824524424e-09
PARAFAC2 reconstruction error=0.818910812772058, variation=2.8864688417229445e-09.
Starting iteration 374
reconstruction error=0.20879698598516871
iteration 1, reconstruction error: 0.20879697943870337, decrease = 6.546465342038843e-09
iteration 2, reconstruction error: 0.20879697292326907, decrease = 6.515434303189238e-09
iteration 3, reconstruction error: 0.20879696643863827, decrease = 6.48463080454853e-09
iteration 4, reconstruction error: 0.20879695998465356, decrease = 6.453984707777138e-09
PARAFAC2 reconstruction error=0.8189108098877796, variation=2.884278371695359e-09.
Starting iteration 375
reconstruction error=0.20879695156140188
iteration 1, reconstruction error: 0.20879694501988905, decrease = 6.5415128314150195e-09
iteration 2, reconstruction error: 0.20879693850934938, decrease = 6.510539662940573e-09
iteration 3, reconstruction error: 0.20879693202955926, decrease = 6.479790121138862e-09
iteration 4, reconstruction error: 0.208796925580362, decrease = 6.449197259561501e-09
PARAFAC2 reconstruction error=0.8189108070056906, variation=2.8820890118907982e-09.
Starting iteration 376
reconstruction error=0.20879691716325255
iteration 1, reconstruction error: 0.2087969106266899, decrease = 6.536562652259548e-09
iteration 2, reconstruction error: 0.20879690412104338, decrease = 6.5056465214929915e-09
iteration 3, reconstruction error: 0.20879689764609077, decrease = 6.474952601864814e-09
iteration 4, reconstruction error: 0.20879689120167327, decrease = 6.444417499640309e-09
PARAFAC2 reconstruction error=0.8189108041257896, variation=2.879900984353867e-09.
Starting iteration 377
reconstruction error=0.2087968827907173
iteration 1, reconstruction error: 0.20879687625910096, decrease = 6.5316163311290865e-09
iteration 2, reconstruction error: 0.208796869758346, decrease = 6.50075496211322e-09
iteration 3, reconstruction error: 0.2087968632882279, decrease = 6.4701180801929326e-09
iteration 4, reconstruction error: 0.2087968568485886, decrease = 6.4396393217869274e-09
PARAFAC2 reconstruction error=0.8189108012480757, variation=2.877713956017658e-09.
Starting iteration 378
reconstruction error=0.20879684844379012
iteration 1, reconstruction error: 0.2087968419171194, decrease = 6.526670731643591e-09
iteration 2, reconstruction error: 0.20879683542125135, decrease = 6.495868037914576e-09
iteration 3, reconstruction error: 0.20879682895596546, decrease = 6.465285889989403e-09
iteration 4, reconstruction error: 0.20879682252110665, decrease = 6.434858812465194e-09
PARAFAC2 reconstruction error=0.8189107983725469, variation=2.8755288150605907e-09.
Starting iteration 379
reconstruction error=0.20879681412247156
iteration 1, reconstruction error: 0.20879680760074254, decrease = 6.521729017938682e-09
iteration 2, reconstruction error: 0.20879680110976068, decrease = 6.490981863116474e-09
iteration 3, reconstruction error: 0.2087967946493039, decrease = 6.460456780654766e-09
iteration 4, reconstruction error: 0.20879678821921865, decrease = 6.4300852420373644e-09
PARAFAC2 reconstruction error=0.818910795499203, variation=2.8733438961481284e-09.
Starting iteration 380
reconstruction error=0.2087967798267511
iteration 1, reconstruction error: 0.20879677330996146, decrease = 6.516789635702125e-09
iteration 2, reconstruction error: 0.20879676682386195, decrease = 6.486099518587807e-09
iteration 3, reconstruction error: 0.20879676036823502, decrease = 6.455626921919588e-09
iteration 4, reconstruction error: 0.20879675394292183, decrease = 6.425313198166194e-09
PARAFAC2 reconstruction error=0.818910792628042, variation=2.8711609756371104e-09.
Starting iteration 381
reconstruction error=0.20879674555662772
iteration 1, reconstruction error: 0.20879673904477286, decrease = 6.51185486089112e-09
iteration 2, reconstruction error: 0.20879673256355566, decrease = 6.481217201814715e-09
iteration 3, reconstruction error: 0.20879672611275243, decrease = 6.450803224922197e-09
iteration 4, reconstruction error: 0.20879671969220895, decrease = 6.420543485763375e-09
PARAFAC2 reconstruction error=0.8189107897590633, variation=2.868978721259907e-09.
Starting iteration 382
reconstruction error=0.20879671131209013
iteration 1, reconstruction error: 0.20879670480517157, decrease = 6.506918559523456e-09
iteration 2, reconstruction error: 0.20879669832883055, decrease = 6.476341019023835e-09
iteration 3, reconstruction error: 0.20879669188285027, decrease = 6.445980277325347e-09
iteration 4, reconstruction error: 0.2087966854670742, decrease = 6.415776077073332e-09
PARAFAC2 reconstruction error=0.8189107868922654, variation=2.866797910172636e-09.
Starting iteration 383
reconstruction error=0.20879667709314337
iteration 1, reconstruction error: 0.20879667059115267, decrease = 6.501990695850779e-09
iteration 2, reconstruction error: 0.20879666411968778, decrease = 6.471464891744105e-09
iteration 3, reconstruction error: 0.20879665767852582, decrease = 6.441161964909625e-09
iteration 4, reconstruction error: 0.20879665126751715, decrease = 6.411008668383289e-09
PARAFAC2 reconstruction error=0.818910784027647, variation=2.864618320330692e-09.
Starting iteration 384
reconstruction error=0.20879664289977248
iteration 1, reconstruction error: 0.20879663640271115, decrease = 6.497061333377019e-09
iteration 2, reconstruction error: 0.2087966299361201, decrease = 6.4665910404215765e-09
iteration 3, reconstruction error: 0.20879662349977646, decrease = 6.436343652493903e-09
iteration 4, reconstruction error: 0.20879661709352673, decrease = 6.406249725143809e-09
PARAFAC2 reconstruction error=0.8189107811652073, variation=2.86243972968947e-09.
Starting iteration 385
reconstruction error=0.20879660873197634
iteration 1, reconstruction error: 0.20879660223983976, decrease = 6.492136578328811e-09
iteration 2, reconstruction error: 0.2087965957781187, decrease = 6.461721047124058e-09
iteration 3, reconstruction error: 0.2087965893465872, decrease = 6.431531501815968e-09
iteration 4, reconstruction error: 0.2087965829451018, decrease = 6.401485397322659e-09
PARAFAC2 reconstruction error=0.8189107783049447, variation=2.86026258233818e-09.
Starting iteration 386
reconstruction error=0.20879657458974685
iteration 1, reconstruction error: 0.20879656810253347, decrease = 6.4872133775928376e-09
iteration 2, reconstruction error: 0.2087965616456801, decrease = 6.456853357539316e-09
iteration 3, reconstruction error: 0.20879655521896232, decrease = 6.426717796825798e-09
iteration 4, reconstruction error: 0.2087965488222335, decrease = 6.3967288133071065e-09
PARAFAC2 reconstruction error=0.8189107754468582, variation=2.8580865452099147e-09.
Starting iteration 387
reconstruction error=0.20879654047307838
iteration 1, reconstruction error: 0.20879653399078515, decrease = 6.482293229970182e-09
iteration 2, reconstruction error: 0.2087965275387933, decrease = 6.451991857447936e-09
iteration 3, reconstruction error: 0.20879652111688768, decrease = 6.421905618392287e-09
iteration 4, reconstruction error: 0.2087965147249124, decrease = 6.3919752824048715e-09
PARAFAC2 reconstruction error=0.8189107725909467, variation=2.8559115072823715e-09.
Starting iteration 388
reconstruction error=0.20879650638196437
iteration 1, reconstruction error: 0.2087964999045874, decrease = 6.477376968128112e-09
iteration 2, reconstruction error: 0.20879649345746018, decrease = 6.447127220976512e-09
iteration 3, reconstruction error: 0.20879648704036127, decrease = 6.417098907807173e-09
iteration 4, reconstruction error: 0.20879648065313877, decrease = 6.387222500903178e-09
PARAFAC2 reconstruction error=0.8189107697372087, variation=2.853738023667063e-09.
Starting iteration 389
reconstruction error=0.20879647231639756
iteration 1, reconstruction error: 0.2087964658439384, decrease = 6.472459151973808e-09
iteration 2, reconstruction error: 0.20879645940166805, decrease = 6.44227035606626e-09
iteration 3, reconstruction error: 0.20879645298937513, decrease = 6.412292918867024e-09
iteration 4, reconstruction error: 0.2087964466069031, decrease = 6.382472023114261e-09
PARAFAC2 reconstruction error=0.8189107668856431, variation=2.8515655392524764e-09.
Starting iteration 390
reconstruction error=0.20879643827637456
iteration 1, reconstruction error: 0.20879643180882554, decrease = 6.46754902411395e-09
iteration 2, reconstruction error: 0.20879642537141516, decrease = 6.437410382531539e-09
iteration 3, reconstruction error: 0.20879641896392284, decrease = 6.407492314508545e-09
iteration 4, reconstruction error: 0.20879641258619971, decrease = 6.377723127393153e-09
PARAFAC2 reconstruction error=0.818910764036249, variation=2.8493941650609145e-09.
Starting iteration 391
reconstruction error=0.20879640426188742
iteration 1, reconstruction error: 0.20879639779924541, decrease = 6.4626420048785604e-09
iteration 2, reconstruction error: 0.2087963913666873, decrease = 6.432558125046839e-09
iteration 3, reconstruction error: 0.20879638496399636, decrease = 6.4026909329939485e-09
iteration 4, reconstruction error: 0.20879637859101907, decrease = 6.372977284785364e-09
PARAFAC2 reconstruction error=0.818910761189025, variation=2.8472240121146797e-09.
Starting iteration 392
reconstruction error=0.20879637027292416
iteration 1, reconstruction error: 0.2087963638151923, decrease = 6.457731877018702e-09
iteration 2, reconstruction error: 0.208796357387488, decrease = 6.427704285494329e-09
iteration 3, reconstruction error: 0.20879635098959223, decrease = 6.39789576872829e-09
iteration 4, reconstruction error: 0.20879634462135924, decrease = 6.368232996489809e-09
PARAFAC2 reconstruction error=0.8189107583439698, variation=2.8450551914360744e-09.
Starting iteration 393
reconstruction error=0.20879633630948624
iteration 1, reconstruction error: 0.20879632985665522, decrease = 6.452831019521099e-09
iteration 2, reconstruction error: 0.20879632343379934, decrease = 6.42285588603464e-09
iteration 3, reconstruction error: 0.2087963170406988, decrease = 6.39310054895148e-09
iteration 4, reconstruction error: 0.20879631067720544, decrease = 6.3634933433753815e-09
PARAFAC2 reconstruction error=0.8189107555010823, variation=2.842887480980494e-09.
Starting iteration 394
reconstruction error=0.20879630237155858
iteration 1, reconstruction error: 0.2087962959236284, decrease = 6.447930189779072e-09
iteration 2, reconstruction error: 0.20879628950561938, decrease = 6.418009013131609e-09
iteration 3, reconstruction error: 0.2087962831173125, decrease = 6.388306883486905e-09
iteration 4, reconstruction error: 0.2087962767585588, decrease = 6.358753690260954e-09
PARAFAC2 reconstruction error=0.8189107526603612, variation=2.8407211027925428e-09.
Starting iteration 395
reconstruction error=0.208796268459134
iteration 1, reconstruction error: 0.20879626201610546, decrease = 6.443028527369776e-09
iteration 2, reconstruction error: 0.20879625560294024, decrease = 6.413165221097472e-09
iteration 3, reconstruction error: 0.2087962492194239, decrease = 6.383516326646799e-09
iteration 4, reconstruction error: 0.20879624286540527, decrease = 6.354018644572079e-09
PARAFAC2 reconstruction error=0.8189107498218052, variation=2.8385559458499188e-09.
Starting iteration 396
reconstruction error=0.20879623457221452
iteration 1, reconstruction error: 0.20879622813408147, decrease = 6.438133054453843e-09
iteration 2, reconstruction error: 0.20879622172575618, decrease = 6.408325287088346e-09
iteration 3, reconstruction error: 0.2087962153470258, decrease = 6.3787303772322446e-09
iteration 4, reconstruction error: 0.2087962089977422, decrease = 6.349283598883204e-09
PARAFAC2 reconstruction error=0.8189107469854137, variation=2.836391566063412e-09.
Starting iteration 397
reconstruction error=0.20879620071078148
iteration 1, reconstruction error: 0.20879619427753926, decrease = 6.433242216719037e-09
iteration 2, reconstruction error: 0.20879618787405468, decrease = 6.403484575923102e-09
iteration 3, reconstruction error: 0.20879618150010792, decrease = 6.373946759286042e-09
iteration 4, reconstruction error: 0.20879617515555632, decrease = 6.344551606307647e-09
PARAFAC2 reconstruction error=0.8189107441511851, variation=2.834228518544535e-09.
Starting iteration 398
reconstruction error=0.2087961668748307
iteration 1, reconstruction error: 0.20879616044647933, decrease = 6.428351378984232e-09
iteration 2, reconstruction error: 0.20879615404783083, decrease = 6.398648499938986e-09
iteration 3, reconstruction error: 0.2087961476786685, decrease = 6.369162336428147e-09
iteration 4, reconstruction error: 0.208796141338845, decrease = 6.339823499512676e-09
PARAFAC2 reconstruction error=0.818910741319118, variation=2.8320671363601946e-09.
Starting iteration 399
reconstruction error=0.20879613306435346
iteration 1, reconstruction error: 0.20879612664089292, decrease = 6.423460541249426e-09
iteration 2, reconstruction error: 0.20879612024707664, decrease = 6.3938162819798805e-09
iteration 3, reconstruction error: 0.20879611388269256, decrease = 6.364384075308038e-09
iteration 4, reconstruction error: 0.20879610754759945, decrease = 6.335093116760504e-09
PARAFAC2 reconstruction error=0.8189107384892114, variation=2.829906642354274e-09.
Starting iteration 400
reconstruction error=0.2087960992793457
iteration 1, reconstruction error: 0.20879609286076753, decrease = 6.418578168965183e-09
iteration 2, reconstruction error: 0.2087960864717812, decrease = 6.388986339977976e-09
iteration 3, reconstruction error: 0.20879608011217687, decrease = 6.3596043153868465e-09
iteration 4, reconstruction error: 0.2087960737818034, decrease = 6.330373475416096e-09
PARAFAC2 reconstruction error=0.8189107356614642, variation=2.8277471475490756e-09.
Starting iteration 401
reconstruction error=0.20879606551979246
iteration 1, reconstruction error: 0.20879605910609822, decrease = 6.413694242368706e-09
iteration 2, reconstruction error: 0.20879605272194104, decrease = 6.384157175132188e-09
iteration 3, reconstruction error: 0.2087960463671111, decrease = 6.354829940047324e-09
iteration 4, reconstruction error: 0.20879604004145805, decrease = 6.32565305691557e-09
PARAFAC2 reconstruction error=0.8189107328358752, variation=2.8255889850115068e-09.
Starting iteration 402
reconstruction error=0.208796031785689
iteration 1, reconstruction error: 0.2087960253768725, decrease = 6.408816505265591e-09
iteration 2, reconstruction error: 0.2087960189975437, decrease = 6.379328815198093e-09
iteration 3, reconstruction error: 0.2087960126474851, decrease = 6.350058590065544e-09
iteration 4, reconstruction error: 0.2087960063265524, decrease = 6.320932693926196e-09
PARAFAC2 reconstruction error=0.818910730012443, variation=2.82343226576387e-09.
Starting iteration 403
reconstruction error=0.2087959980770273
iteration 1, reconstruction error: 0.20879599167308854, decrease = 6.403938768162476e-09
iteration 2, reconstruction error: 0.20879598529857962, decrease = 6.374508920714561e-09
iteration 3, reconstruction error: 0.20879597895329155, decrease = 6.345288072751032e-09
iteration 4, reconstruction error: 0.2087959726370762, decrease = 6.316215356294563e-09
PARAFAC2 reconstruction error=0.8189107271911665, variation=2.821276434694653e-09.
Starting iteration 404
reconstruction error=0.20879596439379872
iteration 1, reconstruction error: 0.20879595799473152, decrease = 6.399067192797148e-09
iteration 2, reconstruction error: 0.2087959516250456, decrease = 6.36968591760656e-09
iteration 3, reconstruction error: 0.208795945284525, decrease = 6.340520608549838e-09
iteration 4, reconstruction error: 0.20879593897302232, decrease = 6.3115026815996345e-09
PARAFAC2 reconstruction error=0.8189107243720447, variation=2.819121824870763e-09.
Starting iteration 405
reconstruction error=0.20879593073598918
iteration 1, reconstruction error: 0.2087959243417951, decrease = 6.394194063119585e-09
iteration 2, reconstruction error: 0.20879591797692598, decrease = 6.364869131747497e-09
iteration 3, reconstruction error: 0.20879591164116976, decrease = 6.335756225217537e-09
iteration 4, reconstruction error: 0.20879590533438286, decrease = 6.306786898280237e-09
PARAFAC2 reconstruction error=0.8189107215550758, variation=2.8169688803814097e-09.
Starting iteration 406
reconstruction error=0.20879589710359533
iteration 1, reconstruction error: 0.20879589071426974, decrease = 6.3893255963787254e-09
iteration 2, reconstruction error: 0.20879588435421592, decrease = 6.3600538169339416e-09
iteration 3, reconstruction error: 0.20879587802322094, decrease = 6.330994978265281e-09
iteration 4, reconstruction error: 0.2087958717211437, decrease = 6.30207724894305e-09
PARAFAC2 reconstruction error=0.8189107187402592, variation=2.8148166020258714e-09.
Starting iteration 407
reconstruction error=0.20879586349660467
iteration 1, reconstruction error: 0.20879585711214835, decrease = 6.384456324726173e-09
iteration 2, reconstruction error: 0.20879585075690674, decrease = 6.355241610744855e-09
iteration 3, reconstruction error: 0.2087958444306715, decrease = 6.326235230114108e-09
iteration 4, reconstruction error: 0.2087958381333, decrease = 6.297371513142025e-09
PARAFAC2 reconstruction error=0.8189107159275936, variation=2.8126656559379626e-09.
Starting iteration 408
reconstruction error=0.20879582991501158
iteration 1, reconstruction error: 0.2087958235354184, decrease = 6.379593187055832e-09
iteration 2, reconstruction error: 0.2087958171849851, decrease = 6.350433290336355e-09
iteration 3, reconstruction error: 0.20879581086350654, decrease = 6.321478562831828e-09
iteration 4, reconstruction error: 0.20879580457083924, decrease = 6.292667303897659e-09
PARAFAC2 reconstruction error=0.8189107131170776, variation=2.810515931095381e-09.
Starting iteration 409
reconstruction error=0.20879579635880208
iteration 1, reconstruction error: 0.20879578998406964, decrease = 6.374732436364994e-09
iteration 2, reconstruction error: 0.20879578363844392, decrease = 6.345625719328396e-09
iteration 3, reconstruction error: 0.2087957773217205, decrease = 6.316723422106207e-09
iteration 4, reconstruction error: 0.20879577103375666, decrease = 6.287963844053834e-09
PARAFAC2 reconstruction error=0.8189107103087102, variation=2.8083674274981263e-09.
Starting iteration 410
reconstruction error=0.20879576282797208
iteration 1, reconstruction error: 0.20879575645809273, decrease = 6.3698793462130254e-09
iteration 2, reconstruction error: 0.2087957501172769, decrease = 6.340815816852086e-09
iteration 3, reconstruction error: 0.2087957438053055, decrease = 6.311971417760631e-09
iteration 4, reconstruction error: 0.20879573752204125, decrease = 6.2832642422350204e-09
PARAFAC2 reconstruction error=0.8189107075024898, variation=2.8062203671908037e-09.
Starting iteration 411
reconstruction error=0.20879572932250753
iteration 1, reconstruction error: 0.20879572295748358, decrease = 6.365023952348281e-09
iteration 2, reconstruction error: 0.2087957166214653, decrease = 6.3360182933625e-09
iteration 3, reconstruction error: 0.2087957103142444, decrease = 6.307220884460563e-09
iteration 4, reconstruction error: 0.20879570403567665, decrease = 6.2785677490406755e-09
PARAFAC2 reconstruction error=0.8189107046984156, variation=2.804074195061901e-09.
Starting iteration 412
reconstruction error=0.20879569584239818
iteration 1, reconstruction error: 0.20879568948222732, decrease = 6.360170862196313e-09
iteration 2, reconstruction error: 0.20879568315101046, decrease = 6.331216856336752e-09
iteration 3, reconstruction error: 0.20879567684853545, decrease = 6.3024750140971975e-09
iteration 4, reconstruction error: 0.20879567057466344, decrease = 6.273872005246872e-09
PARAFAC2 reconstruction error=0.8189107018964863, variation=2.8019293552006275e-09.
Starting iteration 413
reconstruction error=0.2087956623876347
iteration 1, reconstruction error: 0.20879565603231615, decrease = 6.3553185492004616e-09
iteration 2, reconstruction error: 0.2087956497058968, decrease = 6.326419332847166e-09
iteration 3, reconstruction error: 0.2087956434081646, decrease = 6.297732224602726e-09
iteration 4, reconstruction error: 0.20879563713898602, decrease = 6.269178565165845e-09
PARAFAC2 reconstruction error=0.8189106990967007, variation=2.7997856255623788e-09.
Starting iteration 414
reconstruction error=0.2087956289582115
iteration 1, reconstruction error: 0.20879562260773907, decrease = 6.350472425697973e-09
iteration 2, reconstruction error: 0.2087956162861119, decrease = 6.321627166183674e-09
iteration 3, reconstruction error: 0.20879560999312555, decrease = 6.2929863542393605e-09
iteration 4, reconstruction error: 0.208795603728635, decrease = 6.264490537422063e-09
PARAFAC2 reconstruction error=0.8189106962990573, variation=2.797643339214062e-09.
Starting iteration 415
reconstruction error=0.20879559555411376
iteration 1, reconstruction error: 0.20879558920848285, decrease = 6.345630909621036e-09
iteration 2, reconstruction error: 0.20879558289165015, decrease = 6.316832695807406e-09
iteration 3, reconstruction error: 0.20879557660339967, decrease = 6.288250475883217e-09
iteration 4, reconstruction error: 0.2087955703435987, decrease = 6.259800983121622e-09
PARAFAC2 reconstruction error=0.8189106935035553, variation=2.7955020520664675e-09.
Starting iteration 416
reconstruction error=0.20879556217532966
iteration 1, reconstruction error: 0.2087955558345434, decrease = 6.340786257164055e-09
iteration 2, reconstruction error: 0.2087955495224982, decrease = 6.3120451920806175e-09
iteration 3, reconstruction error: 0.20879554323898822, decrease = 6.283509990101521e-09
iteration 4, reconstruction error: 0.20879553698387146, decrease = 6.255116757891699e-09
PARAFAC2 reconstruction error=0.8189106907101933, variation=2.7933619861642e-09.
Starting iteration 417
reconstruction error=0.20879552882185923
iteration 1, reconstruction error: 0.20879552248590985, decrease = 6.335949376268246e-09
iteration 2, reconstruction error: 0.20879551617864914, decrease = 6.307260713711571e-09
iteration 3, reconstruction error: 0.20879550989987036, decrease = 6.278778774682081e-09
iteration 4, reconstruction error: 0.20879550364943777, decrease = 6.250432588172927e-09
PARAFAC2 reconstruction error=0.81891068791897, variation=2.791223252529562e-09.
Starting iteration 418
reconstruction error=0.20879549549367912
iteration 1, reconstruction error: 0.20879548916256588, decrease = 6.331113244772979e-09
iteration 2, reconstruction error: 0.2087954828600888, decrease = 6.302477068009793e-09
iteration 3, reconstruction error: 0.2087954765860459, decrease = 6.274042896325938e-09
iteration 4, reconstruction error: 0.20879547034028978, decrease = 6.245756134504177e-09
PARAFAC2 reconstruction error=0.8189106851298844, variation=2.789085629117949e-09.
Starting iteration 419
reconstruction error=0.2087954621907853
iteration 1, reconstruction error: 0.20879545586450277, decrease = 6.326282525614957e-09
iteration 2, reconstruction error: 0.20879544956680943, decrease = 6.297693339041288e-09
iteration 3, reconstruction error: 0.2087954432974931, decrease = 6.269316316087625e-09
iteration 4, reconstruction error: 0.20879543705641734, decrease = 6.2410757672992645e-09
PARAFAC2 reconstruction error=0.8189106823429347, variation=2.7869496710408725e-09.
Starting iteration 420
reconstruction error=0.20879542891316455
iteration 1, reconstruction error: 0.20879542259171582, decrease = 6.321448725588041e-09
iteration 2, reconstruction error: 0.2087954162988, decrease = 6.292915827321721e-09
iteration 3, reconstruction error: 0.2087954100342095, decrease = 6.264590485249855e-09
iteration 4, reconstruction error: 0.20879540379780867, decrease = 6.236400840187173e-09
PARAFAC2 reconstruction error=0.8189106795581209, variation=2.7848138239860987e-09.
Starting iteration 421
reconstruction error=0.2087953956608113
iteration 1, reconstruction error: 0.20879538934418945, decrease = 6.316621836699454e-09
iteration 2, reconstruction error: 0.20879538305604883, decrease = 6.28814061931493e-09
iteration 3, reconstruction error: 0.20879537679618262, decrease = 6.2598662087243184e-09
iteration 4, reconstruction error: 0.2087953705644544, decrease = 6.231728216787857e-09
PARAFAC2 reconstruction error=0.8189106767754405, variation=2.782680419421979e-09.
Starting iteration 422
reconstruction error=0.20879536243371005
iteration 1, reconstruction error: 0.208795356121912, decrease = 6.311798056435336e-09
iteration 2, reconstruction error: 0.208795349838545, decrease = 6.2833669933759495e-09
iteration 3, reconstruction error: 0.20879534358340004, decrease = 6.255144957556524e-09
iteration 4, reconstruction error: 0.20879533735634212, decrease = 6.2270579248568936e-09
PARAFAC2 reconstruction error=0.818910673994893, variation=2.780547458947069e-09.
Starting iteration 423
reconstruction error=0.20879532923184832
iteration 1, reconstruction error: 0.20879532292487485, decrease = 6.306973471259525e-09
iteration 2, reconstruction error: 0.20879531664627612, decrease = 6.2785987242630625e-09
iteration 3, reconstruction error: 0.20879531039585159, decrease = 6.250424539055999e-09
iteration 4, reconstruction error: 0.20879530417346398, decrease = 6.222387605170354e-09
PARAFAC2 reconstruction error=0.8189106712164766, variation=2.778416385851301e-09.
Starting iteration 424
reconstruction error=0.2087952960552198
iteration 1, reconstruction error: 0.2087952897530655, decrease = 6.302154298420959e-09
iteration 2, reconstruction error: 0.20879528347923196, decrease = 6.273833536019069e-09
iteration 3, reconstruction error: 0.20879527723352556, decrease = 6.2457063965126736e-09
iteration 4, reconstruction error: 0.20879527101580211, decrease = 6.2177234472216014e-09
PARAFAC2 reconstruction error=0.8189106684401908, variation=2.7762858678670455e-09.
Starting iteration 425
reconstruction error=0.2087952629038121
iteration 1, reconstruction error: 0.20879525660647155, decrease = 6.297340537919638e-09
iteration 2, reconstruction error: 0.20879525033740937, decrease = 6.269062186037289e-09
iteration 3, reconstruction error: 0.20879524409641184, decrease = 6.240997524331604e-09
iteration 4, reconstruction error: 0.20879523788335333, decrease = 6.2130585121167314e-09
PARAFAC2 reconstruction error=0.818910665666034, variation=2.7741567931727218e-09.
Starting iteration 426
reconstruction error=0.20879522977761109
iteration 1, reconstruction error: 0.20879522348508742, decrease = 6.292523668793848e-09
iteration 2, reconstruction error: 0.20879521722078426, decrease = 6.264303159531082e-09
iteration 3, reconstruction error: 0.20879521098450027, decrease = 6.236283989213831e-09
iteration 4, reconstruction error: 0.2087952047760989, decrease = 6.2084013763286094e-09
PARAFAC2 reconstruction error=0.8189106628940048, variation=2.77202916176833e-09.
Starting iteration 427
reconstruction error=0.2087951966766098
iteration 1, reconstruction error: 0.20879519038889452, decrease = 6.287715292874196e-09
iteration 2, reconstruction error: 0.2087951841293527, decrease = 6.2595418293120986e-09
iteration 3, reconstruction error: 0.20879517789777835, decrease = 6.231574339876644e-09
iteration 4, reconstruction error: 0.2087951716940373, decrease = 6.203741048649292e-09
PARAFAC2 reconstruction error=0.8189106601241024, variation=2.769902418542358e-09.
Starting iteration 428
reconstruction error=0.20879516360079273
iteration 1, reconstruction error: 0.20879515731788814, decrease = 6.282904585486193e-09
iteration 2, reconstruction error: 0.208795151063103, decrease = 6.254785134274243e-09
iteration 3, reconstruction error: 0.20879514483623524, decrease = 6.226867771408351e-09
iteration 4, reconstruction error: 0.20879513863714677, decrease = 6.199088464775571e-09
PARAFAC2 reconstruction error=0.8189106573563253, variation=2.7677771186063183e-09.
Starting iteration 429
reconstruction error=0.208795130550149
iteration 1, reconstruction error: 0.2087951242720505, decrease = 6.278098513279318e-09
iteration 2, reconstruction error: 0.20879511802202205, decrease = 6.250028439236388e-09
iteration 3, reconstruction error: 0.2087951117998539, decrease = 6.222168141833961e-09
iteration 4, reconstruction error: 0.20879510560541956, decrease = 6.194434354345191e-09
PARAFAC2 reconstruction error=0.8189106545906722, variation=2.7656530399156054e-09.
Starting iteration 430
reconstruction error=0.20879509752467224
iteration 1, reconstruction error: 0.20879509125137438, decrease = 6.273297853409687e-09
iteration 2, reconstruction error: 0.20879508500609495, decrease = 6.245279432492978e-09
iteration 3, reconstruction error: 0.20879507878863418, decrease = 6.217460768453975e-09
iteration 4, reconstruction error: 0.20879507259884855, decrease = 6.18978562849648e-09
PARAFAC2 reconstruction error=0.8189106518271421, variation=2.7635301824702196e-09.
Starting iteration 431
reconstruction error=0.20879506452434615
iteration 1, reconstruction error: 0.20879505825584668, decrease = 6.268499469497257e-09
iteration 2, reconstruction error: 0.20879505201531856, decrease = 6.2405281220367925e-09
iteration 3, reconstruction error: 0.208795045802552, decrease = 6.212766551216831e-09
iteration 4, reconstruction error: 0.20879503961741744, decrease = 6.185134571179418e-09
PARAFAC2 reconstruction error=0.8189106490657335, variation=2.761408546270161e-09.
Starting iteration 432
reconstruction error=0.20879503154915763
iteration 1, reconstruction error: 0.20879502528545882, decrease = 6.263698809627627e-09
iteration 2, reconstruction error: 0.208795019049672, decrease = 6.235786831343404e-09
iteration 3, reconstruction error: 0.20879501284160507, decrease = 6.208066921642441e-09
iteration 4, reconstruction error: 0.2087950066611154, decrease = 6.180489675600143e-09
PARAFAC2 reconstruction error=0.8189106463064453, variation=2.759288242337732e-09.
Starting iteration 433
reconstruction error=0.2087949985991003
iteration 1, reconstruction error: 0.20879499234019525, decrease = 6.258905060896325e-09
iteration 2, reconstruction error: 0.20879498610915356, decrease = 6.231041682625005e-09
iteration 3, reconstruction error: 0.20879497990577703, decrease = 6.203376534674732e-09
iteration 4, reconstruction error: 0.20879497372992914, decrease = 6.175847888645336e-09
PARAFAC2 reconstruction error=0.8189106435492766, variation=2.75716871556142e-09.
Starting iteration 434
reconstruction error=0.20879496567415495
iteration 1, reconstruction error: 0.20879495942004206, decrease = 6.254112894232833e-09
iteration 2, reconstruction error: 0.20879495319374244, decrease = 6.226299614775499e-09
iteration 3, reconstruction error: 0.2087949469950563, decrease = 6.198686147707022e-09
iteration 4, reconstruction error: 0.20879494082384945, decrease = 6.171206851091071e-09
PARAFAC2 reconstruction error=0.8189106407942255, variation=2.75505107616425e-09.
Starting iteration 435
reconstruction error=0.20879493277431668
iteration 1, reconstruction error: 0.20879492652499448, decrease = 6.249322198614848e-09
iteration 2, reconstruction error: 0.20879492030343072, decrease = 6.221563764174931e-09
iteration 3, reconstruction error: 0.20879491410943343, decrease = 6.1939972872959714e-09
iteration 4, reconstruction error: 0.20879490794286373, decrease = 6.166569699317392e-09
PARAFAC2 reconstruction error=0.8189106380412912, variation=2.7529343249454996e-09.
Starting iteration 436
reconstruction error=0.20879489989956937
iteration 1, reconstruction error: 0.20879489365503084, decrease = 6.244538525157495e-09
iteration 2, reconstruction error: 0.20879488743820687, decrease = 6.216823972282626e-09
iteration 3, reconstruction error: 0.20879488124889456, decrease = 6.189312312665507e-09
iteration 4, reconstruction error: 0.20879487508695974, decrease = 6.161934823500914e-09
PARAFAC2 reconstruction error=0.8189106352904724, variation=2.7508187949720764e-09.
Starting iteration 437
reconstruction error=0.20879486704990355
iteration 1, reconstruction error: 0.20879486081014953, decrease = 6.239754019032873e-09
iteration 2, reconstruction error: 0.20879485459805683, decrease = 6.212092701352034e-09
iteration 3, reconstruction error: 0.20879484841342721, decrease = 6.184629613992243e-09
iteration 4, reconstruction error: 0.20879484225612416, decrease = 6.157303056308905e-09
PARAFAC2 reconstruction error=0.8189106325417678, variation=2.7487045972662827e-09.
Starting iteration 438
reconstruction error=0.20879483422530534
iteration 1, reconstruction error: 0.2087948279903312, decrease = 6.234974148089378e-09
iteration 2, reconstruction error: 0.208794821782969, decrease = 6.20736220757756e-09
iteration 3, reconstruction error: 0.2087948156030174, decrease = 6.1799515782556824e-09
iteration 4, reconstruction error: 0.20879480945034765, decrease = 6.152669762560237e-09
PARAFAC2 reconstruction error=0.8189106297951763, variation=2.7465915097835136e-09.
Starting iteration 439
reconstruction error=0.20879480142576076
iteration 1, reconstruction error: 0.20879479519556493, decrease = 6.2301958314581185e-09
iteration 2, reconstruction error: 0.20879478899293094, decrease = 6.202633989760287e-09
iteration 3, reconstruction error: 0.20879478281765743, decrease = 6.175273514763546e-09
iteration 4, reconstruction error: 0.20879477666961482, decrease = 6.1480426027937796e-09
PARAFAC2 reconstruction error=0.8189106270506963, variation=2.744479976612979e-09.
Starting iteration 440
reconstruction error=0.2087947686512613
iteration 1, reconstruction error: 0.2087947624258384, decrease = 6.225422899408528e-09
iteration 2, reconstruction error: 0.20879475622792948, decrease = 6.197908908323058e-09
iteration 3, reconstruction error: 0.20879475005733403, decrease = 6.17059545127141e-09
iteration 4, reconstruction error: 0.20879474391391628, decrease = 6.1434177467400986e-09
PARAFAC2 reconstruction error=0.8189106243083271, variation=2.7423692205985617e-09.
Starting iteration 441
reconstruction error=0.2087947359017929
iteration 1, reconstruction error: 0.20879472968114293, decrease = 6.220649967358938e-09
iteration 2, reconstruction error: 0.20879472348795297, decrease = 6.19318996086804e-09
iteration 3, reconstruction error: 0.20879471732203017, decrease = 6.165922800116519e-09
iteration 4, reconstruction error: 0.20879471118323495, decrease = 6.138795222154769e-09
PARAFAC2 reconstruction error=0.8189106215680669, variation=2.7402601299186813e-09.
Starting iteration 442
reconstruction error=0.2087947031773425
iteration 1, reconstruction error: 0.2087946969614639, decrease = 6.215878589621582e-09
iteration 2, reconstruction error: 0.2087946907729952, decrease = 6.1884687097002455e-09
iteration 3, reconstruction error: 0.2087946846117381, decrease = 6.161257087855532e-09
iteration 4, reconstruction error: 0.20879467847756542, decrease = 6.13417269756944e-09
PARAFAC2 reconstruction error=0.8189106188299149, variation=2.738152038439523e-09.
Starting iteration 443
reconstruction error=0.20879467047789835
iteration 1, reconstruction error: 0.20879466426678422, decrease = 6.211114123022554e-09
iteration 2, reconstruction error: 0.20879465808303446, decrease = 6.1837497622452275e-09
iteration 3, reconstruction error: 0.20879465192644311, decrease = 6.156591347838969e-09
iteration 4, reconstruction error: 0.2087946457968883, decrease = 6.1295548081652385e-09
PARAFAC2 reconstruction error=0.8189106160938697, variation=2.736045168205692e-09.
Starting iteration 444
reconstruction error=0.2087946378034474
iteration 1, reconstruction error: 0.2087946315970977, decrease = 6.206349684179102e-09
iteration 2, reconstruction error: 0.20879462541806074, decrease = 6.179036976527996e-09
iteration 3, reconstruction error: 0.20879461926613432, decrease = 6.151926412734099e-09
iteration 4, reconstruction error: 0.20879461314119435, decrease = 6.124939971874355e-09
PARAFAC2 reconstruction error=0.8189106133599298, variation=2.7339399633063977e-09.
Starting iteration 445
reconstruction error=0.20879460515397638
iteration 1, reconstruction error: 0.20879459895238808, decrease = 6.201588298448968e-09
iteration 2, reconstruction error: 0.20879459277806306, decrease = 6.174325023478033e-09
iteration 3, reconstruction error: 0.20879458663079778, decrease = 6.147265280143088e-09
iteration 4, reconstruction error: 0.20879458051047187, decrease = 6.120325912739588e-09
PARAFAC2 reconstruction error=0.8189106106280941, variation=2.731835646585523e-09.
Starting iteration 446
reconstruction error=0.2087945725294775
iteration 1, reconstruction error: 0.2087945663326467, decrease = 6.19683079849942e-09
iteration 2, reconstruction error: 0.20879456016302755, decrease = 6.16961914889913e-09
iteration 3, reconstruction error: 0.20879455402042335, decrease = 6.142604203063229e-09
iteration 4, reconstruction error: 0.2087945479047061, decrease = 6.115717238186491e-09
PARAFAC2 reconstruction error=0.8189106078983617, variation=2.7297324400876732e-09.
Starting iteration 447
reconstruction error=0.2087945399299277
iteration 1, reconstruction error: 0.20879453373785595, decrease = 6.192071744237637e-09
iteration 2, reconstruction error: 0.20879452757294106, decrease = 6.164914884143613e-09
iteration 3, reconstruction error: 0.20879452143499258, decrease = 6.137948482809463e-09
iteration 4, reconstruction error: 0.20879451532388243, decrease = 6.111110145701204e-09
PARAFAC2 reconstruction error=0.8189106051707311, variation=2.727630565857453e-09.
Starting iteration 448
reconstruction error=0.20879450735532526
iteration 1, reconstruction error: 0.20879450116800333, decrease = 6.187321932582535e-09
iteration 2, reconstruction error: 0.20879449500779274, decrease = 6.16021059163252e-09
iteration 3, reconstruction error: 0.2087944888744992, decrease = 6.133293539711815e-09
iteration 4, reconstruction error: 0.2087944827679954, decrease = 6.106503802616459e-09
PARAFAC2 reconstruction error=0.8189106024452008, variation=2.7255303569617695e-09.
Starting iteration 449
reconstruction error=0.20879447480564936
iteration 1, reconstruction error: 0.208794468623078, decrease = 6.18257137152689e-09
iteration 2, reconstruction error: 0.20879446246756786, decrease = 6.155510129390862e-09
iteration 3, reconstruction error: 0.20879445633892618, decrease = 6.12864167748306e-09
iteration 4, reconstruction error: 0.2087944502370233, decrease = 6.101902871868958e-09
PARAFAC2 reconstruction error=0.8189105997217697, variation=2.7234310362445058e-09.
Starting iteration 450
reconstruction error=0.20879444228089145
iteration 1, reconstruction error: 0.20879443610306603, decrease = 6.177825417896798e-09
iteration 2, reconstruction error: 0.2087944299522517, decrease = 6.1508143300859075e-09
iteration 3, reconstruction error: 0.20879442382826033, decrease = 6.123991369566539e-09
iteration 4, reconstruction error: 0.20879441773095844, decrease = 6.097301885610307e-09
PARAFAC2 reconstruction error=0.8189105970004368, variation=2.721332936772569e-09.
Starting iteration 451
reconstruction error=0.20879440978103755
iteration 1, reconstruction error: 0.20879440360795654, decrease = 6.173081018578941e-09
iteration 2, reconstruction error: 0.20879439746183728, decrease = 6.146119252425919e-09
iteration 3, reconstruction error: 0.2087943913424908, decrease = 6.119346473987264e-09
iteration 4, reconstruction error: 0.20879438524978444, decrease = 6.0927063672000514e-09
PARAFAC2 reconstruction error=0.8189105942812005, variation=2.7192362805905645e-09.
Starting iteration 452
reconstruction error=0.2087943773060754
iteration 1, reconstruction error: 0.2087943711377326, decrease = 6.16834278099887e-09
iteration 2, reconstruction error: 0.20879436499630688, decrease = 6.141425729078165e-09
iteration 3, reconstruction error: 0.208794358881603, decrease = 6.1147038821207644e-09
iteration 4, reconstruction error: 0.20879435279349295, decrease = 6.088110043878103e-09
PARAFAC2 reconstruction error=0.8189105915640598, variation=2.7171407346315846e-09.
Starting iteration 453
reconstruction error=0.2087943448559878
iteration 1, reconstruction error: 0.20879433869238634, decrease = 6.163601462549906e-09
iteration 2, reconstruction error: 0.20879433255565105, decrease = 6.136735286599304e-09
iteration 3, reconstruction error: 0.2087943264455859, decrease = 6.110065148279276e-09
iteration 4, reconstruction error: 0.20879432036206605, decrease = 6.083519854538366e-09
PARAFAC2 reconstruction error=0.8189105888490132, variation=2.715046520940234e-09.
Starting iteration 454
reconstruction error=0.20879431243076718
iteration 1, reconstruction error: 0.20879430627189857, decrease = 6.158868609551504e-09
iteration 2, reconstruction error: 0.2087943001398483, decrease = 6.132050284213264e-09
iteration 3, reconstruction error: 0.2087942940344227, decrease = 6.105425581770518e-09
iteration 4, reconstruction error: 0.2087942879554953, decrease = 6.078927416997004e-09
PARAFAC2 reconstruction error=0.8189105861360597, variation=2.7129535284942108e-09.
Starting iteration 455
reconstruction error=0.20879428003039793
iteration 1, reconstruction error: 0.20879427387626065, decrease = 6.154137283109762e-09
iteration 2, reconstruction error: 0.20879426774889692, decrease = 6.1273637275149895e-09
iteration 3, reconstruction error: 0.20879426164810314, decrease = 6.100793786822933e-09
iteration 4, reconstruction error: 0.20879425557376205, decrease = 6.074341085682278e-09
PARAFAC2 reconstruction error=0.8189105834251977, variation=2.7108619793381195e-09.
Starting iteration 456
reconstruction error=0.20879424765486393
iteration 1, reconstruction error: 0.2087942415054595, decrease = 6.14940443011136e-09
iteration 2, reconstruction error: 0.2087942353827739, decrease = 6.122685608511702e-09
iteration 3, reconstruction error: 0.20879422928661498, decrease = 6.096158911006455e-09
iteration 4, reconstruction error: 0.20879422321685864, decrease = 6.069756336435361e-09
PARAFAC2 reconstruction error=0.8189105807164264, variation=2.708771318360448e-09.
Starting iteration 457
reconstruction error=0.20879421530415582
iteration 1, reconstruction error: 0.20879420915947805, decrease = 6.144677766606321e-09
iteration 2, reconstruction error: 0.20879420304147128, decrease = 6.118006767863449e-09
iteration 3, reconstruction error: 0.20879419694994267, decrease = 6.0915286148599534e-09
iteration 4, reconstruction error: 0.20879419088476803, decrease = 6.0651746403017626e-09
PARAFAC2 reconstruction error=0.8189105780097441, variation=2.706682322717313e-09.
Starting iteration 458
reconstruction error=0.2087941829782589
iteration 1, reconstruction error: 0.20879417683830323, decrease = 6.139955682771259e-09
iteration 2, reconstruction error: 0.20879417072497147, decrease = 6.11333175748463e-09
iteration 3, reconstruction error: 0.2087941646380708, decrease = 6.086900677937379e-09
iteration 4, reconstruction error: 0.2087941585774763, decrease = 6.060594498480398e-09
PARAFAC2 reconstruction error=0.8189105753051498, variation=2.7045943262749006e-09.
Starting iteration 459
reconstruction error=0.20879415067715854
iteration 1, reconstruction error: 0.20879414454192877, decrease = 6.135229768666761e-09
iteration 2, reconstruction error: 0.2087941384332689, decrease = 6.108659855730281e-09
iteration 3, reconstruction error: 0.2087941323509916, decrease = 6.082277320684781e-09
iteration 4, reconstruction error: 0.20879412629497335, decrease = 6.05601824243962e-09
PARAFAC2 reconstruction error=0.818910572602642, variation=2.70250777312242e-09.
Starting iteration 460
reconstruction error=0.20879411840084536
iteration 1, reconstruction error: 0.208794112270333, decrease = 6.130512347768402e-09
iteration 2, reconstruction error: 0.20879410616634433, decrease = 6.103988675620897e-09
iteration 3, reconstruction error: 0.20879410008868882, decrease = 6.077655517744418e-09
iteration 4, reconstruction error: 0.2087940940372407, decrease = 6.051448120381053e-09
PARAFAC2 reconstruction error=0.8189105699022199, variation=2.7004221081483593e-09.
Starting iteration 461
reconstruction error=0.20879408614930092
iteration 1, reconstruction error: 0.20879408002350444, decrease = 6.125796481182277e-09
iteration 2, reconstruction error: 0.2087940739241823, decrease = 6.0993221306926415e-09
iteration 3, reconstruction error: 0.208794067851147, decrease = 6.073035296871865e-09
iteration 4, reconstruction error: 0.20879406180427446, decrease = 6.046872558229666e-09
PARAFAC2 reconstruction error=0.8189105672038814, variation=2.6983384415757428e-09.
Starting iteration 462
reconstruction error=0.20879405392251357
iteration 1, reconstruction error: 0.20879404780142996, decrease = 6.121083612198319e-09
iteration 2, reconstruction error: 0.2087940417067728, decrease = 6.094657167832196e-09
iteration 3, reconstruction error: 0.20879403563835083, decrease = 6.068421959382064e-09
iteration 4, reconstruction error: 0.2087940295960476, decrease = 6.0423032410827915e-09
PARAFAC2 reconstruction error=0.8189105645076261, variation=2.6962553301146386e-09.
Starting iteration 463
reconstruction error=0.20879402172047176
iteration 1, reconstruction error: 0.20879401560409475, decrease = 6.11637701597445e-09
iteration 2, reconstruction error: 0.2087940095140995, decrease = 6.089995258085068e-09
iteration 3, reconstruction error: 0.20879400345029392, decrease = 6.063805568778946e-09
iteration 4, reconstruction error: 0.20879399741255542, decrease = 6.037738503605894e-09
PARAFAC2 reconstruction error=0.8189105618134525, variation=2.6941736619434664e-09.
Starting iteration 464
reconstruction error=0.20879398954315914
iteration 1, reconstruction error: 0.20879398343148875, decrease = 6.1116703919950055e-09
iteration 2, reconstruction error: 0.20879397734615235, decrease = 6.085336401451258e-09
iteration 3, reconstruction error: 0.20879397128695856, decrease = 6.05919378560138e-09
iteration 4, reconstruction error: 0.20879396525378555, decrease = 6.033173016728455e-09
PARAFAC2 reconstruction error=0.8189105591213588, variation=2.692093659106831e-09.
Starting iteration 465
reconstruction error=0.20879395739056117
iteration 1, reconstruction error: 0.20879395128359668, decrease = 6.106964489660527e-09
iteration 2, reconstruction error: 0.20879394520291755, decrease = 6.080679126885258e-09
iteration 3, reconstruction error: 0.2087939391483301, decrease = 6.054587442516635e-09
iteration 4, reconstruction error: 0.20879393311971797, decrease = 6.028612137276568e-09
PARAFAC2 reconstruction error=0.8189105564313445, variation=2.6900143224040107e-09.
Starting iteration 466
reconstruction error=0.2087939252626654
iteration 1, reconstruction error: 0.2087939191604014, decrease = 6.102263999663293e-09
iteration 2, reconstruction error: 0.20879391308437414, decrease = 6.076027264656503e-09
iteration 3, reconstruction error: 0.20879390703439388, decrease = 6.049980266764621e-09
iteration 4, reconstruction error: 0.20879390101034184, decrease = 6.024052034980798e-09
PARAFAC2 reconstruction error=0.8189105537434076, variation=2.687936873080332e-09.
Starting iteration 467
reconstruction error=0.20879389315946106
iteration 1, reconstruction error: 0.20879388706189522, decrease = 6.097565841134411e-09
iteration 2, reconstruction error: 0.20879388099051907, decrease = 6.071376151828289e-09
iteration 3, reconstruction error: 0.20879387494514212, decrease = 6.0453769490376175e-09
iteration 4, reconstruction error: 0.2087938689256448, decrease = 6.019497317266698e-09
PARAFAC2 reconstruction error=0.8189105510575473, variation=2.6858603119350732e-09.
Starting iteration 468
reconstruction error=0.2087938610809296
iteration 1, reconstruction error: 0.20879385498805958, decrease = 6.092870014073881e-09
iteration 2, reconstruction error: 0.20879384892133068, decrease = 6.0667288970250866e-09
iteration 3, reconstruction error: 0.20879384288055627, decrease = 6.0407744084667314e-09
iteration 4, reconstruction error: 0.20879383686561054, decrease = 6.014945735932642e-09
PARAFAC2 reconstruction error=0.8189105483737622, variation=2.683785083057444e-09.
Starting iteration 469
reconstruction error=0.20879382902705865
iteration 1, reconstruction error: 0.20879382293888293, decrease = 6.08817571357001e-09
iteration 2, reconstruction error: 0.20879381687679976, decrease = 6.0620831687785426e-09
iteration 3, reconstruction error: 0.2087938108406186, decrease = 6.036181166013677e-09
iteration 4, reconstruction error: 0.20879380483022605, decrease = 6.0103925447752005e-09
PARAFAC2 reconstruction error=0.8189105456920511, variation=2.6817110754251416e-09.
Starting iteration 470
reconstruction error=0.20879379699783585
iteration 1, reconstruction error: 0.20879379091435063, decrease = 6.083485215579998e-09
iteration 2, reconstruction error: 0.20879378485690855, decrease = 6.0574420757131264e-09
iteration 3, reconstruction error: 0.20879377882532377, decrease = 6.031584787180577e-09
iteration 4, reconstruction error: 0.20879377281947742, decrease = 6.005846348022814e-09
PARAFAC2 reconstruction error=0.8189105430124125, variation=2.679638622105074e-09.
Starting iteration 471
reconstruction error=0.2087937649932481
iteration 1, reconstruction error: 0.20879375891444482, decrease = 6.0788032663072755e-09
iteration 2, reconstruction error: 0.20879375286164464, decrease = 6.0528001777360174e-09
iteration 3, reconstruction error: 0.20879374683465385, decrease = 6.026990795326981e-09
iteration 4, reconstruction error: 0.20879374083335148, decrease = 6.001302371716477e-09
PARAFAC2 reconstruction error=0.8189105403348453, variation=2.6775671679857282e-09.
Starting iteration 472
reconstruction error=0.20879373301327606
iteration 1, reconstruction error: 0.20879372693916096, decrease = 6.074115099785615e-09
iteration 2, reconstruction error: 0.20879372089099568, decrease = 6.0481652741639635e-09
iteration 3, reconstruction error: 0.20879371486859205, decrease = 6.022403631344986e-09
iteration 4, reconstruction error: 0.2087937088718343, decrease = 5.996757757031901e-09
PARAFAC2 reconstruction error=0.8189105376593482, variation=2.6754971571563146e-09.
Starting iteration 473
reconstruction error=0.20879370105790973
iteration 1, reconstruction error: 0.20879369498847428, decrease = 6.069435454225669e-09
iteration 2, reconstruction error: 0.20879368894494393, decrease = 6.043530342836334e-09
iteration 3, reconstruction error: 0.20879368292712738, decrease = 6.017816550629718e-09
iteration 4, reconstruction error: 0.2087936769349105, decrease = 5.992216889350033e-09
PARAFAC2 reconstruction error=0.8189105349859198, variation=2.673428367572228e-09.
Starting iteration 474
reconstruction error=0.2087936691271359
iteration 1, reconstruction error: 0.20879366306238012, decrease = 6.064755780910147e-09
iteration 2, reconstruction error: 0.2087936570234793, decrease = 6.03890082384595e-09
iteration 3, reconstruction error: 0.20879365101024758, decrease = 6.013231718116074e-09
iteration 4, reconstruction error: 0.20879364502256997, decrease = 5.987677603735975e-09
PARAFAC2 reconstruction error=0.818910532314559, variation=2.6713607992334687e-09.
Starting iteration 475
reconstruction error=0.20879363722093772
iteration 1, reconstruction error: 0.20879363116085778, decrease = 6.06007993786406e-09
iteration 2, reconstruction error: 0.20879362512658417, decrease = 6.034273608568341e-09
iteration 3, reconstruction error: 0.20879361911793493, decrease = 6.0086492448263584e-09
iteration 4, reconstruction error: 0.2087936131347897, decrease = 5.983145229260245e-09
PARAFAC2 reconstruction error=0.8189105296452643, variation=2.6692946741846413e-09.
Starting iteration 476
reconstruction error=0.20879360533930424
iteration 1, reconstruction error: 0.2087935992838955, decrease = 6.055408757754677e-09
iteration 2, reconstruction error: 0.20879359325424757, decrease = 6.029647919847392e-09
iteration 3, reconstruction error: 0.2087935872501762, decrease = 6.004071378962195e-09
iteration 4, reconstruction error: 0.2087935812715679, decrease = 5.978608275114539e-09
PARAFAC2 reconstruction error=0.8189105269780349, variation=2.6672294373142336e-09.
Starting iteration 477
reconstruction error=0.20879357348222016
iteration 1, reconstruction error: 0.2087935674314795, decrease = 6.0507406585141865e-09
iteration 2, reconstruction error: 0.20879356140645572, decrease = 6.025023785438677e-09
iteration 3, reconstruction error: 0.20879355540695832, decrease = 5.999497398878617e-09
iteration 4, reconstruction error: 0.20879354943287626, decrease = 5.9740820623765956e-09
PARAFAC2 reconstruction error=0.8189105243128687, variation=2.66516619884527e-09.
Starting iteration 478
reconstruction error=0.20879354164966843
iteration 1, reconstruction error: 0.20879353560359432, decrease = 6.046074113585931e-09
iteration 2, reconstruction error: 0.20879352958318928, decrease = 6.020405035611631e-09
iteration 3, reconstruction error: 0.20879352358826822, decrease = 5.994921059571112e-09
iteration 4, reconstruction error: 0.20879351761871082, decrease = 5.969557403950887e-09
PARAFAC2 reconstruction error=0.8189105216497652, variation=2.663103515487819e-09.
Starting iteration 479
reconstruction error=0.2087935098416367
iteration 1, reconstruction error: 0.20879350380022374, decrease = 6.0414129532393446e-09
iteration 2, reconstruction error: 0.20879349778443745, decrease = 6.015786285784586e-09
iteration 3, reconstruction error: 0.20879349179408577, decrease = 5.990351686913087e-09
iteration 4, reconstruction error: 0.20879348582905533, decrease = 5.965030441812402e-09
PARAFAC2 reconstruction error=0.8189105189887225, variation=2.66104271950951e-09.
Starting iteration 480
reconstruction error=0.20879347805811263
iteration 1, reconstruction error: 0.20879347202136084, decrease = 6.036751792892758e-09
iteration 2, reconstruction error: 0.20879346601018636, decrease = 6.011174474851444e-09
iteration 3, reconstruction error: 0.2087934600244033, decrease = 5.985783063655603e-09
iteration 4, reconstruction error: 0.2087934540638967, decrease = 5.9605065882983865e-09
PARAFAC2 reconstruction error=0.8189105163297399, variation=2.6589825896650154e-09.
Starting iteration 481
reconstruction error=0.20879344629907695
iteration 1, reconstruction error: 0.20879344026698557, decrease = 6.032091381946714e-09
iteration 2, reconstruction error: 0.20879343426042213, decrease = 6.0065634410744195e-09
iteration 3, reconstruction error: 0.20879342827920383, decrease = 5.98121829842313e-09
iteration 4, reconstruction error: 0.20879342232321338, decrease = 5.955990450834392e-09
PARAFAC2 reconstruction error=0.8189105136728154, variation=2.6569244582219653e-09.
Starting iteration 482
reconstruction error=0.20879341456451955
iteration 1, reconstruction error: 0.20879340853708547, decrease = 6.027434079625138e-09
iteration 2, reconstruction error: 0.20879340253512998, decrease = 6.0019554881662884e-09
iteration 3, reconstruction error: 0.20879339655847334, decrease = 5.976656641815126e-09
iteration 4, reconstruction error: 0.20879339060700217, decrease = 5.951471176990353e-09
PARAFAC2 reconstruction error=0.8189105110179484, variation=2.65486699291273e-09.
Starting iteration 483
reconstruction error=0.2087933828544259
iteration 1, reconstruction error: 0.20879337683164143, decrease = 6.022784465598008e-09
iteration 2, reconstruction error: 0.2087933708342939, decrease = 5.997347535258157e-09
iteration 3, reconstruction error: 0.20879336486219738, decrease = 5.97209651176378e-09
iteration 4, reconstruction error: 0.208793358915237, decrease = 5.946960368596876e-09
PARAFAC2 reconstruction error=0.8189105083651372, variation=2.6528111929380316e-09.
Starting iteration 484
reconstruction error=0.20879335116878198
iteration 1, reconstruction error: 0.20879334515064482, decrease = 6.018137155283654e-09
iteration 2, reconstruction error: 0.20879333915789908, decrease = 5.992745744087813e-09
iteration 3, reconstruction error: 0.2087933331903604, decrease = 5.967538685425211e-09
iteration 4, reconstruction error: 0.20879332724791153, decrease = 5.94244886631401e-09
PARAFAC2 reconstruction error=0.8189105057143805, variation=2.6507567252309627e-09.
Starting iteration 485
reconstruction error=0.2087933195075686
iteration 1, reconstruction error: 0.20879331349407873, decrease = 6.013489872724875e-09
iteration 2, reconstruction error: 0.20879330750593475, decrease = 5.988143980673044e-09
iteration 3, reconstruction error: 0.20879330154294928, decrease = 5.962985466512194e-09
iteration 4, reconstruction error: 0.20879329560500887, decrease = 5.9379404171444605e-09
PARAFAC2 reconstruction error=0.8189105030656774, variation=2.6487031457023136e-09.
Starting iteration 486
reconstruction error=0.20879328787077572
iteration 1, reconstruction error: 0.20879328186193236, decrease = 6.008843367322214e-09
iteration 2, reconstruction error: 0.20879327587838167, decrease = 5.983550682708838e-09
iteration 3, reconstruction error: 0.20879326991994787, decrease = 5.958433801911411e-09
iteration 4, reconstruction error: 0.2087932639865136, decrease = 5.9334342716876876e-09
PARAFAC2 reconstruction error=0.8189105004190262, variation=2.646651120485899e-09.
Starting iteration 487
reconstruction error=0.20879325625838785
iteration 1, reconstruction error: 0.2087932502541833, decrease = 6.0042045502139985e-09
iteration 2, reconstruction error: 0.20879324427523058, decrease = 5.9789527218079286e-09
iteration 3, reconstruction error: 0.20879323832134455, decrease = 5.953886023091215e-09
iteration 4, reconstruction error: 0.20879323239241337, decrease = 5.928931179344232e-09
PARAFAC2 reconstruction error=0.8189104977744256, variation=2.6446006495817187e-09.
Starting iteration 488
reconstruction error=0.20879322467039196
iteration 1, reconstruction error: 0.20879321867082623, decrease = 5.999565733105783e-09
iteration 2, reconstruction error: 0.20879321269646142, decrease = 5.974364808425392e-09
iteration 3, reconstruction error: 0.20879320674711932, decrease = 5.949342102296029e-09
iteration 4, reconstruction error: 0.20879320082269123, decrease = 5.924428087000777e-09
PARAFAC2 reconstruction error=0.8189104951318744, variation=2.6425511778782607e-09.
Starting iteration 489
reconstruction error=0.20879319310677333
iteration 1, reconstruction error: 0.20879318711183947, decrease = 5.994933854891471e-09
iteration 2, reconstruction error: 0.2087931811420641, decrease = 5.9697753684861965e-09
iteration 3, reconstruction error: 0.20879317519726828, decrease = 5.944795822276916e-09
iteration 4, reconstruction error: 0.20879316927733477, decrease = 5.919933515619036e-09
PARAFAC2 reconstruction error=0.8189104924913716, variation=2.6405028163978272e-09.
Starting iteration 490
reconstruction error=0.20879316156751276
iteration 1, reconstruction error: 0.20879315557720923, decrease = 5.990303530989394e-09
iteration 2, reconstruction error: 0.20879314961202178, decrease = 5.96518745510366e-09
iteration 3, reconstruction error: 0.20879314367176527, decrease = 5.940256508907282e-09
iteration 4, reconstruction error: 0.20879313775632788, decrease = 5.91543738992506e-09
PARAFAC2 reconstruction error=0.8189104898529156, variation=2.6384560092296283e-09.
Starting iteration 491
reconstruction error=0.2087931300525985
iteration 1, reconstruction error: 0.20879312406692532, decrease = 5.985673179331741e-09
iteration 2, reconstruction error: 0.20879311810632195, decrease = 5.960603371990558e-09
iteration 3, reconstruction error: 0.20879311217060167, decrease = 5.935720276406542e-09
iteration 4, reconstruction error: 0.20879310625965733, decrease = 5.910944345099978e-09
PARAFAC2 reconstruction error=0.8189104872165048, variation=2.636410756373664e-09.
Starting iteration 492
reconstruction error=0.20879309856201766
iteration 1, reconstruction error: 0.20879309258097098, decrease = 5.9810466856990985e-09
iteration 2, reconstruction error: 0.20879308662494545, decrease = 5.95602553388197e-09
iteration 3, reconstruction error: 0.20879308069376065, decrease = 5.931184793306343e-09
iteration 4, reconstruction error: 0.20879307478730552, decrease = 5.90645513054433e-09
PARAFAC2 reconstruction error=0.8189104845821384, variation=2.634366391696119e-09.
Starting iteration 493
reconstruction error=0.2087930670957532
iteration 1, reconstruction error: 0.2087930611193299, decrease = 5.976423300690925e-09
iteration 2, reconstruction error: 0.20879305516788, decrease = 5.951449916219431e-09
iteration 3, reconstruction error: 0.20879304924122835, decrease = 5.926651641674496e-09
iteration 4, reconstruction error: 0.20879304333926008, decrease = 5.90196827521261e-09
PARAFAC2 reconstruction error=0.8189104819498152, variation=2.6323232482639014e-09.
Starting iteration 494
reconstruction error=0.2087930356537912
iteration 1, reconstruction error: 0.208793029681989, decrease = 5.971802191639952e-09
iteration 2, reconstruction error: 0.20879302373511388, decrease = 5.946875131224161e-09
iteration 3, reconstruction error: 0.20879301781299078, decrease = 5.9221230974682015e-09
iteration 4, reconstruction error: 0.20879301191550784, decrease = 5.897482946437549e-09
PARAFAC2 reconstruction error=0.8189104793195331, variation=2.630282103233128e-09.
Starting iteration 495
reconstruction error=0.20879300423612013
iteration 1, reconstruction error: 0.2087929982689313, decrease = 5.967188826394576e-09
iteration 2, reconstruction error: 0.20879299232662943, decrease = 5.942301872785549e-09
iteration 3, reconstruction error: 0.20879298640903335, decrease = 5.917596079818566e-09
iteration 4, reconstruction error: 0.2087929805160311, decrease = 5.8930022528436155e-09
PARAFAC2 reconstruction error=0.8189104766912916, variation=2.628241513313867e-09.
Starting iteration 496
reconstruction error=0.2087929728427176
iteration 1, reconstruction error: 0.2087929668801437, decrease = 5.9625739068369654e-09
iteration 2, reconstruction error: 0.20879296094241204, decrease = 5.937731667460255e-09
iteration 3, reconstruction error: 0.20879295502933984, decrease = 5.913072198548974e-09
iteration 4, reconstruction error: 0.20879294914081678, decrease = 5.888523058050765e-09
PARAFAC2 reconstruction error=0.8189104740650892, variation=2.626202366684538e-09.
Starting iteration 497
reconstruction error=0.20879294147357516
iteration 1, reconstruction error: 0.20879293551561307, decrease = 5.957962095903824e-09
iteration 2, reconstruction error: 0.20879292958244466, decrease = 5.9331684010288654e-09
iteration 3, reconstruction error: 0.20879292367389407, decrease = 5.908550593236583e-09
iteration 4, reconstruction error: 0.20879291778984785, decrease = 5.884046222481842e-09
PARAFAC2 reconstruction error=0.8189104714409241, variation=2.624165107434351e-09.
Starting iteration 498
reconstruction error=0.20879291012867665
iteration 1, reconstruction error: 0.2087929041753233, decrease = 5.953353338084e-09
iteration 2, reconstruction error: 0.20879289824671893, decrease = 5.928604385196934e-09
iteration 3, reconstruction error: 0.20879289234268528, decrease = 5.904033650860896e-09
iteration 4, reconstruction error: 0.2087928864631121, decrease = 5.879573189426779e-09
PARAFAC2 reconstruction error=0.8189104688187957, variation=2.622128403295676e-09.
Starting iteration 499
reconstruction error=0.2087928788080066
iteration 1, reconstruction error: 0.20879287285925816, decrease = 5.9487484382891864e-09
iteration 2, reconstruction error: 0.20879286693521237, decrease = 5.924045781702247e-09
iteration 3, reconstruction error: 0.20879286103569572, decrease = 5.899516652974057e-09
iteration 4, reconstruction error: 0.20879285516059398, decrease = 5.8751017384395254e-09
PARAFAC2 reconstruction error=0.8189104661987026, variation=2.620093142446933e-09.
Starting iteration 500
reconstruction error=0.20879284751154958
iteration 1, reconstruction error: 0.20879284156740294, decrease = 5.944146647118842e-09
iteration 2, reconstruction error: 0.2087928356479158, decrease = 5.919487150451985e-09
iteration 3, reconstruction error: 0.20879282975291222, decrease = 5.89500356862338e-09
iteration 4, reconstruction error: 0.20879282388227735, decrease = 5.8706348671222486e-09
PARAFAC2 reconstruction error=0.8189104635806428, variation=2.618059768977332e-09.
Starting iteration 501
reconstruction error=0.20879281623929255
iteration 1, reconstruction error: 0.20879281029974464, decrease = 5.939547909061815e-09
iteration 2, reconstruction error: 0.2087928043848146, decrease = 5.914930045758382e-09
iteration 3, reconstruction error: 0.2087927984943172, decrease = 5.890497395411032e-09
iteration 4, reconstruction error: 0.2087927926281484, decrease = 5.8661688007166646e-09
PARAFAC2 reconstruction error=0.818910460964616, variation=2.616026839596941e-09.
Starting iteration 502
reconstruction error=0.20879278499121773
iteration 1, reconstruction error: 0.20879277905626625, decrease = 5.934951474717565e-09
iteration 2, reconstruction error: 0.2087927731458848, decrease = 5.910381462026493e-09
iteration 3, reconstruction error: 0.2087927672598982, decrease = 5.885986587017555e-09
iteration 4, reconstruction error: 0.2087927613981924, decrease = 5.861705815179974e-09
PARAFAC2 reconstruction error=0.8189104583506198, variation=2.613996130662599e-09.
Starting iteration 503
reconstruction error=0.20879275376731274
iteration 1, reconstruction error: 0.20879274783695537, decrease = 5.930357371841666e-09
iteration 2, reconstruction error: 0.2087927419311217, decrease = 5.905833655450721e-09
iteration 3, reconstruction error: 0.20879273604963824, decrease = 5.8814834669185245e-09
iteration 4, reconstruction error: 0.20879273019239464, decrease = 5.8572436067994005e-09
PARAFAC2 reconstruction error=0.8189104557386537, variation=2.611966087862072e-09.
Starting iteration 504
reconstruction error=0.20879272256756232
iteration 1, reconstruction error: 0.20879271664179674, decrease = 5.925765572678543e-09
iteration 2, reconstruction error: 0.2087927107405094, decrease = 5.901287347676032e-09
iteration 3, reconstruction error: 0.20879270486352747, decrease = 5.876981928887304e-09
iteration 4, reconstruction error: 0.20879269901073988, decrease = 5.852787587912189e-09
PARAFAC2 reconstruction error=0.8189104531287161, variation=2.6099375993737794e-09.
Starting iteration 505
reconstruction error=0.2087926913919517
iteration 1, reconstruction error: 0.20879268547077023, decrease = 5.921181461809866e-09
iteration 2, reconstruction error: 0.2087926795740276, decrease = 5.896742621969153e-09
iteration 3, reconstruction error: 0.20879267370154417, decrease = 5.872483443969401e-09
iteration 4, reconstruction error: 0.2087926678532088, decrease = 5.8483353715388375e-09
PARAFAC2 reconstruction error=0.8189104505208056, variation=2.607910554175419e-09.
Starting iteration 506
reconstruction error=0.20879266024046245
iteration 1, reconstruction error: 0.20879265432386737, decrease = 5.916595074983988e-09
iteration 2, reconstruction error: 0.20879264843166256, decrease = 5.892204807400603e-09
iteration 3, reconstruction error: 0.20879264256367525, decrease = 5.867987318275425e-09
iteration 4, reconstruction error: 0.2087926367197944, decrease = 5.84388085145271e-09
PARAFAC2 reconstruction error=0.8189104479149214, variation=2.605884175110873e-09.
Starting iteration 507
reconstruction error=0.20879262911308294
iteration 1, reconstruction error: 0.20879262320107117, decrease = 5.9120117690270035e-09
iteration 2, reconstruction error: 0.20879261731340418, decrease = 5.8876669928320524e-09
iteration 3, reconstruction error: 0.20879261144990918, decrease = 5.8634949950953086e-09
iteration 4, reconstruction error: 0.20879260561047663, decrease = 5.83943254861552e-09
PARAFAC2 reconstruction error=0.8189104453110614, variation=2.6038600164923764e-09.
Starting iteration 508
reconstruction error=0.2087925980098001
iteration 1, reconstruction error: 0.20879259210236625, decrease = 5.9074338476516886e-09
iteration 2, reconstruction error: 0.20879258621923247, decrease = 5.883133785689054e-09
iteration 3, reconstruction error: 0.2087925803602282, decrease = 5.859004253983002e-09
iteration 4, reconstruction error: 0.20879257452524325, decrease = 5.834984967423296e-09
PARAFAC2 reconstruction error=0.8189104427092248, variation=2.601836635029997e-09.
Starting iteration 509
reconstruction error=0.20879256693059317
iteration 1, reconstruction error: 0.2087925610277334, decrease = 5.902859784301384e-09
iteration 2, reconstruction error: 0.208792555149132, decrease = 5.878601383457749e-09
iteration 3, reconstruction error: 0.20879254929461624, decrease = 5.854515761072321e-09
iteration 4, reconstruction error: 0.208792543464075, decrease = 5.830541244256082e-09
PARAFAC2 reconstruction error=0.8189104401094099, variation=2.599814807879852e-09.
Starting iteration 510
reconstruction error=0.2087925358754513
iteration 1, reconstruction error: 0.20879252997716558, decrease = 5.89828572095108e-09
iteration 2, reconstruction error: 0.2087925241030943, decrease = 5.87407128493922e-09
iteration 3, reconstruction error: 0.20879251825305847, decrease = 5.850035816878929e-09
iteration 4, reconstruction error: 0.20879251242696173, decrease = 5.8260967439327516e-09
PARAFAC2 reconstruction error=0.818910437511616, variation=2.5977939799304295e-09.
Starting iteration 511
reconstruction error=0.20879250484435757
iteration 1, reconstruction error: 0.2087924989506413, decrease = 5.8937162650263275e-09
iteration 2, reconstruction error: 0.20879249308109318, decrease = 5.869548125314594e-09
iteration 3, reconstruction error: 0.20879248723554428, decrease = 5.845548906036058e-09
iteration 4, reconstruction error: 0.208792481413882, decrease = 5.821662291127794e-09
PARAFAC2 reconstruction error=0.8189104349158414, variation=2.5957745952709388e-09.
Starting iteration 512
reconstruction error=0.20879247383729815
iteration 1, reconstruction error: 0.20879246794814899, decrease = 5.889149168325503e-09
iteration 2, reconstruction error: 0.20879246208312402, decrease = 5.865024965689969e-09
iteration 3, reconstruction error: 0.20879245624205048, decrease = 5.8410735415126425e-09
iteration 4, reconstruction error: 0.20879245042482497, decrease = 5.817225506854484e-09
PARAFAC2 reconstruction error=0.8189104323220845, variation=2.593756875945985e-09.
Starting iteration 513
reconstruction error=0.2087924428542552
iteration 1, reconstruction error: 0.20879243696967087, decrease = 5.884584319826303e-09
iteration 2, reconstruction error: 0.20879243110916676, decrease = 5.86050410977812e-09
iteration 3, reconstruction error: 0.20879242527256855, decrease = 5.836598204744803e-09
iteration 4, reconstruction error: 0.2087924194597775, decrease = 5.8127910540495265e-09
PARAFAC2 reconstruction error=0.8189104297303446, variation=2.5917399337771485e-09.
Starting iteration 514
reconstruction error=0.20879241189521727
iteration 1, reconstruction error: 0.20879240601519236, decrease = 5.880024911419923e-09
iteration 2, reconstruction error: 0.20879240015920525, decrease = 5.855987111891281e-09
iteration 3, reconstruction error: 0.20879239432708316, decrease = 5.832122090820846e-09
iteration 4, reconstruction error: 0.20879238851872042, decrease = 5.80836273522678e-09
PARAFAC2 reconstruction error=0.8189104271406198, variation=2.5897247679651514e-09.
Starting iteration 515
reconstruction error=0.2087923809601674
iteration 1, reconstruction error: 0.20879237508469883, decrease = 5.8754685561268616e-09
iteration 2, reconstruction error: 0.20879236923322564, decrease = 5.851473194873336e-09
iteration 3, reconstruction error: 0.20879236340557425, decrease = 5.827651389234134e-09
iteration 4, reconstruction error: 0.20879235760164055, decrease = 5.803933694759067e-09
PARAFAC2 reconstruction error=0.818910424552909, variation=2.5877108233984814e-09.
Starting iteration 516
reconstruction error=0.20879235004908783
iteration 1, reconstruction error: 0.20879234417817327, decrease = 5.870914560057727e-09
iteration 2, reconstruction error: 0.20879233833121474, decrease = 5.846958528454849e-09
iteration 3, reconstruction error: 0.20879233250803025, decrease = 5.823184490161282e-09
iteration 4, reconstruction error: 0.2087923267085187, decrease = 5.7995115654296825e-09
PARAFAC2 reconstruction error=0.8189104219672111, variation=2.5856978780325335e-09.
Starting iteration 517
reconstruction error=0.20879231916196853
iteration 1, reconstruction error: 0.20879231329560724, decrease = 5.866361285633559e-09
iteration 2, reconstruction error: 0.20879230745315264, decrease = 5.842454603444125e-09
iteration 3, reconstruction error: 0.208792301634435, decrease = 5.8187176465995805e-09
iteration 4, reconstruction error: 0.2087922958393471, decrease = 5.7950878817880636e-09
PARAFAC2 reconstruction error=0.8189104193835244, variation=2.583686709023425e-09.
Starting iteration 518
reconstruction error=0.20879228829879032
iteration 1, reconstruction error: 0.20879228243697764, decrease = 5.861812674146094e-09
iteration 2, reconstruction error: 0.20879227659902921, decrease = 5.837948430231776e-09
iteration 3, reconstruction error: 0.2087922707847738, decrease = 5.8142554104634314e-09
iteration 4, reconstruction error: 0.20879226499410344, decrease = 5.790670359884231e-09
PARAFAC2 reconstruction error=0.8189104168018477, variation=2.581676650237341e-09.
Starting iteration 519
reconstruction error=0.20879225745953922
iteration 1, reconstruction error: 0.20879225160227133, decrease = 5.857267892928064e-09
iteration 2, reconstruction error: 0.20879224576882602, decrease = 5.8334453101327455e-09
iteration 3, reconstruction error: 0.20879223995902824, decrease = 5.8097977817528346e-09
iteration 4, reconstruction error: 0.20879223417277695, decrease = 5.7862512836681645e-09
PARAFAC2 reconstruction error=0.8189104142221801, variation=2.5796675906519795e-09.
Starting iteration 520
reconstruction error=0.20879222664419916
iteration 1, reconstruction error: 0.20879222079147683, decrease = 5.852722334553917e-09
iteration 2, reconstruction error: 0.20879221496253003, decrease = 5.828946797459267e-09
iteration 3, reconstruction error: 0.20879220915718832, decrease = 5.805341707354472e-09
iteration 4, reconstruction error: 0.20879220337535068, decrease = 5.7818376475449185e-09
PARAFAC2 reconstruction error=0.8189104116445196, variation=2.577660529468062e-09.
Starting iteration 521
reconstruction error=0.20879219585275774
iteration 1, reconstruction error: 0.2087921900045717, decrease = 5.8481860465420255e-09
iteration 2, reconstruction error: 0.2087921841801226, decrease = 5.824449089697481e-09
iteration 3, reconstruction error: 0.20879217837923775, decrease = 5.8008848557999926e-09
iteration 4, reconstruction error: 0.2087921726018099, decrease = 5.777427841691107e-09
PARAFAC2 reconstruction error=0.8189104090688653, variation=2.5756543564625645e-09.
Starting iteration 522
reconstruction error=0.20879216508519502
iteration 1, reconstruction error: 0.20879215924154756, decrease = 5.843647454817358e-09
iteration 2, reconstruction error: 0.20879215342159158, decrease = 5.819955989361247e-09
iteration 3, reconstruction error: 0.2087921476251551, decrease = 5.796436469696076e-09
iteration 4, reconstruction error: 0.20879214185213704, decrease = 5.773018063592872e-09
PARAFAC2 reconstruction error=0.8189104064952156, variation=2.573649626746999e-09.
Starting iteration 523
reconstruction error=0.20879213434149935
iteration 1, reconstruction error: 0.20879212850238432, decrease = 5.839115024830477e-09
iteration 2, reconstruction error: 0.2087921226869207, decrease = 5.81546361066998e-09
iteration 3, reconstruction error: 0.20879211689493413, decrease = 5.791986584791076e-09
iteration 4, reconstruction error: 0.20879211112631968, decrease = 5.768614447232423e-09
PARAFAC2 reconstruction error=0.8189104039235696, variation=2.571646007254458e-09.
Starting iteration 524
reconstruction error=0.20879210362165534
iteration 1, reconstruction error: 0.20879209778707122, decrease = 5.834584121400255e-09
iteration 2, reconstruction error: 0.20879209197609375, decrease = 5.810977476983226e-09
iteration 3, reconstruction error: 0.20879208618855324, decrease = 5.787540502399935e-09
iteration 4, reconstruction error: 0.2087920804243417, decrease = 5.76421155251694e-09
PARAFAC2 reconstruction error=0.8189104013539255, variation=2.569644164118756e-09.
Starting iteration 525
reconstruction error=0.20879207292564303
iteration 1, reconstruction error: 0.208792067095589, decrease = 5.8300540228817255e-09
iteration 2, reconstruction error: 0.20879206128909847, decrease = 5.806490538384779e-09
iteration 3, reconstruction error: 0.20879205550599708, decrease = 5.783101386658274e-09
iteration 4, reconstruction error: 0.20879204974618762, decrease = 5.75980946271315e-09
PARAFAC2 reconstruction error=0.8189103987862821, variation=2.5676433201837767e-09.
Starting iteration 526
reconstruction error=0.20879204225345158
iteration 1, reconstruction error: 0.2087920364279223, decrease = 5.82552928118929e-09
iteration 2, reconstruction error: 0.2087920306259133, decrease = 5.802008984368001e-09
iteration 3, reconstruction error: 0.2087920248472518, decrease = 5.778661521516071e-09
iteration 4, reconstruction error: 0.20879201909183903, decrease = 5.75541275749103e-09
PARAFAC2 reconstruction error=0.8189103962206382, variation=2.5656439195387293e-09.
Starting iteration 527
reconstruction error=0.20879201160506478
iteration 1, reconstruction error: 0.20879200578405716, decrease = 5.821007620365748e-09
iteration 2, reconstruction error: 0.20879199998652817, decrease = 5.797528984663458e-09
iteration 3, reconstruction error: 0.208791994212305, decrease = 5.774223182930527e-09
iteration 4, reconstruction error: 0.20879198846128663, decrease = 5.751018355981685e-09
PARAFAC2 reconstruction error=0.8189103936569925, variation=2.563645740139009e-09.
Starting iteration 528
reconstruction error=0.20879198098046964
iteration 1, reconstruction error: 0.20879197516398137, decrease = 5.816488263254982e-09
iteration 2, reconstruction error: 0.2087919693709262, decrease = 5.793055174452277e-09
iteration 3, reconstruction error: 0.20879196360113522, decrease = 5.769790978327194e-09
iteration 4, reconstruction error: 0.20879195785450969, decrease = 5.746625536540151e-09
PARAFAC2 reconstruction error=0.8189103910953432, variation=2.5616492260738255e-09.
Starting iteration 529
reconstruction error=0.208791950379643
iteration 1, reconstruction error: 0.2087919445676702, decrease = 5.811972791924802e-09
iteration 2, reconstruction error: 0.20879193877908808, decrease = 5.788582113641638e-09
iteration 3, reconstruction error: 0.20879193301373003, decrease = 5.765358052078895e-09
iteration 4, reconstruction error: 0.20879192727149193, decrease = 5.742238101680286e-09
PARAFAC2 reconstruction error=0.81891038853569, variation=2.5596532671201544e-09.
Starting iteration 530
reconstruction error=0.20879191980257636
iteration 1, reconstruction error: 0.20879191399511748, decrease = 5.807458874906857e-09
iteration 2, reconstruction error: 0.20879190821100538, decrease = 5.784112105944317e-09
iteration 3, reconstruction error: 0.20879190245007564, decrease = 5.760929733256148e-09
iteration 4, reconstruction error: 0.20879189671222423, decrease = 5.737851416220963e-09
PARAFAC2 reconstruction error=0.8189103859780305, variation=2.5576595286125325e-09.
Starting iteration 531
reconstruction error=0.20879188924925046
iteration 1, reconstruction error: 0.20879188344630017, decrease = 5.80295028695943e-09
iteration 2, reconstruction error: 0.20879187766665802, decrease = 5.779642153758147e-09
iteration 3, reconstruction error: 0.20879187191015355, decrease = 5.756504467546719e-09
iteration 4, reconstruction error: 0.20879186617668494, decrease = 5.7334686165422255e-09
PARAFAC2 reconstruction error=0.8189103834223637, variation=2.555666789305633e-09.
Starting iteration 532
reconstruction error=0.2087918587196554
iteration 1, reconstruction error: 0.20879185292121208, decrease = 5.798443308835388e-09
iteration 2, reconstruction error: 0.2087918471460322, decrease = 5.775179889866422e-09
iteration 3, reconstruction error: 0.20879184139394988, decrease = 5.752082310461759e-09
iteration 4, reconstruction error: 0.20879183566486179, decrease = 5.729088092820689e-09
PARAFAC2 reconstruction error=0.8189103808686886, variation=2.5536750491994553e-09.
Starting iteration 533
reconstruction error=0.20879182821376865
iteration 1, reconstruction error: 0.2087918224198316, decrease = 5.793937052356313e-09
iteration 2, reconstruction error: 0.20879181664911475, decrease = 5.77071684881858e-09
iteration 3, reconstruction error: 0.20879181090144922, decrease = 5.7476655379584685e-09
iteration 4, reconstruction error: 0.2087918051767401, decrease = 5.724709123411387e-09
PARAFAC2 reconstruction error=0.8189103783170033, variation=2.551685307494722e-09.
Starting iteration 534
reconstruction error=0.20879179773157813
iteration 1, reconstruction error: 0.20879179194214034, decrease = 5.7894377902822924e-09
iteration 2, reconstruction error: 0.20879178617588115, decrease = 5.7662591923524076e-09
iteration 3, reconstruction error: 0.2087917804326347, decrease = 5.743246461742402e-09
iteration 4, reconstruction error: 0.20879177471229834, decrease = 5.720336343495447e-09
PARAFAC2 reconstruction error=0.8189103757673069, variation=2.5496964539684086e-09.
Starting iteration 535
reconstruction error=0.20879176727306828
iteration 1, reconstruction error: 0.208791761488129, decrease = 5.784939277608814e-09
iteration 2, reconstruction error: 0.20879175572632513, decrease = 5.761803867354587e-09
iteration 3, reconstruction error: 0.2087917499874939, decrease = 5.7388312435513456e-09
iteration 4, reconstruction error: 0.20879174427153038, decrease = 5.715963508068356e-09
PARAFAC2 reconstruction error=0.8189103732195979, variation=2.5477089327097246e-09.
Starting iteration 536
reconstruction error=0.20879173683822289
iteration 1, reconstruction error: 0.20879173105777984, decrease = 5.7804430408925356e-09
iteration 2, reconstruction error: 0.2087917253004282, decrease = 5.757351650981235e-09
iteration 3, reconstruction error: 0.20879171956600834, decrease = 5.734419855629724e-09
iteration 4, reconstruction error: 0.20879171385441453, decrease = 5.711593809021309e-09
PARAFAC2 reconstruction error=0.8189103706738751, variation=2.5457228547409727e-09.
Starting iteration 537
reconstruction error=0.20879170642702746
iteration 1, reconstruction error: 0.20879170065107522, decrease = 5.775952244269078e-09
iteration 2, reconstruction error: 0.20879169489817584, decrease = 5.752899379096732e-09
iteration 3, reconstruction error: 0.20879168916816038, decrease = 5.730015462113158e-09
iteration 4, reconstruction error: 0.20879168346093552, decrease = 5.707224859374804e-09
PARAFAC2 reconstruction error=0.8189103681301368, variation=2.5437382200621528e-09.
Starting iteration 538
reconstruction error=0.20879167603946572
iteration 1, reconstruction error: 0.20879167026800352, decrease = 5.771462197046162e-09
iteration 2, reconstruction error: 0.20879166451954792, decrease = 5.748455600418367e-09
iteration 3, reconstruction error: 0.20879165879394307, decrease = 5.725604851347654e-09
iteration 4, reconstruction error: 0.20879165309107944, decrease = 5.7028636257783205e-09
PARAFAC2 reconstruction error=0.8189103655883824, variation=2.5417544735617525e-09.
Starting iteration 539
reconstruction error=0.2087916456755208
iteration 1, reconstruction error: 0.20879163990854324, decrease = 5.766977562160491e-09
iteration 2, reconstruction error: 0.20879163416453603, decrease = 5.7440072143144505e-09
iteration 3, reconstruction error: 0.20879162844332944, decrease = 5.721206591813299e-09
iteration 4, reconstruction error: 0.20879162274483015, decrease = 5.698499283557368e-09
PARAFAC2 reconstruction error=0.8189103630486096, variation=2.5397727254627966e-09.
Starting iteration 540
reconstruction error=0.20879161533518262
iteration 1, reconstruction error: 0.20879160957268433, decrease = 5.762498284100914e-09
iteration 2, reconstruction error: 0.20879160383311626, decrease = 5.739568070817214e-09
iteration 3, reconstruction error: 0.20879159811631176, decrease = 5.716804502009509e-09
iteration 4, reconstruction error: 0.2087915924221714, decrease = 5.69414035367366e-09
PARAFAC2 reconstruction error=0.8189103605108174, variation=2.537792198609168e-09.
Starting iteration 541
reconstruction error=0.2087915850184289
iteration 1, reconstruction error: 0.20879157926040906, decrease = 5.758019838708606e-09
iteration 2, reconstruction error: 0.20879157352528166, decrease = 5.735127400763318e-09
iteration 3, reconstruction error: 0.20879156781287161, decrease = 5.712410044989014e-09
iteration 4, reconstruction error: 0.20879156212308708, decrease = 5.689784532414421e-09
PARAFAC2 reconstruction error=0.8189103579750049, variation=2.5358125599339587e-09.
Starting iteration 542
reconstruction error=0.20879155472524344
iteration 1, reconstruction error: 0.20879154897170596, decrease = 5.753537479780135e-09
iteration 2, reconstruction error: 0.20879154324101076, decrease = 5.730695196159985e-09
iteration 3, reconstruction error: 0.20879153753299587, decrease = 5.7080148940791275e-09
iteration 4, reconstruction error: 0.20879153184756258, decrease = 5.685433290825159e-09
PARAFAC2 reconstruction error=0.8189103554411706, variation=2.533834253526379e-09.
Starting iteration 543
reconstruction error=0.20879152445561774
iteration 1, reconstruction error: 0.2087915187065518, decrease = 5.749065945526155e-09
iteration 2, reconstruction error: 0.2087915129802865, decrease = 5.726265295269428e-09
iteration 3, reconstruction error: 0.2087915072766676, decrease = 5.703618910501973e-09
iteration 4, reconstruction error: 0.20879150159558393, decrease = 5.681083659059283e-09
PARAFAC2 reconstruction error=0.8189103529093128, variation=2.5318578344979414e-09.
Starting iteration 544
reconstruction error=0.20879149420952955
iteration 1, reconstruction error: 0.2087914884649344, decrease = 5.744595160672716e-09
iteration 2, reconstruction error: 0.20879148274310283, decrease = 5.721831564109436e-09
iteration 3, reconstruction error: 0.208791477043866, decrease = 5.699236832468202e-09
iteration 4, reconstruction error: 0.20879147136713277, decrease = 5.6767332223817135e-09
PARAFAC2 reconstruction error=0.8189103503794303, variation=2.5298825256925284e-09.
Starting iteration 545
reconstruction error=0.20879146398696574
iteration 1, reconstruction error: 0.20879145824683903, decrease = 5.7401267072876294e-09
iteration 2, reconstruction error: 0.2087914525294335, decrease = 5.71740552124389e-09
iteration 3, reconstruction error: 0.20879144683458337, decrease = 5.694850147008879e-09
iteration 4, reconstruction error: 0.20879144116219292, decrease = 5.672390446243014e-09
PARAFAC2 reconstruction error=0.818910347851522, variation=2.52790832711014e-09.
Starting iteration 546
reconstruction error=0.20879143378791246
iteration 1, reconstruction error: 0.20879142805224957, decrease = 5.73566288908367e-09
iteration 2, reconstruction error: 0.208791422339267, decrease = 5.712982559247237e-09
iteration 3, reconstruction error: 0.20879141664879894, decrease = 5.6904680689751075e-09
iteration 4, reconstruction error: 0.2087914109807512, decrease = 5.668047725615466e-09
PARAFAC2 reconstruction error=0.8189103453255863, variation=2.525935682839986e-09.
Starting iteration 547
reconstruction error=0.208791403612352
iteration 1, reconstruction error: 0.20879139788114986, decrease = 5.731202123993029e-09
iteration 2, reconstruction error: 0.2087913921725887, decrease = 5.708561151562819e-09
iteration 3, reconstruction error: 0.20879138648650117, decrease = 5.686087545253571e-09
iteration 4, reconstruction error: 0.20879138082278925, decrease = 5.663711916126246e-09
PARAFAC2 reconstruction error=0.8189103428016218, variation=2.523964481859764e-09.
Starting iteration 548
reconstruction error=0.20879137346026735
iteration 1, reconstruction error: 0.20879136773352291, decrease = 5.726744439771281e-09
iteration 2, reconstruction error: 0.20879136202937934, decrease = 5.704143574147835e-09
iteration 3, reconstruction error: 0.20879135634766846, decrease = 5.681710879557045e-09
iteration 4, reconstruction error: 0.2087913506882962, decrease = 5.659372248612016e-09
PARAFAC2 reconstruction error=0.8189103402796274, variation=2.5219943911025666e-09.
Starting iteration 549
reconstruction error=0.20879134333164323
iteration 1, reconstruction error: 0.20879133760935722, decrease = 5.722286006148991e-09
iteration 2, reconstruction error: 0.20879133190962887, decrease = 5.699728355956779e-09
iteration 3, reconstruction error: 0.20879132623229163, decrease = 5.677337239218261e-09
iteration 4, reconstruction error: 0.20879132057724975, decrease = 5.6550418792156165e-09
PARAFAC2 reconstruction error=0.8189103377596016, variation=2.5200257436353013e-09.
Starting iteration 550
reconstruction error=0.20879131322646574
iteration 1, reconstruction error: 0.20879130750863276, decrease = 5.7178329848639464e-09
iteration 2, reconstruction error: 0.20879130181331346, decrease = 5.6953192995035096e-09
iteration 3, reconstruction error: 0.20879129614034903, decrease = 5.672964431546745e-09
iteration 4, reconstruction error: 0.20879129048963913, decrease = 5.650709899995832e-09
PARAFAC2 reconstruction error=0.8189103352415432, variation=2.5180584284356655e-09.
Starting iteration 551
reconstruction error=0.20879128314472092
iteration 1, reconstruction error: 0.20879127743133716, decrease = 5.713383766092761e-09
iteration 2, reconstruction error: 0.2087912717404262, decrease = 5.690910964695206e-09
iteration 3, reconstruction error: 0.20879126607182763, decrease = 5.668598562769134e-09
iteration 4, reconstruction error: 0.2087912604254466, decrease = 5.646381029400516e-09
PARAFAC2 reconstruction error=0.8189103327254507, variation=2.5160925565259618e-09.
Starting iteration 552
reconstruction error=0.20879125308638966
iteration 1, reconstruction error: 0.2087912473774512, decrease = 5.708938460857738e-09
iteration 2, reconstruction error: 0.20879124169094776, decrease = 5.6865034347985954e-09
iteration 3, reconstruction error: 0.2087912360267128, decrease = 5.664234969948723e-09
iteration 4, reconstruction error: 0.20879123038465677, decrease = 5.64205601683021e-09
PARAFAC2 reconstruction error=0.8189103302113228, variation=2.514127905861585e-09.
Starting iteration 553
reconstruction error=0.20879122305145728
iteration 1, reconstruction error: 0.20879121734696182, decrease = 5.70449545933549e-09
iteration 2, reconstruction error: 0.208791211664859, decrease = 5.682102816040313e-09
iteration 3, reconstruction error: 0.2087912060049899, decrease = 5.659869101171111e-09
iteration 4, reconstruction error: 0.20879120036725504, decrease = 5.6377348622849155e-09
PARAFAC2 reconstruction error=0.8189103276991581, variation=2.5121646984871404e-09.
Starting iteration 554
reconstruction error=0.20879119303990296
iteration 1, reconstruction error: 0.20879118733985205, decrease = 5.700050903501008e-09
iteration 2, reconstruction error: 0.20879118166214986, decrease = 5.677702197282031e-09
iteration 3, reconstruction error: 0.2087911760066374, decrease = 5.655512447244604e-09
iteration 4, reconstruction error: 0.2087911703732237, decrease = 5.633413707739621e-09
PARAFAC2 reconstruction error=0.8189103251889553, variation=2.510202712358023e-09.
Starting iteration 555
reconstruction error=0.20879116305172132
iteration 1, reconstruction error: 0.2087911573561081, decrease = 5.695613231049279e-09
iteration 2, reconstruction error: 0.20879115168280182, decrease = 5.6733062692160274e-09
iteration 3, reconstruction error: 0.208791146031646, decrease = 5.651155821073672e-09
iteration 4, reconstruction error: 0.20879114040254498, decrease = 5.629101018644889e-09
PARAFAC2 reconstruction error=0.8189103226807131, variation=2.5082422805411397e-09.
Starting iteration 556
reconstruction error=0.2087911330868901
iteration 1, reconstruction error: 0.2087911273957091, decrease = 5.6911809986903705e-09
iteration 2, reconstruction error: 0.20879112172679806, decrease = 5.6689110350394145e-09
iteration 3, reconstruction error: 0.20879111607999654, decrease = 5.6468015263710925e-09
iteration 4, reconstruction error: 0.20879111045520896, decrease = 5.624787580149615e-09
PARAFAC2 reconstruction error=0.8189103201744301, variation=2.5062829589472813e-09.
Starting iteration 557
reconstruction error=0.20879110314539154
iteration 1, reconstruction error: 0.2087910974586412, decrease = 5.686750348399272e-09
iteration 2, reconstruction error: 0.20879109179412073, decrease = 5.664520463799505e-09
iteration 3, reconstruction error: 0.2087910861516728, decrease = 5.642447925557903e-09
iteration 4, reconstruction error: 0.20879108053119788, decrease = 5.6204749188104586e-09
PARAFAC2 reconstruction error=0.8189103176701051, variation=2.5043249696210523e-09.
Starting iteration 558
reconstruction error=0.20879107322721485
iteration 1, reconstruction error: 0.20879106754489443, decrease = 5.68232041975314e-09
iteration 2, reconstruction error: 0.20879106188476146, decrease = 5.660132973428489e-09
iteration 3, reconstruction error: 0.20879105624665859, decrease = 5.638102873462003e-09
iteration 4, reconstruction error: 0.20879105063049325, decrease = 5.6161653383401955e-09
PARAFAC2 reconstruction error=0.8189103151677364, variation=2.502368756651663e-09.
Starting iteration 559
reconstruction error=0.20879104333234386
iteration 1, reconstruction error: 0.20879103765444332, decrease = 5.67790053862538e-09
iteration 2, reconstruction error: 0.2087910319986994, decrease = 5.655743928745238e-09
iteration 3, reconstruction error: 0.20879102636494082, decrease = 5.633758570766645e-09
iteration 4, reconstruction error: 0.20879102075308123, decrease = 5.611859588139367e-09
PARAFAC2 reconstruction error=0.8189103126673231, variation=2.5004133208383905e-09.
Starting iteration 560
reconstruction error=0.20879101346075937
iteration 1, reconstruction error: 0.20879100778728257, decrease = 5.67347679947261e-09
iteration 2, reconstruction error: 0.20879100213591842, decrease = 5.651364154424243e-09
iteration 3, reconstruction error: 0.2087909965065011, decrease = 5.629417321184604e-09
iteration 4, reconstruction error: 0.2087909908989457, decrease = 5.607555392250774e-09
PARAFAC2 reconstruction error=0.8189103101688632, variation=2.4984598834265626e-09.
Starting iteration 561
reconstruction error=0.20879098361244366
iteration 1, reconstruction error: 0.2087909779433883, decrease = 5.669055364032616e-09
iteration 2, reconstruction error: 0.2087909722964024, decrease = 5.646985906659907e-09
iteration 3, reconstruction error: 0.20879096667132704, decrease = 5.625075349957598e-09
iteration 4, reconstruction error: 0.20879096106806813, decrease = 5.603258912412201e-09
PARAFAC2 reconstruction error=0.8189103076723561, variation=2.4965071121485494e-09.
Starting iteration 562
reconstruction error=0.20879095378738896
iteration 1, reconstruction error: 0.20879094812274965, decrease = 5.664639313174291e-09
iteration 2, reconstruction error: 0.20879094248013969, decrease = 5.642609962608347e-09
iteration 3, reconstruction error: 0.2087909368593994, decrease = 5.62074028986892e-09
iteration 4, reconstruction error: 0.20879093126043696, decrease = 5.598962432573629e-09
PARAFAC2 reconstruction error=0.8189103051777998, variation=2.494556228249678e-09.
Starting iteration 563
reconstruction error=0.20879092398557225
iteration 1, reconstruction error: 0.20879091832534744, decrease = 5.660224816628201e-09
iteration 2, reconstruction error: 0.20879091268710878, decrease = 5.638238653737915e-09
iteration 3, reconstruction error: 0.208790907070702, decrease = 5.616406784092476e-09
iteration 4, reconstruction error: 0.20879090147603527, decrease = 5.5946667298911734e-09
PARAFAC2 reconstruction error=0.8189103026851935, variation=2.492606343551529e-09.
Starting iteration 564
reconstruction error=0.2087908942069812
iteration 1, reconstruction error: 0.20879088855116548, decrease = 5.65581570466378e-09
iteration 2, reconstruction error: 0.20879088291729736, decrease = 5.6338681220236e-09
iteration 3, reconstruction error: 0.208790877305221, decrease = 5.6120763591849254e-09
iteration 4, reconstruction error: 0.20879087171484614, decrease = 5.590374857478153e-09
PARAFAC2 reconstruction error=0.8189103001945356, variation=2.4906579021433117e-09.
Starting iteration 565
reconstruction error=0.2087908644516004
iteration 1, reconstruction error: 0.20879085880018994, decrease = 5.65141045072437e-09
iteration 2, reconstruction error: 0.2087908531706908, decrease = 5.629499144621519e-09
iteration 3, reconstruction error: 0.20879084756294025, decrease = 5.607750541702927e-09
iteration 4, reconstruction error: 0.2087908419768534, decrease = 5.586086843090143e-09
PARAFAC2 reconstruction error=0.8189102977058247, variation=2.4887109040250266e-09.
Starting iteration 566
reconstruction error=0.2087908347194106
iteration 1, reconstruction error: 0.2087908290724023, decrease = 5.647008305409429e-09
iteration 2, reconstruction error: 0.20879082344726907, decrease = 5.6251332203327564e-09
iteration 3, reconstruction error: 0.20879081784384662, decrease = 5.6034224482637285e-09
iteration 4, reconstruction error: 0.2087908122620424, decrease = 5.581804213283803e-09
PARAFAC2 reconstruction error=0.8189102952190596, variation=2.4867651271520685e-09.
Starting iteration 567
reconstruction error=0.20879080501039793
iteration 1, reconstruction error: 0.20879079936779257, decrease = 5.642605355182795e-09
iteration 2, reconstruction error: 0.2087907937470191, decrease = 5.620773485537356e-09
iteration 3, reconstruction error: 0.2087907881479163, decrease = 5.599102792519517e-09
iteration 4, reconstruction error: 0.20879078257039624, decrease = 5.577520056920804e-09
PARAFAC2 reconstruction error=0.8189102927342384, variation=2.48482112663595e-09.
Starting iteration 568
reconstruction error=0.20879077532454632
iteration 1, reconstruction error: 0.20879076968633922, decrease = 5.63820709564844e-09
iteration 2, reconstruction error: 0.20879076406992472, decrease = 5.616414500142497e-09
iteration 3, reconstruction error: 0.20879075847514078, decrease = 5.594783941686998e-09
iteration 4, reconstruction error: 0.20879075290189947, decrease = 5.57324131289505e-09
PARAFAC2 reconstruction error=0.8189102902513605, variation=2.4828779032759485e-09.
Starting iteration 569
reconstruction error=0.20879074566183944
iteration 1, reconstruction error: 0.20879074002802683, decrease = 5.6338126108723685e-09
iteration 2, reconstruction error: 0.20879073441596743, decrease = 5.612059400528224e-09
iteration 3, reconstruction error: 0.20879072882550004, decrease = 5.590467394567256e-09
iteration 4, reconstruction error: 0.2087907232565375, decrease = 5.56896254111372e-09
PARAFAC2 reconstruction error=0.8189102877704243, variation=2.4809362342281815e-09.
Starting iteration 570
reconstruction error=0.20879071602226434
iteration 1, reconstruction error: 0.20879071039284233, decrease = 5.629422011876883e-09
iteration 2, reconstruction error: 0.2087907047851319, decrease = 5.607710434896163e-09
iteration 3, reconstruction error: 0.2087906991989803, decrease = 5.586151596848055e-09
iteration 4, reconstruction error: 0.20879069363429342, decrease = 5.564686877956859e-09
PARAFAC2 reconstruction error=0.8189102852914282, variation=2.478996119492649e-09.
Starting iteration 571
reconstruction error=0.20879068640580017
iteration 1, reconstruction error: 0.208790680780768, decrease = 5.62503216228194e-09
iteration 2, reconstruction error: 0.20879067517740807, decrease = 5.603359942707442e-09
iteration 3, reconstruction error: 0.20879066959556605, decrease = 5.5818420163777915e-09
iteration 4, reconstruction error: 0.20879066403514793, decrease = 5.560418125938327e-09
PARAFAC2 reconstruction error=0.8189102828143711, variation=2.4770571149801413e-09.
Starting iteration 572
reconstruction error=0.2087906568124331
iteration 1, reconstruction error: 0.2087906511917854, decrease = 5.6206477250242415e-09
iteration 2, reconstruction error: 0.20879064559277513, decrease = 5.5990102554304144e-09
iteration 3, reconstruction error: 0.20879064001523662, decrease = 5.577538514378588e-09
iteration 4, reconstruction error: 0.2087906344590895, decrease = 5.556147125718169e-09
PARAFAC2 reconstruction error=0.8189102803392514, variation=2.475119664779868e-09.
Starting iteration 573
reconstruction error=0.2087906272421462
iteration 1, reconstruction error: 0.20879062162588366, decrease = 5.6162625383660014e-09
iteration 2, reconstruction error: 0.2087906160312139, decrease = 5.5946697552489155e-09
iteration 3, reconstruction error: 0.20879061045798344, decrease = 5.573230460464984e-09
iteration 4, reconstruction error: 0.20879060490610046, decrease = 5.551882981125189e-09
PARAFAC2 reconstruction error=0.818910277866068, variation=2.4731834358249216e-09.
Starting iteration 574
reconstruction error=0.20879059769492864
iteration 1, reconstruction error: 0.20879059208304437, decrease = 5.61188426284609e-09
iteration 2, reconstruction error: 0.2087905864927151, decrease = 5.590329282822992e-09
iteration 3, reconstruction error: 0.20879058092378652, decrease = 5.5689285682891665e-09
iteration 4, reconstruction error: 0.20879057537616766, decrease = 5.547618864287784e-09
PARAFAC2 reconstruction error=0.8189102753948194, variation=2.471248539137605e-09.
Starting iteration 575
reconstruction error=0.20879056817075975
iteration 1, reconstruction error: 0.20879056256324988, decrease = 5.607509873106764e-09
iteration 2, reconstruction error: 0.20879055697725954, decrease = 5.585990336953728e-09
iteration 3, reconstruction error: 0.208790551412629, decrease = 5.5646305341383595e-09
iteration 4, reconstruction error: 0.20879054586926807, decrease = 5.543360936943742e-09
PARAFAC2 reconstruction error=0.8189102729255043, variation=2.46931508574022e-09.
Starting iteration 576
reconstruction error=0.2087905386696217
iteration 1, reconstruction error: 0.2087905330664901, decrease = 5.603131597586852e-09
iteration 2, reconstruction error: 0.20879052748483018, decrease = 5.581659912046177e-09
iteration 3, reconstruction error: 0.20879052192449618, decrease = 5.560333998788636e-09
iteration 4, reconstruction error: 0.20879051638539087, decrease = 5.539105313312476e-09
PARAFAC2 reconstruction error=0.8189102704581214, variation=2.467382964610465e-09.
Starting iteration 577
reconstruction error=0.20879050919150602
iteration 1, reconstruction error: 0.2087905035927396, decrease = 5.598766422698631e-09
iteration 2, reconstruction error: 0.20879049801541477, decrease = 5.5773248242019235e-09
iteration 3, reconstruction error: 0.20879049245937187, decrease = 5.556042903531733e-09
iteration 4, reconstruction error: 0.20879048692452298, decrease = 5.5348488847695165e-09
PARAFAC2 reconstruction error=0.818910267992669, variation=2.4654523977929443e-09.
Starting iteration 578
reconstruction error=0.20879047973638898
iteration 1, reconstruction error: 0.20879047414199076, decrease = 5.594398222452668e-09
iteration 2, reconstruction error: 0.20879046856899178, decrease = 5.57299897896435e-09
iteration 3, reconstruction error: 0.20879046301723922, decrease = 5.551752557675371e-09
iteration 4, reconstruction error: 0.20879045748664365, decrease = 5.530595564851026e-09
PARAFAC2 reconstruction error=0.8189102655291463, variation=2.4635227191538434e-09.
Starting iteration 579
reconstruction error=0.20879045030425736
iteration 1, reconstruction error: 0.20879044471422586, decrease = 5.590031493252212e-09
iteration 2, reconstruction error: 0.20879043914555268, decrease = 5.568673189237927e-09
iteration 3, reconstruction error: 0.2087904335980866, decrease = 5.54746606984402e-09
iteration 4, reconstruction error: 0.2087904280717374, decrease = 5.526349211582016e-09
PARAFAC2 reconstruction error=0.8189102630675513, variation=2.4615949278938842e-09.
Starting iteration 580
reconstruction error=0.20879042089509733
iteration 1, reconstruction error: 0.20879041530942638, decrease = 5.585670953545119e-09
iteration 2, reconstruction error: 0.2087904097450744, decrease = 5.564351979181481e-09
iteration 3, reconstruction error: 0.20879040420189482, decrease = 5.5431795820126695e-09
iteration 4, reconstruction error: 0.20879039867979202, decrease = 5.522102802801854e-09
PARAFAC2 reconstruction error=0.8189102606078833, variation=2.459668024812345e-09.
Starting iteration 581
reconstruction error=0.20879039150888815
iteration 1, reconstruction error: 0.20879038592757695, decrease = 5.581311190994143e-09
iteration 2, reconstruction error: 0.20879038036754693, decrease = 5.560030019724493e-09
iteration 3, reconstruction error: 0.20879037482864538, decrease = 5.538901559631881e-09
iteration 4, reconstruction error: 0.20879036931078662, decrease = 5.517858753245619e-09
PARAFAC2 reconstruction error=0.8189102581501405, variation=2.4577427870653423e-09.
Starting iteration 582
reconstruction error=0.20879036214561678
iteration 1, reconstruction error: 0.2087903565686584, decrease = 5.57695836733707e-09
iteration 2, reconstruction error: 0.20879035101294882, decrease = 5.555709586824165e-09
iteration 3, reconstruction error: 0.20879034547832293, decrease = 5.5346258964750206e-09
iteration 4, reconstruction error: 0.20879033996470364, decrease = 5.513619283359361e-09
PARAFAC2 reconstruction error=0.8189102556943217, variation=2.455818770563667e-09.
Starting iteration 583
reconstruction error=0.2087903328052708
iteration 1, reconstruction error: 0.20879032723266291, decrease = 5.57260787514835e-09
iteration 2, reconstruction error: 0.20879032168126296, decrease = 5.55139995084275e-09
iteration 3, reconstruction error: 0.20879031615091587, decrease = 5.530347096938115e-09
iteration 4, reconstruction error: 0.20879031064153372, decrease = 5.509382144941455e-09
PARAFAC2 reconstruction error=0.8189102532404257, variation=2.453896086329621e-09.
Starting iteration 584
reconstruction error=0.20879030348782787
iteration 1, reconstruction error: 0.20879029791957132, decrease = 5.568256550292361e-09
iteration 2, reconstruction error: 0.20879029237248176, decrease = 5.547089565460794e-09
iteration 3, reconstruction error: 0.20879028684640652, decrease = 5.526075236295114e-09
iteration 4, reconstruction error: 0.2087902813412576, decrease = 5.50514892005971e-09
PARAFAC2 reconstruction error=0.8189102507884504, variation=2.451975289474717e-09.
Starting iteration 585
reconstruction error=0.20879027419327578
iteration 1, reconstruction error: 0.20879026862936356, decrease = 5.563912219841427e-09
iteration 2, reconstruction error: 0.20879026308658133, decrease = 5.542782233192156e-09
iteration 3, reconstruction error: 0.2087902575647779, decrease = 5.5218034311632636e-09
iteration 4, reconstruction error: 0.20879025206386076, decrease = 5.500917138467898e-09
PARAFAC2 reconstruction error=0.8189102483383952, variation=2.450055158753628e-09.
Starting iteration 586
reconstruction error=0.208790244921596
iteration 1, reconstruction error: 0.20879023936202812, decrease = 5.559567889390493e-09
iteration 2, reconstruction error: 0.2087902338235494, decrease = 5.538478731192953e-09
iteration 3, reconstruction error: 0.20879022830600855, decrease = 5.517540840882518e-09
iteration 4, reconstruction error: 0.2087902228093231, decrease = 5.496685440142812e-09
PARAFAC2 reconstruction error=0.8189102458902586, variation=2.448136582344773e-09.
Starting iteration 587
reconstruction error=0.20879021567277473
iteration 1, reconstruction error: 0.2087902101175427, decrease = 5.555232024390122e-09
iteration 2, reconstruction error: 0.2087902045833651, decrease = 5.534177588417677e-09
iteration 3, reconstruction error: 0.20879019907009458, decrease = 5.513270534551751e-09
iteration 4, reconstruction error: 0.20879019357763162, decrease = 5.492462956668831e-09
PARAFAC2 reconstruction error=0.8189102434440391, variation=2.446219560248153e-09.
Starting iteration 588
reconstruction error=0.20879018644679415
iteration 1, reconstruction error: 0.2087901808959003, decrease = 5.550893855676975e-09
iteration 2, reconstruction error: 0.2087901753660223, decrease = 5.5298779999546355e-09
iteration 3, reconstruction error: 0.2087901698570113, decrease = 5.509010997384323e-09
iteration 4, reconstruction error: 0.20879016436877237, decrease = 5.488238918882615e-09
PARAFAC2 reconstruction error=0.8189102409997353, variation=2.4443037593968597e-09.
Starting iteration 589
reconstruction error=0.2087901572436382
iteration 1, reconstruction error: 0.20879015169707946, decrease = 5.5465587400771454e-09
iteration 2, reconstruction error: 0.20879014617149566, decrease = 5.5255837960732634e-09
iteration 3, reconstruction error: 0.20879014066674031, decrease = 5.504755345997481e-09
iteration 4, reconstruction error: 0.20879013518272235, decrease = 5.484017961965293e-09
PARAFAC2 reconstruction error=0.8189102385573461, variation=2.4423891797908936e-09.
Starting iteration 590
reconstruction error=0.20879012806329447
iteration 1, reconstruction error: 0.20879012252106466, decrease = 5.542229813970678e-09
iteration 2, reconstruction error: 0.20879011699977357, decrease = 5.521291090992975e-09
iteration 3, reconstruction error: 0.20879011149927462, decrease = 5.500498945210097e-09
iteration 4, reconstruction error: 0.2087901060194714, decrease = 5.4798032222969084e-09
PARAFAC2 reconstruction error=0.8189102361168697, variation=2.440476376541767e-09.
Starting iteration 591
reconstruction error=0.20879009890574077
iteration 1, reconstruction error: 0.20879009336783833, decrease = 5.5379024421764456e-09
iteration 2, reconstruction error: 0.20879008785083836, decrease = 5.516999967980496e-09
iteration 3, reconstruction error: 0.20879008235458968, decrease = 5.496248678404925e-09
iteration 4, reconstruction error: 0.208790076879002, decrease = 5.475587677716831e-09
PARAFAC2 reconstruction error=0.8189102336783053, variation=2.43856446147106e-09.
Starting iteration 592
reconstruction error=0.20879006977096848
iteration 1, reconstruction error: 0.2087900642373896, decrease = 5.533578872896072e-09
iteration 2, reconstruction error: 0.20879005872467538, decrease = 5.512714229549687e-09
iteration 3, reconstruction error: 0.20879005323267077, decrease = 5.4920046010931145e-09
iteration 4, reconstruction error: 0.20879004776129712, decrease = 5.471373659693413e-09
PARAFAC2 reconstruction error=0.818910231241651, variation=2.4366543227571924e-09.
Starting iteration 593
reconstruction error=0.2087900406589508
iteration 1, reconstruction error: 0.2087900351296962, decrease = 5.529254581970733e-09
iteration 2, reconstruction error: 0.2087900296212654, decrease = 5.508430822587229e-09
iteration 3, reconstruction error: 0.20879002413351028, decrease = 5.487755111444059e-09
iteration 4, reconstruction error: 0.20879001866634447, decrease = 5.467165803407781e-09
PARAFAC2 reconstruction error=0.8189102288069057, variation=2.4347452942663494e-09.
Starting iteration 594
reconstruction error=0.20879001156968455
iteration 1, reconstruction error: 0.20879000604474654, decrease = 5.524938007095415e-09
iteration 2, reconstruction error: 0.20879000054059688, decrease = 5.5041496638263965e-09
iteration 3, reconstruction error: 0.2087899950570843, decrease = 5.4835125884444835e-09
iteration 4, reconstruction error: 0.20878998959412323, decrease = 5.462961055746618e-09
PARAFAC2 reconstruction error=0.818910226374068, variation=2.4328377090654385e-09.
Starting iteration 595
reconstruction error=0.20878998250314593
iteration 1, reconstruction error: 0.20878997698252066, decrease = 5.520625262489531e-09
iteration 2, reconstruction error: 0.20878997148264825, decrease = 5.499872418601726e-09
iteration 3, reconstruction error: 0.20878996600337588, decrease = 5.479272369157684e-09
iteration 4, reconstruction error: 0.2087899605446196, decrease = 5.4587562803298795e-09
PARAFAC2 reconstruction error=0.8189102239431366, variation=2.4309313451098546e-09.
Starting iteration 596
reconstruction error=0.20878995345931878
iteration 1, reconstruction error: 0.20878994794300704, decrease = 5.516311740727531e-09
iteration 2, reconstruction error: 0.20878994244740953, decrease = 5.4955975048454064e-09
iteration 3, reconstruction error: 0.2087899369723728, decrease = 5.475036729540861e-09
iteration 4, reconstruction error: 0.20878993151781586, decrease = 5.454556945005962e-09
PARAFAC2 reconstruction error=0.81891022151411, variation=2.4290266464888077e-09.
Starting iteration 597
reconstruction error=0.20878992443818914
iteration 1, reconstruction error: 0.20878991892618626, decrease = 5.512002881902234e-09
iteration 2, reconstruction error: 0.20878991343485834, decrease = 5.4913279201596055e-09
iteration 3, reconstruction error: 0.20878990796405875, decrease = 5.4707995911229546e-09
iteration 4, reconstruction error: 0.20878990251369883, decrease = 5.45035991339482e-09
PARAFAC2 reconstruction error=0.8189102190869868, variation=2.427123169113088e-09.
Starting iteration 598
reconstruction error=0.2087898954397402
iteration 1, reconstruction error: 0.2087898899320416, decrease = 5.507698602746913e-09
iteration 2, reconstruction error: 0.20878988444498472, decrease = 5.487056864428297e-09
iteration 3, reconstruction error: 0.20878987897841536, decrease = 5.4665693638433765e-09
iteration 4, reconstruction error: 0.20878987353224943, decrease = 5.446165934896996e-09
PARAFAC2 reconstruction error=0.8189102166617658, variation=2.4252210240049976e-09.
Starting iteration 599
reconstruction error=0.20878986646395498
iteration 1, reconstruction error: 0.20878986096056065, decrease = 5.503394323591593e-09
iteration 2, reconstruction error: 0.20878985547776718, decrease = 5.482793469235858e-09
iteration 3, reconstruction error: 0.20878985001542646, decrease = 5.462340718631609e-09
iteration 4, reconstruction error: 0.20878984457345295, decrease = 5.4419735107114064e-09
PARAFAC2 reconstruction error=0.8189102142384453, variation=2.423320433209142e-09.
Starting iteration 600
reconstruction error=0.20878983751081578
iteration 1, reconstruction error: 0.20878983201172413, decrease = 5.499091654259658e-09
iteration 2, reconstruction error: 0.2087898265331948, decrease = 5.478529324642878e-09
iteration 3, reconstruction error: 0.2087898210750774, decrease = 5.458117402490359e-09
iteration 4, reconstruction error: 0.20878981563729399, decrease = 5.437783417994169e-09
PARAFAC2 reconstruction error=0.8189102118170247, variation=2.4214206195694032e-09.
Starting iteration 601
reconstruction error=0.20878980858031493
iteration 1, reconstruction error: 0.20878980308551676, decrease = 5.494798172023252e-09
iteration 2, reconstruction error: 0.20878979761124541, decrease = 5.474271341787684e-09
iteration 3, reconstruction error: 0.20878979215735358, decrease = 5.453891838147484e-09
iteration 4, reconstruction error: 0.20878978672375256, decrease = 5.433601013571376e-09
PARAFAC2 reconstruction error=0.8189102093975018, variation=2.4195229153534115e-09.
Starting iteration 602
reconstruction error=0.2087897796724277
iteration 1, reconstruction error: 0.20878977418192068, decrease = 5.490507021255198e-09
iteration 2, reconstruction error: 0.2087897687119081, decrease = 5.470012581776373e-09
iteration 3, reconstruction error: 0.20878976326223492, decrease = 5.449673184942938e-09
iteration 4, reconstruction error: 0.2087897578328186, decrease = 5.429416305435808e-09
PARAFAC2 reconstruction error=0.8189102069798757, variation=2.4176260993158394e-09.
Starting iteration 603
reconstruction error=0.20878975078713963
iteration 1, reconstruction error: 0.20878974530092528, decrease = 5.4862143439304845e-09
iteration 2, reconstruction error: 0.20878973983516222, decrease = 5.4657630643717425e-09
iteration 3, reconstruction error: 0.20878973438970538, decrease = 5.445456835451168e-09
iteration 4, reconstruction error: 0.20878972896447145, decrease = 5.425233928768591e-09
PARAFAC2 reconstruction error=0.818910204564145, variation=2.4157307265681993e-09.
Starting iteration 604
reconstruction error=0.20878972192443587
iteration 1, reconstruction error: 0.20878971644251193, decrease = 5.481923942562972e-09
iteration 2, reconstruction error: 0.20878971098099988, decrease = 5.4615120481660284e-09
iteration 3, reconstruction error: 0.20878970553975476, decrease = 5.4412451211405255e-09
iteration 4, reconstruction error: 0.20878970011869707, decrease = 5.421057686083586e-09
PARAFAC2 reconstruction error=0.8189102021503079, variation=2.4138371301773986e-09.
Starting iteration 605
reconstruction error=0.20878969308429973
iteration 1, reconstruction error: 0.20878968760665845, decrease = 5.477641285001056e-09
iteration 2, reconstruction error: 0.20878968214939514, decrease = 5.457263307917515e-09
iteration 3, reconstruction error: 0.2087896767123625, decrease = 5.437032629673766e-09
iteration 4, reconstruction error: 0.20878967129547873, decrease = 5.416883774866932e-09
PARAFAC2 reconstruction error=0.8189101997383637, variation=2.4119441999204128e-09.
Starting iteration 606
reconstruction error=0.2087896642667172
iteration 1, reconstruction error: 0.20878965879335476, decrease = 5.473362429952999e-09
iteration 2, reconstruction error: 0.20878965334033708, decrease = 5.45301767629347e-09
iteration 3, reconstruction error: 0.20878964790751228, decrease = 5.43282480114371e-09
iteration 4, reconstruction error: 0.20878964249480014, decrease = 5.4127121396074784e-09
PARAFAC2 reconstruction error=0.8189101973283102, variation=2.410053490109476e-09.
Starting iteration 607
reconstruction error=0.20878963547166832
iteration 1, reconstruction error: 0.20878963000258544, decrease = 5.469082881015552e-09
iteration 2, reconstruction error: 0.20878962455380803, decrease = 5.448777401495519e-09
iteration 3, reconstruction error: 0.20878961912518804, decrease = 5.428619997971396e-09
iteration 4, reconstruction error: 0.2087896137166413, decrease = 5.4085467493525385e-09
PARAFAC2 reconstruction error=0.8189101949201468, variation=2.4081633354100518e-09.
Starting iteration 608
reconstruction error=0.20878960669913998
iteration 1, reconstruction error: 0.20878960123433055, decrease = 5.464809438304741e-09
iteration 2, reconstruction error: 0.20878959578979187, decrease = 5.444538681009803e-09
iteration 3, reconstruction error: 0.20878959036537506, decrease = 5.424416804622467e-09
iteration 4, reconstruction error: 0.2087895849609953, decrease = 5.404379749274213e-09
PARAFAC2 reconstruction error=0.8189101925138718, variation=2.4062750680897693e-09.
Starting iteration 609
reconstruction error=0.208789577949113
iteration 1, reconstruction error: 0.20878957248857927, decrease = 5.460533719636729e-09
iteration 2, reconstruction error: 0.2087895670482739, decrease = 5.4403053728613315e-09
iteration 3, reconstruction error: 0.20878956162805648, decrease = 5.420217413787398e-09
iteration 4, reconstruction error: 0.20878955622783832, decrease = 5.400218161533132e-09
PARAFAC2 reconstruction error=0.8189101901094841, variation=2.4043876889479066e-09.
Starting iteration 610
reconstruction error=0.20878954922157344
iteration 1, reconstruction error: 0.20878954376531006, decrease = 5.456263385550386e-09
iteration 2, reconstruction error: 0.208789538329238, decrease = 5.43607206471286e-09
iteration 3, reconstruction error: 0.2087895329132138, decrease = 5.416024184690116e-09
iteration 4, reconstruction error: 0.2087895275171572, decrease = 5.3960566015476275e-09
PARAFAC2 reconstruction error=0.8189101877069818, variation=2.402502308207488e-09.
Starting iteration 611
reconstruction error=0.20878952051650598
iteration 1, reconstruction error: 0.208789515064506, decrease = 5.4519999903579475e-09
iteration 2, reconstruction error: 0.2087895096326657, decrease = 5.431840283121048e-09
iteration 3, reconstruction error: 0.20878950422083548, decrease = 5.4118302339478674e-09
iteration 4, reconstruction error: 0.20878949882893355, decrease = 5.391901924944875e-09
PARAFAC2 reconstruction error=0.818910185306364, variation=2.4006178156454894e-09.
Starting iteration 612
reconstruction error=0.20878949183389361
iteration 1, reconstruction error: 0.20878948638615624, decrease = 5.447737372321626e-09
iteration 2, reconstruction error: 0.20878948095853928, decrease = 5.427616966979798e-09
iteration 3, reconstruction error: 0.20878947555089994, decrease = 5.407639336318937e-09
iteration 4, reconstruction error: 0.20878947016315494, decrease = 5.387745000140498e-09
PARAFAC2 reconstruction error=0.8189101829076292, variation=2.3987347663734226e-09.
Starting iteration 613
reconstruction error=0.2087894631737187
iteration 1, reconstruction error: 0.20878945773024168, decrease = 5.4434770024869295e-09
iteration 2, reconstruction error: 0.20878945230684795, decrease = 5.423393734105275e-09
iteration 3, reconstruction error: 0.20878944690339568, decrease = 5.403452268959441e-09
iteration 4, reconstruction error: 0.2087894415198038, decrease = 5.38359187784998e-09
PARAFAC2 reconstruction error=0.818910180510776, variation=2.396853160391288e-09.
Starting iteration 614
reconstruction error=0.20878943453596663
iteration 1, reconstruction error: 0.20878942909674528, decrease = 5.4392213511000875e-09
iteration 2, reconstruction error: 0.20878942367757333, decrease = 5.419171944520684e-09
iteration 3, reconstruction error: 0.20878941827830422, decrease = 5.399269115136107e-09
iteration 4, reconstruction error: 0.20878941289886083, decrease = 5.37944339074059e-09
PARAFAC2 reconstruction error=0.8189101781158029, variation=2.3949731087213877e-09.
Starting iteration 615
reconstruction error=0.2087894059206227
iteration 1, reconstruction error: 0.20878940048565395, decrease = 5.434968752826563e-09
iteration 2, reconstruction error: 0.20878939507069835, decrease = 5.414955595028914e-09
iteration 3, reconstruction error: 0.2087893896756109, decrease = 5.3950874601138565e-09
iteration 4, reconstruction error: 0.20878938430031058, decrease = 5.375300315968445e-09
PARAFAC2 reconstruction error=0.8189101757227087, variation=2.393094167274512e-09.
Starting iteration 616
reconstruction error=0.20878937732766617
iteration 1, reconstruction error: 0.2087893718969477, decrease = 5.430718458265815e-09
iteration 2, reconstruction error: 0.2087893664862069, decrease = 5.410740799849378e-09
iteration 3, reconstruction error: 0.2087893610953011, decrease = 5.390905805091606e-09
iteration 4, reconstruction error: 0.20878935572414464, decrease = 5.371156464040183e-09
PARAFAC2 reconstruction error=0.818910173331492, variation=2.391216780139871e-09.
Starting iteration 617
reconstruction error=0.20878934875708471
iteration 1, reconstruction error: 0.20878934333061347, decrease = 5.4264712445739605e-09
iteration 2, reconstruction error: 0.20878933792408444, decrease = 5.406529030027585e-09
iteration 3, reconstruction error: 0.20878933253735102, decrease = 5.386733420431611e-09
iteration 4, reconstruction error: 0.20878932717033222, decrease = 5.367018801605283e-09
PARAFAC2 reconstruction error=0.8189101709421513, variation=2.389340614250557e-09.
Starting iteration 618
reconstruction error=0.20878932020885912
iteration 1, reconstruction error: 0.2087893147866351, decrease = 5.422224030882106e-09
iteration 2, reconstruction error: 0.20878930938431084, decrease = 5.402324254610846e-09
iteration 3, reconstruction error: 0.20878930400175058, decrease = 5.3825602586154986e-09
iteration 4, reconstruction error: 0.20878929863887177, decrease = 5.362878807702032e-09
PARAFAC2 reconstruction error=0.8189101685546856, variation=2.3874657806288724e-09.
Starting iteration 619
reconstruction error=0.20878929168297636
iteration 1, reconstruction error: 0.20878928626499105, decrease = 5.417985310396389e-09
iteration 2, reconstruction error: 0.20878928086687465, decrease = 5.3981163983252145e-09
iteration 3, reconstruction error: 0.20878927548848294, decrease = 5.3783917042249385e-09
iteration 4, reconstruction error: 0.20878927012973642, decrease = 5.358746529848801e-09
PARAFAC2 reconstruction error=0.8189101661690931, variation=2.3855925013194224e-09.
Starting iteration 620
reconstruction error=0.20878926317941934
iteration 1, reconstruction error: 0.20878925776567125, decrease = 5.413748088711756e-09
iteration 2, reconstruction error: 0.20878925237175885, decrease = 5.393912400064593e-09
iteration 3, reconstruction error: 0.20878924699753107, decrease = 5.374227785015506e-09
iteration 4, reconstruction error: 0.20878924164291762, decrease = 5.354613447083878e-09
PARAFAC2 reconstruction error=0.8189101637853725, variation=2.383720554277602e-09.
Starting iteration 621
reconstruction error=0.20878923469817198
iteration 1, reconstruction error: 0.20878922928865953, decrease = 5.409512449094933e-09
iteration 2, reconstruction error: 0.20878922389894425, decrease = 5.389715285186725e-09
iteration 3, reconstruction error: 0.20878921852888188, decrease = 5.370062367004991e-09
iteration 4, reconstruction error: 0.20878921317839458, decrease = 5.350487303212859e-09
PARAFAC2 reconstruction error=0.8189101614035226, variation=2.381849939503411e-09.
Starting iteration 622
reconstruction error=0.20878920623921668
iteration 1, reconstruction error: 0.208789200833936, decrease = 5.405280667503121e-09
iteration 2, reconstruction error: 0.20878919544841548, decrease = 5.3855205295327835e-09
iteration 3, reconstruction error: 0.20878919008251473, decrease = 5.3659007515083346e-09
iteration 4, reconstruction error: 0.2087891847361543, decrease = 5.346360437696873e-09
PARAFAC2 reconstruction error=0.8189101590235423, variation=2.379980323929942e-09.
Starting iteration 623
reconstruction error=0.20878917780253553
iteration 1, reconstruction error: 0.20878917240148356, decrease = 5.4010519667802015e-09
iteration 2, reconstruction error: 0.20878916702016012, decrease = 5.3813234424104905e-09
iteration 3, reconstruction error: 0.20878916165841635, decrease = 5.361743771192806e-09
iteration 4, reconstruction error: 0.20878915631617742, decrease = 5.342238929006982e-09
PARAFAC2 reconstruction error=0.8189101566454294, variation=2.3781128177802202e-09.
Starting iteration 624
reconstruction error=0.20878914938811793
iteration 1, reconstruction error: 0.20878914399129392, decrease = 5.396824015457824e-09
iteration 2, reconstruction error: 0.20878913861415674, decrease = 5.377137179962688e-09
iteration 3, reconstruction error: 0.20878913325656764, decrease = 5.357589094590054e-09
iteration 4, reconstruction error: 0.20878912791844942, decrease = 5.338118225228783e-09
PARAFAC2 reconstruction error=0.8189101542691832, variation=2.376246199808918e-09.
Starting iteration 625
reconstruction error=0.20878912099594385
iteration 1, reconstruction error: 0.2087891156033408, decrease = 5.392603058540502e-09
iteration 2, reconstruction error: 0.2087891102303907, decrease = 5.372950084847616e-09
iteration 3, reconstruction error: 0.2087891048769547, decrease = 5.353436000055112e-09
iteration 4, reconstruction error: 0.20878909954295416, decrease = 5.334000546808326e-09
PARAFAC2 reconstruction error=0.8189101518948022, variation=2.3743810251275477e-09.
Starting iteration 626
reconstruction error=0.20878909262600084
iteration 1, reconstruction error: 0.20878908723761494, decrease = 5.3883859041370386e-09
iteration 2, reconstruction error: 0.2087890818688488, decrease = 5.36876612611259e-09
iteration 3, reconstruction error: 0.20878907651956133, decrease = 5.349287485190146e-09
iteration 4, reconstruction error: 0.20878907118967452, decrease = 5.329886809679607e-09
PARAFAC2 reconstruction error=0.8189101495222848, variation=2.372517404758412e-09.
Starting iteration 627
reconstruction error=0.20878906427826444
iteration 1, reconstruction error: 0.20878905889409413, decrease = 5.38417030404581e-09
iteration 2, reconstruction error: 0.208789053529512, decrease = 5.364582139621987e-09
iteration 3, reconstruction error: 0.20878904818437144, decrease = 5.345140552392991e-09
iteration 4, reconstruction error: 0.20878904285859154, decrease = 5.325779900422489e-09
PARAFAC2 reconstruction error=0.81891014715163, variation=2.3706547835899983e-09.
Starting iteration 628
reconstruction error=0.2087890359527268
iteration 1, reconstruction error: 0.20878903057277057, decrease = 5.37995623051124e-09
iteration 2, reconstruction error: 0.20878902521236853, decrease = 5.360402038911971e-09
iteration 3, reconstruction error: 0.2087890198713657, decrease = 5.3410028344469396e-09
iteration 4, reconstruction error: 0.20878901454969567, decrease = 5.321670021318781e-09
PARAFAC2 reconstruction error=0.8189101447828363, variation=2.368793716733819e-09.
Starting iteration 629
reconstruction error=0.208789007649368
iteration 1, reconstruction error: 0.20878900227362043, decrease = 5.375747569313916e-09
iteration 2, reconstruction error: 0.20878899691739158, decrease = 5.356228849340283e-09
iteration 3, reconstruction error: 0.2087889915805326, decrease = 5.336858982518677e-09
iteration 4, reconstruction error: 0.20878898626296483, decrease = 5.317567774998366e-09
PARAFAC2 reconstruction error=0.8189101424159018, variation=2.366934537256782e-09.
Starting iteration 630
reconstruction error=0.20878897936817034
iteration 1, reconstruction error: 0.20878897399663296, decrease = 5.371537381559932e-09
iteration 2, reconstruction error: 0.20878896864457422, decrease = 5.352058740637489e-09
iteration 3, reconstruction error: 0.20878896331185295, decrease = 5.332721264572626e-09
iteration 4, reconstruction error: 0.20878895799838892, decrease = 5.313464029876869e-09
PARAFAC2 reconstruction error=0.8189101400508259, variation=2.365075912891257e-09.
Starting iteration 631
reconstruction error=0.20878895110912074
iteration 1, reconstruction error: 0.2087889457417874, decrease = 5.36733332778816e-09
iteration 2, reconstruction error: 0.20878894039389567, decrease = 5.347891740559163e-09
iteration 3, reconstruction error: 0.20878893506530902, decrease = 5.328586655251044e-09
iteration 4, reconstruction error: 0.20878892975594646, decrease = 5.309362560712572e-09
PARAFAC2 reconstruction error=0.8189101376876068, variation=2.3632190648825713e-09.
Starting iteration 632
reconstruction error=0.20878892287220302
iteration 1, reconstruction error: 0.20878891750906986, decrease = 5.363133159796973e-09
iteration 2, reconstruction error: 0.2087889121653467, decrease = 5.343723158413027e-09
iteration 3, reconstruction error: 0.2087889068408885, decrease = 5.324458207667249e-09
iteration 4, reconstruction error: 0.20878890153562196, decrease = 5.305266531641095e-09
PARAFAC2 reconstruction error=0.8189101353262432, variation=2.3613635491415153e-09.
Starting iteration 633
reconstruction error=0.2087888946574002
iteration 1, reconstruction error: 0.20878888929846337, decrease = 5.358936822075222e-09
iteration 2, reconstruction error: 0.20878888395890335, decrease = 5.339560016359712e-09
iteration 3, reconstruction error: 0.20878887863857437, decrease = 5.320328982927336e-09
iteration 4, reconstruction error: 0.20878887333740084, decrease = 5.301173527927361e-09
PARAFAC2 reconstruction error=0.8189101329667338, variation=2.3595094766903912e-09.
Starting iteration 634
reconstruction error=0.20878886646469158
iteration 1, reconstruction error: 0.2087888611099511, decrease = 5.354740484353471e-09
iteration 2, reconstruction error: 0.20878885577455117, decrease = 5.335399927419715e-09
iteration 3, reconstruction error: 0.20878885045834525, decrease = 5.31620591992521e-09
iteration 4, reconstruction error: 0.20878884516126464, decrease = 5.297080607480353e-09
PARAFAC2 reconstruction error=0.8189101306090771, variation=2.3576566254845943e-09.
Starting iteration 635
reconstruction error=0.20878883829406786
iteration 1, reconstruction error: 0.20878883294352138, decrease = 5.350546478100071e-09
iteration 2, reconstruction error: 0.20878882761227535, decrease = 5.33124602797308e-09
iteration 3, reconstruction error: 0.20878882230019324, decrease = 5.312082107522542e-09
iteration 4, reconstruction error: 0.20878881700719717, decrease = 5.292996069217182e-09
PARAFAC2 reconstruction error=0.818910128253272, variation=2.355805106546427e-09.
Starting iteration 636
reconstruction error=0.20878881014551137
iteration 1, reconstruction error: 0.20878880479915043, decrease = 5.346360937297234e-09
iteration 2, reconstruction error: 0.20878879947205986, decrease = 5.3270905742142105e-09
iteration 3, reconstruction error: 0.20878879416409618, decrease = 5.307963679701544e-09
iteration 4, reconstruction error: 0.20878878887518537, decrease = 5.288910809309044e-09
PARAFAC2 reconstruction error=0.8189101258993169, variation=2.353955141920494e-09.
Starting iteration 637
reconstruction error=0.2087887820190021
iteration 1, reconstruction error: 0.20878877667682746, decrease = 5.342174647093856e-09
iteration 2, reconstruction error: 0.20878877135388696, decrease = 5.3229405050370104e-09
iteration 3, reconstruction error: 0.20878876605003938, decrease = 5.303847583348897e-09
iteration 4, reconstruction error: 0.20878876076521152, decrease = 5.284827853113683e-09
PARAFAC2 reconstruction error=0.8189101235472103, variation=2.352106620584493e-09.
Starting iteration 638
reconstruction error=0.20878875391452545
iteration 1, reconstruction error: 0.20878874857653326, decrease = 5.337992187159912e-09
iteration 2, reconstruction error: 0.20878874325774127, decrease = 5.318791990172045e-09
iteration 3, reconstruction error: 0.20878873795800829, decrease = 5.299732985797334e-09
iteration 4, reconstruction error: 0.20878873267725873, decrease = 5.280749559855025e-09
PARAFAC2 reconstruction error=0.8189101211969512, variation=2.3502590984492144e-09.
Starting iteration 639
reconstruction error=0.20878872583206906
iteration 1, reconstruction error: 0.2087887204982547, decrease = 5.333814362407097e-09
iteration 2, reconstruction error: 0.20878871518360656, decrease = 5.314648138243783e-09
iteration 3, reconstruction error: 0.20878870988798354, decrease = 5.295623023426899e-09
iteration 4, reconstruction error: 0.20878870461131074, decrease = 5.2766727931530255e-09
PARAFAC2 reconstruction error=0.8189101188485376, variation=2.34841357471538e-09.
Starting iteration 640
reconstruction error=0.2087886977716106
iteration 1, reconstruction error: 0.20878869244197254, decrease = 5.32963806421094e-09
iteration 2, reconstruction error: 0.20878868713146906, decrease = 5.310503481403828e-09
iteration 3, reconstruction error: 0.20878868183995444, decrease = 5.291514615368698e-09
iteration 4, reconstruction error: 0.20878867656735148, decrease = 5.27260296534493e-09
PARAFAC2 reconstruction error=0.8189101165019689, variation=2.3465687171153604e-09.
Starting iteration 641
reconstruction error=0.2087886697331386
iteration 1, reconstruction error: 0.20878866440767213, decrease = 5.325466456707062e-09
iteration 2, reconstruction error: 0.2087886591013064, decrease = 5.306365735702201e-09
iteration 3, reconstruction error: 0.20878865381389478, decrease = 5.287411619647742e-09
iteration 4, reconstruction error: 0.2087886485453663, decrease = 5.2685284746001315e-09
PARAFAC2 reconstruction error=0.8189101141572432, variation=2.34472563587218e-09.
Starting iteration 642
reconstruction error=0.208788641716633
iteration 1, reconstruction error: 0.20878863639534054, decrease = 5.321292462223681e-09
iteration 2, reconstruction error: 0.2087886310931048, decrease = 5.302235733806171e-09
iteration 3, reconstruction error: 0.20878862580979618, decrease = 5.283308623926786e-09
iteration 4, reconstruction error: 0.20878862054533295, decrease = 5.264463226462013e-09
PARAFAC2 reconstruction error=0.8189101118143595, variation=2.342883775874327e-09.
Starting iteration 643
reconstruction error=0.20878861372208143
iteration 1, reconstruction error: 0.20878860840495217, decrease = 5.317129264659215e-09
iteration 2, reconstruction error: 0.20878860310685415, decrease = 5.29809801586012e-09
iteration 3, reconstruction error: 0.20878859782764084, decrease = 5.279213316500275e-09
iteration 4, reconstruction error: 0.20878859256724355, decrease = 5.260397284434504e-09
PARAFAC2 reconstruction error=0.8189101094733161, variation=2.341043359166406e-09.
Starting iteration 644
reconstruction error=0.20878858574946477
iteration 1, reconstruction error: 0.20878858043649942, decrease = 5.312965345449783e-09
iteration 2, reconstruction error: 0.2087885751425291, decrease = 5.293970317676866e-09
iteration 3, reconstruction error: 0.2087885698674111, decrease = 5.275118009073765e-09
iteration 4, reconstruction error: 0.2087885646110775, decrease = 5.2563335906086195e-09
PARAFAC2 reconstruction error=0.8189101071341116, variation=2.3392044967707193e-09.
Starting iteration 645
reconstruction error=0.20878855779876676
iteration 1, reconstruction error: 0.2087885524899615, decrease = 5.308805256509785e-09
iteration 2, reconstruction error: 0.2087885472001212, decrease = 5.289840315780836e-09
iteration 3, reconstruction error: 0.2087885419290977, decrease = 5.271023478803372e-09
iteration 4, reconstruction error: 0.20878853667681854, decrease = 5.252279167144991e-09
PARAFAC2 reconstruction error=0.818910104796745, variation=2.337366633575755e-09.
Starting iteration 646
reconstruction error=0.20878852986997132
iteration 1, reconstruction error: 0.2087885245653246, decrease = 5.3046467218820226e-09
iteration 2, reconstruction error: 0.20878851927960504, decrease = 5.285719556491486e-09
iteration 3, reconstruction error: 0.20878851401267146, decrease = 5.266933583714106e-09
iteration 4, reconstruction error: 0.20878850876444904, decrease = 5.2482224122130106e-09
PARAFAC2 reconstruction error=0.8189101024612144, variation=2.3355305467376297e-09.
Starting iteration 647
reconstruction error=0.2087885019630637
iteration 1, reconstruction error: 0.2087884966625732, decrease = 5.300490490967036e-09
iteration 2, reconstruction error: 0.2087884913809721, decrease = 5.281601100914912e-09
iteration 3, reconstruction error: 0.20878848611812534, decrease = 5.262846769493734e-09
iteration 4, reconstruction error: 0.20878848087395657, decrease = 5.244168765905499e-09
PARAFAC2 reconstruction error=0.818910100127519, variation=2.333695459100227e-09.
Starting iteration 648
reconstruction error=0.20878847407802711
iteration 1, reconstruction error: 0.2087884687816867, decrease = 5.296340421789836e-09
iteration 2, reconstruction error: 0.20878846350420402, decrease = 5.277482673093914e-09
iteration 3, reconstruction error: 0.2087884582454418, decrease = 5.258762231230563e-09
iteration 4, reconstruction error: 0.20878845300532206, decrease = 5.24011972702354e-09
PARAFAC2 reconstruction error=0.8189100977956569, variation=2.331862036797361e-09.
Starting iteration 649
reconstruction error=0.20878844621484452
iteration 1, reconstruction error: 0.20878844092265497, decrease = 5.292189547700943e-09
iteration 2, reconstruction error: 0.20878843564928687, decrease = 5.273368103297926e-09
iteration 3, reconstruction error: 0.20878843039460218, decrease = 5.254684687372446e-09
iteration 4, reconstruction error: 0.20878842515853305, decrease = 5.236069133829346e-09
PARAFAC2 reconstruction error=0.818910095465627, variation=2.3300299467621244e-09.
Starting iteration 650
reconstruction error=0.2087884183735006
iteration 1, reconstruction error: 0.20878841308545495, decrease = 5.2880456402615295e-09
iteration 2, reconstruction error: 0.2087884078161984, decrease = 5.269256558859681e-09
iteration 3, reconstruction error: 0.20878840256559206, decrease = 5.250606338602637e-09
iteration 4, reconstruction error: 0.2087883973335634, decrease = 5.232028643664677e-09
PARAFAC2 reconstruction error=0.818910093137428, variation=2.3281989669499126e-09.
Starting iteration 651
reconstruction error=0.20878839055397835
iteration 1, reconstruction error: 0.2087883852700735, decrease = 5.283904841446585e-09
iteration 2, reconstruction error: 0.20878838000492844, decrease = 5.265145069932586e-09
iteration 3, reconstruction error: 0.20878837475839426, decrease = 5.24653417932619e-09
iteration 4, reconstruction error: 0.20878836953041008, decrease = 5.227984184452694e-09
PARAFAC2 reconstruction error=0.8189100908110584, variation=2.3263696524722377e-09.
Starting iteration 652
reconstruction error=0.20878836275626167
iteration 1, reconstruction error: 0.20878835747649613, decrease = 5.279765541432724e-09
iteration 2, reconstruction error: 0.2087883522154541, decrease = 5.261042018700479e-09
iteration 3, reconstruction error: 0.20878834697299364, decrease = 5.2424604657375085e-09
iteration 4, reconstruction error: 0.20878834174904842, decrease = 5.2239452208446835e-09
PARAFAC2 reconstruction error=0.8189100884865168, variation=2.32454155923989e-09.
Starting iteration 653
reconstruction error=0.2087883349803352
iteration 1, reconstruction error: 0.20878832970470582, decrease = 5.275629377798907e-09
iteration 2, reconstruction error: 0.20878832444776602, decrease = 5.2569398001356404e-09
iteration 3, reconstruction error: 0.20878831920937466, decrease = 5.238391359574379e-09
iteration 4, reconstruction error: 0.20878831398946382, decrease = 5.219910836906649e-09
PARAFAC2 reconstruction error=0.8189100861638017, variation=2.322715131342079e-09.
Starting iteration 654
reconstruction error=0.20878830722618186
iteration 1, reconstruction error: 0.20878830195468562, decrease = 5.271496239522833e-09
iteration 2, reconstruction error: 0.20878829670184268, decrease = 5.2528429383968955e-09
iteration 3, reconstruction error: 0.20878829146751962, decrease = 5.234323058322943e-09
iteration 4, reconstruction error: 0.2087882862516401, decrease = 5.2158795338375086e-09
PARAFAC2 reconstruction error=0.818910083842912, variation=2.3208897026449904e-09.
Starting iteration 655
reconstruction error=0.2087882794937849
iteration 1, reconstruction error: 0.20878827422641869, decrease = 5.267366209871227e-09
iteration 2, reconstruction error: 0.20878826897767183, decrease = 5.248746853814268e-09
iteration 3, reconstruction error: 0.20878826374741094, decrease = 5.230260891053717e-09
iteration 4, reconstruction error: 0.20878825853556116, decrease = 5.211849785080602e-09
PARAFAC2 reconstruction error=0.8189100815238463, variation=2.3190657172378337e-09.
Starting iteration 656
reconstruction error=0.20878825178312804
iteration 1, reconstruction error: 0.20878824651988875, decrease = 5.2632392888440904e-09
iteration 2, reconstruction error: 0.20878824127523415, decrease = 5.244654599501075e-09
iteration 3, reconstruction error: 0.20878823604903385, decrease = 5.226200305852302e-09
iteration 4, reconstruction error: 0.20878823084121073, decrease = 5.207823117192589e-09
PARAFAC2 reconstruction error=0.8189100792066032, variation=2.3172430640983066e-09.
Starting iteration 657
reconstruction error=0.20878822409419667
iteration 1, reconstruction error: 0.2087882188350789, decrease = 5.259117780154199e-09
iteration 2, reconstruction error: 0.20878821359451655, decrease = 5.2405623451878824e-09
iteration 3, reconstruction error: 0.20878820837237297, decrease = 5.222143578675897e-09
iteration 4, reconstruction error: 0.20878820316857422, decrease = 5.203798753017352e-09
PARAFAC2 reconstruction error=0.8189100768911811, variation=2.3154220762933164e-09.
Starting iteration 658
reconstruction error=0.20878819642697308
iteration 1, reconstruction error: 0.2087881911719769, decrease = 5.25499618819758e-09
iteration 2, reconstruction error: 0.20878818593550133, decrease = 5.236475558723086e-09
iteration 3, reconstruction error: 0.20878818071740993, decrease = 5.218091403413894e-09
iteration 4, reconstruction error: 0.20878817551763246, decrease = 5.199777469711009e-09
PARAFAC2 reconstruction error=0.8189100745775789, variation=2.313602198711351e-09.
Starting iteration 659
reconstruction error=0.2087881687814412
iteration 1, reconstruction error: 0.20878816353056193, decrease = 5.250879286933241e-09
iteration 2, reconstruction error: 0.20878815829817013, decrease = 5.232391797616032e-09
iteration 3, reconstruction error: 0.20878815308413007, decrease = 5.214040060819158e-09
iteration 4, reconstruction error: 0.20878814788837233, decrease = 5.1957577407169e-09
PARAFAC2 reconstruction error=0.818910072265795, variation=2.3117838754416198e-09.
Starting iteration 660
reconstruction error=0.20878814115758398
iteration 1, reconstruction error: 0.20878813591081855, decrease = 5.246765438782219e-09
iteration 2, reconstruction error: 0.20878813068250665, decrease = 5.228311894533988e-09
iteration 3, reconstruction error: 0.20878812547251718, decrease = 5.209989467624965e-09
iteration 4, reconstruction error: 0.20878812028077295, decrease = 5.191744228971729e-09
PARAFAC2 reconstruction error=0.8189100699558283, variation=2.3099667734172158e-09.
Starting iteration 661
reconstruction error=0.20878811355538532
iteration 1, reconstruction error: 0.20878810831273373, decrease = 5.242651590631198e-09
iteration 2, reconstruction error: 0.20878810308850096, decrease = 5.224232768608061e-09
iteration 3, reconstruction error: 0.2087880978825536, decrease = 5.2059473676369095e-09
iteration 4, reconstruction error: 0.20878809269482063, decrease = 5.187732965428182e-09
PARAFAC2 reconstruction error=0.8189100676476772, variation=2.308151114682744e-09.
Starting iteration 662
reconstruction error=0.2087880859748314
iteration 1, reconstruction error: 0.20878808073628513, decrease = 5.23854626344189e-09
iteration 2, reconstruction error: 0.2087880755161261, decrease = 5.220159027263804e-09
iteration 3, reconstruction error: 0.2087880703142224, decrease = 5.20190371333662e-09
iteration 4, reconstruction error: 0.2087880651304999, decrease = 5.183722479040753e-09
PARAFAC2 reconstruction error=0.8189100653413403, variation=2.306336899238204e-09.
Starting iteration 663
reconstruction error=0.20878805841590367
iteration 1, reconstruction error: 0.2087880531814643, decrease = 5.234439381940348e-09
iteration 2, reconstruction error: 0.20878804796537742, decrease = 5.216086867987357e-09
iteration 3, reconstruction error: 0.20878804276751273, decrease = 5.197864694217458e-09
iteration 4, reconstruction error: 0.2087880375877961, decrease = 5.179716627834452e-09
PARAFAC2 reconstruction error=0.8189100630368163, variation=2.304523905038991e-09.
Starting iteration 664
reconstruction error=0.20878803087858752
iteration 1, reconstruction error: 0.20878802564824964, decrease = 5.230337885020475e-09
iteration 2, reconstruction error: 0.20878802043623038, decrease = 5.212019260625311e-09
iteration 3, reconstruction error: 0.2087880152424039, decrease = 5.193826480009989e-09
iteration 4, reconstruction error: 0.2087880100666893, decrease = 5.175714606897586e-09
PARAFAC2 reconstruction error=0.8189100607341039, variation=2.3027124651520126e-09.
Starting iteration 665
reconstruction error=0.20878800336286374
iteration 1, reconstruction error: 0.20878799813662507, decrease = 5.226238664057803e-09
iteration 2, reconstruction error: 0.20878799292867337, decrease = 5.2079517087744165e-09
iteration 3, reconstruction error: 0.2087879877388751, decrease = 5.189798257809741e-09
iteration 4, reconstruction error: 0.2087879825671656, decrease = 5.171709505091826e-09
PARAFAC2 reconstruction error=0.8189100584332016, variation=2.3009022465103612e-09.
Starting iteration 666
reconstruction error=0.20878797586872003
iteration 1, reconstruction error: 0.20878797064657437, decrease = 5.2221456603440686e-09
iteration 2, reconstruction error: 0.20878796544268557, decrease = 5.2038887921046495e-09
iteration 3, reconstruction error: 0.2087879602569202, decrease = 5.18576537267279e-09
iteration 4, reconstruction error: 0.20878795508920653, decrease = 5.167713673648322e-09
PARAFAC2 reconstruction error=0.818910056134108, variation=2.2990935821809444e-09.
Starting iteration 667
reconstruction error=0.20878794839613557
iteration 1, reconstruction error: 0.20878794317808447, decrease = 5.2180511023181e-09
iteration 2, reconstruction error: 0.20878793797825476, decrease = 5.1998297057043175e-09
iteration 3, reconstruction error: 0.20878793279651608, decrease = 5.181738677029202e-09
iteration 4, reconstruction error: 0.20878792763279513, decrease = 5.163720950829287e-09
PARAFAC2 reconstruction error=0.8189100538368221, variation=2.2972859170522497e-09.
Starting iteration 668
reconstruction error=0.2087879209450958
iteration 1, reconstruction error: 0.20878791573113387, decrease = 5.2139619288738e-09
iteration 2, reconstruction error: 0.2087879105353625, decrease = 5.195771368704527e-09
iteration 3, reconstruction error: 0.20878790535764663, decrease = 5.177715867166199e-09
iteration 4, reconstruction error: 0.2087879001979192, decrease = 5.159727423098559e-09
PARAFAC2 reconstruction error=0.8189100515413423, variation=2.2954798062357895e-09.
Starting iteration 669
reconstruction error=0.20878789351558752
iteration 1, reconstruction error: 0.2087878883057109, decrease = 5.2098766134545116e-09
iteration 2, reconstruction error: 0.20878788311399396, decrease = 5.1917169452408984e-09
iteration 3, reconstruction error: 0.20878787794030093, decrease = 5.173693029547621e-09
iteration 4, reconstruction error: 0.20878787278456237, decrease = 5.1557385583045345e-09
PARAFAC2 reconstruction error=0.818910049247667, variation=2.2936753607538662e-09.
Starting iteration 670
reconstruction error=0.20878786610759162
iteration 1, reconstruction error: 0.20878786090179724, decrease = 5.205794378904116e-09
iteration 2, reconstruction error: 0.20878785571413014, decrease = 5.187667101447246e-09
iteration 3, reconstruction error: 0.20878785054445684, decrease = 5.169673300553512e-09
iteration 4, reconstruction error: 0.208787845392701, decrease = 5.151755827492721e-09
PARAFAC2 reconstruction error=0.8189100469557948, variation=2.29187213651727e-09.
Starting iteration 671
reconstruction error=0.20878783872109108
iteration 1, reconstruction error: 0.2087878335193789, decrease = 5.201712172109296e-09
iteration 2, reconstruction error: 0.20878782833575854, decrease = 5.183620366278063e-09
iteration 3, reconstruction error: 0.20878782317009806, decrease = 5.1656604826977315e-09
iteration 4, reconstruction error: 0.2087878180223273, decrease = 5.147770765212556e-09
PARAFAC2 reconstruction error=0.8189100446657248, variation=2.2900700225036985e-09.
Starting iteration 672
reconstruction error=0.2087878113560721
iteration 1, reconstruction error: 0.20878780615843676, decrease = 5.197635349896146e-09
iteration 2, reconstruction error: 0.20878780097886238, decrease = 5.179574380509422e-09
iteration 3, reconstruction error: 0.20878779581721313, decrease = 5.161649246909761e-09
iteration 4, reconstruction error: 0.2087877906734228, decrease = 5.143790338113519e-09
PARAFAC2 reconstruction error=0.818910042377455, variation=2.288269795869269e-09.
Starting iteration 673
reconstruction error=0.20878778401251694
iteration 1, reconstruction error: 0.2087877788189561, decrease = 5.1935608313957715e-09
iteration 2, reconstruction error: 0.20878777364341997, decrease = 5.175536138546377e-09
iteration 3, reconstruction error: 0.20878776848578282, decrease = 5.157637150698946e-09
iteration 4, reconstruction error: 0.20878776334596902, decrease = 5.1398137967950674e-09
PARAFAC2 reconstruction error=0.8189100400909847, variation=2.2864703463909564e-09.
Starting iteration 674
reconstruction error=0.20878775669040792
iteration 1, reconstruction error: 0.20878775150091386, decrease = 5.189494056700994e-09
iteration 2, reconstruction error: 0.20878774632942218, decrease = 5.1714916793343946e-09
iteration 3, reconstruction error: 0.20878774117579088, decrease = 5.153631299492645e-09
iteration 4, reconstruction error: 0.2087877360399521, decrease = 5.135838782033275e-09
PARAFAC2 reconstruction error=0.818910037806312, variation=2.2846726732694833e-09.
Starting iteration 675
reconstruction error=0.20878772938973042
iteration 1, reconstruction error: 0.2087877242043086, decrease = 5.18542181415782e-09
iteration 2, reconstruction error: 0.20878771903684745, decrease = 5.167461153421371e-09
iteration 3, reconstruction error: 0.20878771388721662, decrease = 5.149630832868013e-09
iteration 4, reconstruction error: 0.20878770875535438, decrease = 5.131862240714824e-09
PARAFAC2 reconstruction error=0.8189100355234359, variation=2.282876110371035e-09.
Starting iteration 676
reconstruction error=0.2087877021104713
iteration 1, reconstruction error: 0.2087876969291132, decrease = 5.18135809257636e-09
iteration 2, reconstruction error: 0.20878769176568412, decrease = 5.163429073196113e-09
iteration 3, reconstruction error: 0.20878768662005606, decrease = 5.145628062530605e-09
iteration 4, reconstruction error: 0.20878768149215732, decrease = 5.127898744516912e-09
PARAFAC2 reconstruction error=0.8189100332423545, variation=2.2810814348517283e-09.
Starting iteration 677
reconstruction error=0.2087876748526091
iteration 1, reconstruction error: 0.2087876696753101, decrease = 5.177299006176028e-09
iteration 2, reconstruction error: 0.20878766451591313, decrease = 5.159396965215279e-09
iteration 3, reconstruction error: 0.20878765937428245, decrease = 5.1416306767748665e-09
iteration 4, reconstruction error: 0.20878765425035176, decrease = 5.1239306964045994e-09
PARAFAC2 reconstruction error=0.8189100309630672, variation=2.2792872034216316e-09.
Starting iteration 678
reconstruction error=0.20878764761612684
iteration 1, reconstruction error: 0.20878764244288925, decrease = 5.1732375883073445e-09
iteration 2, reconstruction error: 0.20878763728751742, decrease = 5.155371823883925e-09
iteration 3, reconstruction error: 0.20878763214987875, decrease = 5.1376386756007975e-09
iteration 4, reconstruction error: 0.20878762702991227, decrease = 5.119966478561722e-09
PARAFAC2 reconstruction error=0.818910028685572, variation=2.2774953034598866e-09.
Starting iteration 679
reconstruction error=0.20878762040101526
iteration 1, reconstruction error: 0.20878761523183134, decrease = 5.1691839142442575e-09
iteration 2, reconstruction error: 0.2087876100804832, decrease = 5.151348153598079e-09
iteration 3, reconstruction error: 0.20878760494683726, decrease = 5.133645925026187e-09
iteration 4, reconstruction error: 0.20878759983082962, decrease = 5.116007645300513e-09
PARAFAC2 reconstruction error=0.8189100264098678, variation=2.275704180654259e-09.
Starting iteration 680
reconstruction error=0.20878759320724982
iteration 1, reconstruction error: 0.2087875880421188, decrease = 5.165131017337288e-09
iteration 2, reconstruction error: 0.2087875828947927, decrease = 5.147326093135618e-09
iteration 3, reconstruction error: 0.20878757776513415, decrease = 5.1296585590332455e-09
iteration 4, reconstruction error: 0.2087875726530838, decrease = 5.112050338595964e-09
PARAFAC2 reconstruction error=0.8189100241359528, variation=2.273914945227773e-09.
Starting iteration 681
reconstruction error=0.20878756603481965
iteration 1, reconstruction error: 0.20878756087373926, decrease = 5.1610803963875185e-09
iteration 2, reconstruction error: 0.20878755573042676, decrease = 5.14331249812372e-09
iteration 3, reconstruction error: 0.2087875506047579, decrease = 5.1256688615719526e-09
iteration 4, reconstruction error: 0.20878754549665943, decrease = 5.108098471984235e-09
PARAFAC2 reconstruction error=0.8189100218638262, variation=2.2721265979797067e-09.
Starting iteration 682
reconstruction error=0.20878753888370788
iteration 1, reconstruction error: 0.20878753372667272, decrease = 5.157035160019419e-09
iteration 2, reconstruction error: 0.2087875285873761, decrease = 5.1392966271546214e-09
iteration 3, reconstruction error: 0.20878752346568843, decrease = 5.121687657316798e-09
iteration 4, reconstruction error: 0.20878751836154108, decrease = 5.104147354773048e-09
PARAFAC2 reconstruction error=0.8189100195934866, variation=2.27033958299927e-09.
Starting iteration 683
reconstruction error=0.20878751175389754
iteration 1, reconstruction error: 0.20878750660090376, decrease = 5.152993781676329e-09
iteration 2, reconstruction error: 0.20878750146561764, decrease = 5.135286113011617e-09
iteration 3, reconstruction error: 0.20878749634790889, decrease = 5.1177087567744195e-09
iteration 4, reconstruction error: 0.20878749124771187, decrease = 5.100197014717978e-09
PARAFAC2 reconstruction error=0.8189100173249323, variation=2.268554344375673e-09.
Starting iteration 684
reconstruction error=0.20878748464537092
iteration 1, reconstruction error: 0.20878747949641774, decrease = 5.148953180489357e-09
iteration 2, reconstruction error: 0.2087874743651398, decrease = 5.131277930336964e-09
iteration 3, reconstruction error: 0.20878746925140915, decrease = 5.113730661143734e-09
iteration 4, reconstruction error: 0.20878746415515553, decrease = 5.0962536135568115e-09
PARAFAC2 reconstruction error=0.818910015058162, variation=2.2667703269974027e-09.
Starting iteration 685
reconstruction error=0.20878745755811498
iteration 1, reconstruction error: 0.2087874524131962, decrease = 5.144918768795748e-09
iteration 2, reconstruction error: 0.2087874472859265, decrease = 5.127269719906735e-09
iteration 3, reconstruction error: 0.2087874421761678, decrease = 5.109758699495259e-09
iteration 4, reconstruction error: 0.20878743708385605, decrease = 5.092311738952304e-09
PARAFAC2 reconstruction error=0.8189100127931745, variation=2.264987419842157e-09.
Starting iteration 686
reconstruction error=0.20878743049210738
iteration 1, reconstruction error: 0.2087874253512269, decrease = 5.140880471321552e-09
iteration 2, reconstruction error: 0.2087874202279546, decrease = 5.123272306395421e-09
iteration 3, reconstruction error: 0.20878741512216936, decrease = 5.1057852390457015e-09
iteration 4, reconstruction error: 0.2087874100337964, decrease = 5.088372972972266e-09
PARAFAC2 reconstruction error=0.818910010529968, variation=2.263206511088356e-09.
Starting iteration 687
reconstruction error=0.20878740344734045
iteration 1, reconstruction error: 0.20878739831048668, decrease = 5.136853775677963e-09
iteration 2, reconstruction error: 0.20878739319121636, decrease = 5.11927031321413e-09
iteration 3, reconstruction error: 0.20878738808939773, decrease = 5.101818634223321e-09
iteration 4, reconstruction error: 0.20878738300496197, decrease = 5.084435761304462e-09
PARAFAC2 reconstruction error=0.8189100082685418, variation=2.2614262684683695e-09.
Starting iteration 688
reconstruction error=0.2087873764237918
iteration 1, reconstruction error: 0.20878737129096628, decrease = 5.13282552572214e-09
iteration 2, reconstruction error: 0.20878736617569263, decrease = 5.115273649103358e-09
iteration 3, reconstruction error: 0.20878736107783666, decrease = 5.097855970692677e-09
iteration 4, reconstruction error: 0.20878735599733816, decrease = 5.080498494125507e-09
PARAFAC2 reconstruction error=0.8189100060088937, variation=2.2596480242498274e-09.
Starting iteration 689
reconstruction error=0.20878734942144536
iteration 1, reconstruction error: 0.20878734429264656, decrease = 5.128798802322976e-09
iteration 2, reconstruction error: 0.2087873391813657, decrease = 5.111280870773172e-09
iteration 3, reconstruction error: 0.20878733408747163, decrease = 5.093894056562576e-09
iteration 4, reconstruction error: 0.20878732901090036, decrease = 5.076571274464925e-09
PARAFAC2 reconstruction error=0.8189100037510234, variation=2.2578703351427976e-09.
Starting iteration 690
reconstruction error=0.20878732244029105
iteration 1, reconstruction error: 0.2087873173155097, decrease = 5.124781349286067e-09
iteration 2, reconstruction error: 0.20878731220821778, decrease = 5.10729192271242e-09
iteration 3, reconstruction error: 0.20878730711828408, decrease = 5.089933696744708e-09
iteration 4, reconstruction error: 0.20878730204564233, decrease = 5.072641751091567e-09
PARAFAC2 reconstruction error=0.8189100014949284, variation=2.2560949775041195e-09.
Starting iteration 691
reconstruction error=0.2087872954803035
iteration 1, reconstruction error: 0.20878729035954036, decrease = 5.120763146848617e-09
iteration 2, reconstruction error: 0.2087872852562389, decrease = 5.10330144809501e-09
iteration 3, reconstruction error: 0.2087872801702594, decrease = 5.085979498664628e-09
iteration 4, reconstruction error: 0.20878727510154027, decrease = 5.068719138856537e-09
PARAFAC2 reconstruction error=0.8189099992406079, variation=2.254320508043861e-09.
Starting iteration 692
reconstruction error=0.20878726854147117
iteration 1, reconstruction error: 0.20878726342472398, decrease = 5.116747192612792e-09
iteration 2, reconstruction error: 0.2087872583254068, decrease = 5.099317190726538e-09
iteration 3, reconstruction error: 0.20878725324337769, decrease = 5.082029103098407e-09
iteration 4, reconstruction error: 0.20878724817858266, decrease = 5.0647950278204235e-09
PARAFAC2 reconstruction error=0.8189099969880608, variation=2.2525471488066273e-09.
Starting iteration 693
reconstruction error=0.20878724162377868
iteration 1, reconstruction error: 0.20878723651104278, decrease = 5.11273590131367e-09
iteration 2, reconstruction error: 0.2087872314157014, decrease = 5.095341371053053e-09
iteration 3, reconstruction error: 0.20878722633762883, decrease = 5.078072573549974e-09
iteration 4, reconstruction error: 0.20878722127675178, decrease = 5.060877050766521e-09
PARAFAC2 reconstruction error=0.8189099947372851, variation=2.2507756769485354e-09.
Starting iteration 694
reconstruction error=0.20878721472720443
iteration 1, reconstruction error: 0.20878720961848138, decrease = 5.108723055702313e-09
iteration 2, reconstruction error: 0.20878720452711966, decrease = 5.0913617211101325e-09
iteration 3, reconstruction error: 0.2087871994529913, decrease = 5.074128367477115e-09
iteration 4, reconstruction error: 0.20878719439602986, decrease = 5.0569614329365464e-09
PARAFAC2 reconstruction error=0.8189099924882797, variation=2.2490054263357706e-09.
Starting iteration 695
reconstruction error=0.20878718785174158
iteration 1, reconstruction error: 0.20878718274702363, decrease = 5.104717953896554e-09
iteration 2, reconstruction error: 0.20878717765963545, decrease = 5.087388177393848e-09
iteration 3, reconstruction error: 0.20878717258945048, decrease = 5.070184966315949e-09
iteration 4, reconstruction error: 0.2087871675364024, decrease = 5.053048091063772e-09
PARAFAC2 reconstruction error=0.8189099902410434, variation=2.2472362859460304e-09.
Starting iteration 696
reconstruction error=0.2087871609973662
iteration 1, reconstruction error: 0.20878715589665106, decrease = 5.1007151280479945e-09
iteration 2, reconstruction error: 0.20878715081323637, decrease = 5.0834146891887144e-09
iteration 3, reconstruction error: 0.20878714574699098, decrease = 5.066245395424218e-09
iteration 4, reconstruction error: 0.20878714069785315, decrease = 5.049137830059891e-09
PARAFAC2 reconstruction error=0.8189099879955746, variation=2.245468810890827e-09.
Starting iteration 697
reconstruction error=0.20878713416406525
iteration 1, reconstruction error: 0.2087871290673498, decrease = 5.09671543857948e-09
iteration 2, reconstruction error: 0.20878712398790322, decrease = 5.0794465855652504e-09
iteration 3, reconstruction error: 0.2087871189255974, decrease = 5.062305824532487e-09
iteration 4, reconstruction error: 0.2087871138803683, decrease = 5.045229095612669e-09
PARAFAC2 reconstruction error=0.8189099857518721, variation=2.2437024460586485e-09.
Starting iteration 698
reconstruction error=0.20878710735182246
iteration 1, reconstruction error: 0.2087871022591014, decrease = 5.092721050425908e-09
iteration 2, reconstruction error: 0.20878709718362215, decrease = 5.075479259097904e-09
iteration 3, reconstruction error: 0.20878709212524815, decrease = 5.058373997446353e-09
iteration 4, reconstruction error: 0.20878708708392701, decrease = 5.041321138321564e-09
PARAFAC2 reconstruction error=0.8189099835099343, variation=2.2419378575833093e-09.
Starting iteration 699
reconstruction error=0.20878708056062106
iteration 1, reconstruction error: 0.20878707547189354, decrease = 5.08872752269518e-09
iteration 2, reconstruction error: 0.20878707040037392, decrease = 5.0715196209250024e-09
iteration 3, reconstruction error: 0.2087870653459341, decrease = 5.054439811136291e-09
iteration 4, reconstruction error: 0.20878706030851166, decrease = 5.037422451392715e-09
PARAFAC2 reconstruction error=0.8189099812697602, variation=2.2401740462640873e-09.
Starting iteration 700
reconstruction error=0.20878705379044024
iteration 1, reconstruction error: 0.20878704870570552, decrease = 5.084734716609418e-09
iteration 2, reconstruction error: 0.20878704363814626, decrease = 5.067559261107135e-09
iteration 3, reconstruction error: 0.208787038587636, decrease = 5.050510260007357e-09
iteration 4, reconstruction error: 0.20878703355411146, decrease = 5.0335245416199825e-09
PARAFAC2 reconstruction error=0.8189099790313479, variation=2.238412344368612e-09.
Starting iteration 701
reconstruction error=0.20878702704127217
iteration 1, reconstruction error: 0.2087870219605233, decrease = 5.080748877173136e-09
iteration 2, reconstruction error: 0.2087870168969229, decrease = 5.063600400090351e-09
iteration 3, reconstruction error: 0.2087870118503414, decrease = 5.04658148603454e-09
iteration 4, reconstruction error: 0.20878700682071322, decrease = 5.029628186159485e-09
PARAFAC2 reconstruction error=0.8189099767946969, variation=2.2366509755400443e-09.
Starting iteration 702
reconstruction error=0.20878700031313974
iteration 1, reconstruction error: 0.2087869952363752, decrease = 5.0767645365379366e-09
iteration 2, reconstruction error: 0.2087869901767298, decrease = 5.059645397098578e-09
iteration 3, reconstruction error: 0.20878698513406782, decrease = 5.042661982423979e-09
iteration 4, reconstruction error: 0.20878698010833371, decrease = 5.025734106656188e-09
PARAFAC2 reconstruction error=0.8189099745598049, variation=2.2348920492021307e-09.
Starting iteration 703
reconstruction error=0.2087869736059346
iteration 1, reconstruction error: 0.20878696853315049, decrease = 5.072784109438899e-09
iteration 2, reconstruction error: 0.20878696347745546, decrease = 5.055695029287932e-09
iteration 3, reconstruction error: 0.20878695843871378, decrease = 5.0387416739017254e-09
iteration 4, reconstruction error: 0.2087869534168691, decrease = 5.021844690089594e-09
PARAFAC2 reconstruction error=0.818909972326671, variation=2.2331339000203343e-09.
Starting iteration 704
reconstruction error=0.20878694691969063
iteration 1, reconstruction error: 0.20878694185088698, decrease = 5.068803654584286e-09
iteration 2, reconstruction error: 0.20878693679913618, decrease = 5.0517507954594976e-09
iteration 3, reconstruction error: 0.20878693176431093, decrease = 5.034825251160058e-09
iteration 4, reconstruction error: 0.20878692674635413, decrease = 5.017956800079659e-09
PARAFAC2 reconstruction error=0.8189099700952936, variation=2.2313773051507724e-09.
Starting iteration 705
reconstruction error=0.2087869202543954
iteration 1, reconstruction error: 0.20878691518956682, decrease = 5.064828584311343e-09
iteration 2, reconstruction error: 0.20878691014176176, decrease = 5.04780506282998e-09
iteration 3, reconstruction error: 0.20878690511085216, decrease = 5.030909605574507e-09
iteration 4, reconstruction error: 0.2087869000967779, decrease = 5.014074266895818e-09
PARAFAC2 reconstruction error=0.8189099678656715, variation=2.2296221535711425e-09.
Starting iteration 706
reconstruction error=0.20878689361002917
iteration 1, reconstruction error: 0.2087868885491687, decrease = 5.060860480687879e-09
iteration 2, reconstruction error: 0.20878688350530783, decrease = 5.043860856757121e-09
iteration 3, reconstruction error: 0.208786878478307, decrease = 5.0270008433717095e-09
iteration 4, reconstruction error: 0.20878687346811517, decrease = 5.010191816978704e-09
PARAFAC2 reconstruction error=0.8189099656378034, variation=2.227868112214537e-09.
Starting iteration 707
reconstruction error=0.20878686698657253
iteration 1, reconstruction error: 0.20878686192968407, decrease = 5.056888463528253e-09
iteration 2, reconstruction error: 0.20878685688975968, decrease = 5.039924394489859e-09
iteration 3, reconstruction error: 0.2087868518666714, decrease = 5.023088278655052e-09
iteration 4, reconstruction error: 0.20878684686035595, decrease = 5.00631544553265e-09
PARAFAC2 reconstruction error=0.8189099634116878, variation=2.2261156251701664e-09.
Starting iteration 708
reconstruction error=0.2087868403840126
iteration 1, reconstruction error: 0.20878683533108836, decrease = 5.052924245685375e-09
iteration 2, reconstruction error: 0.2087868302950974, decrease = 5.0359909575803385e-09
iteration 3, reconstruction error: 0.208786825275914, decrease = 5.019183402232841e-09
iteration 4, reconstruction error: 0.20878682027347487, decrease = 5.002439129597747e-09
PARAFAC2 reconstruction error=0.8189099611873232, variation=2.2243645814157276e-09.
Starting iteration 709
reconstruction error=0.20878681380232844
iteration 1, reconstruction error: 0.20878680875337002, decrease = 5.048958418019112e-09
iteration 2, reconstruction error: 0.20878680372131403, decrease = 5.03205599411416e-09
iteration 3, reconstruction error: 0.20878679870603162, decrease = 5.015282411591215e-09
iteration 4, reconstruction error: 0.20878679370746342, decrease = 4.998568198244513e-09
PARAFAC2 reconstruction error=0.8189099589647085, variation=2.2226146478843134e-09.
Starting iteration 710
reconstruction error=0.20878678724151017
iteration 1, reconstruction error: 0.20878678219650984, decrease = 5.045000334158445e-09
iteration 2, reconstruction error: 0.20878677716838107, decrease = 5.0281287744535774e-09
iteration 3, reconstruction error: 0.2087867721569997, decrease = 5.011381365438439e-09
iteration 4, reconstruction error: 0.2087867671623009, decrease = 4.994698793447938e-09
PARAFAC2 reconstruction error=0.818909956743842, variation=2.2208664907097386e-09.
Starting iteration 711
reconstruction error=0.20878676070153543
iteration 1, reconstruction error: 0.2087867556604924, decrease = 5.041043027453895e-09
iteration 2, reconstruction error: 0.20878675063629087, decrease = 5.02420152703742e-09
iteration 3, reconstruction error: 0.2087867456288059, decrease = 5.0074849822223655e-09
iteration 4, reconstruction error: 0.20878674063797417, decrease = 4.990831720119715e-09
PARAFAC2 reconstruction error=0.8189099545247228, variation=2.2191192217135836e-09.
Starting iteration 712
reconstruction error=0.2087867341823942
iteration 1, reconstruction error: 0.20878672914530236, decrease = 5.037091854731557e-09
iteration 2, reconstruction error: 0.20878672412502344, decrease = 5.02027891480239e-09
iteration 3, reconstruction error: 0.20878671912143176, decrease = 5.003591679875186e-09
iteration 4, reconstruction error: 0.2087867141344625, decrease = 4.986969254217044e-09
PARAFAC2 reconstruction error=0.8189099523073491, variation=2.217373729074268e-09.
Starting iteration 713
reconstruction error=0.20878670768406493
iteration 1, reconstruction error: 0.20878670265092422, decrease = 5.033140709764794e-09
iteration 2, reconstruction error: 0.20878669763456714, decrease = 5.016357079723477e-09
iteration 3, reconstruction error: 0.20878669263486416, decrease = 4.999702984953558e-09
iteration 4, reconstruction error: 0.20878668765175581, decrease = 4.983108342626608e-09
PARAFAC2 reconstruction error=0.8189099500917196, variation=2.2156294576802793e-09.
Starting iteration 714
reconstruction error=0.20878668120653227
iteration 1, reconstruction error: 0.20878667617733884, decrease = 5.029193422823042e-09
iteration 2, reconstruction error: 0.20878667116489746, decrease = 5.012441378626775e-09
iteration 3, reconstruction error: 0.2087866661690816, decrease = 4.99581587209974e-09
iteration 4, reconstruction error: 0.2087866611898326, decrease = 4.979248985348406e-09
PARAFAC2 reconstruction error=0.8189099478778331, variation=2.2138865185539203e-09.
Starting iteration 715
reconstruction error=0.20878665474978
iteration 1, reconstruction error: 0.20878664972452926, decrease = 5.025250743306842e-09
iteration 2, reconstruction error: 0.20878664471600278, decrease = 5.008526482441766e-09
iteration 3, reconstruction error: 0.20878663972407405, decrease = 4.991928731490347e-09
iteration 4, reconstruction error: 0.20878663474868214, decrease = 4.975391904027404e-09
PARAFAC2 reconstruction error=0.8189099456656881, variation=2.2121450227174932e-09.
Starting iteration 716
reconstruction error=0.20878662831379277
iteration 1, reconstruction error: 0.20878662329248393, decrease = 5.021308840946759e-09
iteration 2, reconstruction error: 0.2087866182878716, decrease = 5.004612335657299e-09
iteration 3, reconstruction error: 0.2087866132998215, decrease = 4.988050084087092e-09
iteration 4, reconstruction error: 0.20878660832828125, decrease = 4.971540262799223e-09
PARAFAC2 reconstruction error=0.8189099434552835, variation=2.210404637104091e-09.
Starting iteration 717
reconstruction error=0.2087866018985582
iteration 1, reconstruction error: 0.20878659688118742, decrease = 5.017370768856111e-09
iteration 2, reconstruction error: 0.20878659188047996, decrease = 5.0007074592350875e-09
iteration 3, reconstruction error: 0.20878658689630933, decrease = 4.984170631772145e-09
iteration 4, reconstruction error: 0.20878658192861763, decrease = 4.967691702439936e-09
PARAFAC2 reconstruction error=0.8189099412466172, variation=2.2086662498921328e-09.
Starting iteration 718
reconstruction error=0.2087865755040525
iteration 1, reconstruction error: 0.20878657049061977, decrease = 5.013432724521039e-09
iteration 2, reconstruction error: 0.20878656549381489, decrease = 4.996804886525652e-09
iteration 3, reconstruction error: 0.20878656051352057, decrease = 4.9802943158372415e-09
iteration 4, reconstruction error: 0.2087865555496736, decrease = 4.963846972350083e-09
PARAFAC2 reconstruction error=0.8189099390396889, variation=2.2069283067693846e-09.
Starting iteration 719
reconstruction error=0.20878654913026337
iteration 1, reconstruction error: 0.20878654412076175, decrease = 5.00950161907987e-09
iteration 2, reconstruction error: 0.20878653912786022, decrease = 4.992901536660099e-09
iteration 3, reconstruction error: 0.20878653415143839, decrease = 4.976421830171773e-09
iteration 4, reconstruction error: 0.20878652919143692, decrease = 4.9600014651041135e-09
PARAFAC2 reconstruction error=0.8189099368344964, variation=2.205192473070383e-09.
Starting iteration 720
reconstruction error=0.2087865227771769
iteration 1, reconstruction error: 0.2087865177716018, decrease = 5.005575121064254e-09
iteration 2, reconstruction error: 0.2087865127826005, decrease = 4.9890012954190155e-09
iteration 3, reconstruction error: 0.20878650781004807, decrease = 4.9725524253751985e-09
iteration 4, reconstruction error: 0.2087865028538867, decrease = 4.956161370195389e-09
PARAFAC2 reconstruction error=0.8189099346310386, variation=2.2034578606167088e-09.
Starting iteration 721
reconstruction error=0.20878649644477462
iteration 1, reconstruction error: 0.208786491443126, decrease = 5.001648623048638e-09
iteration 2, reconstruction error: 0.20878648645801726, decrease = 4.985108742472377e-09
iteration 3, reconstruction error: 0.20878648148933424, decrease = 4.968683020578624e-09
iteration 4, reconstruction error: 0.20878647653700985, decrease = 4.952324383911133e-09
PARAFAC2 reconstruction error=0.8189099324293143, variation=2.2017242473637566e-09.
Starting iteration 722
reconstruction error=0.20878647013303891
iteration 1, reconstruction error: 0.20878646513531288, decrease = 4.9977260385691835e-09
iteration 2, reconstruction error: 0.20878646015410054, decrease = 4.981212331500728e-09
iteration 3, reconstruction error: 0.20878645518927846, decrease = 4.964822081232612e-09
iteration 4, reconstruction error: 0.20878645024078493, decrease = 4.948493531609088e-09
PARAFAC2 reconstruction error=0.8189099302293218, variation=2.1999925214899463e-09.
Starting iteration 723
reconstruction error=0.2087864438419566
iteration 1, reconstruction error: 0.20878643884814932, decrease = 4.993807284359164e-09
iteration 2, reconstruction error: 0.20878643387082724, decrease = 4.977322082266866e-09
iteration 3, reconstruction error: 0.20878642890986376, decrease = 4.960963473354951e-09
iteration 4, reconstruction error: 0.20878642396520647, decrease = 4.944657294725374e-09
PARAFAC2 reconstruction error=0.81890992803106, variation=2.198261794816858e-09.
Starting iteration 724
reconstruction error=0.20878641757150618
iteration 1, reconstruction error: 0.20878641258161462, decrease = 4.989891555506887e-09
iteration 2, reconstruction error: 0.20878640760817968, decrease = 4.973434941657473e-09
iteration 3, reconstruction error: 0.2087864026510779, decrease = 4.9571017846083976e-09
iteration 4, reconstruction error: 0.20878639771024451, decrease = 4.940833381317233e-09
PARAFAC2 reconstruction error=0.8189099258345273, variation=2.196532733478307e-09.
Starting iteration 725
reconstruction error=0.20878639132167612
iteration 1, reconstruction error: 0.20878638633570024, decrease = 4.985975882165761e-09
iteration 2, reconstruction error: 0.2087863813661455, decrease = 4.969554739941984e-09
iteration 3, reconstruction error: 0.20878637641289924, decrease = 4.9532462575996306e-09
iteration 4, reconstruction error: 0.20878637147589438, decrease = 4.93700486048354e-09
PARAFAC2 reconstruction error=0.8189099236397227, variation=2.1948045603181754e-09.
Starting iteration 726
reconstruction error=0.2087863650924502
iteration 1, reconstruction error: 0.20878636011038074, decrease = 4.982069451431315e-09
iteration 2, reconstruction error: 0.2087863551447124, decrease = 4.965668348733132e-09
iteration 3, reconstruction error: 0.2087863501953155, decrease = 4.94939689232865e-09
iteration 4, reconstruction error: 0.20878634526213607, decrease = 4.933179420518741e-09
PARAFAC2 reconstruction error=0.8189099214466444, variation=2.1930782745371857e-09.
Starting iteration 727
reconstruction error=0.20878633888380918
iteration 1, reconstruction error: 0.20878633390565005, decrease = 4.978159134916282e-09
iteration 2, reconstruction error: 0.20878632894385957, decrease = 4.9617904784859945e-09
iteration 3, reconstruction error: 0.20878632399831126, decrease = 4.945548304213787e-09
iteration 4, reconstruction error: 0.20878631906895115, decrease = 4.929360114536152e-09
PARAFAC2 reconstruction error=0.8189099192552914, variation=2.1913529879569182e-09.
Starting iteration 728
reconstruction error=0.20878631269574083
iteration 1, reconstruction error: 0.20878630772148732, decrease = 4.974253509093529e-09
iteration 2, reconstruction error: 0.20878630276356938, decrease = 4.957917937309375e-09
iteration 3, reconstruction error: 0.20878629782186656, decrease = 4.941702824723393e-09
iteration 4, reconstruction error: 0.2087862928963226, decrease = 4.925543944933608e-09
PARAFAC2 reconstruction error=0.8189099170656623, variation=2.1896291446665828e-09.
Starting iteration 729
reconstruction error=0.2087862865282274
iteration 1, reconstruction error: 0.20878628155787265, decrease = 4.970354738897953e-09
iteration 2, reconstruction error: 0.2087862766038264, decrease = 4.9540462565556e-09
iteration 3, reconstruction error: 0.20878627166596758, decrease = 4.9378588162785064e-09
iteration 4, reconstruction error: 0.20878626674423983, decrease = 4.921727747575488e-09
PARAFAC2 reconstruction error=0.8189099148777552, variation=2.1879070777330867e-09.
Starting iteration 730
reconstruction error=0.20878626038125267
iteration 1, reconstruction error: 0.2087862554147959, decrease = 4.96645677361407e-09
iteration 2, reconstruction error: 0.20878625046461827, decrease = 4.950177628915142e-09
iteration 3, reconstruction error: 0.20878624553059802, decrease = 4.9340202479264406e-09
iteration 4, reconstruction error: 0.20878624061268106, decrease = 4.917916962554614e-09
PARAFAC2 reconstruction error=0.8189099126915693, variation=2.1861858989780103e-09.
Starting iteration 731
reconstruction error=0.20878623425479906
iteration 1, reconstruction error: 0.2087862292922348, decrease = 4.962564248423007e-09
iteration 2, reconstruction error: 0.20878622434592434, decrease = 4.946310472320192e-09
iteration 3, reconstruction error: 0.20878621941574185, decrease = 4.9301824844860676e-09
iteration 4, reconstruction error: 0.20878621450163262, decrease = 4.914109230647057e-09
PARAFAC2 reconstruction error=0.8189099105071033, variation=2.1844660524905635e-09.
Starting iteration 732
reconstruction error=0.20878620814884954
iteration 1, reconstruction error: 0.2087862031901794, decrease = 4.958670141164134e-09
iteration 2, reconstruction error: 0.20878619824772984, decrease = 4.942449560729756e-09
iteration 3, reconstruction error: 0.2087861933213844, decrease = 4.9263454426906605e-09
iteration 4, reconstruction error: 0.20878618841107902, decrease = 4.910305384520086e-09
PARAFAC2 reconstruction error=0.8189099083243554, variation=2.1827478713376536e-09.
Starting iteration 733
reconstruction error=0.2087861820633934
iteration 1, reconstruction error: 0.20878617710860964, decrease = 4.954783749955283e-09
iteration 2, reconstruction error: 0.2087861721700218, decrease = 4.9385878442276265e-09
iteration 3, reconstruction error: 0.2087861672475064, decrease = 4.922515395300309e-09
iteration 4, reconstruction error: 0.20878616234100333, decrease = 4.906503064949774e-09
PARAFAC2 reconstruction error=0.8189099061433248, variation=2.1810305783631634e-09.
Starting iteration 734
reconstruction error=0.20878615599840825
iteration 1, reconstruction error: 0.20878615104751166, decrease = 4.950896581590314e-09
iteration 2, reconstruction error: 0.20878614611277857, decrease = 4.934733094374977e-09
iteration 3, reconstruction error: 0.20878614119409022, decrease = 4.918688345512123e-09
iteration 4, reconstruction error: 0.20878613629139023, decrease = 4.902699995978921e-09
PARAFAC2 reconstruction error=0.8189099039640094, variation=2.17931539481242e-09.
Starting iteration 735
reconstruction error=0.20878612995388107
iteration 1, reconstruction error: 0.20878612500686705, decrease = 4.947014020650897e-09
iteration 2, reconstruction error: 0.2087861200759895, decrease = 4.930877539610634e-09
iteration 3, reconstruction error: 0.20878611516112736, decrease = 4.914862156146782e-09
iteration 4, reconstruction error: 0.20878611026221888, decrease = 4.8989084733275234e-09
PARAFAC2 reconstruction error=0.8189099017864083, variation=2.1776010994400963e-09.
Starting iteration 736
reconstruction error=0.2087861039297964
iteration 1, reconstruction error: 0.20878609898666103, decrease = 4.943135373247642e-09
iteration 2, reconstruction error: 0.20878609405963594, decrease = 4.9270250934707605e-09
iteration 3, reconstruction error: 0.2087860891485931, decrease = 4.911042850164193e-09
iteration 4, reconstruction error: 0.20878608425348233, decrease = 4.895110761182764e-09
PARAFAC2 reconstruction error=0.8189098996105202, variation=2.175888136335402e-09.
Starting iteration 737
reconstruction error=0.20878607792613435
iteration 1, reconstruction error: 0.2087860729868769, decrease = 4.9392574474893536e-09
iteration 2, reconstruction error: 0.20878606806369657, decrease = 4.923180335625332e-09
iteration 3, reconstruction error: 0.20878606315647608, decrease = 4.907220491068287e-09
iteration 4, reconstruction error: 0.20878605826515528, decrease = 4.891320792843601e-09
PARAFAC2 reconstruction error=0.8189098974363436, variation=2.17417661652064e-09.
Starting iteration 738
reconstruction error=0.20878605194288402
iteration 1, reconstruction error: 0.2087860470075014, decrease = 4.935382630355534e-09
iteration 2, reconstruction error: 0.20878604208816426, decrease = 4.919337132092139e-09
iteration 3, reconstruction error: 0.2087860371847592, decrease = 4.903405070866285e-09
iteration 4, reconstruction error: 0.20878603229722684, decrease = 4.887532351061097e-09
PARAFAC2 reconstruction error=0.8189098952638771, variation=2.1724664289735074e-09.
Starting iteration 739
reconstruction error=0.20878602598002394
iteration 1, reconstruction error: 0.20878602104851, decrease = 4.931513947203925e-09
iteration 2, reconstruction error: 0.2087860161330176, decrease = 4.915492402002286e-09
iteration 3, reconstruction error: 0.20878601123342333, decrease = 4.899594258089834e-09
iteration 4, reconstruction error: 0.2087860063496771, decrease = 4.8837462407469445e-09
PARAFAC2 reconstruction error=0.8189098930931196, variation=2.1707575736940043e-09.
Starting iteration 740
reconstruction error=0.20878600003754252
iteration 1, reconstruction error: 0.20878599510989568, decrease = 4.927646846120126e-09
iteration 2, reconstruction error: 0.20878599019824032, decrease = 4.911655360206879e-09
iteration 3, reconstruction error: 0.20878598530245843, decrease = 4.89578189100115e-09
iteration 4, reconstruction error: 0.20878598042249677, decrease = 4.879961656989451e-09
PARAFAC2 reconstruction error=0.8189098909240692, variation=2.1690503837490382e-09.
Starting iteration 741
reconstruction error=0.20878597411541824
iteration 1, reconstruction error: 0.2087859691916385, decrease = 4.9237797450363274e-09
iteration 2, reconstruction error: 0.20878596428381938, decrease = 4.907819123323165e-09
iteration 3, reconstruction error: 0.20878595939184444, decrease = 4.89197493624971e-09
iteration 4, reconstruction error: 0.20878595451565968, decrease = 4.876184761526403e-09
PARAFAC2 reconstruction error=0.8189098887567251, variation=2.167344081982492e-09.
Starting iteration 742
reconstruction error=0.2087859482136426
iteration 1, reconstruction error: 0.20878594329372152, decrease = 4.919921081647516e-09
iteration 2, reconstruction error: 0.20878593838973405, decrease = 4.903987466109427e-09
iteration 3, reconstruction error: 0.2087859335015676, decrease = 4.8881664549416115e-09
iteration 4, reconstruction error: 0.20878592862915582, decrease = 4.872411779599517e-09
PARAFAC2 reconstruction error=0.8189098865910854, variation=2.1656396675950873e-09.
Starting iteration 743
reconstruction error=0.20878592233219487
iteration 1, reconstruction error: 0.20878591741613087, decrease = 4.916064000326514e-09
iteration 2, reconstruction error: 0.20878591251597503, decrease = 4.9001558366512654e-09
iteration 3, reconstruction error: 0.20878590763160707, decrease = 4.884367965640735e-09
iteration 4, reconstruction error: 0.2087859027629714, decrease = 4.868635661292586e-09
PARAFAC2 reconstruction error=0.8189098844271493, variation=2.1639361413861025e-09.
Starting iteration 744
reconstruction error=0.20878589647105883
iteration 1, reconstruction error: 0.20878589155885038, decrease = 4.912208445562172e-09
iteration 2, reconstruction error: 0.20878588666252004, decrease = 4.8963303411753145e-09
iteration 3, reconstruction error: 0.20878588178195207, decrease = 4.8805679775387745e-09
iteration 4, reconstruction error: 0.20878587691708633, decrease = 4.864865732479018e-09
PARAFAC2 reconstruction error=0.8189098822649151, variation=2.162234169489352e-09.
Starting iteration 745
reconstruction error=0.2087858706302169
iteration 1, reconstruction error: 0.20878586572185934, decrease = 4.9083575537345325e-09
iteration 2, reconstruction error: 0.2087858608293529, decrease = 4.892506427767174e-09
iteration 3, reconstruction error: 0.20878585595257956, decrease = 4.876773346262908e-09
iteration 4, reconstruction error: 0.208785851091483, decrease = 4.861096553065991e-09
PARAFAC2 reconstruction error=0.8189098801043815, variation=2.1605336408825337e-09.
Starting iteration 746
reconstruction error=0.20878584480965504
iteration 1, reconstruction error: 0.20878583990514762, decrease = 4.904507411307435e-09
iteration 2, reconstruction error: 0.20878583501646206, decrease = 4.888685567472351e-09
iteration 3, reconstruction error: 0.208785830143481, decrease = 4.8729810464553935e-09
iteration 4, reconstruction error: 0.20878582528614822, decrease = 4.857332785990209e-09
PARAFAC2 reconstruction error=0.818909877945547, variation=2.158834444543345e-09.
Starting iteration 747
reconstruction error=0.2087858190093572
iteration 1, reconstruction error: 0.2087858141086961, decrease = 4.900661099149772e-09
iteration 2, reconstruction error: 0.20878580922382825, decrease = 4.884867843557572e-09
iteration 3, reconstruction error: 0.20878580435463567, decrease = 4.869192576917314e-09
iteration 4, reconstruction error: 0.2087857995010651, decrease = 4.853570573226662e-09
PARAFAC2 reconstruction error=0.8189098757884106, variation=2.1571364694494832e-09.
Starting iteration 748
reconstruction error=0.20878579322930876
iteration 1, reconstruction error: 0.20878578833248473, decrease = 4.89682402959879e-09
iteration 2, reconstruction error: 0.20878578345143545, decrease = 4.881049286975525e-09
iteration 3, reconstruction error: 0.20878577858603206, decrease = 4.865403385734268e-09
iteration 4, reconstruction error: 0.20878577373621832, decrease = 4.849813745044784e-09
PARAFAC2 reconstruction error=0.8189098736329707, variation=2.155439826623251e-09.
Starting iteration 749
reconstruction error=0.20878576746948965
iteration 1, reconstruction error: 0.20878576257651266, decrease = 4.892976995796161e-09
iteration 2, reconstruction error: 0.2087857576992688, decrease = 4.877243858780744e-09
iteration 3, reconstruction error: 0.20878575283764925, decrease = 4.861619551377316e-09
iteration 4, reconstruction error: 0.2087857479915923, decrease = 4.846056944618482e-09
PARAFAC2 reconstruction error=0.818909871479226, variation=2.1537447381092534e-09.
Starting iteration 750
reconstruction error=0.20878574172988842
iteration 1, reconstruction error: 0.20878573684074542, decrease = 4.889143007114072e-09
iteration 2, reconstruction error: 0.2087857319673116, decrease = 4.873433823160411e-09
iteration 3, reconstruction error: 0.20878572710947355, decrease = 4.857838048488716e-09
iteration 4, reconstruction error: 0.2087857222671696, decrease = 4.842303946706039e-09
PARAFAC2 reconstruction error=0.8189098693271749, variation=2.1520510928851877e-09.
Starting iteration 751
reconstruction error=0.20878571601048193
iteration 1, reconstruction error: 0.20878571112517363, decrease = 4.8853082967870165e-09
iteration 2, reconstruction error: 0.20878570625554754, decrease = 4.869626091252854e-09
iteration 3, reconstruction error: 0.20878570140148486, decrease = 4.854062679582327e-09
iteration 4, reconstruction error: 0.20878569656293233, decrease = 4.838552530861406e-09
PARAFAC2 reconstruction error=0.8189098671768166, variation=2.1503583358395417e-09.
Starting iteration 752
reconstruction error=0.208785690311264
iteration 1, reconstruction error: 0.20878568542978276, decrease = 4.881481246998831e-09
iteration 2, reconstruction error: 0.208785680563959, decrease = 4.8658237716825425e-09
iteration 3, reconstruction error: 0.20878567571367085, decrease = 4.8502881433432066e-09
iteration 4, reconstruction error: 0.208785670878869, decrease = 4.8348018366617396e-09
PARAFAC2 reconstruction error=0.8189098650281492, variation=2.148667355150735e-09.
Starting iteration 753
reconstruction error=0.2087856646322101
iteration 1, reconstruction error: 0.2087856597545574, decrease = 4.8776526984095625e-09
iteration 2, reconstruction error: 0.2087856548925306, decrease = 4.8620268089383245e-09
iteration 3, reconstruction error: 0.20878565004601474, decrease = 4.846515855305711e-09
iteration 4, reconstruction error: 0.2087856452149558, decrease = 4.831058941778821e-09
PARAFAC2 reconstruction error=0.8189098628811717, variation=2.146977484684953e-09.
Starting iteration 754
reconstruction error=0.20878563897330618
iteration 1, reconstruction error: 0.20878563409947898, decrease = 4.873827202933612e-09
iteration 2, reconstruction error: 0.2087856292412514, decrease = 4.858227570236906e-09
iteration 3, reconstruction error: 0.2087856243985063, decrease = 4.8427451215804496e-09
iteration 4, reconstruction error: 0.20878561957118566, decrease = 4.8273206265658786e-09
PARAFAC2 reconstruction error=0.8189098607358826, variation=2.1452891685314057e-09.
Starting iteration 755
reconstruction error=0.20878561333454168
iteration 1, reconstruction error: 0.20878560846453298, decrease = 4.870008701862716e-09
iteration 2, reconstruction error: 0.20878560361009776, decrease = 4.85443521491824e-09
iteration 3, reconstruction error: 0.20878559877111866, decrease = 4.838979106303043e-09
iteration 4, reconstruction error: 0.20878559394753718, decrease = 4.823581478685668e-09
PARAFAC2 reconstruction error=0.8189098585922805, variation=2.1436020736231853e-09.
Starting iteration 756
reconstruction error=0.20878558771589262
iteration 1, reconstruction error: 0.20878558284970092, decrease = 4.866191699592903e-09
iteration 2, reconstruction error: 0.20878557799905723, decrease = 4.850643692266843e-09
iteration 3, reconstruction error: 0.20878557316384194, decrease = 4.83521528371611e-09
iteration 4, reconstruction error: 0.20878556834399645, decrease = 4.819845494941077e-09
PARAFAC2 reconstruction error=0.818909856450364, variation=2.1419165330271994e-09.
Starting iteration 757
reconstruction error=0.20878556211734592
iteration 1, reconstruction error: 0.2087855572549697, decrease = 4.86237622387975e-09
iteration 2, reconstruction error: 0.20878555240811444, decrease = 4.846855250484339e-09
iteration 3, reconstruction error: 0.20878554757665754, decrease = 4.831456901221998e-09
iteration 4, reconstruction error: 0.2087855427605465, decrease = 4.816111037753146e-09
PARAFAC2 reconstruction error=0.8189098543101317, variation=2.1402322136765406e-09.
Starting iteration 758
reconstruction error=0.2087855365388839
iteration 1, reconstruction error: 0.20878553168032316, decrease = 4.858560748166596e-09
iteration 2, reconstruction error: 0.20878552683725174, decrease = 4.843071416127387e-09
iteration 3, reconstruction error: 0.208785522009554, decrease = 4.827697741571768e-09
iteration 4, reconstruction error: 0.20878551719717126, decrease = 4.812382742303001e-09
PARAFAC2 reconstruction error=0.8189098521715825, variation=2.1385492265935113e-09.
Starting iteration 759
reconstruction error=0.20878551098049505
iteration 1, reconstruction error: 0.2087855061257436, decrease = 4.854751461946805e-09
iteration 2, reconstruction error: 0.20878550128645293, decrease = 4.839290662639328e-09
iteration 3, reconstruction error: 0.2087854964625066, decrease = 4.823946325727135e-09
iteration 4, reconstruction error: 0.2087854916538537, decrease = 4.808652892540621e-09
PARAFAC2 reconstruction error=0.8189098500347152, variation=2.1368673497335067e-09.
Starting iteration 760
reconstruction error=0.20878548544215933
iteration 1, reconstruction error: 0.2087854805912133, decrease = 4.850946033752024e-09
iteration 2, reconstruction error: 0.2087854757557026, decrease = 4.835510686307387e-09
iteration 3, reconstruction error: 0.2087854709355062, decrease = 4.820196408683586e-09
iteration 4, reconstruction error: 0.20878546613057852, decrease = 4.80492767795937e-09
PARAFAC2 reconstruction error=0.8189098478995278, variation=2.135187360252644e-09.
Starting iteration 761
reconstruction error=0.20878545992386674
iteration 1, reconstruction error: 0.2087854550767215, decrease = 4.847145240738371e-09
iteration 2, reconstruction error: 0.20878545024498543, decrease = 4.83173606680154e-09
iteration 3, reconstruction error: 0.20878544542854274, decrease = 4.816442689126177e-09
iteration 4, reconstruction error: 0.20878544062733026, decrease = 4.801212483140915e-09
PARAFAC2 reconstruction error=0.8189098457660193, variation=2.1335084809948057e-09.
Starting iteration 762
reconstruction error=0.2087854344255904
iteration 1, reconstruction error: 0.2087854295822475, decrease = 4.843342893412483e-09
iteration 2, reconstruction error: 0.2087854247542829, decrease = 4.827964583675737e-09
iteration 3, reconstruction error: 0.20878541994158242, decrease = 4.8127004881326485e-09
iteration 4, reconstruction error: 0.20878541514409438, decrease = 4.797488045715781e-09
PARAFAC2 reconstruction error=0.8189098436341885, variation=2.1318308229822946e-09.
Starting iteration 763
reconstruction error=0.20878540894732325
iteration 1, reconstruction error: 0.208785404107775, decrease = 4.839548262136617e-09
iteration 2, reconstruction error: 0.2087853992835819, decrease = 4.824193100549934e-09
iteration 3, reconstruction error: 0.20878539447462283, decrease = 4.808959064295237e-09
iteration 4, reconstruction error: 0.2087853896808492, decrease = 4.793773628053444e-09
PARAFAC2 reconstruction error=0.8189098415040338, variation=2.130154719282018e-09.
Starting iteration 764
reconstruction error=0.20878538348904455
iteration 1, reconstruction error: 0.20878537865329172, decrease = 4.835752825949058e-09
iteration 2, reconstruction error: 0.20878537383286394, decrease = 4.820427779161918e-09
iteration 3, reconstruction error: 0.20878536902764475, decrease = 4.805219194770061e-09
iteration 4, reconstruction error: 0.208785364237584, decrease = 4.7900607369477655e-09
PARAFAC2 reconstruction error=0.8189098393755541, variation=2.128479725804766e-09.
Starting iteration 765
reconstruction error=0.20878535805074133
iteration 1, reconstruction error: 0.20878535321877925, decrease = 4.831962080453778e-09
iteration 2, reconstruction error: 0.20878534840211452, decrease = 4.816664733731102e-09
iteration 3, reconstruction error: 0.20878534360063286, decrease = 4.801481656713236e-09
iteration 4, reconstruction error: 0.2087853388142827, decrease = 4.786350149554863e-09
PARAFAC2 reconstruction error=0.8189098372487477, variation=2.126806397662051e-09.
Starting iteration 766
reconstruction error=0.20878533263239657
iteration 1, reconstruction error: 0.20878532780421755, decrease = 4.828179023252943e-09
iteration 2, reconstruction error: 0.20878532299131736, decrease = 4.812900189499203e-09
iteration 3, reconstruction error: 0.20878531819356944, decrease = 4.79774792117027e-09
iteration 4, reconstruction error: 0.20878531341092288, decrease = 4.782646556567016e-09
PARAFAC2 reconstruction error=0.8189098351236136, variation=2.125134068720058e-09.
Starting iteration 767
reconstruction error=0.20878530723399175
iteration 1, reconstruction error: 0.20878530240960125, decrease = 4.824390498203712e-09
iteration 2, reconstruction error: 0.2087852976004579, decrease = 4.809143361317325e-09
iteration 3, reconstruction error: 0.20878529280643982, decrease = 4.794018071407891e-09
iteration 4, reconstruction error: 0.2087852880274992, decrease = 4.778940604355242e-09
PARAFAC2 reconstruction error=0.8189098330001501, variation=2.1234635161349047e-09.
Starting iteration 768
reconstruction error=0.2087852818555154
iteration 1, reconstruction error: 0.2087852770349064, decrease = 4.820608995315112e-09
iteration 2, reconstruction error: 0.20878527222951682, decrease = 4.805389586248765e-09
iteration 3, reconstruction error: 0.20878526743922166, decrease = 4.790295160539415e-09
iteration 4, reconstruction error: 0.2087852626639839, decrease = 4.775237760767936e-09
PARAFAC2 reconstruction error=0.8189098308783561, variation=2.1217939627504734e-09.
Starting iteration 769
reconstruction error=0.20878525649694676
iteration 1, reconstruction error: 0.20878525168011855, decrease = 4.816828214071478e-09
iteration 2, reconstruction error: 0.20878524687847655, decrease = 4.801642000673567e-09
iteration 3, reconstruction error: 0.20878524209191276, decrease = 4.786563784220377e-09
iteration 4, reconstruction error: 0.20878523732037016, decrease = 4.7715426054750765e-09
PARAFAC2 reconstruction error=0.8189098287582303, variation=2.120125852655974e-09.
Starting iteration 770
reconstruction error=0.2087852311582727
iteration 1, reconstruction error: 0.2087852263452175, decrease = 4.813055176633441e-09
iteration 2, reconstruction error: 0.2087852215473285, decrease = 4.797889002761124e-09
iteration 3, reconstruction error: 0.20878521676448455, decrease = 4.7828439542207946e-09
iteration 4, reconstruction error: 0.20878521199664019, decrease = 4.767844369313323e-09
PARAFAC2 reconstruction error=0.8189098266397711, variation=2.118459185851407e-09.
Starting iteration 771
reconstruction error=0.2087852058394778
iteration 1, reconstruction error: 0.20878520103019488, decrease = 4.8092829163515205e-09
iteration 2, reconstruction error: 0.20878519623604808, decrease = 4.794146801767596e-09
iteration 3, reconstruction error: 0.20878519145692553, decrease = 4.779122542153402e-09
iteration 4, reconstruction error: 0.20878518669277318, decrease = 4.764152350400508e-09
PARAFAC2 reconstruction error=0.8189098245229773, variation=2.1167937402921666e-09.
Starting iteration 772
reconstruction error=0.20878518054054443
iteration 1, reconstruction error: 0.2087851757350315, decrease = 4.805512932026801e-09
iteration 2, reconstruction error: 0.20878517094462842, decrease = 4.790403074217409e-09
iteration 3, reconstruction error: 0.20878516616921874, decrease = 4.7754096788032996e-09
iteration 4, reconstruction error: 0.2087851614087554, decrease = 4.760463356845435e-09
PARAFAC2 reconstruction error=0.8189098224078476, variation=2.1151297380228584e-09.
Starting iteration 773
reconstruction error=0.20878515526145563
iteration 1, reconstruction error: 0.20878515045970727, decrease = 4.801748360039326e-09
iteration 2, reconstruction error: 0.2087851456730441, decrease = 4.786663176936656e-09
iteration 3, reconstruction error: 0.2087851409013527, decrease = 4.771691403115952e-09
iteration 4, reconstruction error: 0.20878513614457062, decrease = 4.7567820793403826e-09
PARAFAC2 reconstruction error=0.8189098202943805, variation=2.1134670680211798e-09.
Starting iteration 774
reconstruction error=0.20878513000219753
iteration 1, reconstruction error: 0.2087851252042145, decrease = 4.79798303865131e-09
iteration 2, reconstruction error: 0.2087851204212881, decrease = 4.782926388280373e-09
iteration 3, reconstruction error: 0.2087851156533011, decrease = 4.767987005216412e-09
iteration 4, reconstruction error: 0.20878511090020724, decrease = 4.7530938629414266e-09
PARAFAC2 reconstruction error=0.8189098181825747, variation=2.111805841309433e-09.
Starting iteration 775
reconstruction error=0.2087851047627525
iteration 1, reconstruction error: 0.2087850999685294, decrease = 4.794223101844963e-09
iteration 2, reconstruction error: 0.20878509518933672, decrease = 4.779192680492983e-09
iteration 3, reconstruction error: 0.208785090425058, decrease = 4.764278721536286e-09
iteration 4, reconstruction error: 0.20878508567564538, decrease = 4.74941261319195e-09
PARAFAC2 reconstruction error=0.818909816072429, variation=2.110145724820711e-09.
Starting iteration 776
reconstruction error=0.20878507954310885
iteration 1, reconstruction error: 0.2087850747526403, decrease = 4.790468549620286e-09
iteration 2, reconstruction error: 0.20878506997717675, decrease = 4.7754635523755695e-09
iteration 3, reconstruction error: 0.20878506521660548, decrease = 4.760571270523428e-09
iteration 4, reconstruction error: 0.20878506047086795, decrease = 4.74573752518026e-09
PARAFAC2 reconstruction error=0.8189098139639419, variation=2.108487051621921e-09.
Starting iteration 777
reconstruction error=0.20878505434324054
iteration 1, reconstruction error: 0.20878504955652963, decrease = 4.786710916526715e-09
iteration 2, reconstruction error: 0.20878504478479437, decrease = 4.7717352569254246e-09
iteration 3, reconstruction error: 0.20878504002792214, decrease = 4.756872229449982e-09
iteration 4, reconstruction error: 0.20878503528586204, decrease = 4.742060105700219e-09
PARAFAC2 reconstruction error=0.8189098118571122, variation=2.1068297106907607e-09.
Starting iteration 778
reconstruction error=0.2087850291631406
iteration 1, reconstruction error: 0.20878502438017962, decrease = 4.78296097172759e-09
iteration 2, reconstruction error: 0.20878501961217114, decrease = 4.7680084880319384e-09
iteration 3, reconstruction error: 0.20878501485899714, decrease = 4.753173993288229e-09
iteration 4, reconstruction error: 0.2087850101206075, decrease = 4.738389652869657e-09
PARAFAC2 reconstruction error=0.8189098097519381, variation=2.1051741461164397e-09.
Starting iteration 779
reconstruction error=0.20878500400279443
iteration 1, reconstruction error: 0.20878499922358182, decrease = 4.779212608996275e-09
iteration 2, reconstruction error: 0.20878499445929163, decrease = 4.764290184589015e-09
iteration 3, reconstruction error: 0.20878498970981355, decrease = 4.749478088594827e-09
iteration 4, reconstruction error: 0.20878498497509362, decrease = 4.734719921684061e-09
PARAFAC2 reconstruction error=0.8189098076484189, variation=2.103519136653631e-09.
Starting iteration 780
reconstruction error=0.20878497886217506
iteration 1, reconstruction error: 0.20878497408671082, decrease = 4.77546424626496e-09
iteration 2, reconstruction error: 0.2087849693261389, decrease = 4.760571908901667e-09
iteration 3, reconstruction error: 0.20878496458035217, decrease = 4.745786735815827e-09
iteration 4, reconstruction error: 0.20878495984930037, decrease = 4.7310518003218505e-09
PARAFAC2 reconstruction error=0.8189098055465529, variation=2.101866014569964e-09.
Starting iteration 781
reconstruction error=0.20878495374127945
iteration 1, reconstruction error: 0.20878494896955588, decrease = 4.77172357182809e-09
iteration 2, reconstruction error: 0.20878494421270072, decrease = 4.7568551597709785e-09
iteration 3, reconstruction error: 0.20878493947060373, decrease = 4.742096992860212e-09
iteration 4, reconstruction error: 0.20878493474321547, decrease = 4.727388258629617e-09
PARAFAC2 reconstruction error=0.8189098034463385, variation=2.1002144467985318e-09.
Starting iteration 782
reconstruction error=0.2087849286400829
iteration 1, reconstruction error: 0.20878492387209846, decrease = 4.767984451703455e-09
iteration 2, reconstruction error: 0.20878491911895544, decrease = 4.753143018065842e-09
iteration 3, reconstruction error: 0.20878491438054436, decrease = 4.738411080174032e-09
iteration 4, reconstruction error: 0.2087849096568181, decrease = 4.7237262712496175e-09
PARAFAC2 reconstruction error=0.8189098013477751, variation=2.0985633231163092e-09.
Starting iteration 783
reconstruction error=0.20878490355857318
iteration 1, reconstruction error: 0.20878489879432324, decrease = 4.7642499390043724e-09
iteration 2, reconstruction error: 0.20878489404489156, decrease = 4.749431681272398e-09
iteration 3, reconstruction error: 0.20878488931016403, decrease = 4.7347275267117794e-09
iteration 4, reconstruction error: 0.2087848845900944, decrease = 4.720069640695712e-09
PARAFAC2 reconstruction error=0.8189097992508607, variation=2.096914419880136e-09.
Starting iteration 784
reconstruction error=0.2087848784967333
iteration 1, reconstruction error: 0.20878487373621477, decrease = 4.7605185349297585e-09
iteration 2, reconstruction error: 0.2087848689904914, decrease = 4.745723369836696e-09
iteration 3, reconstruction error: 0.20878486425944592, decrease = 4.73104547205061e-09
iteration 4, reconstruction error: 0.20878485954303053, decrease = 4.71641539712131e-09
PARAFAC2 reconstruction error=0.8189097971555941, variation=2.0952666268669873e-09.
Starting iteration 785
reconstruction error=0.20878485345454792
iteration 1, reconstruction error: 0.20878484869776082, decrease = 4.756787103099569e-09
iteration 2, reconstruction error: 0.20878484395573876, decrease = 4.74202205280605e-09
iteration 3, reconstruction error: 0.20878483922836993, decrease = 4.727368829726686e-09
iteration 4, reconstruction error: 0.20878483451560806, decrease = 4.712761875191873e-09
PARAFAC2 reconstruction error=0.8189097950619741, variation=2.0936199440768632e-09.
Starting iteration 786
reconstruction error=0.20878482843199703
iteration 1, reconstruction error: 0.20878482367893747, decrease = 4.753059557049966e-09
iteration 2, reconstruction error: 0.20878481894061676, decrease = 4.7383207080198275e-09
iteration 3, reconstruction error: 0.20878481421692457, decrease = 4.7236921874027615e-09
iteration 4, reconstruction error: 0.2087848095078108, decrease = 4.709113765599682e-09
PARAFAC2 reconstruction error=0.8189097929699992, variation=2.091974926621276e-09.
Starting iteration 787
reconstruction error=0.2087848034290721
iteration 1, reconstruction error: 0.20878479867973623, decrease = 4.749335869025373e-09
iteration 2, reconstruction error: 0.20878479394511376, decrease = 4.734622471858074e-09
iteration 3, reconstruction error: 0.20878478922509439, decrease = 4.720019375348272e-09
iteration 4, reconstruction error: 0.20878478451962565, decrease = 4.705468736876384e-09
PARAFAC2 reconstruction error=0.8189097908796681, variation=2.090331130411016e-09.
Starting iteration 788
reconstruction error=0.20878477844575236
iteration 1, reconstruction error: 0.20878477370013865, decrease = 4.745613707557439e-09
iteration 2, reconstruction error: 0.20878476896920747, decrease = 4.730931174590225e-09
iteration 3, reconstruction error: 0.20878476425285938, decrease = 4.716348089850442e-09
iteration 4, reconstruction error: 0.20878475955103026, decrease = 4.701829120490331e-09
PARAFAC2 reconstruction error=0.8189097887909794, variation=2.0886886664683857e-09.
Starting iteration 789
reconstruction error=0.20878475348202172
iteration 1, reconstruction error: 0.2087847487401263, decrease = 4.741895404114516e-09
iteration 2, reconstruction error: 0.20878474401288954, decrease = 4.727236768697907e-09
iteration 3, reconstruction error: 0.20878473930020341, decrease = 4.712686130226018e-09
iteration 4, reconstruction error: 0.2087847346020201, decrease = 4.698183314610915e-09
PARAFAC2 reconstruction error=0.8189097867039322, variation=2.0870472017264774e-09.
Starting iteration 790
reconstruction error=0.20878472853786775
iteration 1, reconstruction error: 0.2087847237996837, decrease = 4.738184039565496e-09
iteration 2, reconstruction error: 0.20878471907613752, decrease = 4.723546193075023e-09
iteration 3, reconstruction error: 0.2087847143671157, decrease = 4.709021811377667e-09
iteration 4, reconstruction error: 0.2087847096725674, decrease = 4.6945483056504145e-09
PARAFAC2 reconstruction error=0.8189097846185246, variation=2.085407624363711e-09.
Starting iteration 791
reconstruction error=0.20878470361327137
iteration 1, reconstruction error: 0.20878469887879947, decrease = 4.7344718978603595e-09
iteration 2, reconstruction error: 0.20878469415893916, decrease = 4.719860308144419e-09
iteration 3, reconstruction error: 0.20878468945357626, decrease = 4.705362904866561e-09
iteration 4, reconstruction error: 0.20878468476266296, decrease = 4.690913296689914e-09
PARAFAC2 reconstruction error=0.8189097825347554, variation=2.083769157223969e-09.
Starting iteration 792
reconstruction error=0.20878467870821935
iteration 1, reconstruction error: 0.20878467397745343, decrease = 4.7307659178930095e-09
iteration 2, reconstruction error: 0.2087846692612744, decrease = 4.716179030639367e-09
iteration 3, reconstruction error: 0.2087846645595712, decrease = 4.7017031934437625e-09
iteration 4, reconstruction error: 0.20878465987229133, decrease = 4.687279869797223e-09
PARAFAC2 reconstruction error=0.8189097804526235, variation=2.0821319113295544e-09.
Starting iteration 793
reconstruction error=0.20878465382268638
iteration 1, reconstruction error: 0.20878464909563105, decrease = 4.727055330500107e-09
iteration 2, reconstruction error: 0.20878464438313332, decrease = 4.712497725378739e-09
iteration 3, reconstruction error: 0.20878463968508132, decrease = 4.698052002982678e-09
iteration 4, reconstruction error: 0.2087846350014303, decrease = 4.683651022574509e-09
PARAFAC2 reconstruction error=0.8189097783721271, variation=2.080496441791979e-09.
Starting iteration 794
reconstruction error=0.2087846289566724
iteration 1, reconstruction error: 0.20878462423331687, decrease = 4.7233555400261196e-09
iteration 2, reconstruction error: 0.208784619524495, decrease = 4.708821860210932e-09
iteration 3, reconstruction error: 0.208784614830095, decrease = 4.6944000076099e-09
iteration 4, reconstruction error: 0.2087846101500705, decrease = 4.680024506820146e-09
PARAFAC2 reconstruction error=0.8189097762932654, variation=2.0788616383882186e-09.
Starting iteration 795
reconstruction error=0.20878460411014746
iteration 1, reconstruction error: 0.20878459939049482, decrease = 4.719652640927663e-09
iteration 2, reconstruction error: 0.20878459468534422, decrease = 4.705150602468677e-09
iteration 3, reconstruction error: 0.2087845899945954, decrease = 4.6907488171488154e-09
iteration 4, reconstruction error: 0.20878458531819435, decrease = 4.6764010441791015e-09
PARAFAC2 reconstruction error=0.8189097742160366, variation=2.0772288333859024e-09.
Starting iteration 796
reconstruction error=0.20878457928310307
iteration 1, reconstruction error: 0.20878457456714403, decrease = 4.7159590399470375e-09
iteration 2, reconstruction error: 0.2087845698656678, decrease = 4.7014762361019535e-09
iteration 3, reconstruction error: 0.208784565178564, decrease = 4.687103788425517e-09
iteration 4, reconstruction error: 0.20878456050578098, decrease = 4.6727830216308774e-09
PARAFAC2 reconstruction error=0.8189097721404397, variation=2.075596916562006e-09.
Starting iteration 797
reconstruction error=0.208784554475523
iteration 1, reconstruction error: 0.2087845497632599, decrease = 4.712263079742485e-09
iteration 2, reconstruction error: 0.20878454506544722, decrease = 4.69781269440972e-09
iteration 3, reconstruction error: 0.20878454038198693, decrease = 4.683460286258878e-09
iteration 4, reconstruction error: 0.20878453571282118, decrease = 4.669165748483195e-09
PARAFAC2 reconstruction error=0.818909770066473, variation=2.0739666650726463e-09.
Starting iteration 798
reconstruction error=0.2087845296873866
iteration 1, reconstruction error: 0.20878452497881406, decrease = 4.708572531875177e-09
iteration 2, reconstruction error: 0.20878452028466954, decrease = 4.694144517536358e-09
iteration 3, reconstruction error: 0.2087845156048466, decrease = 4.6798229458300256e-09
iteration 4, reconstruction error: 0.2087845109392958, decrease = 4.665550806803864e-09
PARAFAC2 reconstruction error=0.8189097679941356, variation=2.072337412784009e-09.
Starting iteration 799
reconstruction error=0.20878450491868222
iteration 1, reconstruction error: 0.20878450021379483, decrease = 4.704887396345114e-09
iteration 2, reconstruction error: 0.20878449552331388, decrease = 4.690480948088549e-09
iteration 3, reconstruction error: 0.20878449084712822, decrease = 4.676185660912324e-09
iteration 4, reconstruction error: 0.20878448618519163, decrease = 4.6619365867694995e-09
PARAFAC2 reconstruction error=0.8189097659234259, variation=2.070709714807606e-09.
Starting iteration 800
reconstruction error=0.20878448016939674
iteration 1, reconstruction error: 0.2087844754681922, decrease = 4.701204536772252e-09
iteration 2, reconstruction error: 0.20878447078137402, decrease = 4.6868181835524325e-09
iteration 3, reconstruction error: 0.20878446610882107, decrease = 4.6725529556645995e-09
iteration 4, reconstruction error: 0.20878446145049173, decrease = 4.658329333384614e-09
PARAFAC2 reconstruction error=0.8189097638543426, variation=2.0690833490988325e-09.
Starting iteration 801
reconstruction error=0.20878445543950414
iteration 1, reconstruction error: 0.20878445074198781, decrease = 4.697516320373296e-09
iteration 2, reconstruction error: 0.20878444605882085, decrease = 4.683166965335772e-09
iteration 3, reconstruction error: 0.20878444138989907, decrease = 4.668921776973534e-09
iteration 4, reconstruction error: 0.20878443673517466, decrease = 4.654724411468081e-09
PARAFAC2 reconstruction error=0.8189097617868842, variation=2.0674583156576887e-09.
Starting iteration 802
reconstruction error=0.2087844307289982
iteration 1, reconstruction error: 0.208784426035157, decrease = 4.693841176850455e-09
iteration 2, reconstruction error: 0.20878442135564432, decrease = 4.679512694005794e-09
iteration 3, reconstruction error: 0.2087844166903506, decrease = 4.665293706906937e-09
iteration 4, reconstruction error: 0.20878441203923345, decrease = 4.651117158083196e-09
PARAFAC2 reconstruction error=0.8189097597210498, variation=2.0658343924395695e-09.
Starting iteration 803
reconstruction error=0.2087844060378596
iteration 1, reconstruction error: 0.20878440134769585, decrease = 4.6901637573704136e-09
iteration 2, reconstruction error: 0.2087843966718321, decrease = 4.675863751746334e-09
iteration 3, reconstruction error: 0.20878439201016413, decrease = 4.6616679683086915e-09
iteration 4, reconstruction error: 0.20878438736264496, decrease = 4.647519175060566e-09
PARAFAC2 reconstruction error=0.8189097576568376, variation=2.0642122455782896e-09.
Starting iteration 804
reconstruction error=0.20878438136607386
iteration 1, reconstruction error: 0.2087843766795806, decrease = 4.6864932490287e-09
iteration 2, reconstruction error: 0.20878437200736727, decrease = 4.672213338441367e-09
iteration 3, reconstruction error: 0.20878436734932201, decrease = 4.658045255068188e-09
iteration 4, reconstruction error: 0.20878436270539774, decrease = 4.64392427290683e-09
PARAFAC2 reconstruction error=0.8189097555942465, variation=2.062591097917732e-09.
Starting iteration 805
reconstruction error=0.2087843567136232
iteration 1, reconstruction error: 0.20878435203080045, decrease = 4.682822740686987e-09
iteration 2, reconstruction error: 0.20878434736222987, decrease = 4.668570585675269e-09
iteration 3, reconstruction error: 0.20878434270780186, decrease = 4.6544280096760815e-09
iteration 4, reconstruction error: 0.20878433806747326, decrease = 4.640328593596976e-09
PARAFAC2 reconstruction error=0.8189097535332752, variation=2.060971282524804e-09.
Starting iteration 806
reconstruction error=0.20878433208049138
iteration 1, reconstruction error: 0.208784327401333, decrease = 4.6791583940830606e-09
iteration 2, reconstruction error: 0.20878432273640513, decrease = 4.664927860664747e-09
iteration 3, reconstruction error: 0.2087843180855952, decrease = 4.650809931616706e-09
iteration 4, reconstruction error: 0.20878431344885995, decrease = 4.6367352457554745e-09
PARAFAC2 reconstruction error=0.8189097514739222, variation=2.0593530214441103e-09.
Starting iteration 807
reconstruction error=0.20878430746666696
iteration 1, reconstruction error: 0.20878430279117213, decrease = 4.675494824635251e-09
iteration 2, reconstruction error: 0.2087842981298808, decrease = 4.661291325147587e-09
iteration 3, reconstruction error: 0.20878429348268585, decrease = 4.6471949621818e-09
iteration 4, reconstruction error: 0.20878428884953856, decrease = 4.633147282495642e-09
PARAFAC2 reconstruction error=0.8189097494161862, variation=2.0577359816087437e-09.
Starting iteration 808
reconstruction error=0.2087842828721276
iteration 1, reconstruction error: 0.2087842782002948, decrease = 4.671832809499676e-09
iteration 2, reconstruction error: 0.20878427354263776, decrease = 4.6576570378320525e-09
iteration 3, reconstruction error: 0.2087842688990531, decrease = 4.643584655683597e-09
iteration 4, reconstruction error: 0.2087842642694923, decrease = 4.629560818036893e-09
PARAFAC2 reconstruction error=0.818909747360066, variation=2.0561201630187043e-09.
Starting iteration 809
reconstruction error=0.20878425829686104
iteration 1, reconstruction error: 0.20878425362868405, decrease = 4.668176983857464e-09
iteration 2, reconstruction error: 0.2087842489746628, decrease = 4.6540212517154345e-09
iteration 3, reconstruction error: 0.2087842443346862, decrease = 4.639976597387019e-09
iteration 4, reconstruction error: 0.2087842397087064, decrease = 4.6259797936709646e-09
PARAFAC2 reconstruction error=0.8189097453055602, variation=2.0545058987408993e-09.
Starting iteration 810
reconstruction error=0.20878423374085026
iteration 1, reconstruction error: 0.20878422907632913, decrease = 4.664521130459676e-09
iteration 2, reconstruction error: 0.20878422442593517, decrease = 4.650393958804955e-09
iteration 3, reconstruction error: 0.20878421978956582, decrease = 4.636369344002134e-09
iteration 4, reconstruction error: 0.2087842151671655, decrease = 4.622400323617271e-09
PARAFAC2 reconstruction error=0.8189097432526673, variation=2.0528928557084214e-09.
Starting iteration 811
reconstruction error=0.208784209204083
iteration 1, reconstruction error: 0.2087842045432131, decrease = 4.660869912243015e-09
iteration 2, reconstruction error: 0.20878419989644567, decrease = 4.646767415295017e-09
iteration 3, reconstruction error: 0.2087841952636751, decrease = 4.632770583823387e-09
iteration 4, reconstruction error: 0.20878419064485504, decrease = 4.618820048651884e-09
PARAFAC2 reconstruction error=0.8189097412013863, variation=2.0512810339212706e-09.
Starting iteration 812
reconstruction error=0.20878418468653917
iteration 1, reconstruction error: 0.2087841800293174, decrease = 4.657221774895248e-09
iteration 2, reconstruction error: 0.20878417538617577, decrease = 4.64314162118562e-09
iteration 3, reconstruction error: 0.20878417075700242, decrease = 4.629173350201299e-09
iteration 4, reconstruction error: 0.20878416614175802, decrease = 4.615244408867625e-09
PARAFAC2 reconstruction error=0.8189097391517156, variation=2.049670655424052e-09.
Starting iteration 813
reconstruction error=0.208784160188205
iteration 1, reconstruction error: 0.20878415553462829, decrease = 4.6535767184163745e-09
iteration 2, reconstruction error: 0.20878415089510702, decrease = 4.6395212671690444e-09
iteration 3, reconstruction error: 0.20878414626953168, decrease = 4.625575339423094e-09
iteration 4, reconstruction error: 0.20878414165785597, decrease = 4.61167570797727e-09
PARAFAC2 reconstruction error=0.8189097371036538, variation=2.0480618312390675e-09.
Starting iteration 814
reconstruction error=0.20878413570906507
iteration 1, reconstruction error: 0.20878413105912802, decrease = 4.64993704651917e-09
iteration 2, reconstruction error: 0.20878412642322636, decrease = 4.63590166255301e-09
iteration 3, reconstruction error: 0.20878412180124437, decrease = 4.621981991581592e-09
iteration 4, reconstruction error: 0.20878411719313658, decrease = 4.608107784243032e-09
PARAFAC2 reconstruction error=0.8189097350571999, variation=2.046453895232503e-09.
Starting iteration 815
reconstruction error=0.20878411124910015
iteration 1, reconstruction error: 0.20878410660280583, decrease = 4.646294321508648e-09
iteration 2, reconstruction error: 0.2087841019705176, decrease = 4.632288219674763e-09
iteration 3, reconstruction error: 0.2087840973521236, decrease = 4.618394000566184e-09
iteration 4, reconstruction error: 0.20878409274758453, decrease = 4.604539083352677e-09
PARAFAC2 reconstruction error=0.8189097330123526, variation=2.044847291493568e-09.
Starting iteration 816
reconstruction error=0.20878408680829794
iteration 1, reconstruction error: 0.2087840821656425, decrease = 4.642655426767561e-09
iteration 2, reconstruction error: 0.2087840775369623, decrease = 4.628680216889336e-09
iteration 3, reconstruction error: 0.20878407292215861, decrease = 4.614803678082424e-09
iteration 4, reconstruction error: 0.2087840683211797, decrease = 4.600978903424036e-09
PARAFAC2 reconstruction error=0.8189097309691102, variation=2.0432423530891697e-09.
Starting iteration 817
reconstruction error=0.20878406238664374
iteration 1, reconstruction error: 0.20878405774761793, decrease = 4.63902580238873e-09
iteration 2, reconstruction error: 0.20878405312254888, decrease = 4.625069049968289e-09
iteration 3, reconstruction error: 0.2087840485113293, decrease = 4.6112195728476024e-09
iteration 4, reconstruction error: 0.2087840439139114, decrease = 4.597417918583702e-09
PARAFAC2 reconstruction error=0.8189097289274714, variation=2.0416388579747036e-09.
Starting iteration 818
reconstruction error=0.20878403798411613
iteration 1, reconstruction error: 0.20878403334872228, decrease = 4.635393846541547e-09
iteration 2, reconstruction error: 0.2087840287272597, decrease = 4.621462573739521e-09
iteration 3, reconstruction error: 0.20878402411962194, decrease = 4.607637771325557e-09
iteration 4, reconstruction error: 0.2087840195257627, decrease = 4.593859237456144e-09
PARAFAC2 reconstruction error=0.818909726887435, variation=2.0400363620609596e-09.
Starting iteration 819
reconstruction error=0.20878401360070495
iteration 1, reconstruction error: 0.20878400896894073, decrease = 4.631764222162715e-09
iteration 2, reconstruction error: 0.20878400435108155, decrease = 4.617859178379646e-09
iteration 3, reconstruction error: 0.20878399974701714, decrease = 4.604064407498498e-09
iteration 4, reconstruction error: 0.2087839951567127, decrease = 4.590304442109172e-09
PARAFAC2 reconstruction error=0.8189097248489999, variation=2.0384350873925428e-09.
Starting iteration 820
reconstruction error=0.20878398923639496
iteration 1, reconstruction error: 0.20878398460825034, decrease = 4.628144617546681e-09
iteration 2, reconstruction error: 0.20878397999398995, decrease = 4.614260390445324e-09
iteration 3, reconstruction error: 0.2087839753935081, decrease = 4.600481856575911e-09
iteration 4, reconstruction error: 0.2087839708067531, decrease = 4.586755003588294e-09
PARAFAC2 reconstruction error=0.8189097228121645, variation=2.036835478058663e-09.
Starting iteration 821
reconstruction error=0.20878396489116527
iteration 1, reconstruction error: 0.20878396026664336, decrease = 4.624521904306178e-09
iteration 2, reconstruction error: 0.20878395565598099, decrease = 4.610662379667119e-09
iteration 3, reconstruction error: 0.2087839510590686, decrease = 4.5969123785294386e-09
iteration 4, reconstruction error: 0.208783946475863, decrease = 4.583205592822992e-09
PARAFAC2 reconstruction error=0.8189097207769273, variation=2.0352372009924125e-09.
Starting iteration 822
reconstruction error=0.20878394056500285
iteration 1, reconstruction error: 0.2087839359440998, decrease = 4.6209030490906855e-09
iteration 2, reconstruction error: 0.20878393133703005, decrease = 4.607069753470583e-09
iteration 3, reconstruction error: 0.20878392674368945, decrease = 4.59334059677019e-09
iteration 4, reconstruction error: 0.2087839221640294, decrease = 4.5796600400827e-09
PARAFAC2 reconstruction error=0.8189097187432874, variation=2.0336398121045818e-09.
Starting iteration 823
reconstruction error=0.20878391625789153
iteration 1, reconstruction error: 0.2087839116406042, decrease = 4.6172873302552375e-09
iteration 2, reconstruction error: 0.2087839070371263, decrease = 4.603477904430164e-09
iteration 3, reconstruction error: 0.2087839024473513, decrease = 4.589775004504304e-09
iteration 4, reconstruction error: 0.2087838978712353, decrease = 4.576115986143492e-09
PARAFAC2 reconstruction error=0.8189097167112432, variation=2.0320441995735905e-09.
Starting iteration 824
reconstruction error=0.2087838919698136
iteration 1, reconstruction error: 0.208783887356142, decrease = 4.613671583664214e-09
iteration 2, reconstruction error: 0.20878388275625132, decrease = 4.599890690570874e-09
iteration 3, reconstruction error: 0.20878387817004118, decrease = 4.586210133883384e-09
iteration 4, reconstruction error: 0.20878387359746534, decrease = 4.572575845740445e-09
PARAFAC2 reconstruction error=0.8189097146807935, variation=2.030449697265624e-09.
Starting iteration 825
reconstruction error=0.20878386770075982
iteration 1, reconstruction error: 0.20878386309069477, decrease = 4.610065051924295e-09
iteration 2, reconstruction error: 0.20878385849439204, decrease = 4.596302727311041e-09
iteration 3, reconstruction error: 0.20878385391174215, decrease = 4.5826498984435915e-09
iteration 4, reconstruction error: 0.20878384934270108, decrease = 4.5690410621634925e-09
PARAFAC2 reconstruction error=0.8189097126519369, variation=2.0288566382475892e-09.
Starting iteration 826
reconstruction error=0.20878384345070788
iteration 1, reconstruction error: 0.2087838388442509, decrease = 4.606456993627717e-09
iteration 2, reconstruction error: 0.20878383425152766, decrease = 4.592723229501772e-09
iteration 3, reconstruction error: 0.2087838296724372, decrease = 4.579090467915492e-09
iteration 4, reconstruction error: 0.20878382510693166, decrease = 4.565505529185998e-09
PARAFAC2 reconstruction error=0.818909710624672, variation=2.027264911497184e-09.
Starting iteration 827
reconstruction error=0.20878381921964473
iteration 1, reconstruction error: 0.20878381461679035, decrease = 4.602854375423959e-09
iteration 2, reconstruction error: 0.2087838100276482, decrease = 4.589142149624692e-09
iteration 3, reconstruction error: 0.20878380545211334, decrease = 4.5755348676568275e-09
iteration 4, reconstruction error: 0.20878380089013948, decrease = 4.561973854233514e-09
PARAFAC2 reconstruction error=0.8189097085989978, variation=2.025674183947501e-09.
Starting iteration 828
reconstruction error=0.2087837950075549
iteration 1, reconstruction error: 0.20878379040829934, decrease = 4.599255559734061e-09
iteration 2, reconstruction error: 0.20878378582273588, decrease = 4.585563456727115e-09
iteration 3, reconstruction error: 0.2087837812507543, decrease = 4.571981571110939e-09
iteration 4, reconstruction error: 0.2087837766923098, decrease = 4.558444510749382e-09
PARAFAC2 reconstruction error=0.8189097065749125, variation=2.02408534377696e-09.
Starting iteration 829
reconstruction error=0.20878377081442226
iteration 1, reconstruction error: 0.20878376621876626, decrease = 4.5956559946436215e-09
iteration 2, reconstruction error: 0.20878376163677154, decrease = 4.5819947280811846e-09
iteration 3, reconstruction error: 0.20878375706834015, decrease = 4.5684313831895196e-09
iteration 4, reconstruction error: 0.2087837525134227, decrease = 4.55491744322245e-09
PARAFAC2 reconstruction error=0.8189097045524151, variation=2.0224973917848388e-09.
Starting iteration 830
reconstruction error=0.2087837466402284
iteration 1, reconstruction error: 0.20878374204816808, decrease = 4.592060315333768e-09
iteration 2, reconstruction error: 0.2087837374697475, decrease = 4.578420587098009e-09
iteration 3, reconstruction error: 0.20878373290486243, decrease = 4.564885053293111e-09
iteration 4, reconstruction error: 0.20878372835346434, decrease = 4.55139809174554e-09
PARAFAC2 reconstruction error=0.8189097025315043, variation=2.020910772060347e-09.
Starting iteration 831
reconstruction error=0.20878372248496402
iteration 1, reconstruction error: 0.20878371789649247, decrease = 4.588471547162243e-09
iteration 2, reconstruction error: 0.20878371332164058, decrease = 4.574851886207654e-09
iteration 3, reconstruction error: 0.20878370876029723, decrease = 4.5613433585778296e-09
iteration 4, reconstruction error: 0.2087837042124239, decrease = 4.547873327931384e-09
PARAFAC2 reconstruction error=0.8189097005121786, variation=2.0193257066480896e-09.
Starting iteration 832
reconstruction error=0.20878369834860833
iteration 1, reconstruction error: 0.20878369376372558, decrease = 4.584882751235142e-09
iteration 2, reconstruction error: 0.20878368919243698, decrease = 4.571288597654544e-09
iteration 3, reconstruction error: 0.20878368463463612, decrease = 4.557800858950856e-09
iteration 4, reconstruction error: 0.20878368009027828, decrease = 4.544357834479484e-09
PARAFAC2 reconstruction error=0.8189096984944368, variation=2.017741751458857e-09.
Starting iteration 833
reconstruction error=0.20878367423114522
iteration 1, reconstruction error: 0.2087836696498512, decrease = 4.581294010819192e-09
iteration 2, reconstruction error: 0.20878366508212132, decrease = 4.56772988877141e-09
iteration 3, reconstruction error: 0.20878366052785832, decrease = 4.5542629945050095e-09
iteration 4, reconstruction error: 0.20878365598701443, decrease = 4.540843895339819e-09
PARAFAC2 reconstruction error=0.8189096964782775, variation=2.0161593505818587e-09.
Starting iteration 834
reconstruction error=0.20878365013256078
iteration 1, reconstruction error: 0.2087836455548486, decrease = 4.577712181541571e-09
iteration 2, reconstruction error: 0.2087836409906797, decrease = 4.564168903931076e-09
iteration 3, reconstruction error: 0.20878363643995304, decrease = 4.550726656615822e-09
iteration 4, reconstruction error: 0.2087836319026223, decrease = 4.537330733356271e-09
PARAFAC2 reconstruction error=0.8189096944636994, variation=2.014578059927885e-09.
Starting iteration 835
reconstruction error=0.20878362605284123
iteration 1, reconstruction error: 0.2087836214787078, decrease = 4.574133433132843e-09
iteration 2, reconstruction error: 0.20878361691809527, decrease = 4.5606125265162945e-09
iteration 3, reconstruction error: 0.2087836123709003, decrease = 4.547194981663338e-09
iteration 4, reconstruction error: 0.20878360783707814, decrease = 4.533822151042699e-09
PARAFAC2 reconstruction error=0.8189096924507013, variation=2.012998101541541e-09.
Starting iteration 836
reconstruction error=0.20878360199196724
iteration 1, reconstruction error: 0.208783597421411, decrease = 4.57055623903635e-09
iteration 2, reconstruction error: 0.20878359286435025, decrease = 4.557060756527065e-09
iteration 3, reconstruction error: 0.20878358832068772, decrease = 4.543662529554737e-09
iteration 4, reconstruction error: 0.20878358379037024, decrease = 4.530317482265289e-09
PARAFAC2 reconstruction error=0.8189096904392817, variation=2.011419586445129e-09.
Starting iteration 837
reconstruction error=0.20878357794992425
iteration 1, reconstruction error: 0.2087835733829429, decrease = 4.566981348652632e-09
iteration 2, reconstruction error: 0.20878356882943463, decrease = 4.553508264892869e-09
iteration 3, reconstruction error: 0.2087835642892938, decrease = 4.540140846609475e-09
iteration 4, reconstruction error: 0.20878355976248333, decrease = 4.526810454263952e-09
PARAFAC2 reconstruction error=0.8189096884294395, variation=2.009842292594044e-09.
Starting iteration 838
reconstruction error=0.20878355392669845
iteration 1, reconstruction error: 0.2087835493632858, decrease = 4.563412647762277e-09
iteration 2, reconstruction error: 0.2087835448133239, decrease = 4.549961907240885e-09
iteration 3, reconstruction error: 0.20878354027670779, decrease = 4.536616110550895e-09
iteration 4, reconstruction error: 0.20878353575339817, decrease = 4.523309615755977e-09
PARAFAC2 reconstruction error=0.818909686421173, variation=2.008266442032891e-09.
Starting iteration 839
reconstruction error=0.20878352992227278
iteration 1, reconstruction error: 0.20878352536242809, decrease = 4.559844696272464e-09
iteration 2, reconstruction error: 0.2087835208160118, decrease = 4.546416298989442e-09
iteration 3, reconstruction error: 0.20878351628291655, decrease = 4.533095232517326e-09
iteration 4, reconstruction error: 0.20878351176310314, decrease = 4.51981341242913e-09
PARAFAC2 reconstruction error=0.8189096844144815, variation=2.006691479650158e-09.
Starting iteration 840
reconstruction error=0.20878350593663345
iteration 1, reconstruction error: 0.20878350138035442, decrease = 4.556279020739851e-09
iteration 2, reconstruction error: 0.2087834968374775, decrease = 4.5428769357425125e-09
iteration 3, reconstruction error: 0.20878349230789933, decrease = 4.529578156997616e-09
iteration 4, reconstruction error: 0.20878348779157904, decrease = 4.516320289971176e-09
PARAFAC2 reconstruction error=0.8189096824093628, variation=2.005118737713474e-09.
Starting iteration 841
reconstruction error=0.208783481969759
iteration 1, reconstruction error: 0.20878347741704095, decrease = 4.552718035899517e-09
iteration 2, reconstruction error: 0.20878347287770269, decrease = 4.5393382663849735e-09
iteration 3, reconstruction error: 0.20878346835164235, decrease = 4.526060332077364e-09
iteration 4, reconstruction error: 0.2087834638388152, decrease = 4.5128271675132225e-09
PARAFAC2 reconstruction error=0.8189096804058165, variation=2.0035463288436972e-09.
Starting iteration 842
reconstruction error=0.20878345802164158
iteration 1, reconstruction error: 0.208783453472483, decrease = 4.549158577615842e-09
iteration 2, reconstruction error: 0.2087834489366795, decrease = 4.535803510563596e-09
iteration 3, reconstruction error: 0.20878344441413002, decrease = 4.522549473806592e-09
iteration 4, reconstruction error: 0.20878343990479062, decrease = 4.509339401881363e-09
PARAFAC2 reconstruction error=0.8189096784038408, variation=2.00197569633076e-09.
Starting iteration 843
reconstruction error=0.20878343409225972
iteration 1, reconstruction error: 0.2087834295466552, decrease = 4.545604503913836e-09
iteration 2, reconstruction error: 0.20878342501438651, decrease = 4.532268699231068e-09
iteration 3, reconstruction error: 0.20878342049534712, decrease = 4.519039392691937e-09
iteration 4, reconstruction error: 0.20878341598949315, decrease = 4.505853967717854e-09
PARAFAC2 reconstruction error=0.8189096764034345, variation=2.00040628506315e-09.
Starting iteration 844
reconstruction error=0.20878341018160107
iteration 1, reconstruction error: 0.20878340563955064, decrease = 4.54205043021183e-09
iteration 2, reconstruction error: 0.2087834011108121, decrease = 4.528738550835243e-09
iteration 3, reconstruction error: 0.2087833965952782, decrease = 4.515533891247259e-09
iteration 4, reconstruction error: 0.20878339209290728, decrease = 4.502370920533849e-09
PARAFAC2 reconstruction error=0.8189096744045959, variation=1.9988385391300767e-09.
Starting iteration 845
reconstruction error=0.2087833862896465
iteration 1, reconstruction error: 0.2087833817511478, decrease = 4.538498687978176e-09
iteration 2, reconstruction error: 0.20878337722593399, decrease = 4.525213814776663e-09
iteration 3, reconstruction error: 0.20878337271390557, decrease = 4.512028417558156e-09
iteration 4, reconstruction error: 0.20878336821501622, decrease = 4.4988893443953515e-09
PARAFAC2 reconstruction error=0.8189096724073246, variation=1.997271348308516e-09.
Starting iteration 846
reconstruction error=0.20878336241638662
iteration 1, reconstruction error: 0.2087833578814343, decrease = 4.534952330326192e-09
iteration 2, reconstruction error: 0.2087833533597437, decrease = 4.521690577519166e-09
iteration 3, reconstruction error: 0.2087833488512146, decrease = 4.50852910560684e-09
iteration 4, reconstruction error: 0.2087833443558045, decrease = 4.4954100997252056e-09
PARAFAC2 reconstruction error=0.8189096704116184, variation=1.9957061558883993e-09.
Starting iteration 847
reconstruction error=0.20878333856179923
iteration 1, reconstruction error: 0.20878333403039173, decrease = 4.531407499230866e-09
iteration 2, reconstruction error: 0.20878332951222203, decrease = 4.518169699485597e-09
iteration 3, reconstruction error: 0.20878332500718993, decrease = 4.5050320973683e-09
iteration 4, reconstruction error: 0.20878332051525447, decrease = 4.491935462480612e-09
PARAFAC2 reconstruction error=0.8189096684174764, variation=1.9941420736913074e-09.
Starting iteration 848
reconstruction error=0.20878331472587347
iteration 1, reconstruction error: 0.2087833101980046, decrease = 4.527868857628903e-09
iteration 2, reconstruction error: 0.20878330568335352, decrease = 4.514651097409228e-09
iteration 3, reconstruction error: 0.20878330118181918, decrease = 4.5015343397292185e-09
iteration 4, reconstruction error: 0.20878329669335216, decrease = 4.48846701472938e-09
PARAFAC2 reconstruction error=0.818909666424897, variation=1.992579323761845e-09.
Starting iteration 849
reconstruction error=0.20878329090858938
iteration 1, reconstruction error: 0.20878328638425991, decrease = 4.524329466626398e-09
iteration 2, reconstruction error: 0.2087832818731259, decrease = 4.511134021889518e-09
iteration 3, reconstruction error: 0.2087832773750793, decrease = 4.498046601852934e-09
iteration 4, reconstruction error: 0.20878327289008689, decrease = 4.484992405240362e-09
PARAFAC2 reconstruction error=0.8189096644338794, variation=1.9910176840554072e-09.
Starting iteration 850
reconstruction error=0.20878326710993617
iteration 1, reconstruction error: 0.20878326258914306, decrease = 4.520793100981635e-09
iteration 2, reconstruction error: 0.2087832580815176, decrease = 4.507625467331522e-09
iteration 3, reconstruction error: 0.20878325358696104, decrease = 4.494556560263874e-09
iteration 4, reconstruction error: 0.20878324910543328, decrease = 4.48152776000299e-09
PARAFAC2 reconstruction error=0.8189096624444216, variation=1.9894577096835064e-09.
Starting iteration 851
reconstruction error=0.20878324332989465
iteration 1, reconstruction error: 0.20878323881263094, decrease = 4.5172637019863515e-09
iteration 2, reconstruction error: 0.20878323430851792, decrease = 4.50411302699294e-09
iteration 3, reconstruction error: 0.20878322981744676, decrease = 4.491071153855941e-09
iteration 4, reconstruction error: 0.20878322533938437, decrease = 4.478062393120652e-09
PARAFAC2 reconstruction error=0.818909660456523, variation=1.9878986234900253e-09.
Starting iteration 852
reconstruction error=0.20878321956845317
iteration 1, reconstruction error: 0.20878321505471575, decrease = 4.513737411615537e-09
iteration 2, reconstruction error: 0.20878321055410742, decrease = 4.500608330459954e-09
iteration 3, reconstruction error: 0.20878320606652326, decrease = 4.4875841653801984e-09
iteration 4, reconstruction error: 0.20878320159192007, decrease = 4.4746031879761006e-09
PARAFAC2 reconstruction error=0.8189096584701818, variation=1.986341202631081e-09.
Starting iteration 853
reconstruction error=0.2087831958255895
iteration 1, reconstruction error: 0.20878319131538225, decrease = 4.5102072354641365e-09
iteration 2, reconstruction error: 0.20878318681827554, decrease = 4.497106714795862e-09
iteration 3, reconstruction error: 0.20878318233417295, decrease = 4.484102589241701e-09
iteration 4, reconstruction error: 0.20878317786302664, decrease = 4.471146314299901e-09
PARAFAC2 reconstruction error=0.8189096564853969, variation=1.9847848919951616e-09.
Starting iteration 854
reconstruction error=0.20878317210129052
iteration 1, reconstruction error: 0.2087831675946073, decrease = 4.5066832210505225e-09
iteration 2, reconstruction error: 0.20878316310100375, decrease = 4.4936035448195355e-09
iteration 3, reconstruction error: 0.20878315862037655, decrease = 4.4806272025965654e-09
iteration 4, reconstruction error: 0.20878315415268714, decrease = 4.4676894128681255e-09
PARAFAC2 reconstruction error=0.818909654502167, variation=1.9832299136268716e-09.
Starting iteration 855
reconstruction error=0.20878314839554776
iteration 1, reconstruction error: 0.20878314389238467, decrease = 4.503163092417495e-09
iteration 2, reconstruction error: 0.20878313940227658, decrease = 4.49010809089323e-09
iteration 3, reconstruction error: 0.20878313492512712, decrease = 4.477149456727503e-09
iteration 4, reconstruction error: 0.20878313046088764, decrease = 4.46423947808583e-09
PARAFAC2 reconstruction error=0.8189096525204907, variation=1.981676267526211e-09.
Starting iteration 856
reconstruction error=0.2087831247083374
iteration 1, reconstruction error: 0.20878312020869136, decrease = 4.49964604465336e-09
iteration 2, reconstruction error: 0.20878311572207953, decrease = 4.486611832055232e-09
iteration 3, reconstruction error: 0.2087831112484008, decrease = 4.473678733019071e-09
iteration 4, reconstruction error: 0.20878310678761128, decrease = 4.460789515547958e-09
PARAFAC2 reconstruction error=0.8189096505403667, variation=1.9801240647154827e-09.
Starting iteration 857
reconstruction error=0.2087831010396448
iteration 1, reconstruction error: 0.20878309654351504, decrease = 4.4961297462897676e-09
iteration 2, reconstruction error: 0.20878309206039325, decrease = 4.483121790466171e-09
iteration 3, reconstruction error: 0.20878308759018302, decrease = 4.470210229756688e-09
iteration 4, reconstruction error: 0.2087830831328411, decrease = 4.457341912234014e-09
PARAFAC2 reconstruction error=0.8189096485617937, variation=1.978572972127779e-09.
Starting iteration 858
reconstruction error=0.20878307738946142
iteration 1, reconstruction error: 0.20878307289684178, decrease = 4.492619637419537e-09
iteration 2, reconstruction error: 0.20878306841721084, decrease = 4.479630943965418e-09
iteration 3, reconstruction error: 0.20878306395046597, decrease = 4.46674486287435e-09
iteration 4, reconstruction error: 0.20878305949656942, decrease = 4.453896557121695e-09
PARAFAC2 reconstruction error=0.8189096465847704, variation=1.977023322830007e-09.
Starting iteration 859
reconstruction error=0.20878305375776351
iteration 1, reconstruction error: 0.20878304926865401, decrease = 4.489109500793731e-09
iteration 2, reconstruction error: 0.20878304479250925, decrease = 4.476144760401368e-09
iteration 3, reconstruction error: 0.20878304032922518, decrease = 4.4632840756619885e-09
iteration 4, reconstruction error: 0.20878303587877006, decrease = 4.450455115545537e-09
PARAFAC2 reconstruction error=0.8189096446092956, variation=1.97547478375526e-09.
Starting iteration 860
reconstruction error=0.20878303014453872
iteration 1, reconstruction error: 0.20878302565893314, decrease = 4.485605581416863e-09
iteration 2, reconstruction error: 0.2087830211862715, decrease = 4.472661629950636e-09
iteration 3, reconstruction error: 0.2087830167264528, decrease = 4.45981870877965e-09
iteration 4, reconstruction error: 0.20878301227943222, decrease = 4.447020585107708e-09
PARAFAC2 reconstruction error=0.8189096426353677, variation=1.9739279100150497e-09.
Starting iteration 861
reconstruction error=0.20878300654977397
iteration 1, reconstruction error: 0.20878300206767234, decrease = 4.482101634284419e-09
iteration 2, reconstruction error: 0.20878299759848767, decrease = 4.469184661237691e-09
iteration 3, reconstruction error: 0.20878299314212662, decrease = 4.456361057947333e-09
iteration 4, reconstruction error: 0.20878298869854212, decrease = 4.443584500357645e-09
PARAFAC2 reconstruction error=0.8189096406629859, variation=1.9723818134309568e-09.
Starting iteration 862
reconstruction error=0.20878298297344458
iteration 1, reconstruction error: 0.20878297849484614, decrease = 4.478598436552517e-09
iteration 2, reconstruction error: 0.20878297402913998, decrease = 4.465706165968086e-09
iteration 3, reconstruction error: 0.20878296957623352, decrease = 4.452906460228334e-09
iteration 4, reconstruction error: 0.208782965136082, decrease = 4.44015152423205e-09
PARAFAC2 reconstruction error=0.8189096386921484, variation=1.970837493203703e-09.
Starting iteration 863
reconstruction error=0.2087829594155522
iteration 1, reconstruction error: 0.2087829549404438, decrease = 4.475108394963456e-09
iteration 2, reconstruction error: 0.20878295047821457, decrease = 4.4622292250107165e-09
iteration 3, reconstruction error: 0.20878294602875883, decrease = 4.449455748289921e-09
iteration 4, reconstruction error: 0.20878294159203878, decrease = 4.4367200469075385e-09
PARAFAC2 reconstruction error=0.818909636722854, variation=1.9692943942217767e-09.
Starting iteration 864
reconstruction error=0.20878293587606048
iteration 1, reconstruction error: 0.20878293140445142, decrease = 4.471609055256565e-09
iteration 2, reconstruction error: 0.20878292694569375, decrease = 4.458757668635016e-09
iteration 3, reconstruction error: 0.20878292249968797, decrease = 4.44600578575205e-09
iteration 4, reconstruction error: 0.2087829180663924, decrease = 4.433295563988082e-09
PARAFAC2 reconstruction error=0.8189096347551017, variation=1.9677522944405723e-09.
Starting iteration 865
reconstruction error=0.2087829123549742
iteration 1, reconstruction error: 0.20878290788685136, decrease = 4.468122843936939e-09
iteration 2, reconstruction error: 0.20878290343156217, decrease = 4.455289193128209e-09
iteration 3, reconstruction error: 0.208782898989004, decrease = 4.44255815468253e-09
iteration 4, reconstruction error: 0.20878289455913296, decrease = 4.42987105331305e-09
PARAFAC2 reconstruction error=0.8189096327888898, variation=1.966211859993905e-09.
Starting iteration 866
reconstruction error=0.2087828888522618
iteration 1, reconstruction error: 0.20878288438762746, decrease = 4.464634328904538e-09
iteration 2, reconstruction error: 0.20878287993580597, decrease = 4.451821494777519e-09
iteration 3, reconstruction error: 0.20878287549668853, decrease = 4.4391174347513385e-09
iteration 4, reconstruction error: 0.20878287107023968, decrease = 4.4264488463507945e-09
PARAFAC2 reconstruction error=0.8189096308242174, variation=1.9646724247479597e-09.
Starting iteration 867
reconstruction error=0.20878286536791701
iteration 1, reconstruction error: 0.20878286090676812, decrease = 4.461148894741029e-09
iteration 2, reconstruction error: 0.2087828564584082, decrease = 4.4483599304090404e-09
iteration 3, reconstruction error: 0.2087828520227299, decrease = 4.435678296887957e-09
iteration 4, reconstruction error: 0.20878284759970014, decrease = 4.423029748013008e-09
PARAFAC2 reconstruction error=0.8189096288610829, variation=1.963134543814249e-09.
Starting iteration 868
reconstruction error=0.2087828419019184
iteration 1, reconstruction error: 0.20878283744425263, decrease = 4.457665764290297e-09
iteration 2, reconstruction error: 0.20878283299935269, decrease = 4.444899948108372e-09
iteration 3, reconstruction error: 0.2087828285671128, decrease = 4.432239880669542e-09
iteration 4, reconstruction error: 0.20878282414749827, decrease = 4.419614535455807e-09
PARAFAC2 reconstruction error=0.8189096268994851, variation=1.9615977731035628e-09.
Starting iteration 869
reconstruction error=0.2087828184542566
iteration 1, reconstruction error: 0.20878281400006934, decrease = 4.454187269020693e-09
iteration 2, reconstruction error: 0.20878280955862474, decrease = 4.441444600988831e-09
iteration 3, reconstruction error: 0.20878280512982406, decrease = 4.428800687295009e-09
iteration 4, reconstruction error: 0.2087828007136217, decrease = 4.416202348256348e-09
PARAFAC2 reconstruction error=0.8189096249394227, variation=1.9600624456828086e-09.
Starting iteration 870
reconstruction error=0.20878279502491176
iteration 1, reconstruction error: 0.20878279057420301, decrease = 4.450708745995513e-09
iteration 2, reconstruction error: 0.20878278613621146, decrease = 4.437991557582066e-09
iteration 3, reconstruction error: 0.20878278171084066, decrease = 4.425370792038308e-09
iteration 4, reconstruction error: 0.20878277729805048, decrease = 4.4127901888124654e-09
PARAFAC2 reconstruction error=0.8189096229808942, variation=1.958528450529684e-09.
Starting iteration 871
reconstruction error=0.2087827716138737
iteration 1, reconstruction error: 0.20878276716663424, decrease = 4.447239465577013e-09
iteration 2, reconstruction error: 0.2087827627320965, decrease = 4.434537737019184e-09
iteration 3, reconstruction error: 0.20878275831015483, decrease = 4.421941673937724e-09
iteration 4, reconstruction error: 0.20878275390077297, decrease = 4.4093818596380174e-09
PARAFAC2 reconstruction error=0.8189096210238986, variation=1.956995565599584e-09.
Starting iteration 872
reconstruction error=0.20878274822111878
iteration 1, reconstruction error: 0.2087827437773516, decrease = 4.443767187556347e-09
iteration 2, reconstruction error: 0.20878273934626151, decrease = 4.431090078194089e-09
iteration 3, reconstruction error: 0.20878273492774668, decrease = 4.41851483179434e-09
iteration 4, reconstruction error: 0.20878273052176696, decrease = 4.405979719956932e-09
PARAFAC2 reconstruction error=0.8189096190684345, variation=1.955464123959416e-09.
Starting iteration 873
reconstruction error=0.20878272484663524
iteration 1, reconstruction error: 0.20878272040633733, decrease = 4.440297907137847e-09
iteration 2, reconstruction error: 0.20878271597869413, decrease = 4.427643196525111e-09
iteration 3, reconstruction error: 0.208782711563603, decrease = 4.415091126031001e-09
iteration 4, reconstruction error: 0.2087827071610239, decrease = 4.402579106832505e-09
PARAFAC2 reconstruction error=0.8189096171145007, variation=1.953933792542273e-09.
Starting iteration 874
reconstruction error=0.20878270149041092
iteration 1, reconstruction error: 0.2087826970535792, decrease = 4.43683170758824e-09
iteration 2, reconstruction error: 0.20878269262937593, decrease = 4.424203281505612e-09
iteration 3, reconstruction error: 0.20878268821770316, decrease = 4.411672777093756e-09
iteration 4, reconstruction error: 0.20878268381852774, decrease = 4.399175412839185e-09
PARAFAC2 reconstruction error=0.8189096151620957, variation=1.952405015437364e-09.
Starting iteration 875
reconstruction error=0.2087826781524288
iteration 1, reconstruction error: 0.20878267371905707, decrease = 4.4333717252875715e-09
iteration 2, reconstruction error: 0.20878266929829606, decrease = 4.420761007262186e-09
iteration 3, reconstruction error: 0.2087826648900401, decrease = 4.4082559547131694e-09
iteration 4, reconstruction error: 0.20878266049425986, decrease = 4.3957802398075785e-09
PARAFAC2 reconstruction error=0.8189096132112184, variation=1.9508773485554798e-09.
Starting iteration 876
reconstruction error=0.20878265483267117
iteration 1, reconstruction error: 0.2087826504027579, decrease = 4.429913269543562e-09
iteration 2, reconstruction error: 0.20878264598543295, decrease = 4.417324950267698e-09
iteration 3, reconstruction error: 0.20878264158059612, decrease = 4.404836828619807e-09
iteration 4, reconstruction error: 0.20878263718820644, decrease = 4.3923896742015245e-09
PARAFAC2 reconstruction error=0.8189096112618672, variation=1.9493511249635276e-09.
Starting iteration 877
reconstruction error=0.20878263153112733
iteration 1, reconstruction error: 0.2087826271046671, decrease = 4.426460226136797e-09
iteration 2, reconstruction error: 0.20878262269077671, decrease = 4.413890392074293e-09
iteration 3, reconstruction error: 0.20878261828935127, decrease = 4.401425446332041e-09
iteration 4, reconstruction error: 0.20878261390035222, decrease = 4.388999053084319e-09
PARAFAC2 reconstruction error=0.8189096093140412, variation=1.9478260115946e-09.
Starting iteration 878
reconstruction error=0.20878260824777337
iteration 1, reconstruction error: 0.20878260382477085, decrease = 4.423002519793329e-09
iteration 2, reconstruction error: 0.20878259941430805, decrease = 4.410462800530368e-09
iteration 3, reconstruction error: 0.208782595016294, decrease = 4.3980140362887e-09
iteration 4, reconstruction error: 0.20878259063068397, decrease = 4.3856100417905e-09
PARAFAC2 reconstruction error=0.818909607367739, variation=1.946302230493302e-09.
Starting iteration 879
reconstruction error=0.20878258498260088
iteration 1, reconstruction error: 0.20878258056304752, decrease = 4.41955336216715e-09
iteration 2, reconstruction error: 0.20878257615601697, decrease = 4.4070305460497394e-09
iteration 3, reconstruction error: 0.20878257176140663, decrease = 4.39461034229538e-09
iteration 4, reconstruction error: 0.20878256737917947, decrease = 4.382227164478891e-09
PARAFAC2 reconstruction error=0.8189096054229592, variation=1.9447797816596335e-09.
Starting iteration 880
reconstruction error=0.20878256173559515
iteration 1, reconstruction error: 0.20878255731948944, decrease = 4.416105703342055e-09
iteration 2, reconstruction error: 0.20878255291588188, decrease = 4.403607561931366e-09
iteration 3, reconstruction error: 0.20878254852467676, decrease = 4.391205121745401e-09
iteration 4, reconstruction error: 0.208782544145834, decrease = 4.378842760610624e-09
PARAFAC2 reconstruction error=0.8189096034797002, variation=1.943258998160502e-09.
Starting iteration 881
reconstruction error=0.20878253850673853
iteration 1, reconstruction error: 0.20878253409407588, decrease = 4.412662651942512e-09
iteration 2, reconstruction error: 0.20878252969389205, decrease = 4.400183828412452e-09
iteration 3, reconstruction error: 0.2087825253060868, decrease = 4.3878052580215154e-09
iteration 4, reconstruction error: 0.20878252093062225, decrease = 4.375464546235719e-09
PARAFAC2 reconstruction error=0.8189096015379613, variation=1.941738880795185e-09.
Starting iteration 882
reconstruction error=0.2087825152960133
iteration 1, reconstruction error: 0.20878251088679137, decrease = 4.40922193201132e-09
iteration 2, reconstruction error: 0.20878250649002744, decrease = 4.396763925162972e-09
iteration 3, reconstruction error: 0.20878250210562124, decrease = 4.384406199209323e-09
iteration 4, reconstruction error: 0.20878249773353263, decrease = 4.372088607818014e-09
PARAFAC2 reconstruction error=0.818909599597741, variation=1.940220317742103e-09.
Starting iteration 883
reconstruction error=0.20878249210340868
iteration 1, reconstruction error: 0.20878248769762514, decrease = 4.4057835435484805e-09
iteration 2, reconstruction error: 0.20878248330427882, decrease = 4.393346325626268e-09
iteration 3, reconstruction error: 0.2087824789232655, decrease = 4.381013302134917e-09
iteration 4, reconstruction error: 0.20878247455455362, decrease = 4.3687118922441925e-09
PARAFAC2 reconstruction error=0.8189095976590379, variation=1.93870308695665e-09.
Starting iteration 884
reconstruction error=0.20878246892890706
iteration 1, reconstruction error: 0.20878246452655885, decrease = 4.4023482081989584e-09
iteration 2, reconstruction error: 0.20878246013662546, decrease = 4.389933389026268e-09
iteration 3, reconstruction error: 0.20878245575900656, decrease = 4.377618906259428e-09
iteration 4, reconstruction error: 0.20878245139366364, decrease = 4.3653429204759675e-09
PARAFAC2 reconstruction error=0.8189095957218507, variation=1.937187188438827e-09.
Starting iteration 885
reconstruction error=0.2087824457724922
iteration 1, reconstruction error: 0.20878244137357854, decrease = 4.398913650005554e-09
iteration 2, reconstruction error: 0.20878243698705423, decrease = 4.3865243104512786e-09
iteration 3, reconstruction error: 0.20878243261282287, decrease = 4.3742313660111165e-09
iteration 4, reconstruction error: 0.20878242825085125, decrease = 4.361971617239391e-09
PARAFAC2 reconstruction error=0.8189095937861786, variation=1.9356721780994235e-09.
Starting iteration 886
reconstruction error=0.20878242263415173
iteration 1, reconstruction error: 0.20878241823866722, decrease = 4.395484504149394e-09
iteration 2, reconstruction error: 0.20878241385555202, decrease = 4.383115204120713e-09
iteration 3, reconstruction error: 0.2087824094847097, decrease = 4.370842326961721e-09
iteration 4, reconstruction error: 0.20878240512610013, decrease = 4.358609556609494e-09
PARAFAC2 reconstruction error=0.8189095918520194, variation=1.9341591661614643e-09.
Starting iteration 887
reconstruction error=0.20878239951386723
iteration 1, reconstruction error: 0.20878239512180724, decrease = 4.392059993474362e-09
iteration 2, reconstruction error: 0.20878239074209806, decrease = 4.379709178659041e-09
iteration 3, reconstruction error: 0.20878238637464092, decrease = 4.367457145937337e-09
iteration 4, reconstruction error: 0.20878238201939495, decrease = 4.355245969422938e-09
PARAFAC2 reconstruction error=0.8189095899193723, variation=1.932647042401925e-09.
Starting iteration 888
reconstruction error=0.20878237641162334
iteration 1, reconstruction error: 0.20878237202298944, decrease = 4.38863390073152e-09
iteration 2, reconstruction error: 0.2087823676466824, decrease = 4.376307038977956e-09
iteration 3, reconstruction error: 0.20878236328260505, decrease = 4.364077349494622e-09
iteration 4, reconstruction error: 0.2087823589307165, decrease = 4.3518885439741695e-09
PARAFAC2 reconstruction error=0.8189095879882363, variation=1.93113602886541e-09.
Starting iteration 889
reconstruction error=0.20878235332740702
iteration 1, reconstruction error: 0.208782348942193, decrease = 4.385214025237616e-09
iteration 2, reconstruction error: 0.20878234456928582, decrease = 4.3729071752540705e-09
iteration 3, reconstruction error: 0.20878234020858746, decrease = 4.360698357963599e-09
iteration 4, reconstruction error: 0.20878233586005787, decrease = 4.348529591968742e-09
PARAFAC2 reconstruction error=0.8189095860586099, variation=1.929626458618827e-09.
Starting iteration 890
reconstruction error=0.20878233026120271
iteration 1, reconstruction error: 0.20878232587940784, decrease = 4.381794871388678e-09
iteration 2, reconstruction error: 0.20878232150989817, decrease = 4.3695096707541126e-09
iteration 3, reconstruction error: 0.20878231715257195, decrease = 4.357326222059754e-09
iteration 4, reconstruction error: 0.20878231280739742, decrease = 4.3451745257439e-09
PARAFAC2 reconstruction error=0.8189095841304916, variation=1.928118220639874e-09.
Starting iteration 891
reconstruction error=0.20878230721299593
iteration 1, reconstruction error: 0.20878230283461324, decrease = 4.378382684189219e-09
iteration 2, reconstruction error: 0.2087822984684965, decrease = 4.366116745924131e-09
iteration 3, reconstruction error: 0.20878229411454616, decrease = 4.353950339153201e-09
iteration 4, reconstruction error: 0.20878228977272292, decrease = 4.341823234277342e-09
PARAFAC2 reconstruction error=0.8189095822038802, variation=1.9266114259508527e-09.
Starting iteration 892
reconstruction error=0.20878228418276432
iteration 1, reconstruction error: 0.2087822798077969, decrease = 4.374967416120867e-09
iteration 2, reconstruction error: 0.20878227544507305, decrease = 4.3627238488497255e-09
iteration 3, reconstruction error: 0.20878227109449096, decrease = 4.350582089029942e-09
iteration 4, reconstruction error: 0.20878226675601666, decrease = 4.338474302034712e-09
PARAFAC2 reconstruction error=0.8189095802787746, variation=1.9251056304625536e-09.
Starting iteration 893
reconstruction error=0.20878226117050405
iteration 1, reconstruction error: 0.20878225679894574, decrease = 4.371558309790302e-09
iteration 2, reconstruction error: 0.20878225243960707, decrease = 4.359338667825341e-09
iteration 3, reconstruction error: 0.20878224809239243, decrease = 4.347214643818376e-09
iteration 4, reconstruction error: 0.20878224375726628, decrease = 4.335126146948198e-09
PARAFAC2 reconstruction error=0.8189095783551733, variation=1.9236012782641865e-09.
Starting iteration 894
reconstruction error=0.2087822381761928
iteration 1, reconstruction error: 0.20878223380803818, decrease = 4.368154615796982e-09
iteration 2, reconstruction error: 0.20878222945208547, decrease = 4.355952709644839e-09
iteration 3, reconstruction error: 0.2087822251082352, decrease = 4.343850279475703e-09
iteration 4, reconstruction error: 0.20878222077645262, decrease = 4.3317825715316616e-09
PARAFAC2 reconstruction error=0.8189095764330752, variation=1.9220981473111465e-09.
Starting iteration 895
reconstruction error=0.2087822151998143
iteration 1, reconstruction error: 0.20878221083506648, decrease = 4.364747813179193e-09
iteration 2, reconstruction error: 0.2087822064824959, decrease = 4.352570581733772e-09
iteration 3, reconstruction error: 0.2087822021420069, decrease = 4.340488996001923e-09
iteration 4, reconstruction error: 0.20878219781356477, decrease = 4.328442132495169e-09
PARAFAC2 reconstruction error=0.8189095745124788, variation=1.920596348625736e-09.
Starting iteration 896
reconstruction error=0.2087821922413564
iteration 1, reconstruction error: 0.20878218788000766, decrease = 4.3613487543670004e-09
iteration 2, reconstruction error: 0.2087821835308161, decrease = 4.3491915624471744e-09
iteration 3, reconstruction error: 0.2087821791936884, decrease = 4.337127684772568e-09
iteration 4, reconstruction error: 0.2087821748685844, decrease = 4.325103997171453e-09
PARAFAC2 reconstruction error=0.8189095725933829, variation=1.919095882207955e-09.
Starting iteration 897
reconstruction error=0.20878216930080595
iteration 1, reconstruction error: 0.2087821649428532, decrease = 4.357952748668126e-09
iteration 2, reconstruction error: 0.20878216059704066, decrease = 4.3458125431605765e-09
iteration 3, reconstruction error: 0.208782156263265, decrease = 4.333775671661044e-09
iteration 4, reconstruction error: 0.20878215194149374, decrease = 4.321771246429407e-09
PARAFAC2 reconstruction error=0.8189095706757865, variation=1.9175964149908964e-09.
Starting iteration 898
reconstruction error=0.20878214637813902
iteration 1, reconstruction error: 0.20878214202358458, decrease = 4.354554439256475e-09
iteration 2, reconstruction error: 0.20878213768114567, decrease = 4.342438908455648e-09
iteration 3, reconstruction error: 0.20878213335072357, decrease = 4.330422104237286e-09
iteration 4, reconstruction error: 0.20878212903228352, decrease = 4.3184400499995945e-09
PARAFAC2 reconstruction error=0.818909568759688, variation=1.916098502086072e-09.
Starting iteration 899
reconstruction error=0.2087821234733511
iteration 1, reconstruction error: 0.20878211912218728, decrease = 4.35116381813927e-09
iteration 2, reconstruction error: 0.2087821147831166, decrease = 4.339070686087965e-09
iteration 3, reconstruction error: 0.20878211045604803, decrease = 4.327068564569103e-09
iteration 4, reconstruction error: 0.20878210614093765, decrease = 4.315110380126441e-09
PARAFAC2 reconstruction error=0.8189095668450862, variation=1.914601810426575e-09.
Starting iteration 900
reconstruction error=0.20878210058641983
iteration 1, reconstruction error: 0.20878209623864508, decrease = 4.347774751334299e-09
iteration 2, reconstruction error: 0.20878209190294494, decrease = 4.3357001322519295e-09
iteration 3, reconstruction error: 0.2087820875792207, decrease = 4.323724239752025e-09
iteration 4, reconstruction error: 0.20878208326743922, decrease = 4.311781487409405e-09
PARAFAC2 reconstruction error=0.8189095649319799, variation=1.913106340012405e-09.
Starting iteration 901
reconstruction error=0.20878207771733368
iteration 1, reconstruction error: 0.20878207337294485, decrease = 4.344388820909373e-09
iteration 2, reconstruction error: 0.20878206904060984, decrease = 4.332335018508715e-09
iteration 3, reconstruction error: 0.20878206472022917, decrease = 4.320380664335488e-09
iteration 4, reconstruction error: 0.20878206041177272, decrease = 4.30845645271738e-09
PARAFAC2 reconstruction error=0.8189095630203678, variation=1.911612090843562e-09.
Starting iteration 902
reconstruction error=0.20878205486607485
iteration 1, reconstruction error: 0.20878205052507123, decrease = 4.341003612129413e-09
iteration 2, reconstruction error: 0.20878204619609908, decrease = 4.3289721529671255e-09
iteration 3, reconstruction error: 0.2087820418790627, decrease = 4.317036367273985e-09
iteration 4, reconstruction error: 0.20878203757392513, decrease = 4.305137579763141e-09
PARAFAC2 reconstruction error=0.8189095611102484, variation=1.9101193959869534e-09.
Starting iteration 903
reconstruction error=0.20878203203263118
iteration 1, reconstruction error: 0.20878202769500664, decrease = 4.3376245373316635e-09
iteration 2, reconstruction error: 0.20878202336939344, decrease = 4.325613200961698e-09
iteration 3, reconstruction error: 0.20878201905569294, decrease = 4.31370050790747e-09
iteration 4, reconstruction error: 0.20878201475387573, decrease = 4.301817208007819e-09
PARAFAC2 reconstruction error=0.8189095592016208, variation=1.9086275893087645e-09.
Starting iteration 904
reconstruction error=0.20878200921698642
iteration 1, reconstruction error: 0.2087820048827378, decrease = 4.334248626669535e-09
iteration 2, reconstruction error: 0.20878200056048052, decrease = 4.322257274314012e-09
iteration 3, reconstruction error: 0.2087819962501189, decrease = 4.310361623183212e-09
iteration 4, reconstruction error: 0.20878199195161673, decrease = 4.298502165323015e-09
PARAFAC2 reconstruction error=0.8189095572944833, variation=1.9071374479651126e-09.
Starting iteration 905
reconstruction error=0.2087819864191198
iteration 1, reconstruction error: 0.20878198208824789, decrease = 4.330871911095713e-09
iteration 2, reconstruction error: 0.2087819777693465, decrease = 4.318901375421902e-09
iteration 3, reconstruction error: 0.20878197346231764, decrease = 4.307028872441165e-09
iteration 4, reconstruction error: 0.20878196916712585, decrease = 4.2951917855749144e-09
PARAFAC2 reconstruction error=0.8189095553888349, variation=1.9056484168444854e-09.
Starting iteration 906
reconstruction error=0.20878196363902446
iteration 1, reconstruction error: 0.20878195931152307, decrease = 4.327501385015253e-09
iteration 2, reconstruction error: 0.20878195499597296, decrease = 4.31555011171092e-09
iteration 3, reconstruction error: 0.20878195069227684, decrease = 4.303696121699119e-09
iteration 4, reconstruction error: 0.20878194640039466, decrease = 4.291882182982931e-09
PARAFAC2 reconstruction error=0.8189095534846744, variation=1.9041604959468827e-09.
Starting iteration 907
reconstruction error=0.20878194087667948
iteration 1, reconstruction error: 0.20878193655254867, decrease = 4.3241308034236425e-09
iteration 2, reconstruction error: 0.2087819322403467, decrease = 4.312201984379982e-09
iteration 3, reconstruction error: 0.20878192793997719, decrease = 4.300369504939283e-09
iteration 4, reconstruction error: 0.20878192365140386, decrease = 4.28857332979149e-09
PARAFAC2 reconstruction error=0.8189095515820003, variation=1.9026741293615146e-09.
Starting iteration 908
reconstruction error=0.20878191813207572
iteration 1, reconstruction error: 0.20878191381131006, decrease = 4.3207656619248525e-09
iteration 2, reconstruction error: 0.20878190950245165, decrease = 4.308858408963445e-09
iteration 3, reconstruction error: 0.20878190520540718, decrease = 4.297044470247258e-09
iteration 4, reconstruction error: 0.20878190092013962, decrease = 4.285267557468941e-09
PARAFAC2 reconstruction error=0.8189095496808114, variation=1.901188872999171e-09.
Starting iteration 909
reconstruction error=0.2087818954051932
iteration 1, reconstruction error: 0.20878189108779038, decrease = 4.3174028241388385e-09
iteration 2, reconstruction error: 0.20878188678227474, decrease = 4.305515638458601e-09
iteration 3, reconstruction error: 0.2087818824885507, decrease = 4.293724042980784e-09
iteration 4, reconstruction error: 0.20878187820658425, decrease = 4.2819664480830966e-09
PARAFAC2 reconstruction error=0.8189095477811065, variation=1.899704948904457e-09.
Starting iteration 910
reconstruction error=0.2087818726960134
iteration 1, reconstruction error: 0.20878186838197185, decrease = 4.314041540665059e-09
iteration 2, reconstruction error: 0.20878186407979749, decrease = 4.302174366754841e-09
iteration 3, reconstruction error: 0.2087818597893946, decrease = 4.290402894069345e-09
iteration 4, reconstruction error: 0.20878185551072617, decrease = 4.278668419566145e-09
PARAFAC2 reconstruction error=0.8189095458828843, variation=1.8982221350327677e-09.
Starting iteration 911
reconstruction error=0.2087818500045324
iteration 1, reconstruction error: 0.20878184569384753, decrease = 4.310684864616832e-09
iteration 2, reconstruction error: 0.20878184139500824, decrease = 4.298839284544442e-09
iteration 3, reconstruction error: 0.20878183710792114, decrease = 4.2870871019839996e-09
iteration 4, reconstruction error: 0.20878183283255078, decrease = 4.275370363293618e-09
PARAFAC2 reconstruction error=0.8189095439861437, variation=1.896740653428708e-09.
Starting iteration 912
reconstruction error=0.20878182733072337
iteration 1, reconstruction error: 0.2087818230233952, decrease = 4.307328160813029e-09
iteration 2, reconstruction error: 0.20878181872789095, decrease = 4.295504257845195e-09
iteration 3, reconstruction error: 0.20878181444412042, decrease = 4.283770532742537e-09
iteration 4, reconstruction error: 0.20878181017204195, decrease = 4.2720784687588775e-09
PARAFAC2 reconstruction error=0.8189095420908828, variation=1.895260837159185e-09.
Starting iteration 913
reconstruction error=0.20878180467457938
iteration 1, reconstruction error: 0.20878180037060093, decrease = 4.303978451414281e-09
iteration 2, reconstruction error: 0.20878179607842945, decrease = 4.292171479347573e-09
iteration 3, reconstruction error: 0.20878179179796855, decrease = 4.280460902394978e-09
iteration 4, reconstruction error: 0.20878178752917886, decrease = 4.268789682848606e-09
PARAFAC2 reconstruction error=0.818909540197101, variation=1.8937817980457794e-09.
Starting iteration 914
reconstruction error=0.20878178203607958
iteration 1, reconstruction error: 0.2087817777354524, decrease = 4.300627187703299e-09
iteration 2, reconstruction error: 0.20878177344660828, decrease = 4.288844113187196e-09
iteration 3, reconstruction error: 0.20878176916945698, decrease = 4.277151299802995e-09
iteration 4, reconstruction error: 0.20878176490395534, decrease = 4.265501646338876e-09
PARAFAC2 reconstruction error=0.8189095383047967, variation=1.8923043132446082e-09.
Starting iteration 915
reconstruction error=0.20878175941521404
iteration 1, reconstruction error: 0.20878175511793198, decrease = 4.2972820579745274e-09
iteration 2, reconstruction error: 0.2087817508324129, decrease = 4.28551907849517e-09
iteration 3, reconstruction error: 0.2087817465585666, decrease = 4.273846304636564e-09
iteration 4, reconstruction error: 0.2087817422963514, decrease = 4.262215191896956e-09
PARAFAC2 reconstruction error=0.8189095364139688, variation=1.8908279386664617e-09.
Starting iteration 916
reconstruction error=0.20878173681196427
iteration 1, reconstruction error: 0.20878173251802573, decrease = 4.293938538069142e-09
iteration 2, reconstruction error: 0.20878172823583172, decrease = 4.282194016047569e-09
iteration 3, reconstruction error: 0.20878172396528577, decrease = 4.2705459446512606e-09
iteration 4, reconstruction error: 0.20878171970635398, decrease = 4.258931790568354e-09
PARAFAC2 reconstruction error=0.8189095345246162, variation=1.8893525632890373e-09.
Starting iteration 917
reconstruction error=0.20878171422631717
iteration 1, reconstruction error: 0.20878170993571912, decrease = 4.2905980435214985e-09
iteration 2, reconstruction error: 0.2087817056568432, decrease = 4.2788759202494475e-09
iteration 3, reconstruction error: 0.20878170138959687, decrease = 4.267246334066499e-09
iteration 4, reconstruction error: 0.2087816971339477, decrease = 4.2556491663958695e-09
PARAFAC2 reconstruction error=0.818909532636737, variation=1.8878791863130573e-09.
Starting iteration 918
reconstruction error=0.208781691658255
iteration 1, reconstruction error: 0.20878168737099434, decrease = 4.287260657598324e-09
iteration 2, reconstruction error: 0.208781683095435, decrease = 4.275559351007985e-09
iteration 3, reconstruction error: 0.20878167883148824, decrease = 4.263946751237313e-09
iteration 4, reconstruction error: 0.20878167457911398, decrease = 4.252374258273406e-09
PARAFAC2 reconstruction error=0.8189095307503306, variation=1.886406475470892e-09.
Starting iteration 919
reconstruction error=0.20878166910776322
iteration 1, reconstruction error: 0.20878166482383842, decrease = 4.2839247982318085e-09
iteration 2, reconstruction error: 0.20878166055159408, decrease = 4.2722443360787565e-09
iteration 3, reconstruction error: 0.20878165629093998, decrease = 4.260654107302031e-09
iteration 4, reconstruction error: 0.2087816520418422, decrease = 4.249097768083132e-09
PARAFAC2 reconstruction error=0.8189095288653956, variation=1.884934985874054e-09.
Starting iteration 920
reconstruction error=0.20878164657483103
iteration 1, reconstruction error: 0.20878164229423668, decrease = 4.280594351202538e-09
iteration 2, reconstruction error: 0.20878163802530583, decrease = 4.268930847706187e-09
iteration 3, reconstruction error: 0.20878163376794054, decrease = 4.257365293636184e-09
iteration 4, reconstruction error: 0.20878162952211382, decrease = 4.245826717985679e-09
PARAFAC2 reconstruction error=0.8189095269819302, variation=1.8834653836563575e-09.
Starting iteration 921
reconstruction error=0.2087816240594376
iteration 1, reconstruction error: 0.20878161978217213, decrease = 4.277265458485502e-09
iteration 2, reconstruction error: 0.2087816155165494, decrease = 4.265622743915287e-09
iteration 3, reconstruction error: 0.20878161126247677, decrease = 4.254072621945326e-09
iteration 4, reconstruction error: 0.20878160701991796, decrease = 4.2425588042682705e-09
PARAFAC2 reconstruction error=0.8189095250999334, variation=1.8819967806393834e-09.
Starting iteration 922
reconstruction error=0.20878160156157377
iteration 1, reconstruction error: 0.2087815972876326, decrease = 4.273941173194018e-09
iteration 2, reconstruction error: 0.2087815930253156, decrease = 4.2623169993483145e-09
iteration 3, reconstruction error: 0.20878158877452715, decrease = 4.250788443460607e-09
iteration 4, reconstruction error: 0.20878158453523635, decrease = 4.239290807284135e-09
PARAFAC2 reconstruction error=0.8189095232194047, variation=1.8805287327339215e-09.
Starting iteration 923
reconstruction error=0.2087815790812209
iteration 1, reconstruction error: 0.20878157481060175, decrease = 4.270619163859735e-09
iteration 2, reconstruction error: 0.20878157055158822, decrease = 4.259013530738542e-09
iteration 3, reconstruction error: 0.20878156630408315, decrease = 4.2475050698875805e-09
iteration 4, reconstruction error: 0.20878156206805337, decrease = 4.236029776949479e-09
PARAFAC2 reconstruction error=0.8189095213403419, variation=1.8790627942522065e-09.
Starting iteration 924
reconstruction error=0.2087815566183608
iteration 1, reconstruction error: 0.2087815523510651, decrease = 4.267295683479944e-09
iteration 2, reconstruction error: 0.2087815480953504, decrease = 4.255714697309898e-09
iteration 3, reconstruction error: 0.20878154385112718, decrease = 4.244223222871213e-09
iteration 4, reconstruction error: 0.2087815396183577, decrease = 4.232769496015365e-09
PARAFAC2 reconstruction error=0.8189095194627439, variation=1.877597965993516e-09.
Starting iteration 925
reconstruction error=0.20878153417298395
iteration 1, reconstruction error: 0.2087815299090064, decrease = 4.263977559926246e-09
iteration 2, reconstruction error: 0.208781525656589, decrease = 4.2524173904379126e-09
iteration 3, reconstruction error: 0.20878152141564224, decrease = 4.240946760436515e-09
iteration 4, reconstruction error: 0.2087815171861307, decrease = 4.2295115465496025e-09
PARAFAC2 reconstruction error=0.8189095175866096, variation=1.8761343589801527e-09.
Starting iteration 926
reconstruction error=0.208781511745076
iteration 1, reconstruction error: 0.20878150748441038, decrease = 4.2606656258659115e-09
iteration 2, reconstruction error: 0.20878150323528716, decrease = 4.249123219945972e-09
iteration 3, reconstruction error: 0.2087814989976169, decrease = 4.237670270246241e-09
iteration 4, reconstruction error: 0.20878149477136096, decrease = 4.226255928552192e-09
PARAFAC2 reconstruction error=0.818909515711938, variation=1.8746715291229066e-09.
Starting iteration 927
reconstruction error=0.20878148933461363
iteration 1, reconstruction error: 0.20878148507726224, decrease = 4.2573513880928004e-09
iteration 2, reconstruction error: 0.2087814808314317, decrease = 4.245830548255114e-09
iteration 3, reconstruction error: 0.20878147659703247, decrease = 4.234399220148788e-09
iteration 4, reconstruction error: 0.2087814723740291, decrease = 4.223003363668099e-09
PARAFAC2 reconstruction error=0.8189095138387275, variation=1.8732105866448023e-09.
Starting iteration 928
reconstruction error=0.2087814669415923
iteration 1, reconstruction error: 0.20878146268754827, decrease = 4.254044033702442e-09
iteration 2, reconstruction error: 0.2087814584450073, decrease = 4.24254095743315e-09
iteration 3, reconstruction error: 0.20878145421387684, decrease = 4.231130473764111e-09
iteration 4, reconstruction error: 0.20878144999412449, decrease = 4.21975235309624e-09
PARAFAC2 reconstruction error=0.8189095119669767, variation=1.8717507543897227e-09.
Starting iteration 929
reconstruction error=0.20878144456598977
iteration 1, reconstruction error: 0.2087814403152538, decrease = 4.250735957667118e-09
iteration 2, reconstruction error: 0.2087814360759978, decrease = 4.239256001792313e-09
iteration 3, reconstruction error: 0.20878143184813686, decrease = 4.227860950223317e-09
iteration 4, reconstruction error: 0.20878142763162857, decrease = 4.216508281418285e-09
PARAFAC2 reconstruction error=0.8189095100966846, variation=1.87029214337997e-09.
Starting iteration 930
reconstruction error=0.2087814222077959
iteration 1, reconstruction error: 0.20878141796036184, decrease = 4.247434071125156e-09
iteration 2, reconstruction error: 0.20878141372439002, decrease = 4.235971823307594e-09
iteration 3, reconstruction error: 0.20878140949979243, decrease = 4.224597588420309e-09
iteration 4, reconstruction error: 0.20878140528652822, decrease = 4.2132642097403306e-09
PARAFAC2 reconstruction error=0.8189095082278499, variation=1.8688346425932423e-09.
Starting iteration 931
reconstruction error=0.20878139986699157
iteration 1, reconstruction error: 0.20878139562285866, decrease = 4.24413290622816e-09
iteration 2, reconstruction error: 0.2087813913901679, decrease = 4.2326907534473435e-09
iteration 3, reconstruction error: 0.20878138716882982, decrease = 4.221338084642312e-09
iteration 4, reconstruction error: 0.20878138295880735, decrease = 4.2100224695307276e-09
PARAFAC2 reconstruction error=0.8189095063604713, variation=1.8673785850964464e-09.
Starting iteration 932
reconstruction error=0.20878137754356513
iteration 1, reconstruction error: 0.20878137330272956, decrease = 4.2408355716005985e-09
iteration 2, reconstruction error: 0.20878136907331835, decrease = 4.229411210143752e-09
iteration 3, reconstruction error: 0.208781364855239, decrease = 4.218079358020432e-09
iteration 4, reconstruction error: 0.20878136064845598, decrease = 4.206783005278325e-09
PARAFAC2 reconstruction error=0.8189095044945477, variation=1.865923637822675e-09.
Starting iteration 933
reconstruction error=0.20878135523750133
iteration 1, reconstruction error: 0.20878135099995915, decrease = 4.237542178264775e-09
iteration 2, reconstruction error: 0.2087813467738206, decrease = 4.226138550222913e-09
iteration 3, reconstruction error: 0.20878134255899763, decrease = 4.214822962866904e-09
iteration 4, reconstruction error: 0.2087813383554533, decrease = 4.203544345937615e-09
PARAFAC2 reconstruction error=0.8189095026300777, variation=1.8644700228165334e-09.
Starting iteration 934
reconstruction error=0.20878133294878226
iteration 1, reconstruction error: 0.20878132871453278, decrease = 4.2342494788183416e-09
iteration 2, reconstruction error: 0.20878132449166834, decrease = 4.222864447012142e-09
iteration 3, reconstruction error: 0.20878132028009563, decrease = 4.211572701695587e-09
iteration 4, reconstruction error: 0.20878131607978304, decrease = 4.200312597735234e-09
PARAFAC2 reconstruction error=0.81890950076706, variation=1.8630176290557188e-09.
Starting iteration 935
reconstruction error=0.20878131067739503
iteration 1, reconstruction error: 0.2087813064464336, decrease = 4.230961414553036e-09
iteration 2, reconstruction error: 0.20878130222683947, decrease = 4.219594146315231e-09
iteration 3, reconstruction error: 0.20878129801851622, decrease = 4.208323245435963e-09
iteration 4, reconstruction error: 0.20878129382143612, decrease = 4.197080100132311e-09
PARAFAC2 reconstruction error=0.8189094989054935, variation=1.8615665675625337e-09.
Starting iteration 936
reconstruction error=0.2087812884233249
iteration 1, reconstruction error: 0.2087812841956515, decrease = 4.227673405798882e-09
iteration 2, reconstruction error: 0.20878127997932383, decrease = 4.216327675887754e-09
iteration 3, reconstruction error: 0.20878127577424851, decrease = 4.205075315732998e-09
iteration 4, reconstruction error: 0.2087812715803955, decrease = 4.193853014866633e-09
PARAFAC2 reconstruction error=0.8189094970453767, variation=1.8601167273146757e-09.
Starting iteration 937
reconstruction error=0.2087812661865558
iteration 1, reconstruction error: 0.20878126196216582, decrease = 4.224389976714704e-09
iteration 2, reconstruction error: 0.208781257749103, decrease = 4.2130628152836636e-09
iteration 3, reconstruction error: 0.20878125354727564, decrease = 4.201827358274457e-09
iteration 4, reconstruction error: 0.20878124935664433, decrease = 4.1906313141826246e-09
PARAFAC2 reconstruction error=0.8189094951867086, variation=1.8586681083121448e-09.
Starting iteration 938
reconstruction error=0.20878124396707537
iteration 1, reconstruction error: 0.20878123974596646, decrease = 4.221108906854454e-09
iteration 2, reconstruction error: 0.20878123553616162, decrease = 4.2098048380623254e-09
iteration 3, reconstruction error: 0.20878123133757603, decrease = 4.198585590309278e-09
iteration 4, reconstruction error: 0.20878122715016798, decrease = 4.187408059186382e-09
PARAFAC2 reconstruction error=0.8189094933294879, variation=1.857220710554941e-09.
Starting iteration 939
reconstruction error=0.20878122176486816
iteration 1, reconstruction error: 0.2087812175470373, decrease = 4.217830862351946e-09
iteration 2, reconstruction error: 0.20878121334048966, decrease = 4.2065476379971045e-09
iteration 3, reconstruction error: 0.20878120914514195, decrease = 4.195347708124686e-09
iteration 4, reconstruction error: 0.2087812049609564, decrease = 4.18418555359068e-09
PARAFAC2 reconstruction error=0.8189094914737133, variation=1.8557746450653667e-09.
Starting iteration 940
reconstruction error=0.2087811995799158
iteration 1, reconstruction error: 0.20878119536535755, decrease = 4.214558257942258e-09
iteration 2, reconstruction error: 0.20878119116206867, decrease = 4.203288883619649e-09
iteration 3, reconstruction error: 0.20878118696995732, decrease = 4.192111352496752e-09
iteration 4, reconstruction error: 0.20878118278898727, decrease = 4.180970042400034e-09
PARAFAC2 reconstruction error=0.8189094896193831, variation=1.854330133888027e-09.
Starting iteration 941
reconstruction error=0.20878117741220667
iteration 1, reconstruction error: 0.20878117320092182, decrease = 4.211284848620878e-09
iteration 2, reconstruction error: 0.2087811690008847, decrease = 4.200037123647249e-09
iteration 3, reconstruction error: 0.20878116481200817, decrease = 4.188876523425478e-09
iteration 4, reconstruction error: 0.20878116063425137, decrease = 4.177756807166588e-09
PARAFAC2 reconstruction error=0.8189094877664971, variation=1.852886066799897e-09.
Starting iteration 942
reconstruction error=0.20878115526172314
iteration 1, reconstruction error: 0.20878115105370854, decrease = 4.208014603435117e-09
iteration 2, reconstruction error: 0.20878114685692403, decrease = 4.1967845032520046e-09
iteration 3, reconstruction error: 0.20878114267127537, decrease = 4.1856486610036825e-09
iteration 4, reconstruction error: 0.20878113849673025, decrease = 4.174545126245377e-09
PARAFAC2 reconstruction error=0.8189094859150532, variation=1.851443887090909e-09.
Starting iteration 943
reconstruction error=0.2087811331284559
iteration 1, reconstruction error: 0.2087811289237078, decrease = 4.204748105252065e-09
iteration 2, reconstruction error: 0.20878112473016655, decrease = 4.193541236485743e-09
iteration 3, reconstruction error: 0.20878112054774656, decrease = 4.1824199936701945e-09
iteration 4, reconstruction error: 0.20878111637641159, decrease = 4.1713349718808246e-09
PARAFAC2 reconstruction error=0.8189094840650503, variation=1.850002928627248e-09.
Starting iteration 944
reconstruction error=0.20878111101238497
iteration 1, reconstruction error: 0.20878110681090176, decrease = 4.201483216892399e-09
iteration 2, reconstruction error: 0.20878110262060692, decrease = 4.190294833339436e-09
iteration 3, reconstruction error: 0.2087810984414117, decrease = 4.179195212117293e-09
iteration 4, reconstruction error: 0.20878109427328223, decrease = 4.168129480452976e-09
PARAFAC2 reconstruction error=0.8189094822164874, variation=1.8485628583420066e-09.
Starting iteration 945
reconstruction error=0.20878108891349725
iteration 1, reconstruction error: 0.20878108471527276, decrease = 4.198224490270519e-09
iteration 2, reconstruction error: 0.20878108052822048, decrease = 4.1870522882181405e-09
iteration 3, reconstruction error: 0.20878107635225085, decrease = 4.175969625652698e-09
iteration 4, reconstruction error: 0.20878107218732536, decrease = 4.16492548782621e-09
PARAFAC2 reconstruction error=0.8189094803693632, variation=1.8471242313466973e-09.
Starting iteration 946
reconstruction error=0.2087810668317774
iteration 1, reconstruction error: 0.2087810626368117, decrease = 4.194965708137488e-09
iteration 2, reconstruction error: 0.20878105845299885, decrease = 4.1838128517213136e-09
iteration 3, reconstruction error: 0.20878105428024554, decrease = 4.172753309550359e-09
iteration 4, reconstruction error: 0.20878105011852013, decrease = 4.161725408735606e-09
PARAFAC2 reconstruction error=0.8189094785236762, variation=1.8456869366190176e-09.
Starting iteration 947
reconstruction error=0.20878104476721
iteration 1, reconstruction error: 0.20878104057549915, decrease = 4.191710839540619e-09
iteration 2, reconstruction error: 0.20878103639492188, decrease = 4.180577273249497e-09
iteration 3, reconstruction error: 0.20878103222538874, decrease = 4.169533135423009e-09
iteration 4, reconstruction error: 0.20878102806686272, decrease = 4.158526023534392e-09
PARAFAC2 reconstruction error=0.8189094766794253, variation=1.8442509741589674e-09.
Starting iteration 948
reconstruction error=0.20878102271978197
iteration 1, reconstruction error: 0.20878101853132677, decrease = 4.1884551937876324e-09
iteration 2, reconstruction error: 0.20878101435398047, decrease = 4.177346302203233e-09
iteration 3, reconstruction error: 0.20878101018766057, decrease = 4.1663199001895634e-09
iteration 4, reconstruction error: 0.20878100603233002, decrease = 4.155330551869341e-09
PARAFAC2 reconstruction error=0.8189094748366091, variation=1.8428161219219419e-09.
Starting iteration 949
reconstruction error=0.2087810006894786
iteration 1, reconstruction error: 0.20878099650426907, decrease = 4.185209540041868e-09
iteration 2, reconstruction error: 0.20878099233015604, decrease = 4.174113027444193e-09
iteration 3, reconstruction error: 0.2087809881670463, decrease = 4.163109745825011e-09
iteration 4, reconstruction error: 0.20878098401491046, decrease = 4.1521358296048305e-09
PARAFAC2 reconstruction error=0.818909472995227, variation=1.841382157863336e-09.
Starting iteration 950
reconstruction error=0.20878097867628465
iteration 1, reconstruction error: 0.20878097449432304, decrease = 4.181961610338902e-09
iteration 2, reconstruction error: 0.20878097032343715, decrease = 4.170885886667364e-09
iteration 3, reconstruction error: 0.20878096616353756, decrease = 4.159899591460459e-09
iteration 4, reconstruction error: 0.20878096201458948, decrease = 4.1489480739898e-09
PARAFAC2 reconstruction error=0.8189094711552769, variation=1.839950081183872e-09.
Starting iteration 951
reconstruction error=0.20878095668018384
iteration 1, reconstruction error: 0.20878095250146633, decrease = 4.178717510905372e-09
iteration 2, reconstruction error: 0.20878094833380448, decrease = 4.1676618545150035e-09
iteration 3, reconstruction error: 0.20878094417711038, decrease = 4.15669410003261e-09
iteration 4, reconstruction error: 0.2087809400313501, decrease = 4.145760290619194e-09
PARAFAC2 reconstruction error=0.818909469316758, variation=1.8385188926828278e-09.
Starting iteration 952
reconstruction error=0.20878093470116318
iteration 1, reconstruction error: 0.20878093052568664, decrease = 4.175476547851886e-09
iteration 2, reconstruction error: 0.20878092636124806, decrease = 4.164438571763185e-09
iteration 3, reconstruction error: 0.20878092220775638, decrease = 4.153491689473654e-09
iteration 4, reconstruction error: 0.2087809180651808, decrease = 4.142575588117481e-09
PARAFAC2 reconstruction error=0.8189094674796691, variation=1.8370889254271106e-09.
Starting iteration 953
reconstruction error=0.2087809127392049
iteration 1, reconstruction error: 0.20878090856696782, decrease = 4.172237083599484e-09
iteration 2, reconstruction error: 0.20878090440574865, decrease = 4.1612191747919525e-09
iteration 3, reconstruction error: 0.2087809002554571, decrease = 4.150291554871899e-09
iteration 4, reconstruction error: 0.20878089611606465, decrease = 4.1393924399280024e-09
PARAFAC2 reconstruction error=0.8189094656440088, variation=1.835660290439023e-09.
Starting iteration 954
reconstruction error=0.20878089079429976
iteration 1, reconstruction error: 0.20878088662529673, decrease = 4.169003031684326e-09
iteration 2, reconstruction error: 0.20878088246729387, decrease = 4.158002858689613e-09
iteration 3, reconstruction error: 0.20878087832020323, decrease = 4.1470906431140264e-09
iteration 4, reconstruction error: 0.208780874183987, decrease = 4.136216230632428e-09
PARAFAC2 reconstruction error=0.8189094638097759, variation=1.8342328766962623e-09.
Starting iteration 955
reconstruction error=0.2087808688664262
iteration 1, reconstruction error: 0.20878086470065646, decrease = 4.1657697291697104e-09
iteration 2, reconstruction error: 0.2087808605458684, decrease = 4.154788069143933e-09
iteration 3, reconstruction error: 0.2087808564019748, decrease = 4.143893589381165e-09
iteration 4, reconstruction error: 0.20878085226893633, decrease = 4.133038467024619e-09
PARAFAC2 reconstruction error=0.8189094619769692, variation=1.8328066841988289e-09.
Starting iteration 956
reconstruction error=0.2087808469555766
iteration 1, reconstruction error: 0.20878084279303713, decrease = 4.162539479768412e-09
iteration 2, reconstruction error: 0.20878083864145686, decrease = 4.151580274003308e-09
iteration 3, reconstruction error: 0.2087808345007549, decrease = 4.140701947985548e-09
iteration 4, reconstruction error: 0.2087808303708911, decrease = 4.129863812041279e-09
PARAFAC2 reconstruction error=0.8189094601455875, variation=1.8313817129467225e-09.
Starting iteration 957
reconstruction error=0.20878082506173243
iteration 1, reconstruction error: 0.20878082090241773, decrease = 4.1593146982155105e-09
iteration 2, reconstruction error: 0.20878081675404764, decrease = 4.14837009188318e-09
iteration 3, reconstruction error: 0.20878081261653733, decrease = 4.137510306589931e-09
iteration 4, reconstruction error: 0.20878080848984432, decrease = 4.1266930150829495e-09
PARAFAC2 reconstruction error=0.8189094583156294, variation=1.8299580739622456e-09.
Starting iteration 958
reconstruction error=0.20878080318487374
iteration 1, reconstruction error: 0.2087807990287877, decrease = 4.1560860308820224e-09
iteration 2, reconstruction error: 0.2087807948836247, decrease = 4.145163018387521e-09
iteration 3, reconstruction error: 0.20878079074929903, decrease = 4.134325659599369e-09
iteration 4, reconstruction error: 0.20878078662577687, decrease = 4.123522162613469e-09
PARAFAC2 reconstruction error=0.8189094564870938, variation=1.8285356562230959e-09.
Starting iteration 959
reconstruction error=0.20878078132499658
iteration 1, reconstruction error: 0.20878077717213073, decrease = 4.152865856754673e-09
iteration 2, reconstruction error: 0.2087807730301694, decrease = 4.141961329473531e-09
iteration 3, reconstruction error: 0.20878076889902922, decrease = 4.131140179941539e-09
iteration 4, reconstruction error: 0.20878076477867244, decrease = 4.1203567779923844e-09
PARAFAC2 reconstruction error=0.8189094546599796, variation=1.8271142376846683e-09.
Starting iteration 960
reconstruction error=0.20878075948208258
iteration 1, reconstruction error: 0.2087807553324338, decrease = 4.149648791251792e-09
iteration 2, reconstruction error: 0.2087807511936749, decrease = 4.138758891159e-09
iteration 3, reconstruction error: 0.20878074706571403, decrease = 4.127960862021496e-09
iteration 4, reconstruction error: 0.20878074294851962, decrease = 4.117194418729042e-09
PARAFAC2 reconstruction error=0.8189094528342852, variation=1.8256943734584752e-09.
Starting iteration 961
reconstruction error=0.20878073765611013
iteration 1, reconstruction error: 0.20878073350968, decrease = 4.146430143681101e-09
iteration 2, reconstruction error: 0.20878072937411582, decrease = 4.13556416889449e-09
iteration 3, reconstruction error: 0.20878072524933658, decrease = 4.124779240388676e-09
iteration 4, reconstruction error: 0.20878072113530527, decrease = 4.114031310065158e-09
PARAFAC2 reconstruction error=0.8189094510100094, variation=1.8242757304776092e-09.
Starting iteration 962
reconstruction error=0.20878071584707386
iteration 1, reconstruction error: 0.20878071170385468, decrease = 4.143219184404856e-09
iteration 2, reconstruction error: 0.20878070757148753, decrease = 4.132367142917204e-09
iteration 3, reconstruction error: 0.20878070344988217, decrease = 4.1216053625614535e-09
iteration 4, reconstruction error: 0.20878069933900625, decrease = 4.1108759174512954e-09
PARAFAC2 reconstruction error=0.8189094491871513, variation=1.8228581977197678e-09.
Starting iteration 963
reconstruction error=0.2087806940549522
iteration 1, reconstruction error: 0.20878068991494622, decrease = 4.140005976926986e-09
iteration 2, reconstruction error: 0.2087806857857692, decrease = 4.129177028078246e-09
iteration 3, reconstruction error: 0.2087806816673393, decrease = 4.118429902666421e-09
iteration 4, reconstruction error: 0.20878067755961954, decrease = 4.1077197476813154e-09
PARAFAC2 reconstruction error=0.8189094473657096, variation=1.8214416641626485e-09.
Starting iteration 964
reconstruction error=0.2087806722797375
iteration 1, reconstruction error: 0.20878066814293783, decrease = 4.136799680587444e-09
iteration 2, reconstruction error: 0.20878066401694936, decrease = 4.125988467551522e-09
iteration 3, reconstruction error: 0.20878065990169029, decrease = 4.1152590779525156e-09
iteration 4, reconstruction error: 0.20878065579712052, decrease = 4.104569767404698e-09
PARAFAC2 reconstruction error=0.8189094455456827, variation=1.8200269069623687e-09.
Starting iteration 965
reconstruction error=0.2087806505214089
iteration 1, reconstruction error: 0.2087806463878109, decrease = 4.1335979916734544e-09
iteration 2, reconstruction error: 0.2087806422650133, decrease = 4.122797603312023e-09
iteration 3, reconstruction error: 0.20878063815291967, decrease = 4.11209363782028e-09
iteration 4, reconstruction error: 0.20878063405150296, decrease = 4.101416706259187e-09
PARAFAC2 reconstruction error=0.8189094437270699, variation=1.8186128158959036e-09.
Starting iteration 966
reconstruction error=0.20878062877995038
iteration 1, reconstruction error: 0.20878062464955946, decrease = 4.130390918177795e-09
iteration 2, reconstruction error: 0.20878062052994348, decrease = 4.119615981679203e-09
iteration 3, reconstruction error: 0.20878061642101448, decrease = 4.108929002599737e-09
iteration 4, reconstruction error: 0.20878061232274467, decrease = 4.098269806851462e-09
PARAFAC2 reconstruction error=0.8189094419098694, variation=1.817200501186278e-09.
Starting iteration 967
reconstruction error=0.20878060705535562
iteration 1, reconstruction error: 0.2087806029281633, decrease = 4.127192310132699e-09
iteration 2, reconstruction error: 0.20878059881172661, decrease = 4.1164366915147355e-09
iteration 3, reconstruction error: 0.2087805947059615, decrease = 4.105765116779736e-09
iteration 4, reconstruction error: 0.20878059061083473, decrease = 4.0951267654687484e-09
PARAFAC2 reconstruction error=0.8189094400940804, variation=1.8157889636327695e-09.
Starting iteration 968
reconstruction error=0.20878058534760163
iteration 1, reconstruction error: 0.20878058122360482, decrease = 4.123996810712072e-09
iteration 2, reconstruction error: 0.20878057711034823, decrease = 4.113256596438575e-09
iteration 3, reconstruction error: 0.20878057300774314, decrease = 4.102605088984745e-09
iteration 4, reconstruction error: 0.20878056891575789, decrease = 4.0919852506426935e-09
PARAFAC2 reconstruction error=0.8189094382797016, variation=1.8143787583468907e-09.
Starting iteration 969
reconstruction error=0.20878056365667916
iteration 1, reconstruction error: 0.20878055953587785, decrease = 4.120801311291444e-09
iteration 2, reconstruction error: 0.20878055542579518, decrease = 4.110082663100201e-09
iteration 3, reconstruction error: 0.20878055132634854, decrease = 4.099446643257565e-09
iteration 4, reconstruction error: 0.20878054723750175, decrease = 4.088846788929956e-09
PARAFAC2 reconstruction error=0.8189094364667318, variation=1.8129698853286413e-09.
Starting iteration 970
reconstruction error=0.20878054198257126
iteration 1, reconstruction error: 0.20878053786496162, decrease = 4.117609642140252e-09
iteration 2, reconstruction error: 0.2087805337580505, decrease = 4.10691111674133e-09
iteration 3, reconstruction error: 0.20878052966175775, decrease = 4.096292749444785e-09
iteration 4, reconstruction error: 0.20878052557605015, decrease = 4.085707605572253e-09
PARAFAC2 reconstruction error=0.8189094346551695, variation=1.8115622335557191e-09.
Starting iteration 971
reconstruction error=0.20878052032526637
iteration 1, reconstruction error: 0.20878051621084068, decrease = 4.114425689039081e-09
iteration 2, reconstruction error: 0.20878051210710427, decrease = 4.1037364062468384e-09
iteration 3, reconstruction error: 0.20878050801396147, decrease = 4.093142796923743e-09
iteration 4, reconstruction error: 0.20878050393138614, decrease = 4.082575333352878e-09
PARAFAC2 reconstruction error=0.8189094328450135, variation=1.8101560250727289e-09.
Starting iteration 972
reconstruction error=0.2087804986847422
iteration 1, reconstruction error: 0.20878049457350734, decrease = 4.111234852555157e-09
iteration 2, reconstruction error: 0.20878049047293407, decrease = 4.100573269827379e-09
iteration 3, reconstruction error: 0.20878048638294128, decrease = 4.08999278889155e-09
iteration 4, reconstruction error: 0.2087804823034974, decrease = 4.079443866045196e-09
PARAFAC2 reconstruction error=0.8189094310362629, variation=1.8087505937458559e-09.
Starting iteration 973
reconstruction error=0.2087804770609903
iteration 1, reconstruction error: 0.20878047295293942, decrease = 4.10805087169841e-09
iteration 2, reconstruction error: 0.20878046885553, decrease = 4.097409411762953e-09
iteration 3, reconstruction error: 0.20878046476868414, decrease = 4.08684586172825e-09
iteration 4, reconstruction error: 0.20878046069236636, decrease = 4.076317783319183e-09
PARAFAC2 reconstruction error=0.8189094292289163, variation=1.807346605708915e-09.
Starting iteration 974
reconstruction error=0.20878045545399684
iteration 1, reconstruction error: 0.20878045134912215, decrease = 4.104874690158411e-09
iteration 2, reconstruction error: 0.20878044725487818, decrease = 4.094243971630718e-09
iteration 3, reconstruction error: 0.20878044317117847, decrease = 4.083699711721067e-09
iteration 4, reconstruction error: 0.20878043909798677, decrease = 4.073191700593171e-09
PARAFAC2 reconstruction error=0.8189094274229726, variation=1.8059437278949986e-09.
Starting iteration 975
reconstruction error=0.20878043386374628
iteration 1, reconstruction error: 0.20878042976204786, decrease = 4.101698425351685e-09
iteration 2, reconstruction error: 0.2087804256709639, decrease = 4.091083971591303e-09
iteration 3, reconstruction error: 0.2087804215904034, decrease = 4.080560500607788e-09
iteration 4, reconstruction error: 0.20878041752033702, decrease = 4.0700663672676995e-09
PARAFAC2 reconstruction error=0.8189094256184303, variation=1.8045422933710142e-09.
Starting iteration 976
reconstruction error=0.20878041229022185
iteration 1, reconstruction error: 0.20878040819170118, decrease = 4.098520661743876e-09
iteration 2, reconstruction error: 0.2087804041037711, decrease = 4.087930077778523e-09
iteration 3, reconstruction error: 0.208780400026349, decrease = 4.077422094406202e-09
iteration 4, reconstruction error: 0.20878039595940023, decrease = 4.066948777747825e-09
PARAFAC2 reconstruction error=0.8189094238152883, variation=1.8031419690700545e-09.
Starting iteration 977
reconstruction error=0.2087803907334135
iteration 1, reconstruction error: 0.20878038663806134, decrease = 4.095352168498323e-09
iteration 2, reconstruction error: 0.20878038255328432, decrease = 4.084777016633012e-09
iteration 3, reconstruction error: 0.20878037847899836, decrease = 4.074285964161817e-09
iteration 4, reconstruction error: 0.2087803744151695, decrease = 4.063828856759599e-09
PARAFAC2 reconstruction error=0.8189094220135454, variation=1.801742866014422e-09.
Starting iteration 978
reconstruction error=0.20878036919329812
iteration 1, reconstruction error: 0.2087803651011168, decrease = 4.092181316028842e-09
iteration 2, reconstruction error: 0.20878036101949288, decrease = 4.0816239277319255e-09
iteration 3, reconstruction error: 0.20878035694833763, decrease = 4.071155246254676e-09
iteration 4, reconstruction error: 0.20878035288762486, decrease = 4.060712766040808e-09
PARAFAC2 reconstruction error=0.8189094202132003, variation=1.8003450952264188e-09.
Starting iteration 979
reconstruction error=0.20878034766986953
iteration 1, reconstruction error: 0.20878034358085443, decrease = 4.089015098740489e-09
iteration 2, reconstruction error: 0.20878033950237662, decrease = 4.078477805480318e-09
iteration 3, reconstruction error: 0.2087803354343552, decrease = 4.068021419723067e-09
iteration 4, reconstruction error: 0.20878033137675386, decrease = 4.057601338258721e-09
PARAFAC2 reconstruction error=0.818909418414252, variation=1.798948323639138e-09.
Starting iteration 980
reconstruction error=0.2087803261631109
iteration 1, reconstruction error: 0.20878032207725813, decrease = 4.085852767232723e-09
iteration 2, reconstruction error: 0.20878031800192573, decrease = 4.075332404873677e-09
iteration 3, reconstruction error: 0.20878031393703195, decrease = 4.06489378268482e-09
iteration 4, reconstruction error: 0.2087803098825397, decrease = 4.054492241944985e-09
PARAFAC2 reconstruction error=0.8189094166166992, variation=1.797552773297184e-09.
Starting iteration 981
reconstruction error=0.20878030467300437
iteration 1, reconstruction error: 0.20878030059031627, decrease = 4.082688104256604e-09
iteration 2, reconstruction error: 0.20878029651812616, decrease = 4.072190112891505e-09
iteration 3, reconstruction error: 0.20878029245635457, decrease = 4.061771585739393e-09
iteration 4, reconstruction error: 0.20878028840497148, decrease = 4.0513830901200976e-09
PARAFAC2 reconstruction error=0.8189094148205404, variation=1.7961588882897672e-09.
Starting iteration 982
reconstruction error=0.2087802831995416
iteration 1, reconstruction error: 0.20878027912000735, decrease = 4.0795342381994004e-09
iteration 2, reconstruction error: 0.2087802750509603, decrease = 4.0690470437532156e-09
iteration 3, reconstruction error: 0.20878027099231097, decrease = 4.0586493332828155e-09
iteration 4, reconstruction error: 0.20878026694403315, decrease = 4.048277824075797e-09
PARAFAC2 reconstruction error=0.8189094130257748, variation=1.7947655583938626e-09.
Starting iteration 983
reconstruction error=0.2087802617427041
iteration 1, reconstruction error: 0.20878025766632524, decrease = 4.076378845585538e-09
iteration 2, reconstruction error: 0.20878025360041355, decrease = 4.065911690664947e-09
iteration 3, reconstruction error: 0.20878024954488414, decrease = 4.0555294122945895e-09
iteration 4, reconstruction error: 0.20878024549970772, decrease = 4.045176416056506e-09
PARAFAC2 reconstruction error=0.8189094112324008, variation=1.7933740048547975e-09.
Starting iteration 984
reconstruction error=0.20878024030247563
iteration 1, reconstruction error: 0.2087802362292499, decrease = 4.073225728928875e-09
iteration 2, reconstruction error: 0.2087802321664751, decrease = 4.06277481102002e-09
iteration 3, reconstruction error: 0.20878022811406177, decrease = 4.0524133215757985e-09
iteration 4, reconstruction error: 0.2087802240719829, decrease = 4.0420788660622264e-09
PARAFAC2 reconstruction error=0.8189094094404175, variation=1.791983339494152e-09.
Starting iteration 985
reconstruction error=0.2087802188788455
iteration 1, reconstruction error: 0.20878021480877057, decrease = 4.070074943740565e-09
iteration 2, reconstruction error: 0.2087802107491265, decrease = 4.059644065357304e-09
iteration 3, reconstruction error: 0.20878020669982847, decrease = 4.0492980357687e-09
iteration 4, reconstruction error: 0.2087802026608487, decrease = 4.038979761755712e-09
PARAFAC2 reconstruction error=0.8189094076498235, variation=1.790594006401136e-09.
Starting iteration 986
reconstruction error=0.20878019747179755
iteration 1, reconstruction error: 0.20878019340487028, decrease = 4.066927267176723e-09
iteration 2, reconstruction error: 0.20878018934835385, decrease = 4.056516428319057e-09
iteration 3, reconstruction error: 0.2087801853021688, decrease = 4.046185053674378e-09
iteration 4, reconstruction error: 0.2087801812662812, decrease = 4.035887596343102e-09
PARAFAC2 reconstruction error=0.8189094058606176, variation=1.7892058945534473e-09.
Starting iteration 987
reconstruction error=0.20878017608132016
iteration 1, reconstruction error: 0.20878017201753443, decrease = 4.0637857245950926e-09
iteration 2, reconstruction error: 0.2087801679641464, decrease = 4.053388041880268e-09
iteration 3, reconstruction error: 0.20878016392106816, decrease = 4.043078233317843e-09
iteration 4, reconstruction error: 0.20878015988827273, decrease = 4.0327954309304914e-09
PARAFAC2 reconstruction error=0.8189094040727988, variation=1.7878187819064806e-09.
Starting iteration 988
reconstruction error=0.2087801547073919
iteration 1, reconstruction error: 0.20878015064674998, decrease = 4.0606419060562615e-09
iteration 2, reconstruction error: 0.2087801465964842, decrease = 4.0502657894236904e-09
iteration 3, reconstruction error: 0.20878014255651509, decrease = 4.039969109248531e-09
iteration 4, reconstruction error: 0.2087801385268064, decrease = 4.029708677855126e-09
PARAFAC2 reconstruction error=0.8189094022863653, variation=1.7864334456163533e-09.
Starting iteration 989
reconstruction error=0.20878013335000647
iteration 1, reconstruction error: 0.20878012929250145, decrease = 4.057505026411334e-09
iteration 2, reconstruction error: 0.20878012524535716, decrease = 4.047144286367654e-09
iteration 3, reconstruction error: 0.20878012120848868, decrease = 4.036868478385358e-09
iteration 4, reconstruction error: 0.20878011718186754, decrease = 4.0266211476236435e-09
PARAFAC2 reconstruction error=0.8189094005013167, variation=1.7850486644377384e-09.
Starting iteration 990
reconstruction error=0.20878011200914473
iteration 1, reconstruction error: 0.20878010795477278, decrease = 4.0543719492802666e-09
iteration 2, reconstruction error: 0.2087801039107484, decrease = 4.044024393135004e-09
iteration 3, reconstruction error: 0.20878009987698057, decrease = 4.033767819766609e-09
iteration 4, reconstruction error: 0.20878009585344617, decrease = 4.023534394548278e-09
PARAFAC2 reconstruction error=0.8189093987176511, variation=1.7836655485936603e-09.
Starting iteration 991
reconstruction error=0.20878009068478973
iteration 1, reconstruction error: 0.20878008663355466, decrease = 4.0512350696353394e-09
iteration 2, reconstruction error: 0.2087800825926471, decrease = 4.040907553015671e-09
iteration 3, reconstruction error: 0.2087800785619761, decrease = 4.0306709914172956e-09
iteration 4, reconstruction error: 0.20878007454152075, decrease = 4.020455357522934e-09
PARAFAC2 reconstruction error=0.8189093969353677, variation=1.7822834319503045e-09.
Starting iteration 992
reconstruction error=0.2087800693769337
iteration 1, reconstruction error: 0.20878006532883012, decrease = 4.048103574572082e-09
iteration 2, reconstruction error: 0.2087800612910333, decrease = 4.037796819122974e-09
iteration 3, reconstruction error: 0.2087800572634606, decrease = 4.027572692022474e-09
iteration 4, reconstruction error: 0.20878005324607968, decrease = 4.017380927923142e-09
PARAFAC2 reconstruction error=0.818909395154465, variation=1.7809026475745782e-09.
Starting iteration 993
reconstruction error=0.2087800480855606
iteration 1, reconstruction error: 0.2087800440405847, decrease = 4.044975909778259e-09
iteration 2, reconstruction error: 0.20878004000589698, decrease = 4.034687722809238e-09
iteration 3, reconstruction error: 0.2087800359814149, decrease = 4.024482080922098e-09
iteration 4, reconstruction error: 0.2087800319671115, decrease = 4.014303389698881e-09
PARAFAC2 reconstruction error=0.8189093933749423, variation=1.7795227513772716e-09.
Starting iteration 994
reconstruction error=0.20878002681065114
iteration 1, reconstruction error: 0.20878002276879826, decrease = 4.041852880165564e-09
iteration 2, reconstruction error: 0.20878001873721966, decrease = 4.031578598739927e-09
iteration 3, reconstruction error: 0.20878001471582822, decrease = 4.021391442066147e-09
iteration 4, reconstruction error: 0.20878001070460078, decrease = 4.01122743354243e-09
PARAFAC2 reconstruction error=0.8189093915967978, variation=1.7781445205145019e-09.
Starting iteration 995
reconstruction error=0.20878000555219448
iteration 1, reconstruction error: 0.20878000151346537, decrease = 4.0387291011523274e-09
iteration 2, reconstruction error: 0.20877999748499207, decrease = 4.02847330494005e-09
iteration 3, reconstruction error: 0.2087799934666905, decrease = 4.0183015803663125e-09
iteration 4, reconstruction error: 0.20877998945852821, decrease = 4.008162274304894e-09
PARAFAC2 reconstruction error=0.8189093898200305, variation=1.7767672888524544e-09.
Starting iteration 996
reconstruction error=0.20877998431017916
iteration 1, reconstruction error: 0.20877998027456998, decrease = 4.0356091801641014e-09
iteration 2, reconstruction error: 0.2087799762491981, decrease = 4.025371869165184e-09
iteration 3, reconstruction error: 0.20877997223397943, decrease = 4.015218685315958e-09
iteration 4, reconstruction error: 0.20877996822888772, decrease = 4.0050917027301125e-09
PARAFAC2 reconstruction error=0.8189093880446391, variation=1.7753913894580364e-09.
Starting iteration 997
reconstruction error=0.20877996308458666
iteration 1, reconstruction error: 0.20877995905209357, decrease = 4.03249308944531e-09
iteration 2, reconstruction error: 0.20877995502982077, decrease = 4.0222727926142454e-09
iteration 3, reconstruction error: 0.20877995101768654, decrease = 4.0121342359533685e-09
iteration 4, reconstruction error: 0.2087799470156577, decrease = 4.002028847205352e-09
PARAFAC2 reconstruction error=0.8189093862706229, variation=1.7740161561974332e-09.
Starting iteration 998
reconstruction error=0.20877994187540316
iteration 1, reconstruction error: 0.20877993784602383, decrease = 4.029379330194871e-09
iteration 2, reconstruction error: 0.20877993382684784, decrease = 4.019175992020507e-09
iteration 3, reconstruction error: 0.20877992981779112, decrease = 4.009056725484683e-09
iteration 4, reconstruction error: 0.20877992581882746, decrease = 3.99896366021224e-09
PARAFAC2 reconstruction error=0.81890938449798, variation=1.7726429213382744e-09.
Starting iteration 999
reconstruction error=0.20877992068261403
iteration 1, reconstruction error: 0.2087799166563469, decrease = 4.026267125256666e-09
iteration 2, reconstruction error: 0.20877991264026388, decrease = 4.016083021696204e-09
iteration 3, reconstruction error: 0.20877990863428544, decrease = 4.005978437859881e-09
iteration 4, reconstruction error: 0.20877990463838, decrease = 3.995905439868608e-09
PARAFAC2 reconstruction error=0.8189093827267094, variation=1.7712705746575352e-09.
Starting iteration 1000
reconstruction error=0.20877989950620537
iteration 1, reconstruction error: 0.20877989548304587, decrease = 4.023159499988438e-09
iteration 2, reconstruction error: 0.20877989147005732, decrease = 4.0129885525708175e-09
iteration 3, reconstruction error: 0.2087798874671533, decrease = 4.002904008260089e-09
iteration 4, reconstruction error: 0.20877988347430454, decrease = 3.99284877383721e-09
PARAFAC2 reconstruction error=0.8189093809568101, variation=1.7698993381998207e-09.
Starting iteration 1001
reconstruction error=0.20877987834616343
iteration 1, reconstruction error: 0.20877987432611153, decrease = 4.020051902475785e-09
iteration 2, reconstruction error: 0.2087798703162105, decrease = 4.009901022339335e-09
iteration 3, reconstruction error: 0.20877986631637863, decrease = 3.999831882373073e-09
iteration 4, reconstruction error: 0.20877986232658266, decrease = 3.989795965830822e-09
PARAFAC2 reconstruction error=0.8189093791882809, variation=1.7685292119651308e-09.
Starting iteration 1002
reconstruction error=0.20877985720247502
iteration 1, reconstruction error: 0.20877985318552605, decrease = 4.016948967899836e-09
iteration 2, reconstruction error: 0.20877984917871106, decrease = 4.006814990908936e-09
iteration 3, reconstruction error: 0.20877984518194742, decrease = 3.996763642266643e-09
iteration 4, reconstruction error: 0.20877984119520432, decrease = 3.986743102313284e-09
PARAFAC2 reconstruction error=0.8189093774211205, variation=1.7671604179980704e-09.
Starting iteration 1003
reconstruction error=0.20877983607512482
iteration 1, reconstruction error: 0.20877983206127268, decrease = 4.013852139550522e-09
iteration 2, reconstruction error: 0.20877982805754444, decrease = 4.00372823783357e-09
iteration 3, reconstruction error: 0.208779824063846, decrease = 3.993698455273531e-09
iteration 4, reconstruction error: 0.20877982008015183, decrease = 3.983694152331907e-09
PARAFAC2 reconstruction error=0.8189093756553276, variation=1.7657928452763372e-09.
Starting iteration 1004
reconstruction error=0.20877981496409814
iteration 1, reconstruction error: 0.2087798109533451, decrease = 4.010753035244008e-09
iteration 2, reconstruction error: 0.2087798069526936, decrease = 4.000651504521002e-09
iteration 3, reconstruction error: 0.20877980296205956, decrease = 3.990634045436536e-09
iteration 4, reconstruction error: 0.20877979898141286, decrease = 3.980646701151613e-09
PARAFAC2 reconstruction error=0.8189093738909012, variation=1.7644263827776285e-09.
Starting iteration 1005
reconstruction error=0.20877979386937884
iteration 1, reconstruction error: 0.2087797898617226, decrease = 4.00765623465027e-09
iteration 2, reconstruction error: 0.20877978586414864, decrease = 3.997573966296741e-09
iteration 3, reconstruction error: 0.20877978187657512, decrease = 3.987573521380128e-09
iteration 4, reconstruction error: 0.20877977789897506, decrease = 3.977600054883013e-09
PARAFAC2 reconstruction error=0.8189093721278399, variation=1.763061363568852e-09.
Starting iteration 1006
reconstruction error=0.20877977279095541
iteration 1, reconstruction error: 0.2087797687863929, decrease = 4.004562514925425e-09
iteration 2, reconstruction error: 0.20877976479189259, decrease = 3.994500313853067e-09
iteration 3, reconstruction error: 0.20877976080737887, decrease = 3.984513718968685e-09
iteration 4, reconstruction error: 0.20877975683281932, decrease = 3.974559542596623e-09
PARAFAC2 reconstruction error=0.8189093703661424, variation=1.7616974545831e-09.
Starting iteration 1007
reconstruction error=0.20877975172881014
iteration 1, reconstruction error: 0.20877974772733826, decrease = 4.001471876069473e-09
iteration 2, reconstruction error: 0.20877974373591393, decrease = 3.99142432994104e-09
iteration 3, reconstruction error: 0.20877973975445457, decrease = 3.981459356650063e-09
iteration 4, reconstruction error: 0.20877973578293244, decrease = 3.971522138934702e-09
PARAFAC2 reconstruction error=0.818909368605808, variation=1.7603344337757676e-09.
Starting iteration 1008
reconstruction error=0.20877973068293532
iteration 1, reconstruction error: 0.20877972668455022, decrease = 3.9983850952385325e-09
iteration 2, reconstruction error: 0.20877972269619335, decrease = 3.988356866990728e-09
iteration 3, reconstruction error: 0.20877971871778683, decrease = 3.9784065208881e-09
iteration 4, reconstruction error: 0.20877971474930132, decrease = 3.968485512428899e-09
PARAFAC2 reconstruction error=0.8189093668468348, variation=1.7589731893252747e-09.
Starting iteration 1009
reconstruction error=0.2087797096533109
iteration 1, reconstruction error: 0.20877970565801104, decrease = 3.995299868719826e-09
iteration 2, reconstruction error: 0.20877970167272322, decrease = 3.985287821972605e-09
iteration 3, reconstruction error: 0.2087796976973657, decrease = 3.975357515395572e-09
iteration 4, reconstruction error: 0.2087796937319153, decrease = 3.965450412479754e-09
PARAFAC2 reconstruction error=0.8189093650892223, variation=1.757612499986294e-09.
Starting iteration 1010
reconstruction error=0.2087796886399247
iteration 1, reconstruction error: 0.20877968464770313, decrease = 3.992221553339448e-09
iteration 2, reconstruction error: 0.20877968066548203, decrease = 3.982221108422834e-09
iteration 3, reconstruction error: 0.20877967669317193, decrease = 3.972310091970854e-09
iteration 4, reconstruction error: 0.208779672730752, decrease = 3.962419947711737e-09
PARAFAC2 reconstruction error=0.8189093633329688, variation=1.7562534759818504e-09.
Starting iteration 1011
reconstruction error=0.20877966764276348
iteration 1, reconstruction error: 0.20877966365362174, decrease = 3.9891417391579864e-09
iteration 2, reconstruction error: 0.20877965967445966, decrease = 3.979162083167509e-09
iteration 3, reconstruction error: 0.20877965570519777, decrease = 3.969261891390019e-09
iteration 4, reconstruction error: 0.2087796517458052, decrease = 3.959392563812614e-09
PARAFAC2 reconstruction error=0.8189093615780735, variation=1.7548953401558265e-09.
Starting iteration 1012
reconstruction error=0.20877964666181267
iteration 1, reconstruction error: 0.20877964267574384, decrease = 3.986068836114853e-09
iteration 2, reconstruction error: 0.20877963869964308, decrease = 3.9761007541994076e-09
iteration 3, reconstruction error: 0.20877963473342245, decrease = 3.966220629703088e-09
iteration 4, reconstruction error: 0.20877963077705572, decrease = 3.956366734225725e-09
PARAFAC2 reconstruction error=0.8189093598245349, variation=1.753538536597432e-09.
Starting iteration 1013
reconstruction error=0.2087796256970523
iteration 1, reconstruction error: 0.20877962171405867, decrease = 3.982993629358944e-09
iteration 2, reconstruction error: 0.20877961774101692, decrease = 3.973041756699658e-09
iteration 3, reconstruction error: 0.20877961377783683, decrease = 3.9631800896611225e-09
iteration 4, reconstruction error: 0.2087796098244913, decrease = 3.953345512064388e-09
PARAFAC2 reconstruction error=0.818909358072352, variation=1.7521829542843648e-09.
Starting iteration 1014
reconstruction error=0.20877960474847848
iteration 1, reconstruction error: 0.2087796007685562, decrease = 3.9799222806280454e-09
iteration 2, reconstruction error: 0.20877959679856498, decrease = 3.969991224650471e-09
iteration 3, reconstruction error: 0.20877959283842304, decrease = 3.96014193659866e-09
iteration 4, reconstruction error: 0.20877958888809797, decrease = 3.950325067059168e-09
PARAFAC2 reconstruction error=0.8189093563215233, variation=1.750828704238927e-09.
Starting iteration 1015
reconstruction error=0.20877958381606812
iteration 1, reconstruction error: 0.20877957983921414, decrease = 3.9768539850104645e-09
iteration 2, reconstruction error: 0.20877957587227342, decrease = 3.96694072035686e-09
iteration 3, reconstruction error: 0.20877957191516505, decrease = 3.957108363206174e-09
iteration 4, reconstruction error: 0.20877956796786043, decrease = 3.947304622053949e-09
PARAFAC2 reconstruction error=0.8189093545720479, variation=1.749475342371909e-09.
Starting iteration 1016
reconstruction error=0.2087795628998105
iteration 1, reconstruction error: 0.20877955892602398, decrease = 3.973786522060152e-09
iteration 2, reconstruction error: 0.20877955496213227, decrease = 3.9638917148643316e-09
iteration 3, reconstruction error: 0.2087795510080559, decrease = 3.954076371881499e-09
iteration 4, reconstruction error: 0.20877954706376559, decrease = 3.94429031103094e-09
PARAFAC2 reconstruction error=0.8189093528239246, variation=1.7481233127725204e-09.
Starting iteration 1017
reconstruction error=0.20877954199969326
iteration 1, reconstruction error: 0.20877953802896654, decrease = 3.9707267196487095e-09
iteration 2, reconstruction error: 0.20877953406811917, decrease = 3.960847372308507e-09
iteration 3, reconstruction error: 0.20877953011707406, decrease = 3.951045102201789e-09
iteration 4, reconstruction error: 0.20877952617579953, decrease = 3.941274528962424e-09
PARAFAC2 reconstruction error=0.8189093510771521, variation=1.746772504418459e-09.
Starting iteration 1018
reconstruction error=0.20877952111569634
iteration 1, reconstruction error: 0.20877951714803403, decrease = 3.967662309811715e-09
iteration 2, reconstruction error: 0.20877951319023103, decrease = 3.957803001997107e-09
iteration 3, reconstruction error: 0.20877950924221328, decrease = 3.948017746058241e-09
iteration 4, reconstruction error: 0.208779505303943, decrease = 3.938270265457788e-09
PARAFAC2 reconstruction error=0.8189093493317292, variation=1.7454229173097247e-09.
Starting iteration 1019
reconstruction error=0.20877950024781292
iteration 1, reconstruction error: 0.20877949628320652, decrease = 3.964606393180858e-09
iteration 2, reconstruction error: 0.20877949232844556, decrease = 3.954760963154058e-09
iteration 3, reconstruction error: 0.20877948838345137, decrease = 3.9449941924285525e-09
iteration 4, reconstruction error: 0.20877948444818997, decrease = 3.9352613945276005e-09
PARAFAC2 reconstruction error=0.8189093475876548, variation=1.744074440424015e-09.
Starting iteration 1020
reconstruction error=0.20877947939602368
iteration 1, reconstruction error: 0.20877947543447015, decrease = 3.96155352966332e-09
iteration 2, reconstruction error: 0.20877947148274892, decrease = 3.951721228023786e-09
iteration 3, reconstruction error: 0.20877946754077673, decrease = 3.9419721931110985e-09
iteration 4, reconstruction error: 0.20877946360852342, decrease = 3.93225330075353e-09
PARAFAC2 reconstruction error=0.8189093458449277, variation=1.7427270737613298e-09.
Starting iteration 1021
reconstruction error=0.20877945856032093
iteration 1, reconstruction error: 0.20877945460181946, decrease = 3.958501471057474e-09
iteration 2, reconstruction error: 0.2087794506531318, decrease = 3.9486876546313e-09
iteration 3, reconstruction error: 0.20877944671417697, decrease = 3.938954828974772e-09
iteration 4, reconstruction error: 0.2087794427849233, decrease = 3.929253672430022e-09
PARAFAC2 reconstruction error=0.8189093441035465, variation=1.7413811503885768e-09.
Starting iteration 1022
reconstruction error=0.20877943774068167
iteration 1, reconstruction error: 0.20877943378523073, decrease = 3.955450939008287e-09
iteration 2, reconstruction error: 0.20877942983957665, decrease = 3.945654081238814e-09
iteration 3, reconstruction error: 0.20877942590363607, decrease = 3.935940573462915e-09
iteration 4, reconstruction error: 0.20877942197738433, decrease = 3.926251740393738e-09
PARAFAC2 reconstruction error=0.8189093423635105, variation=1.740036004171941e-09.
Starting iteration 1023
reconstruction error=0.208779416937095
iteration 1, reconstruction error: 0.2087794129846923, decrease = 3.952402710671876e-09
iteration 2, reconstruction error: 0.20877940904206713, decrease = 3.942625170783032e-09
iteration 3, reconstruction error: 0.2087794051091416, decrease = 3.932925513039365e-09
iteration 4, reconstruction error: 0.20877940118588642, decrease = 3.9232551929391235e-09
PARAFAC2 reconstruction error=0.8189093406248181, variation=1.7386924122675396e-09.
Starting iteration 1024
reconstruction error=0.20877939614955257
iteration 1, reconstruction error: 0.20877939220019112, decrease = 3.949361448984945e-09
iteration 2, reconstruction error: 0.2087793882605918, decrease = 3.939599313440567e-09
iteration 3, reconstruction error: 0.20877938433067902, decrease = 3.929912784084166e-09
iteration 4, reconstruction error: 0.2087793804104173, decrease = 3.920261726353402e-09
PARAFAC2 reconstruction error=0.8189093388874682, variation=1.7373499305861628e-09.
Starting iteration 1025
reconstruction error=0.20877937537803348
iteration 1, reconstruction error: 0.20877937143171335, decrease = 3.946320131786862e-09
iteration 2, reconstruction error: 0.20877936749514064, decrease = 3.936572706697561e-09
iteration 3, reconstruction error: 0.2087793635682352, decrease = 3.926905439710637e-09
iteration 4, reconstruction error: 0.20877935965096692, decrease = 3.917268287523257e-09
PARAFAC2 reconstruction error=0.8189093371514596, variation=1.7360085591278107e-09.
Starting iteration 1026
reconstruction error=0.20877935462252245
iteration 1, reconstruction error: 0.20877935067924355, decrease = 3.943278897855507e-09
iteration 2, reconstruction error: 0.20877934674569207, decrease = 3.933551484536224e-09
iteration 3, reconstruction error: 0.20877934282179167, decrease = 3.923900399049884e-09
iteration 4, reconstruction error: 0.2087793389075122, decrease = 3.914279456118663e-09
PARAFAC2 reconstruction error=0.8189093354167911, variation=1.7346685199370881e-09.
Starting iteration 1027
reconstruction error=0.20877933388301168
iteration 1, reconstruction error: 0.2087793299427702, decrease = 3.94024146643801e-09
iteration 2, reconstruction error: 0.20877932601223612, decrease = 3.930534092644322e-09
iteration 3, reconstruction error: 0.20877932209133993, decrease = 3.9208961910564e-09
iteration 4, reconstruction error: 0.20877931818004622, decrease = 3.911293705582963e-09
PARAFAC2 reconstruction error=0.8189093336834617, variation=1.7333293689247853e-09.
Starting iteration 1028
reconstruction error=0.20877931315948434
iteration 1, reconstruction error: 0.20877930922227103, decrease = 3.93721330538277e-09
iteration 2, reconstruction error: 0.2087793052947582, decrease = 3.92751284272741e-09
iteration 3, reconstruction error: 0.20877930137686163, decrease = 3.917896562732892e-09
iteration 4, reconstruction error: 0.2087792974685552, decrease = 3.908306428490604e-09
PARAFAC2 reconstruction error=0.8189093319514699, variation=1.7319918832470194e-09.
Starting iteration 1029
reconstruction error=0.20877929245192567
iteration 1, reconstruction error: 0.2087792885177444, decrease = 3.934181258546943e-09
iteration 2, reconstruction error: 0.2087792845932466, decrease = 3.924497810059435e-09
iteration 3, reconstruction error: 0.2087792806783466, decrease = 3.914899987522702e-09
iteration 4, reconstruction error: 0.2087792767730213, decrease = 3.905325313136032e-09
PARAFAC2 reconstruction error=0.8189093302208149, variation=1.7306549526807657e-09.
Starting iteration 1030
reconstruction error=0.208779271760322
iteration 1, reconstruction error: 0.20877926782917042, decrease = 3.931151570935043e-09
iteration 2, reconstruction error: 0.20877926390768303, decrease = 3.921487384817013e-09
iteration 3, reconstruction error: 0.20877925999577804, decrease = 3.911904994380322e-09
iteration 4, reconstruction error: 0.20877925609343154, decrease = 3.902346501494236e-09
PARAFAC2 reconstruction error=0.8189093284914952, variation=1.729319687449049e-09.
Starting iteration 1031
reconstruction error=0.20877925108465936
iteration 1, reconstruction error: 0.20877924715653134, decrease = 3.9281280173053545e-09
iteration 2, reconstruction error: 0.20877924323805205, decrease = 3.918479291042942e-09
iteration 3, reconstruction error: 0.20877923932914286, decrease = 3.908909196326249e-09
iteration 4, reconstruction error: 0.2087792354297705, decrease = 3.899372352789143e-09
PARAFAC2 reconstruction error=0.8189093267635098, variation=1.7279854214180546e-09.
Starting iteration 1032
reconstruction error=0.20877923042492158
iteration 1, reconstruction error: 0.20877922649981712, decrease = 3.925104463675666e-09
iteration 2, reconstruction error: 0.20877922258434517, decrease = 3.915471946669413e-09
iteration 3, reconstruction error: 0.2087792186784248, decrease = 3.905920364921656e-09
iteration 4, reconstruction error: 0.20877921478203051, decrease = 3.896394290547889e-09
PARAFAC2 reconstruction error=0.8189093250368574, variation=1.7266523766323871e-09.
Starting iteration 1033
reconstruction error=0.2087792097810995
iteration 1, reconstruction error: 0.20877920585901316, decrease = 3.922086350138798e-09
iteration 2, reconstruction error: 0.20877920194654473, decrease = 3.912468432565319e-09
iteration 3, reconstruction error: 0.20877919804361164, decrease = 3.902933087829297e-09
iteration 4, reconstruction error: 0.20877919415018842, decrease = 3.893423222711689e-09
PARAFAC2 reconstruction error=0.8189093233115372, variation=1.7253202200251394e-09.
Starting iteration 1034
reconstruction error=0.2087791891531753
iteration 1, reconstruction error: 0.20877918523410635, decrease = 3.919068958246896e-09
iteration 2, reconstruction error: 0.20877918132464063, decrease = 3.909465723372918e-09
iteration 3, reconstruction error: 0.20877917742469249, decrease = 3.8999481422052895e-09
iteration 4, reconstruction error: 0.20877917353423495, decrease = 3.8904575394571594e-09
PARAFAC2 reconstruction error=0.8189093215875473, variation=1.7239899507970335e-09.
Starting iteration 1035
reconstruction error=0.20877916854113757
iteration 1, reconstruction error: 0.20877916462508445, decrease = 3.916053120667229e-09
iteration 2, reconstruction error: 0.20877916071861374, decrease = 3.906470702474962e-09
iteration 3, reconstruction error: 0.20877915682164827, decrease = 3.896965472538483e-09
iteration 4, reconstruction error: 0.2087791529341603, decrease = 3.887487970422043e-09
PARAFAC2 reconstruction error=0.8189093198648872, variation=1.722660014635835e-09.
Starting iteration 1036
reconstruction error=0.20877914794497004
iteration 1, reconstruction error: 0.2087791440319266, decrease = 3.913043444825348e-09
iteration 2, reconstruction error: 0.20877914012845242, decrease = 3.903474182775923e-09
iteration 3, reconstruction error: 0.20877913623446653, decrease = 3.8939858837405694e-09
iteration 4, reconstruction error: 0.20877913234994114, decrease = 3.884525395791982e-09
PARAFAC2 reconstruction error=0.8189093181435553, variation=1.7213319658537785e-09.
Starting iteration 1037
reconstruction error=0.20877912736465737
iteration 1, reconstruction error: 0.20877912345462435, decrease = 3.910033019582926e-09
iteration 2, reconstruction error: 0.20877911955414363, decrease = 3.900480716190202e-09
iteration 3, reconstruction error: 0.20877911566313578, decrease = 3.8910078492548905e-09
iteration 4, reconstruction error: 0.20877911178157227, decrease = 3.881563515051312e-09
PARAFAC2 reconstruction error=0.8189093164235507, variation=1.7200045832055366e-09.
Starting iteration 1038
reconstruction error=0.2087791068001888
iteration 1, reconstruction error: 0.20877910289316157, decrease = 3.907027229521631e-09
iteration 2, reconstruction error: 0.20877909899567432, decrease = 3.897487249604481e-09
iteration 3, reconstruction error: 0.20877909510763987, decrease = 3.8880344499503394e-09
iteration 4, reconstruction error: 0.20877909122903665, decrease = 3.878603216378451e-09
PARAFAC2 reconstruction error=0.8189093147048722, variation=1.7186785328249243e-09.
Starting iteration 1039
reconstruction error=0.20877908625154737
iteration 1, reconstruction error: 0.20877908234752518, decrease = 3.904022188860878e-09
iteration 2, reconstruction error: 0.20877907845302598, decrease = 3.894499195356005e-09
iteration 3, reconstruction error: 0.2087790745679634, decrease = 3.885062577202447e-09
iteration 4, reconstruction error: 0.20877907069231352, decrease = 3.87564988435507e-09
PARAFAC2 reconstruction error=0.8189093129875182, variation=1.717353925734244e-09.
Starting iteration 1040
reconstruction error=0.20877906571872
iteration 1, reconstruction error: 0.2087790618177044, decrease = 3.901015621643467e-09
iteration 2, reconstruction error: 0.20877905792618787, decrease = 3.891516525689198e-09
iteration 3, reconstruction error: 0.20877905404409794, decrease = 3.882089927298438e-09
iteration 4, reconstruction error: 0.20877905017140141, decrease = 3.8726965245761136e-09
PARAFAC2 reconstruction error=0.8189093112714881, variation=1.716030095799681e-09.
Starting iteration 1041
reconstruction error=0.20877904520169976
iteration 1, reconstruction error: 0.20877904130368144, decrease = 3.8980183247883105e-09
iteration 2, reconstruction error: 0.20877903741514683, decrease = 3.888534605422933e-09
iteration 3, reconstruction error: 0.2087790335360226, decrease = 3.879124244043908e-09
iteration 4, reconstruction error: 0.20877902966628017, decrease = 3.869742415396615e-09
PARAFAC2 reconstruction error=0.8189093095567807, variation=1.714707487110445e-09.
Starting iteration 1042
reconstruction error=0.20877902470053242
iteration 1, reconstruction error: 0.20877902080550373, decrease = 3.895028688472024e-09
iteration 2, reconstruction error: 0.20877901691995254, decrease = 3.885551186355585e-09
iteration 3, reconstruction error: 0.208779013043794, decrease = 3.876158533033802e-09
iteration 4, reconstruction error: 0.20877900917700032, decrease = 3.8667936907987865e-09
PARAFAC2 reconstruction error=0.8189093078433947, variation=1.7133859886442337e-09.
Starting iteration 1043
reconstruction error=0.2087790042150621
iteration 1, reconstruction error: 0.2087790003230315, decrease = 3.892030586705175e-09
iteration 2, reconstruction error: 0.20877899644045836, decrease = 3.882573151869906e-09
iteration 3, reconstruction error: 0.20877899256725857, decrease = 3.873199788673176e-09
iteration 4, reconstruction error: 0.208778988703409, decrease = 3.86384957362651e-09
PARAFAC2 reconstruction error=0.818909306131329, variation=1.7120657114233495e-09.
Starting iteration 1044
reconstruction error=0.2087789837453558
iteration 1, reconstruction error: 0.20877897985631638, decrease = 3.88903942383223e-09
iteration 2, reconstruction error: 0.20877897597671663, decrease = 3.879599752565355e-09
iteration 3, reconstruction error: 0.20877897210647714, decrease = 3.870239490000316e-09
iteration 4, reconstruction error: 0.20877896824557246, decrease = 3.860904679298116e-09
PARAFAC2 reconstruction error=0.8189093044205821, variation=1.7107468774923973e-09.
Starting iteration 1045
reconstruction error=0.20877896329139795
iteration 1, reconstruction error: 0.20877895940534658, decrease = 3.886051369583754e-09
iteration 2, reconstruction error: 0.20877895552871872, decrease = 3.876627852061887e-09
iteration 3, reconstruction error: 0.20877895166143645, decrease = 3.8672822721963485e-09
iteration 4, reconstruction error: 0.20877894780347278, decrease = 3.8579636707503084e-09
PARAFAC2 reconstruction error=0.8189093027111528, variation=1.7094292648067722e-09.
Starting iteration 1046
reconstruction error=0.20877894285317405
iteration 1, reconstruction error: 0.2087789389701069, decrease = 3.883067145604713e-09
iteration 2, reconstruction error: 0.2087789350964509, decrease = 3.87365600706957e-09
iteration 3, reconstruction error: 0.20877893123212354, decrease = 3.864327358105157e-09
iteration 4, reconstruction error: 0.2087789273770947, decrease = 3.855028851695863e-09
PARAFAC2 reconstruction error=0.8189093010030404, variation=1.7081124292772643e-09.
Starting iteration 1047
reconstruction error=0.20877892243066645
iteration 1, reconstruction error: 0.20877891855058658, decrease = 3.880079868512354e-09
iteration 2, reconstruction error: 0.20877891467989396, decrease = 3.870692627527816e-09
iteration 3, reconstruction error: 0.20877891081851763, decrease = 3.8613763297945525e-09
iteration 4, reconstruction error: 0.20877890696642826, decrease = 3.852089369704714e-09
PARAFAC2 reconstruction error=0.8189092992962435, variation=1.706796926015386e-09.
Starting iteration 1048
reconstruction error=0.20877890202386665
iteration 1, reconstruction error: 0.20877889814676714, decrease = 3.877099502558323e-09
iteration 2, reconstruction error: 0.20877889427904023, decrease = 3.867726916517711e-09
iteration 3, reconstruction error: 0.20877889042060876, decrease = 3.858431463221734e-09
iteration 4, reconstruction error: 0.20877888657145272, decrease = 3.849156049451352e-09
PARAFAC2 reconstruction error=0.8189092975907609, variation=1.7054825329765322e-09.
Starting iteration 1049
reconstruction error=0.20877888163275474
iteration 1, reconstruction error: 0.20877887775862944, decrease = 3.874125298342079e-09
iteration 2, reconstruction error: 0.20877887389386668, decrease = 3.86476275981984e-09
iteration 3, reconstruction error: 0.20877887003838472, decrease = 3.855481961467788e-09
iteration 4, reconstruction error: 0.20877886619215658, decrease = 3.846228141535235e-09
PARAFAC2 reconstruction error=0.8189092958865916, variation=1.7041693611830055e-09.
Starting iteration 1050
reconstruction error=0.20877886125731834
iteration 1, reconstruction error: 0.20877885738616878, decrease = 3.8711495675691765e-09
iteration 2, reconstruction error: 0.20877885352436631, decrease = 3.861802461146979e-09
iteration 3, reconstruction error: 0.20877884967182384, decrease = 3.8525424794766394e-09
iteration 4, reconstruction error: 0.20877884582852668, decrease = 3.843297152750225e-09
PARAFAC2 reconstruction error=0.818909294183734, variation=1.7028575216571085e-09.
Starting iteration 1051
reconstruction error=0.20877884089754747
iteration 1, reconstruction error: 0.20877883702936667, decrease = 3.868180803445753e-09
iteration 2, reconstruction error: 0.20877883317052223, decrease = 3.858844438431319e-09
iteration 3, reconstruction error: 0.2087788293209223, decrease = 3.849599944372173e-09
iteration 4, reconstruction error: 0.20877882548054763, decrease = 3.840374657171353e-09
PARAFAC2 reconstruction error=0.8189092924821876, variation=1.7015464592873286e-09.
Starting iteration 1052
reconstruction error=0.20877882055341898
iteration 1, reconstruction error: 0.20877881668821394, decrease = 3.865205044917275e-09
iteration 2, reconstruction error: 0.20877881283231745, decrease = 3.855896490989608e-09
iteration 3, reconstruction error: 0.2087788089856578, decrease = 3.846659657469331e-09
iteration 4, reconstruction error: 0.20877880514820796, decrease = 3.837449830124129e-09
PARAFAC2 reconstruction error=0.8189092907819505, variation=1.7002370622520857e-09.
Starting iteration 1053
reconstruction error=0.20877880022492915
iteration 1, reconstruction error: 0.2087787963626875, decrease = 3.862241637619945e-09
iteration 2, reconstruction error: 0.20877879250974668, decrease = 3.852940827497875e-09
iteration 3, reconstruction error: 0.20877878866602187, decrease = 3.84372481065931e-09
iteration 4, reconstruction error: 0.20877878483149068, decrease = 3.8345311925702674e-09
PARAFAC2 reconstruction error=0.818909289083022, variation=1.6989285533952625e-09.
Starting iteration 1054
reconstruction error=0.20877877991205634
iteration 1, reconstruction error: 0.20877877605278114, decrease = 3.859275204964874e-09
iteration 2, reconstruction error: 0.20877877220278906, decrease = 3.8499920751444705e-09
iteration 3, reconstruction error: 0.2087787683619968, decrease = 3.840792267562065e-09
iteration 4, reconstruction error: 0.20877876453038502, decrease = 3.831611777860289e-09
PARAFAC2 reconstruction error=0.8189092873854008, variation=1.697621154761464e-09.
Starting iteration 1055
reconstruction error=0.20877875961479594
iteration 1, reconstruction error: 0.20877875575848184, decrease = 3.85631410138032e-09
iteration 2, reconstruction error: 0.20877875191143233, decrease = 3.847049512284428e-09
iteration 3, reconstruction error: 0.20877874807357336, decrease = 3.837858975064279e-09
iteration 4, reconstruction error: 0.2087787442448787, decrease = 3.828694666863086e-09
PARAFAC2 reconstruction error=0.818909285689086, variation=1.6963147553283875e-09.
Starting iteration 1056
reconstruction error=0.2087787393331241
iteration 1, reconstruction error: 0.20877873547977108, decrease = 3.853353025551343e-09
iteration 2, reconstruction error: 0.20877873163566643, decrease = 3.84410464571161e-09
iteration 3, reconstruction error: 0.20877872780073306, decrease = 3.834933370860938e-09
iteration 4, reconstruction error: 0.20877872397494857, decrease = 3.8257844947597874e-09
PARAFAC2 reconstruction error=0.818909283994076, variation=1.695010021229848e-09.
Starting iteration 1057
reconstruction error=0.20877871906703158
iteration 1, reconstruction error: 0.20877871521663577, decrease = 3.8503958077473754e-09
iteration 2, reconstruction error: 0.2087787113754722, decrease = 3.841163581652651e-09
iteration 3, reconstruction error: 0.2087787075434644, decrease = 3.8320077944131725e-09
iteration 4, reconstruction error: 0.20877870372059396, decrease = 3.8228704368759026e-09
PARAFAC2 reconstruction error=0.8189092823003699, variation=1.6937061753097282e-09.
Starting iteration 1058
reconstruction error=0.20877869881650532
iteration 1, reconstruction error: 0.2087786949690621, decrease = 3.847443225124536e-09
iteration 2, reconstruction error: 0.2087786911308372, decrease = 3.838224904573195e-09
iteration 3, reconstruction error: 0.20877868730175425, decrease = 3.829082939610373e-09
iteration 4, reconstruction error: 0.20877868348179165, decrease = 3.8199625962409556e-09
PARAFAC2 reconstruction error=0.8189092806079667, variation=1.6924031065457257e-09.
Starting iteration 1059
reconstruction error=0.20877867858152993
iteration 1, reconstruction error: 0.20877867473703698, decrease = 3.844492946214473e-09
iteration 2, reconstruction error: 0.20877867090175004, decrease = 3.835286949138705e-09
iteration 3, reconstruction error: 0.20877866707558881, decrease = 3.826161221187618e-09
iteration 4, reconstruction error: 0.20877866325852867, decrease = 3.817060140187678e-09
PARAFAC2 reconstruction error=0.8189092789168649, variation=1.6911018141385625e-09.
Starting iteration 1060
reconstruction error=0.2087786583620938
iteration 1, reconstruction error: 0.2087786545205504, decrease = 3.841543416704951e-09
iteration 2, reconstruction error: 0.2087786506881952, decrease = 3.832355183197578e-09
iteration 3, reconstruction error: 0.20877864686495187, decrease = 3.8232433330342985e-09
iteration 4, reconstruction error: 0.20877864305079574, decrease = 3.814156129822166e-09
PARAFAC2 reconstruction error=0.8189092772270635, variation=1.689801409909819e-09.
Starting iteration 1061
reconstruction error=0.20877863815817926
iteration 1, reconstruction error: 0.20877863431958382, decrease = 3.838595441507664e-09
iteration 2, reconstruction error: 0.20877863049015885, decrease = 3.8294249715686846e-09
iteration 3, reconstruction error: 0.20877862666983266, decrease = 3.82032619428152e-09
iteration 4, reconstruction error: 0.20877862285857435, decrease = 3.811258308950016e-09
PARAFAC2 reconstruction error=0.8189092755385613, variation=1.6885022269264027e-09.
Starting iteration 1062
reconstruction error=0.20877861796977712
iteration 1, reconstruction error: 0.2087786141341242, decrease = 3.8356529064031974e-09
iteration 2, reconstruction error: 0.20877861030763026, decrease = 3.8264939550280985e-09
iteration 3, reconstruction error: 0.208778606490215, decrease = 3.817415245022104e-09
iteration 4, reconstruction error: 0.20877860268185605, decrease = 3.808358961521208e-09
PARAFAC2 reconstruction error=0.8189092738513573, variation=1.6872040431437085e-09.
Starting iteration 1063
reconstruction error=0.2087785977968727
iteration 1, reconstruction error: 0.20877859396416085, decrease = 3.8327118423442386e-09
iteration 2, reconstruction error: 0.20877859014059094, decrease = 3.823569905136992e-09
iteration 3, reconstruction error: 0.20877858632608665, decrease = 3.8145042957626885e-09
iteration 4, reconstruction error: 0.20877858252062398, decrease = 3.805462667205717e-09
PARAFAC2 reconstruction error=0.8189092721654502, variation=1.6859070806063414e-09.
Starting iteration 1064
reconstruction error=0.20877857763944913
iteration 1, reconstruction error: 0.20877857380967443, decrease = 3.8297746918214415e-09
iteration 2, reconstruction error: 0.20877856998902938, decrease = 3.820645050334193e-09
iteration 3, reconstruction error: 0.20877856617743137, decrease = 3.811598009439976e-09
iteration 4, reconstruction error: 0.2087785623748604, decrease = 3.802570980315778e-09
PARAFAC2 reconstruction error=0.8189092704808387, variation=1.6846114503366039e-09.
Starting iteration 1065
reconstruction error=0.2087785574974963
iteration 1, reconstruction error: 0.20877855367065878, decrease = 3.826837513543069e-09
iteration 2, reconstruction error: 0.20877854985293315, decrease = 3.817725635624214e-09
iteration 3, reconstruction error: 0.20877854604423918, decrease = 3.808693971318888e-09
iteration 4, reconstruction error: 0.20877854224455983, decrease = 3.799679348936991e-09
PARAFAC2 reconstruction error=0.8189092687975219, variation=1.6833168192675885e-09.
Starting iteration 1066
reconstruction error=0.20877853737099664
iteration 1, reconstruction error: 0.20877853354709167, decrease = 3.823904970445824e-09
iteration 2, reconstruction error: 0.2087785297322839, decrease = 3.81480777522647e-09
iteration 3, reconstruction error: 0.20877852592649623, decrease = 3.8057876572406e-09
iteration 4, reconstruction error: 0.20877852212970316, decrease = 3.796793074384297e-09
PARAFAC2 reconstruction error=0.8189092671154988, variation=1.6820230763769928e-09.
Starting iteration 1067
reconstruction error=0.20877851725994157
iteration 1, reconstruction error: 0.20877851343896917, decrease = 3.820972399593003e-09
iteration 2, reconstruction error: 0.20877850962707467, decrease = 3.811894494498702e-09
iteration 3, reconstruction error: 0.20877850582418714, decrease = 3.802887532655674e-09
iteration 4, reconstruction error: 0.20877850203027878, decrease = 3.793908354143838e-09
PARAFAC2 reconstruction error=0.8189092654347676, variation=1.680731220865539e-09.
Starting iteration 1068
reconstruction error=0.2087784971643127
iteration 1, reconstruction error: 0.20877849334626744, decrease = 3.8180452688330035e-09
iteration 2, reconstruction error: 0.208778489537287, decrease = 3.808980436614817e-09
iteration 3, reconstruction error: 0.20877848573729807, decrease = 3.799988934627407e-09
iteration 4, reconstruction error: 0.20877848194627135, decrease = 3.791026714772272e-09
PARAFAC2 reconstruction error=0.8189092637553281, variation=1.6794394763763876e-09.
Starting iteration 1069
reconstruction error=0.2087784770840977
iteration 1, reconstruction error: 0.20877847326897958, decrease = 3.815118110317428e-09
iteration 2, reconstruction error: 0.20877846946291007, decrease = 3.806069515110977e-09
iteration 3, reconstruction error: 0.20877846566581434, decrease = 3.79709572118081e-09
iteration 4, reconstruction error: 0.20877846187766927, decrease = 3.788145075400706e-09
PARAFAC2 reconstruction error=0.8189092620771784, variation=1.6781497302886805e-09.
Starting iteration 1070
reconstruction error=0.20877845701928494
iteration 1, reconstruction error: 0.20877845320708857, decrease = 3.812196364139098e-09
iteration 2, reconstruction error: 0.20877844940392692, decrease = 3.803161646720454e-09
iteration 3, reconstruction error: 0.20877844560972672, decrease = 3.794200204021436e-09
iteration 4, reconstruction error: 0.2087784418244579, decrease = 3.78526882061081e-09
PARAFAC2 reconstruction error=0.8189092604003176, variation=1.6768607613570907e-09.
Starting iteration 1071
reconstruction error=0.2087784369698584
iteration 1, reconstruction error: 0.2087784331605807, decrease = 3.809277698829661e-09
iteration 2, reconstruction error: 0.20877842936032845, decrease = 3.800252251773273e-09
iteration 3, reconstruction error: 0.20877842556901377, decrease = 3.791314678869284e-09
iteration 4, reconstruction error: 0.20877842178662195, decrease = 3.782391816420372e-09
PARAFAC2 reconstruction error=0.8189092587247443, variation=1.6755733467377354e-09.
Starting iteration 1072
reconstruction error=0.20877841693580876
iteration 1, reconstruction error: 0.20877841312944817, decrease = 3.806360587832458e-09
iteration 2, reconstruction error: 0.20877840933209374, decrease = 3.797354430901123e-09
iteration 3, reconstruction error: 0.20877840554366997, decrease = 3.788423769135463e-09
iteration 4, reconstruction error: 0.20877840176414822, decrease = 3.779521751123838e-09
PARAFAC2 reconstruction error=0.8189092570504579, variation=1.67428637620759e-09.
Starting iteration 1073
reconstruction error=0.20877839691711442
iteration 1, reconstruction error: 0.20877839311367172, decrease = 3.803442699679138e-09
iteration 2, reconstruction error: 0.20877838931921977, decrease = 3.79445194709227e-09
iteration 3, reconstruction error: 0.20877838553367686, decrease = 3.785542906920014e-09
iteration 4, reconstruction error: 0.20877838175702748, decrease = 3.7766493821145275e-09
PARAFAC2 reconstruction error=0.8189092553774568, variation=1.6730010710119814e-09.
Starting iteration 1074
reconstruction error=0.20877837691376935
iteration 1, reconstruction error: 0.2087783731132353, decrease = 3.800534054132498e-09
iteration 2, reconstruction error: 0.20877836932168045, decrease = 3.791554847865086e-09
iteration 3, reconstruction error: 0.20877836553902146, decrease = 3.782658991591248e-09
iteration 4, reconstruction error: 0.20877836176523987, decrease = 3.773781592775194e-09
PARAFAC2 reconstruction error=0.8189092537057402, variation=1.6717166539947925e-09.
Starting iteration 1075
reconstruction error=0.20877835692575578
iteration 1, reconstruction error: 0.2087783531281319, decrease = 3.7976238820292e-09
iteration 2, reconstruction error: 0.20877834933947179, decrease = 3.78866010786183e-09
iteration 3, reconstruction error: 0.20877834555969446, decrease = 3.7797773244641064e-09
iteration 4, reconstruction error: 0.2087783417887775, decrease = 3.7709169675714804e-09
PARAFAC2 reconstruction error=0.8189092520353067, variation=1.6704334582229308e-09.
Starting iteration 1076
reconstruction error=0.20877833695305906
iteration 1, reconstruction error: 0.20877833315834693, decrease = 3.794712127858091e-09
iteration 2, reconstruction error: 0.20877832937257537, decrease = 3.785771557351936e-09
iteration 3, reconstruction error: 0.2087783255956789, decrease = 3.776896462248658e-09
iteration 4, reconstruction error: 0.20877832182762357, decrease = 3.7680553399699335e-09
PARAFAC2 reconstruction error=0.8189092503661551, variation=1.6691515947186986e-09.
Starting iteration 1077
reconstruction error=0.20877831699567076
iteration 1, reconstruction error: 0.20877831320385953, decrease = 3.791811226117048e-09
iteration 2, reconstruction error: 0.20877830942098122, decrease = 3.7828783161497626e-09
iteration 3, reconstruction error: 0.2087783056469579, decrease = 3.77402331608323e-09
iteration 4, reconstruction error: 0.2087783018817626, decrease = 3.765195294436197e-09
PARAFAC2 reconstruction error=0.8189092486982844, variation=1.6678707304151885e-09.
Starting iteration 1078
reconstruction error=0.2087782970535747
iteration 1, reconstruction error: 0.20877829326466515, decrease = 3.7889095472198875e-09
iteration 2, reconstruction error: 0.20877828948467314, decrease = 3.779992013841493e-09
iteration 3, reconstruction error: 0.20877828571352067, decrease = 3.771152473630579e-09
iteration 4, reconstruction error: 0.20877828195118464, decrease = 3.762336026058577e-09
PARAFAC2 reconstruction error=0.8189092470316935, variation=1.6665908653124006e-09.
Starting iteration 1079
reconstruction error=0.20877827712675243
iteration 1, reconstruction error: 0.20877827334074536, decrease = 3.786007063411034e-09
iteration 2, reconstruction error: 0.20877826956363807, decrease = 3.777107293601034e-09
iteration 3, reconstruction error: 0.20877826579535644, decrease = 3.768281631177928e-09
iteration 4, reconstruction error: 0.2087782620358766, decrease = 3.759479838549851e-09
PARAFAC2 reconstruction error=0.818909245366381, variation=1.6653125545218472e-09.
Starting iteration 1080
reconstruction error=0.20877825721520007
iteration 1, reconstruction error: 0.208778253432087, decrease = 3.7831130728083195e-09
iteration 2, reconstruction error: 0.2087782496578652, decrease = 3.774221796204458e-09
iteration 3, reconstruction error: 0.20877824589244826, decrease = 3.765416950463063e-09
iteration 4, reconstruction error: 0.20877824213581997, decrease = 3.756628286222252e-09
PARAFAC2 reconstruction error=0.8189092437023461, variation=1.6640349098651086e-09.
Starting iteration 1081
reconstruction error=0.20877823731889536
iteration 1, reconstruction error: 0.2087782335386794, decrease = 3.780215973581136e-09
iteration 2, reconstruction error: 0.20877822976733226, decrease = 3.7713471234823714e-09
iteration 3, reconstruction error: 0.20877822600478232, decrease = 3.762549938279847e-09
iteration 4, reconstruction error: 0.20877822225100715, decrease = 3.753775179582419e-09
PARAFAC2 reconstruction error=0.8189092420395875, variation=1.6627585974759995e-09.
Starting iteration 1082
reconstruction error=0.20877821743782746
iteration 1, reconstruction error: 0.20877821366050622, decrease = 3.777321233577879e-09
iteration 2, reconstruction error: 0.2087782098920369, decrease = 3.7684693143802406e-09
iteration 3, reconstruction error: 0.20877820613234932, decrease = 3.759687589033334e-09
iteration 4, reconstruction error: 0.20877820238141953, decrease = 3.7509297889926074e-09
PARAFAC2 reconstruction error=0.8189092403781041, variation=1.661483395309915e-09.
Starting iteration 1083
reconstruction error=0.20877819757198718
iteration 1, reconstruction error: 0.20877819379755144, decrease = 3.774435736181303e-09
iteration 2, reconstruction error: 0.20877819003195686, decrease = 3.765594586147003e-09
iteration 3, reconstruction error: 0.2087781862751293, decrease = 3.756827543499597e-09
iteration 4, reconstruction error: 0.20877818252704414, decrease = 3.748085175558913e-09
PARAFAC2 reconstruction error=0.8189092387178948, variation=1.6602093033668552e-09.
Starting iteration 1084
reconstruction error=0.2087781777213553
iteration 1, reconstruction error: 0.20877817394980738, decrease = 3.771547907316375e-09
iteration 2, reconstruction error: 0.20877817018708592, decrease = 3.762721467737151e-09
iteration 3, reconstruction error: 0.2087781664331161, decrease = 3.753969801678636e-09
iteration 4, reconstruction error: 0.2087781626878725, decrease = 3.745243615238536e-09
PARAFAC2 reconstruction error=0.8189092370589584, variation=1.6589364326691225e-09.
Starting iteration 1085
reconstruction error=0.2087781578859217
iteration 1, reconstruction error: 0.20877815411725698, decrease = 3.768664713632575e-09
iteration 2, reconstruction error: 0.20877815035740407, decrease = 3.7598529012417e-09
iteration 3, reconstruction error: 0.20877814660628813, decrease = 3.7511159456382615e-09
iteration 4, reconstruction error: 0.2087781428638868, decrease = 3.742401333273193e-09
PARAFAC2 reconstruction error=0.8189092354012936, variation=1.6576647832167168e-09.
Starting iteration 1086
reconstruction error=0.20877813806566956
iteration 1, reconstruction error: 0.20877813429988729, decrease = 3.765782269349316e-09
iteration 2, reconstruction error: 0.20877813054290212, decrease = 3.756985167413518e-09
iteration 3, reconstruction error: 0.2087781267946393, decrease = 3.748262811242853e-09
iteration 4, reconstruction error: 0.20877812305507565, decrease = 3.7395636587334025e-09
PARAFAC2 reconstruction error=0.8189092337448998, variation=1.656393799898126e-09.
Starting iteration 1087
reconstruction error=0.20877811826058804
iteration 1, reconstruction error: 0.20877811449768663, decrease = 3.762901407133867e-09
iteration 2, reconstruction error: 0.20877811074356384, decrease = 3.754122790411429e-09
iteration 3, reconstruction error: 0.20877810699815258, decrease = 3.745411258915254e-09
iteration 4, reconstruction error: 0.20877810326142276, decrease = 3.736729814463047e-09
PARAFAC2 reconstruction error=0.818909232089775, variation=1.6551248149809794e-09.
Starting iteration 1088
reconstruction error=0.20877809847066492
iteration 1, reconstruction error: 0.20877809471063744, decrease = 3.760027483812323e-09
iteration 2, reconstruction error: 0.2087780909593793, decrease = 3.75125813745214e-09
iteration 3, reconstruction error: 0.2087780872168119, decrease = 3.7425673948821014e-09
iteration 4, reconstruction error: 0.20877808348291516, decrease = 3.733896747348808e-09
PARAFAC2 reconstruction error=0.8189092304359189, variation=1.6538560521084378e-09.
Starting iteration 1089
reconstruction error=0.20877807869588086
iteration 1, reconstruction error: 0.20877807493872808, decrease = 3.757152783334661e-09
iteration 2, reconstruction error: 0.20877807119033082, decrease = 3.748397259251135e-09
iteration 3, reconstruction error: 0.20877806745060726, decrease = 3.739723558604524e-09
iteration 4, reconstruction error: 0.2087780637195428, decrease = 3.731064457390687e-09
PARAFAC2 reconstruction error=0.8189092287833301, variation=1.6525888435481306e-09.
Starting iteration 1090
reconstruction error=0.20877805893622972
iteration 1, reconstruction error: 0.20877805518194856, decrease = 3.754281163725892e-09
iteration 2, reconstruction error: 0.20877805143640285, decrease = 3.7455457069235365e-09
iteration 3, reconstruction error: 0.20877804769952857, decrease = 3.736874282234126e-09
iteration 4, reconstruction error: 0.20877804397128943, decrease = 3.728239134082045e-09
PARAFAC2 reconstruction error=0.8189092271320073, variation=1.651322745210848e-09.
Starting iteration 1091
reconstruction error=0.20877803919169383
iteration 1, reconstruction error: 0.20877803544028042, decrease = 3.751413402142134e-09
iteration 2, reconstruction error: 0.20877803169759246, decrease = 3.742687965102576e-09
iteration 3, reconstruction error: 0.20877802796355355, decrease = 3.7340389114071115e-09
iteration 4, reconstruction error: 0.20877802423814207, decrease = 3.725411479305052e-09
PARAFAC2 reconstruction error=0.8189092254819493, variation=1.6500579791411951e-09.
Starting iteration 1092
reconstruction error=0.20877801946225855
iteration 1, reconstruction error: 0.20877801571371446, decrease = 3.748544086246142e-09
iteration 2, reconstruction error: 0.2087780119738773, decrease = 3.739837162175519e-09
iteration 3, reconstruction error: 0.20877800824267836, decrease = 3.731198933154545e-09
iteration 4, reconstruction error: 0.20877800452008605, decrease = 3.722592317734197e-09
PARAFAC2 reconstruction error=0.8189092238331553, variation=1.6487939902276594e-09.
Starting iteration 1093
reconstruction error=0.20877799974791772
iteration 1, reconstruction error: 0.20877799600223523, decrease = 3.74568248640017e-09
iteration 2, reconstruction error: 0.20877799226524732, decrease = 3.7369879135606965e-09
iteration 3, reconstruction error: 0.2087779885368799, decrease = 3.728367420352541e-09
iteration 4, reconstruction error: 0.20877798481711063, decrease = 3.7197692703827556e-09
PARAFAC2 reconstruction error=0.8189092221856242, variation=1.6475311115371483e-09.
Starting iteration 1094
reconstruction error=0.20877798004864978
iteration 1, reconstruction error: 0.20877797630582737, decrease = 3.742822413110858e-09
iteration 2, reconstruction error: 0.20877797257168715, decrease = 3.7341402192581086e-09
iteration 3, reconstruction error: 0.20877796884615202, decrease = 3.7255351303944195e-09
iteration 4, reconstruction error: 0.20877796512920194, decrease = 3.716950081056325e-09
PARAFAC2 reconstruction error=0.8189092205393544, variation=1.6462697871588716e-09.
Starting iteration 1095
reconstruction error=0.20877796036444324
iteration 1, reconstruction error: 0.20877795662447854, decrease = 3.739964699045473e-09
iteration 2, reconstruction error: 0.20877795289318296, decrease = 3.731295578068838e-09
iteration 3, reconstruction error: 0.20877794917047704, decrease = 3.7227059213051916e-09
iteration 4, reconstruction error: 0.2087779454563446, decrease = 3.7141324460421288e-09
PARAFAC2 reconstruction error=0.8189092188943454, variation=1.6450090178921073e-09.
Starting iteration 1096
reconstruction error=0.20877794069528496
iteration 1, reconstruction error: 0.20877793695817728, decrease = 3.737107678869478e-09
iteration 2, reconstruction error: 0.20877793322972324, decrease = 3.728454045504037e-09
iteration 3, reconstruction error: 0.20877792950984653, decrease = 3.7198767122159637e-09
iteration 4, reconstruction error: 0.2087779257985232, decrease = 3.7113233319896466e-09
PARAFAC2 reconstruction error=0.8189092172505955, variation=1.64374991395988e-09.
Starting iteration 1097
reconstruction error=0.20877792104116266
iteration 1, reconstruction error: 0.20877791730690884, decrease = 3.734253822829103e-09
iteration 2, reconstruction error: 0.20877791358129325, decrease = 3.725615593808129e-09
iteration 3, reconstruction error: 0.20877790986424344, decrease = 3.717049806839512e-09
iteration 4, reconstruction error: 0.20877790615573003, decrease = 3.7085134130254716e-09
PARAFAC2 reconstruction error=0.8189092156081039, variation=1.6424915871837698e-09.
Starting iteration 1098
reconstruction error=0.2087779014020663
iteration 1, reconstruction error: 0.20877789767066252, decrease = 3.731403797058164e-09
iteration 2, reconstruction error: 0.20877789394788462, decrease = 3.722777891512763e-09
iteration 3, reconstruction error: 0.2087778902336532, decrease = 3.714231422424774e-09
iteration 4, reconstruction error: 0.208777886527952, decrease = 3.7057011903485204e-09
PARAFAC2 reconstruction error=0.8189092139668697, variation=1.6412342596083818e-09.
Starting iteration 1099
reconstruction error=0.2087778817779751
iteration 1, reconstruction error: 0.2087778780494198, decrease = 3.728555297843883e-09
iteration 2, reconstruction error: 0.20877787432947575, decrease = 3.7199440472424072e-09
iteration 3, reconstruction error: 0.20877787061806427, decrease = 3.711411483697802e-09
iteration 4, reconstruction error: 0.20877786691516684, decrease = 3.702897433122132e-09
PARAFAC2 reconstruction error=0.8189092123268908, variation=1.6399788194121356e-09.
Starting iteration 1100
reconstruction error=0.20877786216887909
iteration 1, reconstruction error: 0.2087778584431707, decrease = 3.725708380697412e-09
iteration 2, reconstruction error: 0.20877785472605664, decrease = 3.717114060997062e-09
iteration 3, reconstruction error: 0.20877785101746357, decrease = 3.7085930715274884e-09
iteration 4, reconstruction error: 0.20877784731737375, decrease = 3.700089817870733e-09
PARAFAC2 reconstruction error=0.8189092106881674, variation=1.638723490238192e-09.
Starting iteration 1101
reconstruction error=0.20877784257476362
iteration 1, reconstruction error: 0.20877783885190065, decrease = 3.722862962352025e-09
iteration 2, reconstruction error: 0.20877783513761658, decrease = 3.714284074751717e-09
iteration 3, reconstruction error: 0.20877783143183803, decrease = 3.705778545137761e-09
iteration 4, reconstruction error: 0.20877782773454578, decrease = 3.697292250137707e-09
PARAFAC2 reconstruction error=0.8189092090506974, variation=1.6374699374210877e-09.
Starting iteration 1102
reconstruction error=0.20877782299562106
iteration 1, reconstruction error: 0.20877781927559655, decrease = 3.720024510656117e-09
iteration 2, reconstruction error: 0.20877781556413932, decrease = 3.7114572248864164e-09
iteration 3, reconstruction error: 0.20877781186117228, decrease = 3.702967044105776e-09
iteration 4, reconstruction error: 0.20877780816668226, decrease = 3.6944900194679775e-09
PARAFAC2 reconstruction error=0.8189092074144801, variation=1.6362172727824031e-09.
Starting iteration 1103
reconstruction error=0.2087778034314313
iteration 1, reconstruction error: 0.20877779971424604, decrease = 3.717185254048516e-09
iteration 2, reconstruction error: 0.20877779600561416, decrease = 3.708631873822199e-09
iteration 3, reconstruction error: 0.20877779230545704, decrease = 3.700157125141601e-09
iteration 4, reconstruction error: 0.20877778861375998, decrease = 3.6916970591605036e-09
PARAFAC2 reconstruction error=0.8189092057795141, variation=1.6349660514336506e-09.
Starting iteration 1104
reconstruction error=0.20877778388218587
iteration 1, reconstruction error: 0.2087777801678337, decrease = 3.7143521869342777e-09
iteration 2, reconstruction error: 0.2087777764620233, decrease = 3.7058103807829923e-09
iteration 3, reconstruction error: 0.20877777276467532, decrease = 3.697347983333543e-09
iteration 4, reconstruction error: 0.20877776907577042, decrease = 3.6889049037647226e-09
PARAFAC2 reconstruction error=0.8189092041457988, variation=1.6337152741741079e-09.
Starting iteration 1105
reconstruction error=0.20877776434786563
iteration 1, reconstruction error: 0.20877776063635037, decrease = 3.7115152617950287e-09
iteration 2, reconstruction error: 0.20877775693335762, decrease = 3.702992745768796e-09
iteration 3, reconstruction error: 0.2087777532388157, decrease = 3.6945419223943787e-09
iteration 4, reconstruction error: 0.20877774955270298, decrease = 3.686112720613366e-09
PARAFAC2 reconstruction error=0.8189092025133325, variation=1.6324662732714046e-09.
Starting iteration 1106
reconstruction error=0.20877774482846204
iteration 1, reconstruction error: 0.208777741119776, decrease = 3.708686024950225e-09
iteration 2, reconstruction error: 0.20877773741960245, decrease = 3.7001735564423655e-09
iteration 3, reconstruction error: 0.20877773372786196, decrease = 3.691740496636342e-09
iteration 4, reconstruction error: 0.20877773004453448, decrease = 3.683327476355913e-09
PARAFAC2 reconstruction error=0.8189092008821145, variation=1.6312180495248185e-09.
Starting iteration 1107
reconstruction error=0.20877772532396202
iteration 1, reconstruction error: 0.20877772161810365, decrease = 3.7058583701732317e-09
iteration 2, reconstruction error: 0.2087777179207439, decrease = 3.6973597516976042e-09
iteration 3, reconstruction error: 0.2087777142318033, decrease = 3.6889405974349643e-09
iteration 4, reconstruction error: 0.20877771055126493, decrease = 3.68053837407345e-09
PARAFAC2 reconstruction error=0.8189091992521433, variation=1.629971158045862e-09.
Starting iteration 1108
reconstruction error=0.208777705834351
iteration 1, reconstruction error: 0.20877770213131874, decrease = 3.7030322697084728e-09
iteration 2, reconstruction error: 0.2087776984367689, decrease = 3.694549832733429e-09
iteration 3, reconstruction error: 0.20877769475062743, decrease = 3.6861414753897037e-09
iteration 4, reconstruction error: 0.20877769107287047, decrease = 3.677756960085432e-09
PARAFAC2 reconstruction error=0.8189091976234183, variation=1.6287250437230227e-09.
Starting iteration 1109
reconstruction error=0.2087776863596151
iteration 1, reconstruction error: 0.2087776826594051, decrease = 3.7002099995131488e-09
iteration 2, reconstruction error: 0.2087776789676652, decrease = 3.691739913769254e-09
iteration 3, reconstruction error: 0.20877767528431668, decrease = 3.68334851508223e-09
iteration 4, reconstruction error: 0.20877767160934185, decrease = 3.6749748244524483e-09
PARAFAC2 reconstruction error=0.818909195995938, variation=1.627480261667813e-09.
Starting iteration 1110
reconstruction error=0.2087776668997389
iteration 1, reconstruction error: 0.2087776632023496, decrease = 3.6973892836300593e-09
iteration 2, reconstruction error: 0.2087776595134181, decrease = 3.688931521361738e-09
iteration 3, reconstruction error: 0.20877765583286256, decrease = 3.6805555270191803e-09
iteration 4, reconstruction error: 0.20877765216066835, decrease = 3.6721942153761233e-09
PARAFAC2 reconstruction error=0.8189091943697014, variation=1.626236589835628e-09.
Starting iteration 1111
reconstruction error=0.20877764745471467
iteration 1, reconstruction error: 0.20877764376014457, decrease = 3.6945700943036286e-09
iteration 2, reconstruction error: 0.20877764007401448, decrease = 3.6861300956037013e-09
iteration 3, reconstruction error: 0.20877763639625035, decrease = 3.677764121023941e-09
iteration 4, reconstruction error: 0.20877763272683134, decrease = 3.6694190186370435e-09
PARAFAC2 reconstruction error=0.8189091927447073, variation=1.62499413924877e-09.
Starting iteration 1112
reconstruction error=0.20877762802452485
iteration 1, reconstruction error: 0.20877762433277006, decrease = 3.691754790757784e-09
iteration 2, reconstruction error: 0.20877762064944375, decrease = 3.6833263106217373e-09
iteration 3, reconstruction error: 0.2087776169744664, decrease = 3.6749773502098293e-09
iteration 4, reconstruction error: 0.2087776133078226, decrease = 3.666643794142388e-09
PARAFAC2 reconstruction error=0.8189091911209547, variation=1.6237525768403316e-09.
Starting iteration 1113
reconstruction error=0.20877760860915773
iteration 1, reconstruction error: 0.20877760492021674, decrease = 3.688940986013023e-09
iteration 2, reconstruction error: 0.20877760123968722, decrease = 3.6805295200448285e-09
iteration 3, reconstruction error: 0.20877759756749667, decrease = 3.672190551640142e-09
iteration 4, reconstruction error: 0.20877759390362502, decrease = 3.6638716505166258e-09
PARAFAC2 reconstruction error=0.8189091894984423, variation=1.6225124577218253e-09.
Starting iteration 1114
reconstruction error=0.20877758920859957
iteration 1, reconstruction error: 0.20877758552247083, decrease = 3.686128735580496e-09
iteration 2, reconstruction error: 0.20877758184473738, decrease = 3.6777334511128856e-09
iteration 3, reconstruction error: 0.20877757817533205, decrease = 3.669405335138265e-09
iteration 4, reconstruction error: 0.2087775745142279, decrease = 3.6611041420719914e-09
PARAFAC2 reconstruction error=0.8189091878771694, variation=1.6212728937148313e-09.
Starting iteration 1115
reconstruction error=0.20877756982283566
iteration 1, reconstruction error: 0.20877756613951684, decrease = 3.683318816616321e-09
iteration 2, reconstruction error: 0.20877756246458098, decrease = 3.674935855624284e-09
iteration 3, reconstruction error: 0.2087775587979532, decrease = 3.6666277791752577e-09
iteration 4, reconstruction error: 0.2087775551396135, decrease = 3.6583397144962504e-09
PARAFAC2 reconstruction error=0.8189091862571345, variation=1.6200348840200718e-09.
Starting iteration 1116
reconstruction error=0.20877755045185914
iteration 1, reconstruction error: 0.20877754677134489, decrease = 3.68051425447824e-09
iteration 2, reconstruction error: 0.20877754309919885, decrease = 3.6721460316968546e-09
iteration 3, reconstruction error: 0.2087775394353517, decrease = 3.663847142343357e-09
iteration 4, reconstruction error: 0.20877753577977487, decrease = 3.655576841232744e-09
PARAFAC2 reconstruction error=0.8189091846383364, variation=1.6187980955706394e-09.
Starting iteration 1117
reconstruction error=0.20877753109565386
iteration 1, reconstruction error: 0.20877752741793873, decrease = 3.6777151324329793e-09
iteration 2, reconstruction error: 0.20877752374858105, decrease = 3.669357678814933e-09
iteration 3, reconstruction error: 0.20877752008750836, decrease = 3.661072695004819e-09
iteration 4, reconstruction error: 0.2087775164346967, decrease = 3.652811664256461e-09
PARAFAC2 reconstruction error=0.8189091830207745, variation=1.6175618622327192e-09.
Starting iteration 1118
reconstruction error=0.20877751175419745
iteration 1, reconstruction error: 0.20877750807928838, decrease = 3.674909071493815e-09
iteration 2, reconstruction error: 0.20877750441272058, decrease = 3.6665677993763524e-09
iteration 3, reconstruction error: 0.2087775007544177, decrease = 3.6583028828474085e-09
iteration 4, reconstruction error: 0.2087774971043643, decrease = 3.650053398418507e-09
PARAFAC2 reconstruction error=0.8189091814044474, variation=1.6163271832070336e-09.
Starting iteration 1119
reconstruction error=0.20877749242748844
iteration 1, reconstruction error: 0.2087774887553762, decrease = 3.6721122531613304e-09
iteration 2, reconstruction error: 0.208777485091589, decrease = 3.6637871903000274e-09
iteration 3, reconstruction error: 0.20877748143606056, decrease = 3.65552843550887e-09
iteration 4, reconstruction error: 0.20877747778876465, decrease = 3.6472959097366697e-09
PARAFAC2 reconstruction error=0.8189091797893537, variation=1.6150936144043726e-09.
Starting iteration 1120
reconstruction error=0.2087774731155098
iteration 1, reconstruction error: 0.20877746944619127, decrease = 3.6693185156977393e-09
iteration 2, reconstruction error: 0.2087774657851886, decrease = 3.6610026676875407e-09
iteration 3, reconstruction error: 0.20877746213242843, decrease = 3.6527601776636942e-09
iteration 4, reconstruction error: 0.20877745848788382, decrease = 3.644544610548195e-09
PARAFAC2 reconstruction error=0.818909178175493, variation=1.6138607117355264e-09.
Starting iteration 1121
reconstruction error=0.20877745381824842
iteration 1, reconstruction error: 0.2087774501517252, decrease = 3.6665232239219137e-09
iteration 2, reconstruction error: 0.2087774464934985, decrease = 3.6582266937923436e-09
iteration 3, reconstruction error: 0.20877744284350508, decrease = 3.6499934186196015e-09
iteration 4, reconstruction error: 0.20877743920171407, decrease = 3.641791007646944e-09
PARAFAC2 reconstruction error=0.8189091765628635, variation=1.612629474401217e-09.
Starting iteration 1122
reconstruction error=0.2087774345356891
iteration 1, reconstruction error: 0.20877743087195805, decrease = 3.663731040770557e-09
iteration 2, reconstruction error: 0.20877742721650966, decrease = 3.6554483884287947e-09
iteration 3, reconstruction error: 0.2087774235692768, decrease = 3.647232849068871e-09
iteration 4, reconstruction error: 0.20877741993023788, decrease = 3.639038931302352e-09
PARAFAC2 reconstruction error=0.8189091749514644, variation=1.6113991252453275e-09.
Starting iteration 1123
reconstruction error=0.20877741526782478
iteration 1, reconstruction error: 0.2087774116068759, decrease = 3.6609488773819976e-09
iteration 2, reconstruction error: 0.2087774079542035, decrease = 3.6526724145335976e-09
iteration 3, reconstruction error: 0.2087774043097312, decrease = 3.6444722795181406e-09
iteration 4, reconstruction error: 0.20877740067344205, decrease = 3.636289158670536e-09
PARAFAC2 reconstruction error=0.8189091733412946, variation=1.61016977529016e-09.
Starting iteration 1124
reconstruction error=0.20877739601463308
iteration 1, reconstruction error: 0.2087773923564733, decrease = 3.6581597750995343e-09
iteration 2, reconstruction error: 0.2087773887065746, decrease = 3.6498986888400253e-09
iteration 3, reconstruction error: 0.20877738506485824, decrease = 3.6417163729041135e-09
iteration 4, reconstruction error: 0.2087773814313127, decrease = 3.6335455477765066e-09
PARAFAC2 reconstruction error=0.818909171732353, variation=1.6089416465803197e-09.
Starting iteration 1125
reconstruction error=0.20877737677610722
iteration 1, reconstruction error: 0.2087773731207304, decrease = 3.6553768345548576e-09
iteration 2, reconstruction error: 0.2087773694736007, decrease = 3.6471296815943077e-09
iteration 3, reconstruction error: 0.20877736583464493, decrease = 3.6389557755978075e-09
iteration 4, reconstruction error: 0.20877736220383836, decrease = 3.630806572063605e-09
PARAFAC2 reconstruction error=0.8189091701246386, variation=1.607714406048899e-09.
Starting iteration 1126
reconstruction error=0.20877735755223473
iteration 1, reconstruction error: 0.20877735389964083, decrease = 3.652593894010181e-09
iteration 2, reconstruction error: 0.20877735025527486, decrease = 3.6443659756635327e-09
iteration 3, reconstruction error: 0.20877734661907113, decrease = 3.636203727008791e-09
iteration 4, reconstruction error: 0.2087773429910074, decrease = 3.628063738325693e-09
PARAFAC2 reconstruction error=0.8189091685181502, variation=1.6064883867628055e-09.
Starting iteration 1127
reconstruction error=0.20877733834299883
iteration 1, reconstruction error: 0.20877733469318324, decrease = 3.649815588646632e-09
iteration 2, reconstruction error: 0.2087773310515809, decrease = 3.6416023529994845e-09
iteration 3, reconstruction error: 0.20877732741813082, decrease = 3.633450068596389e-09
iteration 4, reconstruction error: 0.20877732379280528, decrease = 3.625325539768909e-09
PARAFAC2 reconstruction error=0.8189091669128866, variation=1.605263588722039e-09.
Starting iteration 1128
reconstruction error=0.20877731914838865
iteration 1, reconstruction error: 0.20877731550134754, decrease = 3.6470411135525183e-09
iteration 2, reconstruction error: 0.2087773118625104, decrease = 3.6388371482676263e-09
iteration 3, reconstruction error: 0.208777308231807, decrease = 3.6307033768334662e-09
iteration 4, reconstruction error: 0.20877730460921196, decrease = 3.6225950572621457e-09
PARAFAC2 reconstruction error=0.8189091653088467, variation=1.6040399009042972e-09.
Starting iteration 1129
reconstruction error=0.20877729996839195
iteration 1, reconstruction error: 0.20877729632412376, decrease = 3.644268192770639e-09
iteration 2, reconstruction error: 0.2087772926880441, decrease = 3.636079659585789e-09
iteration 3, reconstruction error: 0.20877728906008586, decrease = 3.627958239382778e-09
iteration 4, reconstruction error: 0.2087772854402259, decrease = 3.6198599673298304e-09
PARAFAC2 reconstruction error=0.8189091637060295, variation=1.6028172122872775e-09.
Starting iteration 1130
reconstruction error=0.20877728080298863
iteration 1, reconstruction error: 0.20877727716149333, decrease = 3.641495299744335e-09
iteration 2, reconstruction error: 0.20877727352817577, decrease = 3.6333175634784e-09
iteration 3, reconstruction error: 0.20877726990296036, decrease = 3.625215405644866e-09
iteration 4, reconstruction error: 0.20877726628583168, decrease = 3.6171286799113744e-09
PARAFAC2 reconstruction error=0.8189091621044339, variation=1.6015956338932824e-09.
Starting iteration 1131
reconstruction error=0.20877726165217642
iteration 1, reconstruction error: 0.20877725801344865, decrease = 3.638727763544125e-09
iteration 2, reconstruction error: 0.2087772543828832, decrease = 3.630565459378232e-09
iteration 3, reconstruction error: 0.20877725076041215, decrease = 3.622471045350295e-09
iteration 4, reconstruction error: 0.20877724714600931, decrease = 3.614402832585739e-09
PARAFAC2 reconstruction error=0.8189091605040588, variation=1.6003750547000095e-09.
Starting iteration 1132
reconstruction error=0.20877724251593688
iteration 1, reconstruction error: 0.2087772388799743, decrease = 3.6359625865678424e-09
iteration 2, reconstruction error: 0.20877723525216016, decrease = 3.6278141324341817e-09
iteration 3, reconstruction error: 0.20877723163242656, decrease = 3.6197335961940524e-09
iteration 4, reconstruction error: 0.20877722802075344, decrease = 3.6116731272350933e-09
PARAFAC2 reconstruction error=0.8189091589049031, variation=1.5991556967520637e-09.
Starting iteration 1133
reconstruction error=0.20877722339425686
iteration 1, reconstruction error: 0.2087772197610564, decrease = 3.6332004627048775e-09
iteration 2, reconstruction error: 0.20877721613599434, decrease = 3.6250620560895896e-09
iteration 3, reconstruction error: 0.20877721251899817, decrease = 3.6169961747933854e-09
iteration 4, reconstruction error: 0.20877720891004783, decrease = 3.6089503330227757e-09
PARAFAC2 reconstruction error=0.8189091573069656, variation=1.597937560049445e-09.
Starting iteration 1134
reconstruction error=0.20877720428712182
iteration 1, reconstruction error: 0.20877720065668348, decrease = 3.6304383388419126e-09
iteration 2, reconstruction error: 0.2087771970343673, decrease = 3.62231616923836e-09
iteration 3, reconstruction error: 0.20877719342010628, decrease = 3.614261029349919e-09
iteration 4, reconstruction error: 0.20877718981387486, decrease = 3.6062314245910443e-09
PARAFAC2 reconstruction error=0.8189091557102455, variation=1.596720089480641e-09.
Starting iteration 1135
reconstruction error=0.20877718519452168
iteration 1, reconstruction error: 0.20877718156684316, decrease = 3.6276785186917238e-09
iteration 2, reconstruction error: 0.20877717794727368, decrease = 3.6195694774754372e-09
iteration 3, reconstruction error: 0.20877717433574158, decrease = 3.6115321011553903e-09
iteration 4, reconstruction error: 0.20877717073223065, decrease = 3.603510934091503e-09
PARAFAC2 reconstruction error=0.8189091541147416, variation=1.5955038401571642e-09.
Starting iteration 1136
reconstruction error=0.20877716611644417
iteration 1, reconstruction error: 0.20877716249152237, decrease = 3.624921807166004e-09
iteration 2, reconstruction error: 0.2087771588746919, decrease = 3.61683047400696e-09
iteration 3, reconstruction error: 0.20877715526589105, decrease = 3.60880084149251e-09
iteration 4, reconstruction error: 0.20877715166509594, decrease = 3.6007951065286647e-09
PARAFAC2 reconstruction error=0.8189091525204524, variation=1.5942892561682243e-09.
Starting iteration 1137
reconstruction error=0.2087771470528731
iteration 1, reconstruction error: 0.20877714343070414, decrease = 3.6221689536652946e-09
iteration 2, reconstruction error: 0.20877713981661727, decrease = 3.614086863112931e-09
iteration 3, reconstruction error: 0.20877713621053998, decrease = 3.6060772978796507e-09
iteration 4, reconstruction error: 0.20877713261245837, decrease = 3.5980816104341784e-09
PARAFAC2 reconstruction error=0.8189091509273773, variation=1.5930751162684942e-09.
Starting iteration 1138
reconstruction error=0.20877712800379697
iteration 1, reconstruction error: 0.208777124384377, decrease = 3.619419958189596e-09
iteration 2, reconstruction error: 0.20877712077302912, decrease = 3.6113478874000293e-09
iteration 3, reconstruction error: 0.20877711716967462, decrease = 3.603354503667333e-09
iteration 4, reconstruction error: 0.20877711357430734, decrease = 3.5953672816724236e-09
PARAFAC2 reconstruction error=0.8189091493355151, variation=1.5918621976140912e-09.
Starting iteration 1139
reconstruction error=0.20877710896920265
iteration 1, reconstruction error: 0.20877710535253324, decrease = 3.6166694084016626e-09
iteration 2, reconstruction error: 0.20877710174391814, decrease = 3.60861510118049e-09
iteration 3, reconstruction error: 0.2087770981432903, decrease = 3.600627851430005e-09
iteration 4, reconstruction error: 0.20877709455062649, decrease = 3.5926638053407345e-09
PARAFAC2 reconstruction error=0.8189091477448646, variation=1.5906505002050153e-09.
Starting iteration 1140
reconstruction error=0.20877708994907784
iteration 1, reconstruction error: 0.2087770863351528, decrease = 3.6139250481070917e-09
iteration 2, reconstruction error: 0.20877708272927128, decrease = 3.605881510049258e-09
iteration 3, reconstruction error: 0.20877707913136312, decrease = 3.5979081658421563e-09
iteration 4, reconstruction error: 0.2087770755414082, decrease = 3.5899549166718003e-09
PARAFAC2 reconstruction error=0.8189091461554249, variation=1.5894396909743591e-09.
Starting iteration 1141
reconstruction error=0.20877707094340944
iteration 1, reconstruction error: 0.20877706733222878, decrease = 3.611180660056945e-09
iteration 2, reconstruction error: 0.20877706372907623, decrease = 3.603152554099154e-09
iteration 3, reconstruction error: 0.20877706013388467, decrease = 3.595191561123201e-09
iteration 4, reconstruction error: 0.2087770565466348, decrease = 3.587249858272301e-09
PARAFAC2 reconstruction error=0.8189091445671944, variation=1.5882304360559374e-09.
Starting iteration 1142
reconstruction error=0.20877705195218282
iteration 1, reconstruction error: 0.20877704834374194, decrease = 3.608440879432351e-09
iteration 2, reconstruction error: 0.20877704474331987, decrease = 3.6004220715923907e-09
iteration 3, reconstruction error: 0.20877704115084417, decrease = 3.5924757058047874e-09
iteration 4, reconstruction error: 0.2087770375662924, decrease = 3.5845517665222815e-09
PARAFAC2 reconstruction error=0.8189091429801728, variation=1.5870216252267255e-09.
Starting iteration 1143
reconstruction error=0.2087770329753865
iteration 1, reconstruction error: 0.20877702936968537, decrease = 3.605701126563332e-09
iteration 2, reconstruction error: 0.2087770257719884, decrease = 3.597696973667297e-09
iteration 3, reconstruction error: 0.20877702218222158, decrease = 3.5897668171358532e-09
iteration 4, reconstruction error: 0.20877701860037176, decrease = 3.5818498167472512e-09
PARAFAC2 reconstruction error=0.8189091413943583, variation=1.5858144797320506e-09.
Starting iteration 1144
reconstruction error=0.20877701401300966
iteration 1, reconstruction error: 0.20877701041004518, decrease = 3.6029644823187823e-09
iteration 2, reconstruction error: 0.20877700681506947, decrease = 3.5949757060116383e-09
iteration 3, reconstruction error: 0.20877700322801462, decrease = 3.5870548475980257e-09
iteration 4, reconstruction error: 0.2087769996488629, decrease = 3.5791517249972316e-09
PARAFAC2 reconstruction error=0.8189091398097503, variation=1.5846080003711904e-09.
Starting iteration 1145
reconstruction error=0.20877699506503383
iteration 1, reconstruction error: 0.2087769914648029, decrease = 3.600230918943126e-09
iteration 2, reconstruction error: 0.2087769878725492, decrease = 3.5922537167110136e-09
iteration 3, reconstruction error: 0.20877698428820018, decrease = 3.5843490120424093e-09
iteration 4, reconstruction error: 0.20877698071174272, decrease = 3.576457463516647e-09
PARAFAC2 reconstruction error=0.8189091382263475, variation=1.5834028532779598e-09.
Starting iteration 1146
reconstruction error=0.20877697613145052
iteration 1, reconstruction error: 0.20877697253395244, decrease = 3.5974980772124354e-09
iteration 2, reconstruction error: 0.20877696894441458, decrease = 3.5895378613926e-09
iteration 3, reconstruction error: 0.20877696536277598, decrease = 3.5816385968168163e-09
iteration 4, reconstruction error: 0.20877696178900737, decrease = 3.573768614373307e-09
PARAFAC2 reconstruction error=0.818909136644149, variation=1.5821984833408465e-09.
Starting iteration 1147
reconstruction error=0.20877695721224365
iteration 1, reconstruction error: 0.20877695361747375, decrease = 3.5947698984184484e-09
iteration 2, reconstruction error: 0.20877695003065636, decrease = 3.586817398648634e-09
iteration 3, reconstruction error: 0.20877694645171818, decrease = 3.578938173598445e-09
iteration 4, reconstruction error: 0.2087769428806392, decrease = 3.5710789880738503e-09
PARAFAC2 reconstruction error=0.8189091350631535, variation=1.5809954456713626e-09.
Starting iteration 1148
reconstruction error=0.2087769383074062
iteration 1, reconstruction error: 0.2087769347153614, decrease = 3.5920448004933547e-09
iteration 2, reconstruction error: 0.20877693113125367, decrease = 3.5841077328235826e-09
iteration 3, reconstruction error: 0.20877692755501978, decrease = 3.576233892355063e-09
iteration 4, reconstruction error: 0.20877692398662961, decrease = 3.5683901666860862e-09
PARAFAC2 reconstruction error=0.8189091334833599, variation=1.579793629247206e-09.
Starting iteration 1149
reconstruction error=0.20877691941691898
iteration 1, reconstruction error: 0.20877691582759775, decrease = 3.58932122912492e-09
iteration 2, reconstruction error: 0.2087769122462051, decrease = 3.581392654661286e-09
iteration 3, reconstruction error: 0.20877690867266774, decrease = 3.5735373549172778e-09
iteration 4, reconstruction error: 0.20877690510696104, decrease = 3.565706702124416e-09
PARAFAC2 reconstruction error=0.8189091319047674, variation=1.578592478956864e-09.
Starting iteration 1150
reconstruction error=0.20877690054077275
iteration 1, reconstruction error: 0.20877689695417428, decrease = 3.586598462668178e-09
iteration 2, reconstruction error: 0.20877689337548896, decrease = 3.5786853203045865e-09
iteration 3, reconstruction error: 0.2087768898046428, decrease = 3.5708461743055864e-09
iteration 4, reconstruction error: 0.20877688624162416, decrease = 3.5630186301371936e-09
PARAFAC2 reconstruction error=0.8189091303273744, variation=1.577392994001059e-09.
Starting iteration 1151
reconstruction error=0.20877688167895206
iteration 1, reconstruction error: 0.2087768780950733, decrease = 3.5838787493247537e-09
iteration 2, reconstruction error: 0.20877687451909385, decrease = 3.5759794569933945e-09
iteration 3, reconstruction error: 0.20877687095094422, decrease = 3.568149636867801e-09
iteration 4, reconstruction error: 0.20877686739060364, decrease = 3.5603405779127684e-09
PARAFAC2 reconstruction error=0.8189091287511804, variation=1.5761940641567662e-09.
Starting iteration 1152
reconstruction error=0.20877686283144856
iteration 1, reconstruction error: 0.20877685925028563, decrease = 3.5811629217619156e-09
iteration 2, reconstruction error: 0.20877685567700968, decrease = 3.5732759529061298e-09
iteration 3, reconstruction error: 0.2087768521115489, decrease = 3.5654607877244615e-09
iteration 4, reconstruction error: 0.2087768485538856, decrease = 3.5576633028444604e-09
PARAFAC2 reconstruction error=0.8189091271761842, variation=1.5749961335131957e-09.
Starting iteration 1153
reconstruction error=0.20877684399824675
iteration 1, reconstruction error: 0.20877684041979586, decrease = 3.578450896712937e-09
iteration 2, reconstruction error: 0.20877683684921874, decrease = 3.5705771117555685e-09
iteration 3, reconstruction error: 0.20877683328644836, decrease = 3.5627703842688874e-09
iteration 4, reconstruction error: 0.20877682973146233, decrease = 3.5549860277761525e-09
PARAFAC2 reconstruction error=0.8189091256023844, variation=1.573799868204162e-09.
Starting iteration 1154
reconstruction error=0.20877682517932816
iteration 1, reconstruction error: 0.20877682160359232, decrease = 3.575735846306216e-09
iteration 2, reconstruction error: 0.2087768180357141, decrease = 3.567878215093856e-09
iteration 3, reconstruction error: 0.20877681447563026, decrease = 3.560083838838324e-09
iteration 4, reconstruction error: 0.20877681092331918, decrease = 3.5523110841761962e-09
PARAFAC2 reconstruction error=0.8189091240297802, variation=1.5726041580066408e-09.
Starting iteration 1155
reconstruction error=0.20877680637468907
iteration 1, reconstruction error: 0.2087768028016598, decrease = 3.573029261350058e-09
iteration 2, reconstruction error: 0.20877679923648357, decrease = 3.56517623756325e-09
iteration 3, reconstruction error: 0.20877679567908083, decrease = 3.557402733500581e-09
iteration 4, reconstruction error: 0.20877679212943856, decrease = 3.549642274558451e-09
PARAFAC2 reconstruction error=0.8189091224583706, variation=1.5714096690544466e-09.
Starting iteration 1156
reconstruction error=0.2087767875843109
iteration 1, reconstruction error: 0.20877678401399283, decrease = 3.570318068968348e-09
iteration 2, reconstruction error: 0.20877678045150466, decrease = 3.5624881655760277e-09
iteration 3, reconstruction error: 0.20877677689678617, decrease = 3.5547184917827934e-09
iteration 4, reconstruction error: 0.20877677334981115, decrease = 3.5469750192529403e-09
PARAFAC2 reconstruction error=0.818909120888154, variation=1.570216512369882e-09.
Starting iteration 1157
reconstruction error=0.20877676880818438
iteration 1, reconstruction error: 0.2087767652405652, decrease = 3.5676191723066353e-09
iteration 2, reconstruction error: 0.20877676168077436, decrease = 3.5597908509821252e-09
iteration 3, reconstruction error: 0.2087767581287324, decrease = 3.552041966115027e-09
iteration 4, reconstruction error: 0.20877675458442768, decrease = 3.544304710834112e-09
PARAFAC2 reconstruction error=0.8189091193191299, variation=1.5690241328414345e-09.
Starting iteration 1158
reconstruction error=0.20877675004629728
iteration 1, reconstruction error: 0.20877674648138161, decrease = 3.5649156682193706e-09
iteration 2, reconstruction error: 0.2087767429242773, decrease = 3.5571043055515617e-09
iteration 3, reconstruction error: 0.2087767393749134, decrease = 3.549363913890602e-09
iteration 4, reconstruction error: 0.20877673583326975, decrease = 3.5416436450219635e-09
PARAFAC2 reconstruction error=0.8189091177512973, variation=1.5678326414914068e-09.
Starting iteration 1159
reconstruction error=0.20877673129862875
iteration 1, reconstruction error: 0.20877672773641587, decrease = 3.562212885777072e-09
iteration 2, reconstruction error: 0.20877672418199886, decrease = 3.5544170107204565e-09
iteration 3, reconstruction error: 0.20877672063530836, decrease = 3.5466904968473045e-09
iteration 4, reconstruction error: 0.2087767170963258, decrease = 3.5389825514542395e-09
PARAFAC2 reconstruction error=0.8189091161846547, variation=1.566642593431311e-09.
Starting iteration 1160
reconstruction error=0.2087767125651735
iteration 1, reconstruction error: 0.20877670900565792, decrease = 3.5595155711831694e-09
iteration 2, reconstruction error: 0.20877670545392668, decrease = 3.55173124244601e-09
iteration 3, reconstruction error: 0.20877670190990727, decrease = 3.544019411272359e-09
iteration 4, reconstruction error: 0.20877669837358506, decrease = 3.536322207287057e-09
PARAFAC2 reconstruction error=0.8189091146192009, variation=1.5654537666165425e-09.
Starting iteration 1161
reconstruction error=0.20877669384591913
iteration 1, reconstruction error: 0.2087766902891001, decrease = 3.5568190337453842e-09
iteration 2, reconstruction error: 0.2087766867400477, decrease = 3.549052385309892e-09
iteration 3, reconstruction error: 0.20877668319870174, decrease = 3.541345966473486e-09
iteration 4, reconstruction error: 0.2087766796650367, decrease = 3.533665027255495e-09
PARAFAC2 reconstruction error=0.8189091130549353, variation=1.5642656059355886e-09.
Starting iteration 1162
reconstruction error=0.20877667514085024
iteration 1, reconstruction error: 0.20877667158672547, decrease = 3.5541247722647995e-09
iteration 2, reconstruction error: 0.20877666804035344, decrease = 3.546372029372691e-09
iteration 3, reconstruction error: 0.20877666450167395, decrease = 3.5386794883240924e-09
iteration 4, reconstruction error: 0.20877666097066233, decrease = 3.5310116219822163e-09
PARAFAC2 reconstruction error=0.8189091114918566, variation=1.5630786664999619e-09.
Starting iteration 1163
reconstruction error=0.2087766564499561
iteration 1, reconstruction error: 0.2087766528985179, decrease = 3.5514381990786603e-09
iteration 2, reconstruction error: 0.2087766493548262, decrease = 3.543691701191065e-09
iteration 3, reconstruction error: 0.20877664581881014, decrease = 3.5360160632880167e-09
iteration 4, reconstruction error: 0.20877664229044957, decrease = 3.528360575932865e-09
PARAFAC2 reconstruction error=0.8189091099299641, variation=1.5618925042204523e-09.
Starting iteration 1164
reconstruction error=0.20877663777322217
iteration 1, reconstruction error: 0.20877663422447357, decrease = 3.548748600534779e-09
iteration 2, reconstruction error: 0.20877663068345534, decrease = 3.5410182286366165e-09
iteration 3, reconstruction error: 0.20877662715009956, decrease = 3.5333557746319855e-09
iteration 4, reconstruction error: 0.20877662362439467, decrease = 3.525704894702386e-09
PARAFAC2 reconstruction error=0.8189091083692562, variation=1.5607078962531773e-09.
Starting iteration 1165
reconstruction error=0.2087766191106398
iteration 1, reconstruction error: 0.2087766155645739, decrease = 3.546065913129226e-09
iteration 2, reconstruction error: 0.20877661202622752, decrease = 3.5383463659055536e-09
iteration 3, reconstruction error: 0.20877660849553362, decrease = 3.530693903908144e-09
iteration 4, reconstruction error: 0.20877660497247208, decrease = 3.5230615369474805e-09
PARAFAC2 reconstruction error=0.818909106809732, variation=1.5595242874866244e-09.
Starting iteration 1166
reconstruction error=0.20877660046218677
iteration 1, reconstruction error: 0.20877659691880662, decrease = 3.5433801448547797e-09
iteration 2, reconstruction error: 0.20877659338313137, decrease = 3.5356752525750323e-09
iteration 3, reconstruction error: 0.20877658985509545, decrease = 3.528035918964889e-09
iteration 4, reconstruction error: 0.20877658633467802, decrease = 3.520417429792033e-09
PARAFAC2 reconstruction error=0.8189091052513905, variation=1.5583414558761888e-09.
Starting iteration 1167
reconstruction error=0.2087765818278608
iteration 1, reconstruction error: 0.20877657828715793, decrease = 3.5407028697864718e-09
iteration 2, reconstruction error: 0.20877657475415223, decrease = 3.5330056935567455e-09
iteration 3, reconstruction error: 0.2087765712287697, decrease = 3.5253825414471862e-09
iteration 4, reconstruction error: 0.2087765677109964, decrease = 3.5177732948810103e-09
PARAFAC2 reconstruction error=0.8189091036942306, variation=1.5571598455110802e-09.
Starting iteration 1168
reconstruction error=0.20877656320764257
iteration 1, reconstruction error: 0.20877655966961853, decrease = 3.5380240404059293e-09
iteration 2, reconstruction error: 0.2087765561392778, decrease = 3.5303407142084353e-09
iteration 3, reconstruction error: 0.20877655261654943, decrease = 3.522728386773366e-09
iteration 4, reconstruction error: 0.20877654910141716, decrease = 3.5151322685944564e-09
PARAFAC2 reconstruction error=0.8189091021382512, variation=1.5559794563912988e-09.
Starting iteration 1169
reconstruction error=0.2087765446015229
iteration 1, reconstruction error: 0.20877654106617385, decrease = 3.535349041294822e-09
iteration 2, reconstruction error: 0.20877653753849498, decrease = 3.5276788712401697e-09
iteration 3, reconstruction error: 0.20877653401841917, decrease = 3.520075814167356e-09
iteration 4, reconstruction error: 0.2087765305059233, decrease = 3.5124958774890302e-09
PARAFAC2 reconstruction error=0.8189091005834515, variation=1.554799733405332e-09.
Starting iteration 1170
reconstruction error=0.20877652600948632
iteration 1, reconstruction error: 0.20877652247680994, decrease = 3.532676373652066e-09
iteration 2, reconstruction error: 0.20877651895179372, decrease = 3.525016223360211e-09
iteration 3, reconstruction error: 0.20877651543436435, decrease = 3.517429375543557e-09
iteration 4, reconstruction error: 0.20877651192450566, decrease = 3.5098586814719113e-09
PARAFAC2 reconstruction error=0.81890909902983, variation=1.5536214537092974e-09.
Starting iteration 1171
reconstruction error=0.20877650743152065
iteration 1, reconstruction error: 0.20877650390151847, decrease = 3.5300021794526515e-09
iteration 2, reconstruction error: 0.20877650037915949, decrease = 3.5223589878174977e-09
iteration 3, reconstruction error: 0.2087764968643781, decrease = 3.5147813826075236e-09
iteration 4, reconstruction error: 0.20877649335715193, decrease = 3.5072261761470713e-09
PARAFAC2 reconstruction error=0.8189090974773859, variation=1.5524440621916824e-09.
Starting iteration 1172
reconstruction error=0.20877648886761735
iteration 1, reconstruction error: 0.20877648534028165, decrease = 3.527335701303258e-09
iteration 2, reconstruction error: 0.20877648182058298, decrease = 3.519698671405891e-09
iteration 3, reconstruction error: 0.20877647830844107, decrease = 3.512141910633204e-09
iteration 4, reconstruction error: 0.20877647480384515, decrease = 3.5045959190238563e-09
PARAFAC2 reconstruction error=0.8189090959261184, variation=1.5512675588524871e-09.
Starting iteration 1173
reconstruction error=0.20877647031776178
iteration 1, reconstruction error: 0.2087764667930918, decrease = 3.524669972554406e-09
iteration 2, reconstruction error: 0.20877646327604263, decrease = 3.517049179668774e-09
iteration 3, reconstruction error: 0.2087764597665464, decrease = 3.5094962214099468e-09
iteration 4, reconstruction error: 0.2087764562645792, decrease = 3.5019672162128757e-09
PARAFAC2 reconstruction error=0.818909094376026, variation=1.5500923877809214e-09.
Starting iteration 1174
reconstruction error=0.2087764517819378
iteration 1, reconstruction error: 0.208776448259932, decrease = 3.522005798117789e-09
iteration 2, reconstruction error: 0.20877644474553544, decrease = 3.514396551551613e-09
iteration 3, reconstruction error: 0.20877644123867406, decrease = 3.506861384616755e-09
iteration 4, reconstruction error: 0.20877643773933552, decrease = 3.4993385411574707e-09
PARAFAC2 reconstruction error=0.8189090928271076, variation=1.5489184379546828e-09.
Starting iteration 1175
reconstruction error=0.20877643326013542
iteration 1, reconstruction error: 0.20877642974079377, decrease = 3.519341651436747e-09
iteration 2, reconstruction error: 0.2087764262290452, decrease = 3.511748586371155e-09
iteration 3, reconstruction error: 0.2087764227248187, decrease = 3.5042264923124122e-09
iteration 4, reconstruction error: 0.20877641922810344, decrease = 3.496715250683735e-09
PARAFAC2 reconstruction error=0.8189090912793625, variation=1.5477450432399564e-09.
Starting iteration 1176
reconstruction error=0.20877641475234382
iteration 1, reconstruction error: 0.20877641123565943, decrease = 3.516684388138458e-09
iteration 2, reconstruction error: 0.20877640772655728, decrease = 3.509102147747356e-09
iteration 3, reconstruction error: 0.20877640422496563, decrease = 3.5015916555192206e-09
iteration 4, reconstruction error: 0.20877640073087447, decrease = 3.4940911552983067e-09
PARAFAC2 reconstruction error=0.8189090897327895, variation=1.5465729807928597e-09.
Starting iteration 1177
reconstruction error=0.2087763962585484
iteration 1, reconstruction error: 0.20877639274452045, decrease = 3.5140279575074373e-09
iteration 2, reconstruction error: 0.20877638923806013, decrease = 3.5064603165491093e-09
iteration 3, reconstruction error: 0.20877638573910026, decrease = 3.4989598718393466e-09
iteration 4, reconstruction error: 0.2087763822476293, decrease = 3.49147097344904e-09
PARAFAC2 reconstruction error=0.8189090881873875, variation=1.5454020285687875e-09.
Starting iteration 1178
reconstruction error=0.20877637777873534
iteration 1, reconstruction error: 0.20877637426736004, decrease = 3.5113753016347005e-09
iteration 2, reconstruction error: 0.20877637076354302, decrease = 3.503817014305355e-09
iteration 3, reconstruction error: 0.20877636726721652, decrease = 3.4963265060916626e-09
iteration 4, reconstruction error: 0.20877636377836034, decrease = 3.488856176181443e-09
PARAFAC2 reconstruction error=0.8189090866431553, variation=1.54423218656774e-09.
Starting iteration 1179
reconstruction error=0.2087763593128946
iteration 1, reconstruction error: 0.20877635580417034, decrease = 3.5087242555853493e-09
iteration 2, reconstruction error: 0.20877635230299285, decrease = 3.501177486819884e-09
iteration 3, reconstruction error: 0.20877634880929424, decrease = 3.493698608192375e-09
iteration 4, reconstruction error: 0.20877634532305056, decrease = 3.486243682626622e-09
PARAFAC2 reconstruction error=0.8189090851000922, variation=1.5430631217228097e-09.
Starting iteration 1180
reconstruction error=0.20877634086101152
iteration 1, reconstruction error: 0.20877633735493908, decrease = 3.506072432379881e-09
iteration 2, reconstruction error: 0.208776333856398, decrease = 3.498541095714458e-09
iteration 3, reconstruction error: 0.20877633036532114, decrease = 3.491076844275298e-09
iteration 4, reconstruction error: 0.20877632688169614, decrease = 3.4836249995784385e-09
PARAFAC2 reconstruction error=0.8189090835581969, variation=1.5418952781232065e-09.
Starting iteration 1181
reconstruction error=0.2087763224230754
iteration 1, reconstruction error: 0.2087763189196479, decrease = 3.503427492557165e-09
iteration 2, reconstruction error: 0.2087763154237432, decrease = 3.495904704609032e-09
iteration 3, reconstruction error: 0.20877631193528812, decrease = 3.4884550803582215e-09
iteration 4, reconstruction error: 0.2087763084542702, decrease = 3.4810179183608625e-09
PARAFAC2 reconstruction error=0.8189090820174684, variation=1.540728544746628e-09.
Starting iteration 1182
reconstruction error=0.2087763039990708
iteration 1, reconstruction error: 0.20877630049829046, decrease = 3.5007803322884e-09
iteration 2, reconstruction error: 0.2087762970050145, decrease = 3.4932759740424757e-09
iteration 3, reconstruction error: 0.20877629351918348, decrease = 3.4858310127283687e-09
iteration 4, reconstruction error: 0.20877629004077267, decrease = 3.478410809387711e-09
PARAFAC2 reconstruction error=0.8189090804779056, variation=1.5395628105707715e-09.
Starting iteration 1183
reconstruction error=0.20877628558898922
iteration 1, reconstruction error: 0.20877628209085072, decrease = 3.4981385010901533e-09
iteration 2, reconstruction error: 0.20877627860020576, decrease = 3.490644967518719e-09
iteration 3, reconstruction error: 0.20877627511699032, decrease = 3.4832154383046543e-09
iteration 4, reconstruction error: 0.2087762716411874, decrease = 3.475802923258442e-09
PARAFAC2 reconstruction error=0.8189090789395077, variation=1.5383978535510323e-09.
Starting iteration 1184
reconstruction error=0.20877626719281617
iteration 1, reconstruction error: 0.20877626369731717, decrease = 3.4954990013602583e-09
iteration 2, reconstruction error: 0.2087762602092986, decrease = 3.4880185684205145e-09
iteration 3, reconstruction error: 0.20877625672870181, decrease = 3.4805967830120466e-09
iteration 4, reconstruction error: 0.20877625325549984, decrease = 3.473201976023077e-09
PARAFAC2 reconstruction error=0.8189090774022734, variation=1.5372343398212251e-09.
Starting iteration 1185
reconstruction error=0.20877624881053766
iteration 1, reconstruction error: 0.20877624531767508, decrease = 3.4928625824992565e-09
iteration 2, reconstruction error: 0.20877624183228444, decrease = 3.485390642765651e-09
iteration 3, reconstruction error: 0.2087762383542994, decrease = 3.477985038857767e-09
iteration 4, reconstruction error: 0.2087762348837014, decrease = 3.47059800342997e-09
PARAFAC2 reconstruction error=0.8189090758662015, variation=1.5360718252921401e-09.
Starting iteration 1186
reconstruction error=0.2087762304421453
iteration 1, reconstruction error: 0.20877622695191833, decrease = 3.4902269685499476e-09
iteration 2, reconstruction error: 0.20877622346914868, decrease = 3.4827696560046917e-09
iteration 3, reconstruction error: 0.2087762199937761, decrease = 3.4753725730585217e-09
iteration 4, reconstruction error: 0.20877621652577444, decrease = 3.468001663620157e-09
PARAFAC2 reconstruction error=0.8189090743312911, variation=1.5349104209860798e-09.
Starting iteration 1187
reconstruction error=0.20877621208762515
iteration 1, reconstruction error: 0.20877620860002616, decrease = 3.487598987383933e-09
iteration 2, reconstruction error: 0.20877620511988287, decrease = 3.480143284662063e-09
iteration 3, reconstruction error: 0.2087762016471151, decrease = 3.472767767798146e-09
iteration 4, reconstruction error: 0.20877619818170973, decrease = 3.4654053793214956e-09
PARAFAC2 reconstruction error=0.8189090727975413, variation=1.5337497938361366e-09.
Starting iteration 1188
reconstruction error=0.20877619374695736
iteration 1, reconstruction error: 0.20877619026199243, decrease = 3.4849649277468586e-09
iteration 2, reconstruction error: 0.2087761867844663, decrease = 3.4775261281705383e-09
iteration 3, reconstruction error: 0.20877618331430486, decrease = 3.4701614359811117e-09
iteration 4, reconstruction error: 0.20877617985149272, decrease = 3.4628121481361518e-09
PARAFAC2 reconstruction error=0.8189090712649509, variation=1.5325903879315206e-09.
Starting iteration 1189
reconstruction error=0.20877617542013868
iteration 1, reconstruction error: 0.20877617193780248, decrease = 3.4823361971803024e-09
iteration 2, reconstruction error: 0.20877616846289193, decrease = 3.474910553746824e-09
iteration 3, reconstruction error: 0.20877616499533294, decrease = 3.4675589899446635e-09
iteration 4, reconstruction error: 0.20877616153511555, decrease = 3.460217390394149e-09
PARAFAC2 reconstruction error=0.8189090697335193, variation=1.5314316481607193e-09.
Starting iteration 1190
reconstruction error=0.2087761571071538
iteration 1, reconstruction error: 0.20877615362744475, decrease = 3.4797090486815563e-09
iteration 2, reconstruction error: 0.20877615015514514, decrease = 3.4722996145042373e-09
iteration 3, reconstruction error: 0.20877614669018787, decrease = 3.4649572655531813e-09
iteration 4, reconstruction error: 0.20877614323256063, decrease = 3.4576272400776986e-09
PARAFAC2 reconstruction error=0.8189090682032446, variation=1.5302746847467574e-09.
Starting iteration 1191
reconstruction error=0.2087761388079912
iteration 1, reconstruction error: 0.20877613533090159, decrease = 3.4770896162328313e-09
iteration 2, reconstruction error: 0.2087761318612168, decrease = 3.4696847894810645e-09
iteration 3, reconstruction error: 0.2087761283988597, decrease = 3.4623570954739336e-09
iteration 4, reconstruction error: 0.20877612494381795, decrease = 3.4550417526979516e-09
PARAFAC2 reconstruction error=0.8189090666741266, variation=1.529118054399703e-09.
Starting iteration 1192
reconstruction error=0.20877612052263617
iteration 1, reconstruction error: 0.2087761170481691, decrease = 3.4744670751596374e-09
iteration 2, reconstruction error: 0.20877611358109294, decrease = 3.467076153951254e-09
iteration 3, reconstruction error: 0.2087761101213337, decrease = 3.459759229107462e-09
iteration 4, reconstruction error: 0.20877610666887514, decrease = 3.4524585690309806e-09
PARAFAC2 reconstruction error=0.8189090651461635, variation=1.5279630893871854e-09.
Starting iteration 1193
reconstruction error=0.2087761022510772
iteration 1, reconstruction error: 0.20877609877923187, decrease = 3.4718453389981363e-09
iteration 2, reconstruction error: 0.20877609531475977, decrease = 3.46447209809142e-09
iteration 3, reconstruction error: 0.20877609185759452, decrease = 3.4571652485215765e-09
iteration 4, reconstruction error: 0.20877608840771913, decrease = 3.4498753853640096e-09
PARAFAC2 reconstruction error=0.8189090636193548, variation=1.5268086794861802e-09.
Starting iteration 1194
reconstruction error=0.2087760839933028
iteration 1, reconstruction error: 0.20877608052407384, decrease = 3.469228959662729e-09
iteration 2, reconstruction error: 0.20877607706220344, decrease = 3.4618704014555135e-09
iteration 3, reconstruction error: 0.20877607360763295, decrease = 3.4545704907795738e-09
iteration 4, reconstruction error: 0.20877607016033845, decrease = 3.4472945054098147e-09
PARAFAC2 reconstruction error=0.8189090620936995, variation=1.525655268785897e-09.
Starting iteration 1195
reconstruction error=0.20877606574930063
iteration 1, reconstruction error: 0.20877606228268267, decrease = 3.4666179649089912e-09
iteration 2, reconstruction error: 0.2087760588234155, decrease = 3.459267178262948e-09
iteration 3, reconstruction error: 0.20877605537143204, decrease = 3.4519834490875922e-09
iteration 4, reconstruction error: 0.20877605192671922, decrease = 3.444712820543927e-09
PARAFAC2 reconstruction error=0.818909060569196, variation=1.524503523420151e-09.
Starting iteration 1196
reconstruction error=0.2087760475190576
iteration 1, reconstruction error: 0.20877604405504901, decrease = 3.464008579978639e-09
iteration 2, reconstruction error: 0.2087760405983851, decrease = 3.456663927314807e-09
iteration 3, reconstruction error: 0.2087760371489887, decrease = 3.449396379640035e-09
iteration 4, reconstruction error: 0.20877603370684905, decrease = 3.4421396566397533e-09
PARAFAC2 reconstruction error=0.8189090590458438, variation=1.5233522221436147e-09.
Starting iteration 1197
reconstruction error=0.20877602930255826
iteration 1, reconstruction error: 0.208776025841163, decrease = 3.4613952537565496e-09
iteration 2, reconstruction error: 0.20877602238709228, decrease = 3.4540707238850388e-09
iteration 3, reconstruction error: 0.20877601894028372, decrease = 3.4468085607919363e-09
iteration 4, reconstruction error: 0.2087760155007172, decrease = 3.439566520491155e-09
PARAFAC2 reconstruction error=0.8189090575236417, variation=1.522202031090103e-09.
Starting iteration 1198
reconstruction error=0.2087760110997973
iteration 1, reconstruction error: 0.208776007641006, decrease = 3.4587912811634425e-09
iteration 2, reconstruction error: 0.20877600418953396, decrease = 3.4514720526068743e-09
iteration 3, reconstruction error: 0.20877600074530625, decrease = 3.444227708593317e-09
iteration 4, reconstruction error: 0.20877599730831214, decrease = 3.436994105987523e-09
PARAFAC2 reconstruction error=0.8189090560025888, variation=1.521052950259616e-09.
Starting iteration 1199
reconstruction error=0.2087759929107547
iteration 1, reconstruction error: 0.20877598945457126, decrease = 3.4561834227897492e-09
iteration 2, reconstruction error: 0.20877598600568703, decrease = 3.4488842337587755e-09
iteration 3, reconstruction error: 0.20877598256404176, decrease = 3.4416452743268877e-09
iteration 4, reconstruction error: 0.20877597912961543, decrease = 3.4344263266650188e-09
PARAFAC2 reconstruction error=0.8189090544826836, variation=1.5199052016967585e-09.
Starting iteration 1200
reconstruction error=0.20877597473542195
iteration 1, reconstruction error: 0.2087759712818395, decrease = 3.4535824477988086e-09
iteration 2, reconstruction error: 0.2087759678355508, decrease = 3.4462886988606556e-09
iteration 3, reconstruction error: 0.20877596439648177, decrease = 3.4390690295538207e-09
iteration 4, reconstruction error: 0.2087759609646263, decrease = 3.431855466473621e-09
PARAFAC2 reconstruction error=0.8189090529639252, variation=1.5187583413123207e-09.
Starting iteration 1201
reconstruction error=0.2087759565737883
iteration 1, reconstruction error: 0.20877595312280525, decrease = 3.450983054875678e-09
iteration 2, reconstruction error: 0.20877594967910282, decrease = 3.4437024343247913e-09
iteration 3, reconstruction error: 0.20877594624261236, decrease = 3.436490453312402e-09
iteration 4, reconstruction error: 0.2087759428133185, decrease = 3.429293876644479e-09
PARAFAC2 reconstruction error=0.8189090514463132, variation=1.5176120360393952e-09.
Starting iteration 1202
reconstruction error=0.20877593842583914
iteration 1, reconstruction error: 0.2087759349774547, decrease = 3.448384439108665e-09
iteration 2, reconstruction error: 0.20877593153633703, decrease = 3.4411176685900102e-09
iteration 3, reconstruction error: 0.20877592810242052, decrease = 3.433916512252111e-09
iteration 4, reconstruction error: 0.20877592467568745, decrease = 3.4267330639714544e-09
PARAFAC2 reconstruction error=0.818909049929846, variation=1.5164671740564017e-09.
Starting iteration 1203
reconstruction error=0.20877592029156444
iteration 1, reconstruction error: 0.208775916845774, decrease = 3.445790430767204e-09
iteration 2, reconstruction error: 0.2087759134072372, decrease = 3.438536816391391e-09
iteration 3, reconstruction error: 0.20877590997589385, decrease = 3.431343348347937e-09
iteration 4, reconstruction error: 0.2087759065517224, decrease = 3.4241714463867368e-09
PARAFAC2 reconstruction error=0.8189090484145223, variation=1.5153237553633403e-09.
Starting iteration 1204
reconstruction error=0.20877590217094727
iteration 1, reconstruction error: 0.20877589872775007, decrease = 3.44319719958186e-09
iteration 2, reconstruction error: 0.20877589529179644, decrease = 3.43595363272442e-09
iteration 3, reconstruction error: 0.20877589186302165, decrease = 3.4287747918693157e-09
iteration 4, reconstruction error: 0.20877588844140718, decrease = 3.421614463983147e-09
PARAFAC2 reconstruction error=0.8189090469003417, variation=1.5141805587148838e-09.
Starting iteration 1205
reconstruction error=0.2087758840639777
iteration 1, reconstruction error: 0.2087758806233745, decrease = 3.4406032189959745e-09
iteration 2, reconstruction error: 0.20877587718999868, decrease = 3.433375805883543e-09
iteration 3, reconstruction error: 0.20877587376378934, decrease = 3.426209344015163e-09
iteration 4, reconstruction error: 0.20877587034472797, decrease = 3.4190613673601433e-09
PARAFAC2 reconstruction error=0.818909045387303, variation=1.5130386943340568e-09.
Starting iteration 1206
reconstruction error=0.2087758659706456
iteration 1, reconstruction error: 0.20877586253262867, decrease = 3.4380169267045346e-09
iteration 2, reconstruction error: 0.20877585910182914, decrease = 3.4307995333549e-09
iteration 3, reconstruction error: 0.20877585567818446, decrease = 3.4236446733171277e-09
iteration 4, reconstruction error: 0.2087758522616793, decrease = 3.4165051621126707e-09
PARAFAC2 reconstruction error=0.8189090438754048, variation=1.5118982732431618e-09.
Starting iteration 1207
reconstruction error=0.2087758478909372
iteration 1, reconstruction error: 0.20877584445550423, decrease = 3.4354329658814464e-09
iteration 2, reconstruction error: 0.2087758410272794, decrease = 3.4282248428940676e-09
iteration 3, reconstruction error: 0.2087758376061979, decrease = 3.4210815014201756e-09
iteration 4, reconstruction error: 0.208775834192242, decrease = 3.413955895759102e-09
PARAFAC2 reconstruction error=0.8189090423646467, variation=1.5107580741968718e-09.
Starting iteration 1208
reconstruction error=0.2087758298248378
iteration 1, reconstruction error: 0.20877582639199113, decrease = 3.4328466735900065e-09
iteration 2, reconstruction error: 0.20877582296633485, decrease = 3.425656286415446e-09
iteration 3, reconstruction error: 0.2087758195478165, decrease = 3.418518357278799e-09
iteration 4, reconstruction error: 0.20877581613640983, decrease = 3.411406657161109e-09
PARAFAC2 reconstruction error=0.8189090408550269, variation=1.5096197625297236e-09.
Starting iteration 1209
reconstruction error=0.20877581177234136
iteration 1, reconstruction error: 0.2087758083420717, decrease = 3.430269651660822e-09
iteration 2, reconstruction error: 0.2087758049189886, decrease = 3.4230831225112723e-09
iteration 3, reconstruction error: 0.20877580150302413, decrease = 3.4159644557441027e-09
iteration 4, reconstruction error: 0.2087757980941675, decrease = 3.4088566414069987e-09
PARAFAC2 reconstruction error=0.818909039346545, variation=1.5084818949517853e-09.
Starting iteration 1210
reconstruction error=0.20877579373342547
iteration 1, reconstruction error: 0.20877579030573673, decrease = 3.4276887439510517e-09
iteration 2, reconstruction error: 0.2087757868852206, decrease = 3.4205161203448853e-09
iteration 3, reconstruction error: 0.2087757834718131, decrease = 3.4134075010960885e-09
iteration 4, reconstruction error: 0.20877578006549882, decrease = 3.4063142861917584e-09
PARAFAC2 reconstruction error=0.8189090378391995, variation=1.507345470663779e-09.
Starting iteration 1211
reconstruction error=0.20877577570808864
iteration 1, reconstruction error: 0.2087757722829746, decrease = 3.425114053490219e-09
iteration 2, reconstruction error: 0.20877576886502397, decrease = 3.4179506169795815e-09
iteration 3, reconstruction error: 0.20877576545416882, decrease = 3.4108551538736265e-09
iteration 4, reconstruction error: 0.20877576205039683, decrease = 3.4037719864876692e-09
PARAFAC2 reconstruction error=0.81890903633299, variation=1.506209601487285e-09.
Starting iteration 1212
reconstruction error=0.20877575769631232
iteration 1, reconstruction error: 0.20877575427377223, decrease = 3.4225400846743526e-09
iteration 2, reconstruction error: 0.20877575085838396, decrease = 3.415388277749898e-09
iteration 3, reconstruction error: 0.20877574745008193, decrease = 3.4083020294950472e-09
iteration 4, reconstruction error: 0.20877574404884994, decrease = 3.401231990496356e-09
PARAFAC2 reconstruction error=0.8189090348279148, variation=1.505075175600723e-09.
Starting iteration 1213
reconstruction error=0.20877573969808585
iteration 1, reconstruction error: 0.20877573627811816, decrease = 3.419967697926296e-09
iteration 2, reconstruction error: 0.20877573286529072, decrease = 3.4128274373212975e-09
iteration 3, reconstruction error: 0.20877572945953562, decrease = 3.4057550946098303e-09
iteration 4, reconstruction error: 0.2087757260608375, decrease = 3.398698128487254e-09
PARAFAC2 reconstruction error=0.8189090333239735, variation=1.5039413048256733e-09.
Starting iteration 1214
reconstruction error=0.20877572171339762
iteration 1, reconstruction error: 0.20877571829599847, decrease = 3.4173991414476745e-09
iteration 2, reconstruction error: 0.20877571488572721, decrease = 3.4102712598294005e-09
iteration 3, reconstruction error: 0.20877571148252216, decrease = 3.4032050511001444e-09
iteration 4, reconstruction error: 0.20877570808635865, decrease = 3.3961635170776105e-09
PARAFAC2 reconstruction error=0.8189090318211644, variation=1.5028090993851606e-09.
Starting iteration 1215
reconstruction error=0.20877570374223295
iteration 1, reconstruction error: 0.20877570032740236, decrease = 3.414830584969053e-09
iteration 2, reconstruction error: 0.20877569691968964, decrease = 3.407712723113576e-09
iteration 3, reconstruction error: 0.20877569351902614, decrease = 3.400663500796597e-09
iteration 4, reconstruction error: 0.20877569012539876, decrease = 3.393627379111308e-09
PARAFAC2 reconstruction error=0.8189090303194869, variation=1.5016774490561602e-09.
Starting iteration 1216
reconstruction error=0.20877568578458502
iteration 1, reconstruction error: 0.2087756823723191, decrease = 3.4122659142710177e-09
iteration 2, reconstruction error: 0.2087756789671595, decrease = 3.405159598734997e-09
iteration 3, reconstruction error: 0.20877567556903678, decrease = 3.3981227276491666e-09
iteration 4, reconstruction error: 0.2087756721779386, decrease = 3.3910981800389095e-09
PARAFAC2 reconstruction error=0.8189090288189401, variation=1.500546797927882e-09.
Starting iteration 1217
reconstruction error=0.20877566784043608
iteration 1, reconstruction error: 0.20877566443073486, decrease = 3.4097012158174067e-09
iteration 2, reconstruction error: 0.20877566102812528, decrease = 3.4026095829808867e-09
iteration 3, reconstruction error: 0.20877565763254183, decrease = 3.3955834533028195e-09
iteration 4, reconstruction error: 0.20877565424397207, decrease = 3.388569758122628e-09
PARAFAC2 reconstruction error=0.8189090273195226, variation=1.4994174790672332e-09.
Starting iteration 1218
reconstruction error=0.20877564990977462
iteration 1, reconstruction error: 0.20877564650263347, decrease = 3.4071411525449236e-09
iteration 2, reconstruction error: 0.20877564310257163, decrease = 3.400061843183977e-09
iteration 3, reconstruction error: 0.20877563970952892, decrease = 3.393042707910965e-09
iteration 4, reconstruction error: 0.20877563632348223, decrease = 3.3860466930324407e-09
PARAFAC2 reconstruction error=0.8189090258212336, variation=1.4982890483850042e-09.
Starting iteration 1219
reconstruction error=0.2087756319925944
iteration 1, reconstruction error: 0.20877562858800947, decrease = 3.404584947297451e-09
iteration 2, reconstruction error: 0.20877562519049456, decrease = 3.39751490829876e-09
iteration 3, reconstruction error: 0.2087756217999857, decrease = 3.390508845901863e-09
iteration 4, reconstruction error: 0.20877561841646436, decrease = 3.3835213519850527e-09
PARAFAC2 reconstruction error=0.818909024324072, variation=1.4971616169034974e-09.
Starting iteration 1220
reconstruction error=0.2087756140888732
iteration 1, reconstruction error: 0.2087756106868437, decrease = 3.4020295192060956e-09
iteration 2, reconstruction error: 0.20877560729187344, decrease = 3.3949702493707434e-09
iteration 3, reconstruction error: 0.20877560390389843, decrease = 3.3879750116483365e-09
iteration 4, reconstruction error: 0.20877560052289934, decrease = 3.380999091806558e-09
PARAFAC2 reconstruction error=0.8189090228280367, variation=1.4960352956450151e-09.
Starting iteration 1221
reconstruction error=0.20877559619860941
iteration 1, reconstruction error: 0.2087755927991338, decrease = 3.399475617671399e-09
iteration 2, reconstruction error: 0.20877558940670662, decrease = 3.392427172510537e-09
iteration 3, reconstruction error: 0.2087755860212585, decrease = 3.385448116288714e-09
iteration 4, reconstruction error: 0.20877558264278093, decrease = 3.378477581028605e-09
PARAFAC2 reconstruction error=0.8189090213331269, variation=1.4949097515426502e-09.
Starting iteration 1222
reconstruction error=0.20877557832178378
iteration 1, reconstruction error: 0.20877557492485746, decrease = 3.396926323562255e-09
iteration 2, reconstruction error: 0.20877557153497106, decrease = 3.3898863993631068e-09
iteration 3, reconstruction error: 0.20877556815205445, decrease = 3.3829166135035393e-09
iteration 4, reconstruction error: 0.20877556477609066, decrease = 3.375963786300673e-09
PARAFAC2 reconstruction error=0.8189090198393416, variation=1.4937853176633098e-09.
Starting iteration 1223
reconstruction error=0.20877556045838638
iteration 1, reconstruction error: 0.20877555706401085, decrease = 3.3943755306520274e-09
iteration 2, reconstruction error: 0.20877555367665984, decrease = 3.387351010797346e-09
iteration 3, reconstruction error: 0.20877555029627012, decrease = 3.380389718143917e-09
iteration 4, reconstruction error: 0.20877554692281936, decrease = 3.3734507687288584e-09
PARAFAC2 reconstruction error=0.8189090183466795, variation=1.4926621050292965e-09.
Starting iteration 1224
reconstruction error=0.20877554260840406
iteration 1, reconstruction error: 0.20877553921657627, decrease = 3.3918277908551175e-09
iteration 2, reconstruction error: 0.20877553583175834, decrease = 3.384817925944361e-09
iteration 3, reconstruction error: 0.20877553245389166, decrease = 3.377866680809305e-09
iteration 4, reconstruction error: 0.20877552908295777, decrease = 3.370933893132033e-09
PARAFAC2 reconstruction error=0.8189090168551398, variation=1.4915396695514005e-09.
Starting iteration 1225
reconstruction error=0.20877552477182762
iteration 1, reconstruction error: 0.2087755213825452, decrease = 3.389282410282135e-09
iteration 2, reconstruction error: 0.20877551800026037, decrease = 3.3822848410913764e-09
iteration 3, reconstruction error: 0.2087755146249129, decrease = 3.375347473744128e-09
iteration 4, reconstruction error: 0.2087755112564889, decrease = 3.3684239841846875e-09
PARAFAC2 reconstruction error=0.8189090153647215, variation=1.490418344296529e-09.
Starting iteration 1226
reconstruction error=0.20877550694864166
iteration 1, reconstruction error: 0.20877550356190083, decrease = 3.386740832223012e-09
iteration 2, reconstruction error: 0.20877550018214594, decrease = 3.379754892618436e-09
iteration 3, reconstruction error: 0.2087754968093215, decrease = 3.372824436409516e-09
iteration 4, reconstruction error: 0.20877549344340746, decrease = 3.365914047481766e-09
PARAFAC2 reconstruction error=0.8189090138754234, variation=1.4892981292646823e-09.
Starting iteration 1227
reconstruction error=0.20877548913883387
iteration 1, reconstruction error: 0.20877548575463686, decrease = 3.384197005962264e-09
iteration 2, reconstruction error: 0.20877548237740967, decrease = 3.377227192347121e-09
iteration 3, reconstruction error: 0.20877547900710058, decrease = 3.3703090873693498e-09
iteration 4, reconstruction error: 0.2087754756436918, decrease = 3.3634087737155483e-09
PARAFAC2 reconstruction error=0.8189090123872447, variation=1.4881786913889528e-09.
Starting iteration 1228
reconstruction error=0.20877547134239802
iteration 1, reconstruction error: 0.2087754679607349, decrease = 3.3816631161975863e-09
iteration 2, reconstruction error: 0.20877546458603613, decrease = 3.3746987704308395e-09
iteration 3, reconstruction error: 0.20877546121824234, decrease = 3.3677937938403346e-09
iteration 4, reconstruction error: 0.2087754578573335, decrease = 3.3609088290198486e-09
PARAFAC2 reconstruction error=0.8189090109001842, variation=1.4870604747585503e-09.
Starting iteration 1229
reconstruction error=0.2087754535593142
iteration 1, reconstruction error: 0.20877545018018878, decrease = 3.3791254239190494e-09
iteration 2, reconstruction error: 0.2087754468080123, decrease = 3.3721764824967693e-09
iteration 3, reconstruction error: 0.20877544344273308, decrease = 3.3652792219562855e-09
iteration 4, reconstruction error: 0.20877544008432644, decrease = 3.358406636122524e-09
PARAFAC2 reconstruction error=0.8189090094142412, variation=1.485943035284265e-09.
Starting iteration 1230
reconstruction error=0.208775435789577
iteration 1, reconstruction error: 0.2087754324129785, decrease = 3.3765985008038513e-09
iteration 2, reconstruction error: 0.20877542904332583, decrease = 3.36965266800604e-09
iteration 3, reconstruction error: 0.20877542568055807, decrease = 3.3627677586967053e-09
iteration 4, reconstruction error: 0.2087754223246521, decrease = 3.3559059697818583e-09
PARAFAC2 reconstruction error=0.8189090079294142, variation=1.4848269280776094e-09.
Starting iteration 1231
reconstruction error=0.20877541803316946
iteration 1, reconstruction error: 0.208775414659104, decrease = 3.374065443706442e-09
iteration 2, reconstruction error: 0.2087754112919713, decrease = 3.3671327115403216e-09
iteration 3, reconstruction error: 0.20877540793170887, decrease = 3.360262429419336e-09
iteration 4, reconstruction error: 0.20877540457829893, decrease = 3.3534099386223204e-09
PARAFAC2 reconstruction error=0.8189090064457026, variation=1.483711598027071e-09.
Starting iteration 1232
reconstruction error=0.20877540029008315
iteration 1, reconstruction error: 0.20877539691854383, decrease = 3.371539325502937e-09
iteration 2, reconstruction error: 0.2087753935539303, decrease = 3.3646135322307202e-09
iteration 3, reconstruction error: 0.2087753901961747, decrease = 3.357755601340884e-09
iteration 4, reconstruction error: 0.20877538684525776, decrease = 3.3509169328205246e-09
PARAFAC2 reconstruction error=0.8189090049631053, variation=1.4825973781995572e-09.
Starting iteration 1233
reconstruction error=0.2087753825603034
iteration 1, reconstruction error: 0.20877537919129252, decrease = 3.36901087583108e-09
iteration 2, reconstruction error: 0.20877537582919123, decrease = 3.362101291815023e-09
iteration 3, reconstruction error: 0.20877537247393788, decrease = 3.355253352932408e-09
iteration 4, reconstruction error: 0.20877536912551695, decrease = 3.3484209294165623e-09
PARAFAC2 reconstruction error=0.818909003481621, variation=1.481484268595068e-09.
Starting iteration 1234
reconstruction error=0.20877536484382025
iteration 1, reconstruction error: 0.2087753614773309, decrease = 3.366489365053127e-09
iteration 2, reconstruction error: 0.2087753581177442, decrease = 3.359586692175398e-09
iteration 3, reconstruction error: 0.20877535476498993, decrease = 3.3527542686595524e-09
iteration 4, reconstruction error: 0.20877535141906042, decrease = 3.3459295056825766e-09
PARAFAC2 reconstruction error=0.818909002001249, variation=1.480371936146696e-09.
Starting iteration 1235
reconstruction error=0.20877534714062057
iteration 1, reconstruction error: 0.20877534377665347, decrease = 3.3639671048746322e-09
iteration 2, reconstruction error: 0.20877534041957363, decrease = 3.35707983634137e-09
iteration 3, reconstruction error: 0.2087753370693208, decrease = 3.3502528251627695e-09
iteration 4, reconstruction error: 0.2087753337258758, decrease = 3.3434449930869192e-09
PARAFAC2 reconstruction error=0.8189090005219886, variation=1.4792604918767438e-09.
Starting iteration 1236
reconstruction error=0.20877532945069047
iteration 1, reconstruction error: 0.20877532608924257, decrease = 3.3614478978094553e-09
iteration 2, reconstruction error: 0.20877532273467267, decrease = 3.3545698996384488e-09
iteration 3, reconstruction error: 0.20877531938691665, decrease = 3.3477560168471143e-09
iteration 4, reconstruction error: 0.20877531604596075, decrease = 3.3409559008212852e-09
PARAFAC2 reconstruction error=0.8189089990438382, variation=1.4781503798744211e-09.
Starting iteration 1237
reconstruction error=0.2087753117740201
iteration 1, reconstruction error: 0.20877530841508984, decrease = 3.358930245056513e-09
iteration 2, reconstruction error: 0.20877530506302366, decrease = 3.3520661801844653e-09
iteration 3, reconstruction error: 0.20877530171776373, decrease = 3.345259930176425e-09
iteration 4, reconstruction error: 0.20877529837929076, decrease = 3.338472970293438e-09
PARAFAC2 reconstruction error=0.818908997566797, variation=1.4770411560505181e-09.
Starting iteration 1238
reconstruction error=0.20877529411060086
iteration 1, reconstruction error: 0.20877529075418286, decrease = 3.3564180046408154e-09
iteration 2, reconstruction error: 0.20877528740462045, decrease = 3.3495624052193307e-09
iteration 3, reconstruction error: 0.20877528406185195, decrease = 3.3427685064424395e-09
iteration 4, reconstruction error: 0.20877528072586035, decrease = 3.335991594077825e-09
PARAFAC2 reconstruction error=0.8189089960908638, variation=1.4759332644942447e-09.
Starting iteration 1239
reconstruction error=0.20877527646041663
iteration 1, reconstruction error: 0.20877527310651006, decrease = 3.353906569136811e-09
iteration 2, reconstruction error: 0.20877526975944913, decrease = 3.347060933966972e-09
iteration 3, reconstruction error: 0.20877526641917052, decrease = 3.3402786092651127e-09
iteration 4, reconstruction error: 0.20877526308566033, decrease = 3.3335101901066366e-09
PARAFAC2 reconstruction error=0.8189089946160382, variation=1.4748255949825761e-09.
Starting iteration 1240
reconstruction error=0.20877525882344972
iteration 1, reconstruction error: 0.20877525547205697, decrease = 3.3513927466533033e-09
iteration 2, reconstruction error: 0.20877525212749437, decrease = 3.344562599094658e-09
iteration 3, reconstruction error: 0.20877524878970333, decrease = 3.3377910435561375e-09
iteration 4, reconstruction error: 0.20877524545867143, decrease = 3.331031894759917e-09
PARAFAC2 reconstruction error=0.8189089931423186, variation=1.4737195908054446e-09.
Starting iteration 1241
reconstruction error=0.2087752411997001
iteration 1, reconstruction error: 0.2087752378508111, decrease = 3.3488889994437443e-09
iteration 2, reconstruction error: 0.2087752345087492, decrease = 3.342061877242841e-09
iteration 3, reconstruction error: 0.20877523117344493, decrease = 3.3353042827588553e-09
iteration 4, reconstruction error: 0.20877522784488445, decrease = 3.3285604827959503e-09
PARAFAC2 reconstruction error=0.8189089916697042, variation=1.4726143637844302e-09.
Starting iteration 1242
reconstruction error=0.20877522358914927
iteration 1, reconstruction error: 0.20877522024276637, decrease = 3.346382893010258e-09
iteration 2, reconstruction error: 0.20877521690319822, decrease = 3.3395681497960794e-09
iteration 3, reconstruction error: 0.20877521357037765, decrease = 3.3328205750748907e-09
iteration 4, reconstruction error: 0.20877521024429005, decrease = 3.326087599786476e-09
PARAFAC2 reconstruction error=0.818908990198194, variation=1.4715102469864405e-09.
Starting iteration 1243
reconstruction error=0.20877520599178653
iteration 1, reconstruction error: 0.20877520264790742, decrease = 3.3438791180451233e-09
iteration 2, reconstruction error: 0.2087751993108291, decrease = 3.337078308129904e-09
iteration 3, reconstruction error: 0.20877519598049227, decrease = 3.3303368396353505e-09
iteration 4, reconstruction error: 0.20877519265687297, decrease = 3.323619296446978e-09
PARAFAC2 reconstruction error=0.8189089887277871, variation=1.470406907344568e-09.
Starting iteration 1244
reconstruction error=0.20877518840760342
iteration 1, reconstruction error: 0.20877518506622111, decrease = 3.341382309729468e-09
iteration 2, reconstruction error: 0.20877518173163578, decrease = 3.3345853300836836e-09
iteration 3, reconstruction error: 0.20877517840377494, decrease = 3.327860848001407e-09
iteration 4, reconstruction error: 0.20877517508262855, decrease = 3.321146385681928e-09
PARAFAC2 reconstruction error=0.8189089872584823, variation=1.4693047889480226e-09.
Starting iteration 1245
reconstruction error=0.20877517083657526
iteration 1, reconstruction error: 0.20877516749769906, decrease = 3.3388762032959818e-09
iteration 2, reconstruction error: 0.2087751641655982, decrease = 3.3321008729991775e-09
iteration 3, reconstruction error: 0.2087751608402149, decrease = 3.3253832742996536e-09
iteration 4, reconstruction error: 0.20877515752153292, decrease = 3.318681995878592e-09
PARAFAC2 reconstruction error=0.8189089857902789, variation=1.468203336685292e-09.
Starting iteration 1246
reconstruction error=0.20877515327870663
iteration 1, reconstruction error: 0.20877514994232418, decrease = 3.3363824480936444e-09
iteration 2, reconstruction error: 0.2087751466127109, decrease = 3.3296132795346267e-09
iteration 3, reconstruction error: 0.20877514328980207, decrease = 3.3229088369779447e-09
iteration 4, reconstruction error: 0.2087751399735837, decrease = 3.3162183554757974e-09
PARAFAC2 reconstruction error=0.8189089843231756, variation=1.4671033277124934e-09.
Starting iteration 1247
reconstruction error=0.20877513573397607
iteration 1, reconstruction error: 0.20877513240008813, decrease = 3.3338879434907653e-09
iteration 2, reconstruction error: 0.2087751290729547, decrease = 3.3271334298756727e-09
iteration 3, reconstruction error: 0.20877512575252108, decrease = 3.3204336225001185e-09
iteration 4, reconstruction error: 0.20877512243876642, decrease = 3.3137546595618517e-09
PARAFAC2 reconstruction error=0.8189089828571713, variation=1.466004317940417e-09.
Starting iteration 1248
reconstruction error=0.208775118202372
iteration 1, reconstruction error: 0.20877511487097777, decrease = 3.3313942160440035e-09
iteration 2, reconstruction error: 0.20877511154632808, decrease = 3.3246496944361326e-09
iteration 3, reconstruction error: 0.20877510822836273, decrease = 3.3179653469161963e-09
iteration 4, reconstruction error: 0.20877510491706552, decrease = 3.3112972086524195e-09
PARAFAC2 reconstruction error=0.8189089813922655, variation=1.4649057522575504e-09.
Starting iteration 1249
reconstruction error=0.20877510068388827
iteration 1, reconstruction error: 0.20877509735498237, decrease = 3.328905900934487e-09
iteration 2, reconstruction error: 0.20877509403280944, decrease = 3.322172925646072e-09
iteration 3, reconstruction error: 0.2087750907173147, decrease = 3.3154947398639223e-09
iteration 4, reconstruction error: 0.2087750874084758, decrease = 3.3088388973201432e-09
PARAFAC2 reconstruction error=0.8189089799284569, variation=1.4638086298646158e-09.
Starting iteration 1250
reconstruction error=0.20877508317850632
iteration 1, reconstruction error: 0.20877507985208726, decrease = 3.3264190568704777e-09
iteration 2, reconstruction error: 0.20877507653239497, decrease = 3.3196922988310007e-09
iteration 3, reconstruction error: 0.2087750732193631, decrease = 3.313031876617245e-09
iteration 4, reconstruction error: 0.2087750699129778, decrease = 3.306385276680146e-09
PARAFAC2 reconstruction error=0.8189089784657445, variation=1.462712395650101e-09.
Starting iteration 1251
reconstruction error=0.2087750656862217
iteration 1, reconstruction error: 0.20877506236228555, decrease = 3.323936154098206e-09
iteration 2, reconstruction error: 0.2087750590450654, decrease = 3.3172201374664922e-09
iteration 3, reconstruction error: 0.20877505573450106, decrease = 3.3105643504338644e-09
iteration 4, reconstruction error: 0.2087750524305663, decrease = 3.3039347646646178e-09
PARAFAC2 reconstruction error=0.8189089770041275, variation=1.4616170496140057e-09.
Starting iteration 1252
reconstruction error=0.20877504820701426
iteration 1, reconstruction error: 0.20877504488556414, decrease = 3.3214501149458897e-09
iteration 2, reconstruction error: 0.2087750415708169, decrease = 3.3147472544570178e-09
iteration 3, reconstruction error: 0.20877503826271004, decrease = 3.308106844013281e-09
iteration 4, reconstruction error: 0.20877503496123048, decrease = 3.3014795619568105e-09
PARAFAC2 reconstruction error=0.8189089755436045, variation=1.4605229248232376e-09.
Starting iteration 1253
reconstruction error=0.20877503074087944
iteration 1, reconstruction error: 0.2087750274219084, decrease = 3.318971042443053e-09
iteration 2, reconstruction error: 0.20877502410963023, decrease = 3.3122781739614027e-09
iteration 3, reconstruction error: 0.20877502080398397, decrease = 3.3056462567238043e-09
iteration 4, reconstruction error: 0.2087750175049511, decrease = 3.299032880210717e-09
PARAFAC2 reconstruction error=0.8189089740841747, variation=1.4594297992331917e-09.
Starting iteration 1254
reconstruction error=0.208775013287798
iteration 1, reconstruction error: 0.20877500997130607, decrease = 3.316491914429065e-09
iteration 2, reconstruction error: 0.2087750066614954, decrease = 3.3098106755335976e-09
iteration 3, reconstruction error: 0.20877500335830737, decrease = 3.303188028658255e-09
iteration 4, reconstruction error: 0.20877500006172042, decrease = 3.2965869478651655e-09
PARAFAC2 reconstruction error=0.8189089726258375, variation=1.458337228754658e-09.
Starting iteration 1255
reconstruction error=0.20877499584776374
iteration 1, reconstruction error: 0.20877499253374626, decrease = 3.314017477107356e-09
iteration 2, reconstruction error: 0.20877498922640234, decrease = 3.3073439265063342e-09
iteration 3, reconstruction error: 0.20877498592566796, decrease = 3.300734380262682e-09
iteration 4, reconstruction error: 0.20877498263152616, decrease = 3.294141792675731e-09
PARAFAC2 reconstruction error=0.8189089711685913, variation=1.457246212588359e-09.
Starting iteration 1256
reconstruction error=0.20877497842076134
iteration 1, reconstruction error: 0.2087749751092222, decrease = 3.311539154005061e-09
iteration 2, reconstruction error: 0.2087749718043396, decrease = 3.304882589816316e-09
iteration 3, reconstruction error: 0.2087749685060573, decrease = 3.2982822861793437e-09
iteration 4, reconstruction error: 0.20877496521436065, decrease = 3.2916966652418722e-09
PARAFAC2 reconstruction error=0.8189089697124355, variation=1.4561557515335721e-09.
Starting iteration 1257
reconstruction error=0.20877496100678378
iteration 1, reconstruction error: 0.20877495769771523, decrease = 3.309068546952787e-09
iteration 2, reconstruction error: 0.20877495439529556, decrease = 3.3024196710584874e-09
iteration 3, reconstruction error: 0.2087749510994646, decrease = 3.2958309692521226e-09
iteration 4, reconstruction error: 0.20877494781020303, decrease = 3.2892615575708106e-09
PARAFAC2 reconstruction error=0.818908968257369, variation=1.4550665117241124e-09.
Starting iteration 1258
reconstruction error=0.20877494360581583
iteration 1, reconstruction error: 0.20877494029921478, decrease = 3.306601048524982e-09
iteration 2, reconstruction error: 0.20877493699925645, decrease = 3.299958334368469e-09
iteration 3, reconstruction error: 0.2087749337058722, decrease = 3.2933842597504537e-09
iteration 4, reconstruction error: 0.2087749304190496, decrease = 3.2868225918747385e-09
PARAFAC2 reconstruction error=0.818908966803391, variation=1.4539780490707699e-09.
Starting iteration 1259
reconstruction error=0.20877492621784494
iteration 1, reconstruction error: 0.20877492291371375, decrease = 3.3041311908732496e-09
iteration 2, reconstruction error: 0.2087749196162098, decrease = 3.2975039365723546e-09
iteration 3, reconstruction error: 0.208774916325273, decrease = 3.290936800848243e-09
iteration 4, reconstruction error: 0.2087749130408871, decrease = 3.2843859021358668e-09
PARAFAC2 reconstruction error=0.8189089653505001, variation=1.452890918685057e-09.
Starting iteration 1260
reconstruction error=0.20877490884286362
iteration 1, reconstruction error: 0.20877490554119454, decrease = 3.301669077027114e-09
iteration 2, reconstruction error: 0.20877490224614964, decrease = 3.2950449035951124e-09
iteration 3, reconstruction error: 0.20877489895765336, decrease = 3.2884962808399365e-09
iteration 4, reconstruction error: 0.2087748956757018, decrease = 3.2819515716209224e-09
PARAFAC2 reconstruction error=0.8189089638986957, variation=1.4518043434108563e-09.
Starting iteration 1261
reconstruction error=0.20877489148085404
iteration 1, reconstruction error: 0.2087748881816502, decrease = 3.2992038545565094e-09
iteration 2, reconstruction error: 0.20877488488905427, decrease = 3.292595918136243e-09
iteration 3, reconstruction error: 0.2087748816030016, decrease = 3.2860526799627365e-09
iteration 4, reconstruction error: 0.2087748783234813, decrease = 3.279520294219296e-09
PARAFAC2 reconstruction error=0.8189089624479765, variation=1.4507192114265877e-09.
Starting iteration 1262
reconstruction error=0.2087748741318124
iteration 1, reconstruction error: 0.20877487083506757, decrease = 3.296744821579267e-09
iteration 2, reconstruction error: 0.20877486754492147, decrease = 3.290146100010105e-09
iteration 3, reconstruction error: 0.2087748642613093, decrease = 3.28361215995443e-09
iteration 4, reconstruction error: 0.20877486098421796, decrease = 3.277091348286021e-09
PARAFAC2 reconstruction error=0.8189089609983417, variation=1.4496348565984363e-09.
Starting iteration 1263
reconstruction error=0.20877485679572177
iteration 1, reconstruction error: 0.2087748535014375, decrease = 3.294284262045366e-09
iteration 2, reconstruction error: 0.2087748502137381, decrease = 3.287699418264012e-09
iteration 3, reconstruction error: 0.2087748469325626, decrease = 3.281175497971134e-09
iteration 4, reconstruction error: 0.2087748436578971, decrease = 3.2746654832216393e-09
PARAFAC2 reconstruction error=0.8189089595497905, variation=1.4485511679040997e-09.
Starting iteration 1264
reconstruction error=0.20877483947256836
iteration 1, reconstruction error: 0.20877483618074003, decrease = 3.2918283376925928e-09
iteration 2, reconstruction error: 0.2087748328954827, decrease = 3.285257316187895e-09
iteration 3, reconstruction error: 0.20877482961674462, decrease = 3.278738086587296e-09
iteration 4, reconstruction error: 0.20877482634450503, decrease = 3.272239590401682e-09
PARAFAC2 reconstruction error=0.8189089581023214, variation=1.4474690335219975e-09.
Starting iteration 1265
reconstruction error=0.20877482216234203
iteration 1, reconstruction error: 0.2087748188729658, decrease = 3.2893762158536788e-09
iteration 2, reconstruction error: 0.20877481559015823, decrease = 3.282807581328484e-09
iteration 3, reconstruction error: 0.20877481231385223, decrease = 3.2763060042739767e-09
iteration 4, reconstruction error: 0.2087748090440354, decrease = 3.2698168339617695e-09
PARAFAC2 reconstruction error=0.8189089566559341, variation=1.4463873432291052e-09.
Starting iteration 1266
reconstruction error=0.2087748048650344
iteration 1, reconstruction error: 0.20877480157811182, decrease = 3.2869225952136816e-09
iteration 2, reconstruction error: 0.20877479829774015, decrease = 3.2803716687457296e-09
iteration 3, reconstruction error: 0.20877479502386848, decrease = 3.2738716737590323e-09
iteration 4, reconstruction error: 0.20877479175647057, decrease = 3.267397907791292e-09
PARAFAC2 reconstruction error=0.818908955210627, variation=1.445307096226145e-09.
Starting iteration 1267
reconstruction error=0.2087747875806308
iteration 1, reconstruction error: 0.2087747842961611, decrease = 3.284469723974226e-09
iteration 2, reconstruction error: 0.20877478101822763, decrease = 3.277933452450199e-09
iteration 3, reconstruction error: 0.20877477774678183, decrease = 3.2714458086946507e-09
iteration 4, reconstruction error: 0.20877477448180287, decrease = 3.2649789538652385e-09
PARAFAC2 reconstruction error=0.8189089537663993, variation=1.4442277374016044e-09.
Starting iteration 1268
reconstruction error=0.20877477030912206
iteration 1, reconstruction error: 0.2087747670270952, decrease = 3.2820268724975676e-09
iteration 2, reconstruction error: 0.20877476375160225, decrease = 3.2754929324418924e-09
iteration 3, reconstruction error: 0.20877476048258153, decrease = 3.2690207207863864e-09
iteration 4, reconstruction error: 0.20877475722001917, decrease = 3.2625623591631125e-09
PARAFAC2 reconstruction error=0.8189089523232503, variation=1.4431489336885761e-09.
Starting iteration 1269
reconstruction error=0.20877475305049506
iteration 1, reconstruction error: 0.20877474977091254, decrease = 3.279582522219826e-09
iteration 2, reconstruction error: 0.208774746497854, decrease = 3.273058546415797e-09
iteration 3, reconstruction error: 0.2087747432312584, decrease = 3.2665956051225464e-09
iteration 4, reconstruction error: 0.20877473997111032, decrease = 3.2601480681737627e-09
PARAFAC2 reconstruction error=0.8189089508811788, variation=1.4420715732654799e-09.
Starting iteration 1270
reconstruction error=0.2087747358047336
iteration 1, reconstruction error: 0.2087747325275978, decrease = 3.277135812718157e-09
iteration 2, reconstruction error: 0.20877472925697124, decrease = 3.2706265473692042e-09
iteration 3, reconstruction error: 0.20877472599279842, decrease = 3.264172820927058e-09
iteration 4, reconstruction error: 0.20877472273506234, decrease = 3.257736080897189e-09
PARAFAC2 reconstruction error=0.8189089494401837, variation=1.4409951010208033e-09.
Starting iteration 1271
reconstruction error=0.20877471857183538
iteration 1, reconstruction error: 0.2087747152971386, decrease = 3.2746967915109337e-09
iteration 2, reconstruction error: 0.20877471202894254, decrease = 3.268196047123695e-09
iteration 3, reconstruction error: 0.20877470876718943, decrease = 3.2617531176004633e-09
iteration 4, reconstruction error: 0.208774705511863, decrease = 3.255326425088967e-09
PARAFAC2 reconstruction error=0.8189089480002644, variation=1.4399192949099415e-09.
Starting iteration 1272
reconstruction error=0.20877470135178355
iteration 1, reconstruction error: 0.20877469807952265, decrease = 3.272260906683755e-09
iteration 2, reconstruction error: 0.2087746948137571, decrease = 3.2657655468781854e-09
iteration 3, reconstruction error: 0.20877469155441908, decrease = 3.2593380216994206e-09
iteration 4, reconstruction error: 0.20877468830150156, decrease = 3.2529175186812864e-09
PARAFAC2 reconstruction error=0.8189089465614194, variation=1.4388449320890118e-09.
Starting iteration 1273
reconstruction error=0.20877468414456343
iteration 1, reconstruction error: 0.20877468087474227, decrease = 3.2698211638315655e-09
iteration 2, reconstruction error: 0.2087746776114003, decrease = 3.2633419577710043e-09
iteration 3, reconstruction error: 0.2087746743544804, decrease = 3.2569199004406357e-09
iteration 4, reconstruction error: 0.2087746711039664, decrease = 3.2505139968552754e-09
PARAFAC2 reconstruction error=0.8189089451236482, variation=1.4377712354018968e-09.
Starting iteration 1274
reconstruction error=0.20877466695016886
iteration 1, reconstruction error: 0.20877466368277978, decrease = 3.267389081518246e-09
iteration 2, reconstruction error: 0.2087746604218621, decrease = 3.260917674774433e-09
iteration 3, reconstruction error: 0.208774657167355, decrease = 3.254507108252369e-09
iteration 4, reconstruction error: 0.2087746539192445, decrease = 3.24811050278484e-09
PARAFAC2 reconstruction error=0.8189089436869497, variation=1.436698537915504e-09.
Starting iteration 1275
reconstruction error=0.208774649768586
iteration 1, reconstruction error: 0.2087746465036297, decrease = 3.264956305315536e-09
iteration 2, reconstruction error: 0.20877464324513179, decrease = 3.2584979159366867e-09
iteration 3, reconstruction error: 0.20877463999303505, decrease = 3.252096730799181e-09
iteration 4, reconstruction error: 0.20877463674732652, decrease = 3.2457085352710635e-09
PARAFAC2 reconstruction error=0.8189089422513229, variation=1.4356267286075308e-09.
Starting iteration 1276
reconstruction error=0.20877463259980095
iteration 1, reconstruction error: 0.20877462933727517, decrease = 3.262525777314451e-09
iteration 2, reconstruction error: 0.20877462608119846, decrease = 3.2560767138090085e-09
iteration 3, reconstruction error: 0.20877462283151296, decrease = 3.249685492923149e-09
iteration 4, reconstruction error: 0.20877461958819946, decrease = 3.243313506651191e-09
PARAFAC2 reconstruction error=0.8189089408167666, variation=1.4345563625894897e-09.
Starting iteration 1277
reconstruction error=0.20877461544380688
iteration 1, reconstruction error: 0.20877461218371005, decrease = 3.2600968313811762e-09
iteration 2, reconstruction error: 0.20877460893004843, decrease = 3.253661617907966e-09
iteration 3, reconstruction error: 0.20877460568277031, decrease = 3.2472781130721273e-09
iteration 4, reconstruction error: 0.20877460244185567, decrease = 3.2409146477618833e-09
PARAFAC2 reconstruction error=0.8189089393832801, variation=1.4334864406606584e-09.
Starting iteration 1278
reconstruction error=0.20877459830059059
iteration 1, reconstruction error: 0.20877459504291807, decrease = 3.257672520629029e-09
iteration 2, reconstruction error: 0.20877459179167385, decrease = 3.251244218294147e-09
iteration 3, reconstruction error: 0.2087745885467977, decrease = 3.244876145558351e-09
iteration 4, reconstruction error: 0.20877458530827805, decrease = 3.2385196468975863e-09
PARAFAC2 reconstruction error=0.8189089379508624, variation=1.4324177399771543e-09.
Starting iteration 1279
reconstruction error=0.20877458117013983
iteration 1, reconstruction error: 0.2087745779148886, decrease = 3.255251235234624e-09
iteration 2, reconstruction error: 0.20877457466605787, decrease = 3.24883073221649e-09
iteration 3, reconstruction error: 0.2087745714235837, decrease = 3.2424741780445743e-09
iteration 4, reconstruction error: 0.20877456818745596, decrease = 3.2361277269021826e-09
PARAFAC2 reconstruction error=0.8189089365195125, variation=1.4313499274720698e-09.
Starting iteration 1280
reconstruction error=0.2087745640524423
iteration 1, reconstruction error: 0.20877456079961074, decrease = 3.252831559663605e-09
iteration 2, reconstruction error: 0.2087745575531905, decrease = 3.2464202437409995e-09
iteration 3, reconstruction error: 0.20877455431312056, decrease = 3.2400699345735973e-09
iteration 4, reconstruction error: 0.2087745510793825, decrease = 3.233738055108404e-09
PARAFAC2 reconstruction error=0.8189089350892292, variation=1.43028322519001e-09.
Starting iteration 1281
reconstruction error=0.20877454694748412
iteration 1, reconstruction error: 0.20877454369707535, decrease = 3.2504087754681166e-09
iteration 2, reconstruction error: 0.20877454045306168, decrease = 3.2440136688016707e-09
iteration 3, reconstruction error: 0.20877453721539066, decrease = 3.2376710201731385e-09
iteration 4, reconstruction error: 0.2087745339840422, decrease = 3.231348466581352e-09
PARAFAC2 reconstruction error=0.8189089336600122, variation=1.4292170780194624e-09.
Starting iteration 1282
reconstruction error=0.20877452985526065
iteration 1, reconstruction error: 0.2087745266072654, decrease = 3.247995261634884e-09
iteration 2, reconstruction error: 0.20877452336566218, decrease = 3.241603208081756e-09
iteration 3, reconstruction error: 0.20877452013038617, decrease = 3.2352760193088415e-09
iteration 4, reconstruction error: 0.20877451690142118, decrease = 3.2289649842809354e-09
PARAFAC2 reconstruction error=0.8189089322318598, variation=1.4281523741388469e-09.
Starting iteration 1283
reconstruction error=0.208774512775755
iteration 1, reconstruction error: 0.2087745095301772, decrease = 3.245577806509914e-09
iteration 2, reconstruction error: 0.20877450629097283, decrease = 3.239204376948024e-09
iteration 3, reconstruction error: 0.2087745030580911, decrease = 3.2328817400895105e-09
iteration 4, reconstruction error: 0.20877449983151183, decrease = 3.226579253778894e-09
PARAFAC2 reconstruction error=0.8189089308047715, variation=1.4270883363920461e-09.
Starting iteration 1284
reconstruction error=0.2087744957089602
iteration 1, reconstruction error: 0.20877449246579205, decrease = 3.243168150701692e-09
iteration 2, reconstruction error: 0.208774489228992, decrease = 3.23680005021032e-09
iteration 3, reconstruction error: 0.20877448599850215, decrease = 3.2304898478496824e-09
iteration 4, reconstruction error: 0.20877448277430483, decrease = 3.224197325790712e-09
PARAFAC2 reconstruction error=0.8189089293787459, variation=1.4260255198905725e-09.
Starting iteration 1285
reconstruction error=0.20877447865485788
iteration 1, reconstruction error: 0.20877447541409783, decrease = 3.2407600492057043e-09
iteration 2, reconstruction error: 0.20877447217970282, decrease = 3.23439500182765e-09
iteration 3, reconstruction error: 0.2087744689516003, decrease = 3.228102535279831e-09
iteration 4, reconstruction error: 0.2087744657297841, decrease = 3.2218162027142228e-09
PARAFAC2 reconstruction error=0.8189089279537825, variation=1.424963480545216e-09.
Starting iteration 1286
reconstruction error=0.20877446161344174
iteration 1, reconstruction error: 0.20877445837509215, decrease = 3.2383495884857894e-09
iteration 2, reconstruction error: 0.20877445514309062, decrease = 3.232001527520012e-09
iteration 3, reconstruction error: 0.20877445191737695, decrease = 3.225713668397745e-09
iteration 4, reconstruction error: 0.20877444869793804, decrease = 3.2194389099071685e-09
PARAFAC2 reconstruction error=0.8189089265298801, variation=1.4239023293782793e-09.
Starting iteration 1287
reconstruction error=0.20877444458469724
iteration 1, reconstruction error: 0.2087744413487535, decrease = 3.2359437351914266e-09
iteration 2, reconstruction error: 0.20877443811915006, decrease = 3.2296034457868217e-09
iteration 3, reconstruction error: 0.2087744348958214, decrease = 3.2233286595406696e-09
iteration 4, reconstruction error: 0.20877443167875745, decrease = 3.217063948568466e-09
PARAFAC2 reconstruction error=0.8189089251070376, variation=1.4228425104789721e-09.
Starting iteration 1288
reconstruction error=0.2087744275686182
iteration 1, reconstruction error: 0.20877442433508026, decrease = 3.233537937408215e-09
iteration 2, reconstruction error: 0.20877442110786568, decrease = 3.2272145789047357e-09
iteration 3, reconstruction error: 0.2087744178869197, decrease = 3.220945982151946e-09
iteration 4, reconstruction error: 0.20877441467223457, decrease = 3.214685129204753e-09
PARAFAC2 reconstruction error=0.8189089236852543, variation=1.4217833577134797e-09.
Starting iteration 1289
reconstruction error=0.20877441056518847
iteration 1, reconstruction error: 0.20877440733404942, decrease = 3.231139050763332e-09
iteration 2, reconstruction error: 0.20877440410922832, decrease = 3.2248211045970976e-09
iteration 3, reconstruction error: 0.20877440089066657, decrease = 3.218561750450988e-09
iteration 4, reconstruction error: 0.20877439767834405, decrease = 3.2123225190971993e-09
PARAFAC2 reconstruction error=0.8189089222645294, variation=1.4207248710818021e-09.
Starting iteration 1290
reconstruction error=0.20877439357439886
iteration 1, reconstruction error: 0.20877439034565867, decrease = 3.2287401918740244e-09
iteration 2, reconstruction error: 0.20877438712322488, decrease = 3.222433792027246e-09
iteration 3, reconstruction error: 0.20877438390704195, decrease = 3.2161829310872747e-09
iteration 4, reconstruction error: 0.2087743806970913, decrease = 3.20995063862739e-09
PARAFAC2 reconstruction error=0.8189089208448616, variation=1.4196678277400565e-09.
Starting iteration 1291
reconstruction error=0.20877437659623463
iteration 1, reconstruction error: 0.2087743733698895, decrease = 3.226345135498576e-09
iteration 2, reconstruction error: 0.20877437014984457, decrease = 3.22004492514516e-09
iteration 3, reconstruction error: 0.20877436693603815, decrease = 3.2138064154363377e-09
iteration 4, reconstruction error: 0.20877436372845554, decrease = 3.2075826161825916e-09
PARAFAC2 reconstruction error=0.8189089194262497, variation=1.4186118946213355e-09.
Starting iteration 1292
reconstruction error=0.20877435963068813
iteration 1, reconstruction error: 0.2087743564067388, decrease = 3.2239493297225863e-09
iteration 2, reconstruction error: 0.20877435318907886, decrease = 3.2176599440436604e-09
iteration 3, reconstruction error: 0.2087743499776466, decrease = 3.211432259009328e-09
iteration 4, reconstruction error: 0.20877434677242665, decrease = 3.2052199505638868e-09
PARAFAC2 reconstruction error=0.8189089180086934, variation=1.417556294569522e-09.
Starting iteration 1293
reconstruction error=0.20877434267774328
iteration 1, reconstruction error: 0.20877433945618662, decrease = 3.221556660326641e-09
iteration 2, reconstruction error: 0.20877433624090938, decrease = 3.215277238899361e-09
iteration 3, reconstruction error: 0.20877433303185366, decrease = 3.2090557156028154e-09
iteration 4, reconstruction error: 0.20877432982899785, decrease = 3.2028558138996743e-09
PARAFAC2 reconstruction error=0.8189089165921912, variation=1.4165021378076403e-09.
Starting iteration 1294
reconstruction error=0.20877432573739385
iteration 1, reconstruction error: 0.20877432251822836, decrease = 3.219165489731779e-09
iteration 2, reconstruction error: 0.20877431930533302, decrease = 3.2128953386667547e-09
iteration 3, reconstruction error: 0.20877431609864533, decrease = 3.206687693158017e-09
iteration 4, reconstruction error: 0.20877431289814832, decrease = 3.20049700630598e-09
PARAFAC2 reconstruction error=0.8189089151767426, variation=1.4154486471795735e-09.
Starting iteration 1295
reconstruction error=0.20877430880962905
iteration 1, reconstruction error: 0.20877430559285323, decrease = 3.216775817938e-09
iteration 2, reconstruction error: 0.20877430238233438, decrease = 3.2105188507713933e-09
iteration 3, reconstruction error: 0.2087742991780147, decrease = 3.2043196707132182e-09
iteration 4, reconstruction error: 0.208774295979878, decrease = 3.1981366999112026e-09
PARAFAC2 reconstruction error=0.8189089137623464, variation=1.4143961557522289e-09.
Starting iteration 1296
reconstruction error=0.20877429189443122
iteration 1, reconstruction error: 0.20877428868003958, decrease = 3.2143916417481933e-09
iteration 2, reconstruction error: 0.20877428547189805, decrease = 3.2081415302087635e-09
iteration 3, reconstruction error: 0.20877428226994563, decrease = 3.201952425424537e-09
iteration 4, reconstruction error: 0.2087742790741654, decrease = 3.19578022378586e-09
PARAFAC2 reconstruction error=0.8189089123490013, variation=1.4133451076148162e-09.
Starting iteration 1297
reconstruction error=0.20877427499179418
iteration 1, reconstruction error: 0.20877427177978755, decrease = 3.212006632891118e-09
iteration 2, reconstruction error: 0.2087742685740179, decrease = 3.2057696497389543e-09
iteration 3, reconstruction error: 0.20877426537442734, decrease = 3.199590564717525e-09
iteration 4, reconstruction error: 0.2087742621810043, decrease = 3.1934230260155516e-09
PARAFAC2 reconstruction error=0.818908910936707, variation=1.4122942815220085e-09.
Starting iteration 1298
reconstruction error=0.2087742581017033
iteration 1, reconstruction error: 0.20877425489208015, decrease = 3.2096231505907014e-09
iteration 2, reconstruction error: 0.20877425168868236, decrease = 3.2033977970247207e-09
iteration 3, reconstruction error: 0.20877424849145754, decrease = 3.1972248182299268e-09
iteration 4, reconstruction error: 0.20877424530038247, decrease = 3.191075070851923e-09
PARAFAC2 reconstruction error=0.8189089095254622, variation=1.4112447876968304e-09.
Starting iteration 1299
reconstruction error=0.2087742412241501
iteration 1, reconstruction error: 0.20877423801690653, decrease = 3.207243554070871e-09
iteration 2, reconstruction error: 0.20877423481588064, decrease = 3.201025888799336e-09
iteration 3, reconstruction error: 0.2087742316210115, decrease = 3.194869147016277e-09
iteration 4, reconstruction error: 0.20877422843228752, decrease = 3.18872397930825e-09
PARAFAC2 reconstruction error=0.8189089081152658, variation=1.4101964040946768e-09.
Starting iteration 1300
reconstruction error=0.20877422435912232
iteration 1, reconstruction error: 0.2087742211542553, decrease = 3.2048670106643584e-09
iteration 2, reconstruction error: 0.20877421795559667, decrease = 3.1986586435106545e-09
iteration 3, reconstruction error: 0.2087742147630886, decrease = 3.1925080634653824e-09
iteration 4, reconstruction error: 0.2087742115767126, decrease = 3.186375996389046e-09
PARAFAC2 reconstruction error=0.8189089067061175, variation=1.4091483535594307e-09.
Starting iteration 1301
reconstruction error=0.20877420750660844
iteration 1, reconstruction error: 0.2087742043041148, decrease = 3.202493631393466e-09
iteration 2, reconstruction error: 0.20877420110782036, decrease = 3.196294451335291e-09
iteration 3, reconstruction error: 0.2087741979176703, decrease = 3.190150060783381e-09
iteration 4, reconstruction error: 0.20877419473364303, decrease = 3.1840272640693e-09
PARAFAC2 reconstruction error=0.8189089052980155, variation=1.4081019683587215e-09.
Starting iteration 1302
reconstruction error=0.20877419066659605
iteration 1, reconstruction error: 0.20877418746647664, decrease = 3.200119419455305e-09
iteration 2, reconstruction error: 0.20877418427254713, decrease = 3.1939295097593856e-09
iteration 3, reconstruction error: 0.20877418108474735, decrease = 3.187799774151401e-09
iteration 4, reconstruction error: 0.20877417790306574, decrease = 3.1816816126184477e-09
PARAFAC2 reconstruction error=0.8189089038909593, variation=1.407056249291827e-09.
Starting iteration 1303
reconstruction error=0.20877417383907593
iteration 1, reconstruction error: 0.2087741706413292, decrease = 3.197746734073803e-09
iteration 2, reconstruction error: 0.20877416744975769, decrease = 3.1915715070773842e-09
iteration 3, reconstruction error: 0.20877416426430973, decrease = 3.1854479609627617e-09
iteration 4, reconstruction error: 0.20877416108496916, decrease = 3.1793405685931475e-09
PARAFAC2 reconstruction error=0.8189089024849479, variation=1.4060114184033523e-09.
Starting iteration 1304
reconstruction error=0.20877415702403349
iteration 1, reconstruction error: 0.2087741538286594, decrease = 3.1953740764478766e-09
iteration 2, reconstruction error: 0.20877415063944743, decrease = 3.189211977838724e-09
iteration 3, reconstruction error: 0.20877414745634826, decrease = 3.1830991731318647e-09
iteration 4, reconstruction error: 0.20877414427934718, decrease = 3.1770010788800818e-09
PARAFAC2 reconstruction error=0.8189089010799803, variation=1.4049675867155997e-09.
Starting iteration 1305
reconstruction error=0.20877414022146568
iteration 1, reconstruction error: 0.20877413702845188, decrease = 3.1930137978086748e-09
iteration 2, reconstruction error: 0.20877413384159949, decrease = 3.1868523930889125e-09
iteration 3, reconstruction error: 0.2087741306608467, decrease = 3.1807527722804707e-09
iteration 4, reconstruction error: 0.2087741274861836, decrease = 3.174663115723675e-09
PARAFAC2 reconstruction error=0.8189088996760557, variation=1.4039245321839644e-09.
Starting iteration 1306
reconstruction error=0.20877412343134935
iteration 1, reconstruction error: 0.20877412024070052, decrease = 3.190648828477194e-09
iteration 2, reconstruction error: 0.20877411705620227, decrease = 3.1844982484319218e-09
iteration 3, reconstruction error: 0.20877411387779518, decrease = 3.1784070930740427e-09
iteration 4, reconstruction error: 0.20877411070546922, decrease = 3.172325957478961e-09
PARAFAC2 reconstruction error=0.8189088982731729, variation=1.4028828099199586e-09.
Starting iteration 1307
reconstruction error=0.20877410665367838
iteration 1, reconstruction error: 0.20877410346539527, decrease = 3.1882831097451714e-09
iteration 2, reconstruction error: 0.20877410028324886, decrease = 3.182146407487707e-09
iteration 3, reconstruction error: 0.20877409710718664, decrease = 3.1760622187793075e-09
iteration 4, reconstruction error: 0.2087740939371917, decrease = 3.169994933216458e-09
PARAFAC2 reconstruction error=0.8189088968713312, variation=1.4018417537897676e-09.
Starting iteration 1308
reconstruction error=0.20877408988844579
iteration 1, reconstruction error: 0.20877408670252146, decrease = 3.1859243299070528e-09
iteration 2, reconstruction error: 0.20877408352272683, decrease = 3.1797946220546436e-09
iteration 3, reconstruction error: 0.20877408034900413, decrease = 3.173722701310666e-09
iteration 4, reconstruction error: 0.20877407718134097, decrease = 3.1676631595534133e-09
PARAFAC2 reconstruction error=0.8189088954705297, variation=1.4008014748156938e-09.
Starting iteration 1309
reconstruction error=0.2087740731356332
iteration 1, reconstruction error: 0.20877406995207073, decrease = 3.183562469200041e-09
iteration 2, reconstruction error: 0.20877406677462104, decrease = 3.177449692248757e-09
iteration 3, reconstruction error: 0.20877406360324247, decrease = 3.1713785764164726e-09
iteration 4, reconstruction error: 0.2087740604379049, decrease = 3.165337575383731e-09
PARAFAC2 reconstruction error=0.8189088940707672, variation=1.3997625281092496e-09.
Starting iteration 1310
reconstruction error=0.20877405639523589
iteration 1, reconstruction error: 0.2087740532140245, decrease = 3.1812113776563677e-09
iteration 2, reconstruction error: 0.2087740500389274, decrease = 3.175097101904001e-09
iteration 3, reconstruction error: 0.20877404686988135, decrease = 3.1690460533528864e-09
iteration 4, reconstruction error: 0.2087740437068748, decrease = 3.163006551121228e-09
PARAFAC2 reconstruction error=0.8189088926720428, variation=1.3987243585589226e-09.
Starting iteration 1311
reconstruction error=0.208774039667237
iteration 1, reconstruction error: 0.2087740364883813, decrease = 3.178855706442718e-09
iteration 2, reconstruction error: 0.2087740333156268, decrease = 3.172754503566466e-09
iteration 3, reconstruction error: 0.20877403014891485, decrease = 3.16671194822149e-09
iteration 4, reconstruction error: 0.20877402698823314, decrease = 3.1606817163520873e-09
PARAFAC2 reconstruction error=0.8189088912743558, variation=1.3976869661647129e-09.
Starting iteration 1312
reconstruction error=0.20877402295162806
iteration 1, reconstruction error: 0.20877401977512497, decrease = 3.176503088342386e-09
iteration 2, reconstruction error: 0.208774016604713, decrease = 3.1704119607400827e-09
iteration 3, reconstruction error: 0.20877401344033208, decrease = 3.164380923958987e-09
iteration 4, reconstruction error: 0.20877401028197753, decrease = 3.158354550114595e-09
PARAFAC2 reconstruction error=0.8189088898777049, variation=1.3966509060381327e-09.
Starting iteration 1313
reconstruction error=0.20877400624839906
iteration 1, reconstruction error: 0.20877400307424704, decrease = 3.1741520245542887e-09
iteration 2, reconstruction error: 0.2087739999061746, decrease = 3.1680724432714413e-09
iteration 3, reconstruction error: 0.2087739967441239, decrease = 3.162050704608177e-09
iteration 4, reconstruction error: 0.20877399358808799, decrease = 3.1560359048388165e-09
PARAFAC2 reconstruction error=0.8189088884820895, variation=1.3956154010230648e-09.
Starting iteration 1314
reconstruction error=0.20877398955753998
iteration 1, reconstruction error: 0.20877398638573053, decrease = 3.1718094539723296e-09
iteration 2, reconstruction error: 0.20877398321999835, decrease = 3.1657321764022583e-09
iteration 3, reconstruction error: 0.20877398006027556, decrease = 3.159722788970143e-09
iteration 4, reconstruction error: 0.2087739769065568, decrease = 3.1537187583641213e-09
PARAFAC2 reconstruction error=0.8189088870875083, variation=1.3945812282756265e-09.
Starting iteration 1315
reconstruction error=0.2087739728790331
iteration 1, reconstruction error: 0.20877396970957163, decrease = 3.1694614710531255e-09
iteration 2, reconstruction error: 0.20877396654617275, decrease = 3.163398876182555e-09
iteration 3, reconstruction error: 0.20877396338877946, decrease = 3.157393291264299e-09
iteration 4, reconstruction error: 0.20877396023737704, decrease = 3.151402416801119e-09
PARAFAC2 reconstruction error=0.8189088856939608, variation=1.393547499617398e-09.
Starting iteration 1316
reconstruction error=0.20877395621286995
iteration 1, reconstruction error: 0.20877395304575416, decrease = 3.1671157918466974e-09
iteration 2, reconstruction error: 0.20877394988468864, decrease = 3.1610655204517e-09
iteration 3, reconstruction error: 0.2087739467296225, decrease = 3.155066152782382e-09
iteration 4, reconstruction error: 0.20877394358052948, decrease = 3.1490930141320206e-09
PARAFAC2 reconstruction error=0.8189088843014457, variation=1.392515103226799e-09.
Starting iteration 1317
reconstruction error=0.2087739395590429
iteration 1, reconstruction error: 0.2087739363942658, decrease = 3.164777079289749e-09
iteration 2, reconstruction error: 0.20877393323553592, decrease = 3.158729888763645e-09
iteration 3, reconstruction error: 0.20877393008278614, decrease = 3.152749783463804e-09
iteration 4, reconstruction error: 0.2087739269360141, decrease = 3.1467720373878905e-09
PARAFAC2 reconstruction error=0.8189088829099622, variation=1.3914834839923174e-09.
Starting iteration 1318
reconstruction error=0.20877392291754032
iteration 1, reconstruction error: 0.20877391975510118, decrease = 3.1624391438889177e-09
iteration 2, reconstruction error: 0.20877391659869923, decrease = 3.1564019453700354e-09
iteration 3, reconstruction error: 0.2087739134482712, decrease = 3.1504280295635567e-09
iteration 4, reconstruction error: 0.20877391030380937, decrease = 3.1444618298070992e-09
PARAFAC2 reconstruction error=0.8189088815195096, variation=1.390452641913953e-09.
Starting iteration 1319
reconstruction error=0.20877390628834613
iteration 1, reconstruction error: 0.20877390312824573, decrease = 3.1601004035763935e-09
iteration 2, reconstruction error: 0.20877389997417015, decrease = 3.154075584044236e-09
iteration 3, reconstruction error: 0.20877389682606076, decrease = 3.1481093842877783e-09
iteration 4, reconstruction error: 0.2087738936839045, decrease = 3.1421562574074358e-09
PARAFAC2 reconstruction error=0.8189088801300863, variation=1.3894232431255205e-09.
Starting iteration 1320
reconstruction error=0.2087738896714518
iteration 1, reconstruction error: 0.20877388651368936, decrease = 3.1577624404199867e-09
iteration 2, reconstruction error: 0.20877388336193478, decrease = 3.15175457954453e-09
iteration 3, reconstruction error: 0.2087738802161464, decrease = 3.1457883797880726e-09
iteration 4, reconstruction error: 0.20877387707629488, decrease = 3.1398515176750408e-09
PARAFAC2 reconstruction error=0.818908878741692, variation=1.3883942884262979e-09.
Starting iteration 1321
reconstruction error=0.20877387306684508
iteration 1, reconstruction error: 0.20877386991141594, decrease = 3.155429140200283e-09
iteration 2, reconstruction error: 0.20877386676198928, decrease = 3.149426663906496e-09
iteration 3, reconstruction error: 0.20877386361850955, decrease = 3.143479726519516e-09
iteration 4, reconstruction error: 0.2087738604809667, decrease = 3.137542864406484e-09
PARAFAC2 reconstruction error=0.8189088773543257, variation=1.3873663329277974e-09.
Starting iteration 1322
reconstruction error=0.20877385647452204
iteration 1, reconstruction error: 0.20877385332142087, decrease = 3.153101169051098e-09
iteration 2, reconstruction error: 0.20877385017431443, decrease = 3.1471064365629076e-09
iteration 3, reconstruction error: 0.20877384703314794, decrease = 3.1411664935809824e-09
iteration 4, reconstruction error: 0.20877384389790524, decrease = 3.1352427043440656e-09
PARAFAC2 reconstruction error=0.8189088759679862, variation=1.3863394876523216e-09.
Starting iteration 1323
reconstruction error=0.20877383989446038
iteration 1, reconstruction error: 0.20877383674369177, decrease = 3.150768618231936e-09
iteration 2, reconstruction error: 0.20877383359890322, decrease = 3.1447885406876708e-09
iteration 3, reconstruction error: 0.20877383046004383, decrease = 3.13885939462466e-09
iteration 4, reconstruction error: 0.20877382732710517, decrease = 3.132938658501061e-09
PARAFAC2 reconstruction error=0.8189088745826727, variation=1.3853135305552655e-09.
Starting iteration 1324
reconstruction error=0.20877382332666092
iteration 1, reconstruction error: 0.20877382017821328, decrease = 3.148447641487806e-09
iteration 2, reconstruction error: 0.20877381703574338, decrease = 3.1424698954118924e-09
iteration 3, reconstruction error: 0.20877381389919422, decrease = 3.1365491592882933e-09
iteration 4, reconstruction error: 0.20877381076855184, decrease = 3.130642384219229e-09
PARAFAC2 reconstruction error=0.8189088731983842, variation=1.3842884616366291e-09.
Starting iteration 1325
reconstruction error=0.20877380677110208
iteration 1, reconstruction error: 0.20877380362498157, decrease = 3.146120503005889e-09
iteration 2, reconstruction error: 0.20877380048482422, decrease = 3.1401573563627494e-09
iteration 3, reconstruction error: 0.20877379735058058, decrease = 3.134243642399781e-09
iteration 4, reconstruction error: 0.20877379422223452, decrease = 3.1283460544262454e-09
PARAFAC2 reconstruction error=0.81890887181512, variation=1.3832642808964124e-09.
Starting iteration 1326
reconstruction error=0.20877379022777617
iteration 1, reconstruction error: 0.2087737870839759, decrease = 3.1438002756623007e-09
iteration 2, reconstruction error: 0.20877378394613336, decrease = 3.137842541356406e-09
iteration 3, reconstruction error: 0.20877378081419373, decrease = 3.131939624312352e-09
iteration 4, reconstruction error: 0.20877377768814087, decrease = 3.1260528610133065e-09
PARAFAC2 reconstruction error=0.8189088704328787, variation=1.3822412103792203e-09.
Starting iteration 1327
reconstruction error=0.2087737736966724
iteration 1, reconstruction error: 0.20877377055519547, decrease = 3.1414769396942432e-09
iteration 2, reconstruction error: 0.20877376741966386, decrease = 3.1355316121306487e-09
iteration 3, reconstruction error: 0.2087737642900244, decrease = 3.1296394642499337e-09
iteration 4, reconstruction error: 0.20877376116626323, decrease = 3.123761166401451e-09
PARAFAC2 reconstruction error=0.8189088690516599, variation=1.381218805995843e-09.
Starting iteration 1328
reconstruction error=0.2087737571777808
iteration 1, reconstruction error: 0.20877375403862172, decrease = 3.139159071574582e-09
iteration 2, reconstruction error: 0.2087737509053988, decrease = 3.1332229311065163e-09
iteration 3, reconstruction error: 0.20877374777805563, decrease = 3.127343162212526e-09
iteration 4, reconstruction error: 0.2087737446565892, decrease = 3.1214664186762775e-09
PARAFAC2 reconstruction error=0.8189088676714624, variation=1.3801975118354903e-09.
Starting iteration 1329
reconstruction error=0.20877374067109133
iteration 1, reconstruction error: 0.20877373753424477, decrease = 3.1368465602810147e-09
iteration 2, reconstruction error: 0.2087737344033297, decrease = 3.1309150827496524e-09
iteration 3, reconstruction error: 0.20877373127828902, decrease = 3.1250406706817557e-09
iteration 4, reconstruction error: 0.208773728159105, decrease = 3.119184022182253e-09
PARAFAC2 reconstruction error=0.8189088662922852, variation=1.3791772168758598e-09.
Starting iteration 1330
reconstruction error=0.20877372417659013
iteration 1, reconstruction error: 0.20877372104205835, decrease = 3.134531773030247e-09
iteration 2, reconstruction error: 0.20877371791344806, decrease = 3.128610287506106e-09
iteration 3, reconstruction error: 0.20877371479069987, decrease = 3.122748198913783e-09
iteration 4, reconstruction error: 0.20877371167380368, decrease = 3.116896185595408e-09
PARAFAC2 reconstruction error=0.8189088649141278, variation=1.3781573660054391e-09.
Starting iteration 1331
reconstruction error=0.20877370769426642
iteration 1, reconstruction error: 0.20877370456204872, decrease = 3.132217707424445e-09
iteration 2, reconstruction error: 0.20877370143573862, decrease = 3.126310099688112e-09
iteration 3, reconstruction error: 0.20877369831528514, decrease = 3.120453478944185e-09
iteration 4, reconstruction error: 0.2087736952006729, decrease = 3.114612234789149e-09
PARAFAC2 reconstruction error=0.8189088635369886, variation=1.3771392914918579e-09.
Starting iteration 1332
reconstruction error=0.20877369122411252
iteration 1, reconstruction error: 0.2087736880942019, decrease = 3.1299106084681227e-09
iteration 2, reconstruction error: 0.20877368497019352, decrease = 3.1240083853134593e-09
iteration 3, reconstruction error: 0.20877368185203174, decrease = 3.1181617843323295e-09
iteration 4, reconstruction error: 0.2087736787397019, decrease = 3.1123298382951248e-09
PARAFAC2 reconstruction error=0.8189088621608673, variation=1.3761212169782766e-09.
Starting iteration 1333
reconstruction error=0.20877367476610922
iteration 1, reconstruction error: 0.20877367163850882, decrease = 3.1276004008873315e-09
iteration 2, reconstruction error: 0.20877366851679982, decrease = 3.121709002407158e-09
iteration 3, reconstruction error: 0.20877366540092582, decrease = 3.1158740032566357e-09
iteration 4, reconstruction error: 0.20877366229087382, decrease = 3.1100519937155013e-09
PARAFAC2 reconstruction error=0.8189088607857627, variation=1.3751045857546274e-09.
Starting iteration 1334
reconstruction error=0.20877365832025652
iteration 1, reconstruction error: 0.20877365519496013, decrease = 3.1252963827999025e-09
iteration 2, reconstruction error: 0.20877365207554743, decrease = 3.1194127003697503e-09
iteration 3, reconstruction error: 0.2087736489619605, decrease = 3.113586943825908e-09
iteration 4, reconstruction error: 0.2087736458541878, decrease = 3.1077726780903703e-09
PARAFAC2 reconstruction error=0.8189088594116738, variation=1.3740889537317003e-09.
Starting iteration 1335
reconstruction error=0.20877364188653588
iteration 1, reconstruction error: 0.20877363876354427, decrease = 3.122991615311932e-09
iteration 2, reconstruction error: 0.20877363564642323, decrease = 3.1171210335134703e-09
iteration 3, reconstruction error: 0.2087736325351226, decrease = 3.1113006337957216e-09
iteration 4, reconstruction error: 0.20877362942962693, decrease = 3.1054956661780153e-09
PARAFAC2 reconstruction error=0.8189088580385997, variation=1.3730740988648904e-09.
Starting iteration 1336
reconstruction error=0.20877362546493966
iteration 1, reconstruction error: 0.20877362234424898, decrease = 3.1206906780933963e-09
iteration 2, reconstruction error: 0.20877361922942042, decrease = 3.1148285617454974e-09
iteration 3, reconstruction error: 0.20877361612040218, decrease = 3.1090182373016972e-09
iteration 4, reconstruction error: 0.20877361301717895, decrease = 3.103223233935637e-09
PARAFAC2 reconstruction error=0.8189088566665398, variation=1.3720599101318953e-09.
Starting iteration 1337
reconstruction error=0.20877360905545317
iteration 1, reconstruction error: 0.2087736059370604, decrease = 3.1183927662326028e-09
iteration 2, reconstruction error: 0.20877360282452578, decrease = 3.112534618932017e-09
iteration 3, reconstruction error: 0.2087735997177877, decrease = 3.1067380890092977e-09
iteration 4, reconstruction error: 0.20877359661683528, decrease = 3.1009524115166442e-09
PARAFAC2 reconstruction error=0.8189088552954926, variation=1.3710471646888323e-09.
Starting iteration 1338
reconstruction error=0.20877359265806883
iteration 1, reconstruction error: 0.2087735895419762, decrease = 3.11609263392576e-09
iteration 2, reconstruction error: 0.2087735864317263, decrease = 3.1102498909696408e-09
iteration 3, reconstruction error: 0.20877358332726834, decrease = 3.104457968472474e-09
iteration 4, reconstruction error: 0.208773580228586, decrease = 3.098682338498193e-09
PARAFAC2 reconstruction error=0.8189088539254578, variation=1.370034863334979e-09.
Starting iteration 1339
reconstruction error=0.2087735762727781
iteration 1, reconstruction error: 0.20877357315897868, decrease = 3.1137994127572455e-09
iteration 2, reconstruction error: 0.20877357005101355, decrease = 3.107965135251689e-09
iteration 3, reconstruction error: 0.2087735669488318, decrease = 3.102181733716236e-09
iteration 4, reconstruction error: 0.20877356385241802, decrease = 3.096413792036401e-09
PARAFAC2 reconstruction error=0.8189088525564341, variation=1.3690236722041504e-09.
Starting iteration 1340
reconstruction error=0.20877355989956556
iteration 1, reconstruction error: 0.2087735567880578, decrease = 3.1115077459009655e-09
iteration 2, reconstruction error: 0.2087735536823805, decrease = 3.105677298664844e-09
iteration 3, reconstruction error: 0.20877355058246963, decrease = 3.0999108835416678e-09
iteration 4, reconstruction error: 0.2087735474883259, decrease = 3.09414371901795e-09
PARAFAC2 reconstruction error=0.8189088511884206, variation=1.368013480274044e-09.
Starting iteration 1341
reconstruction error=0.20877354353841895
iteration 1, reconstruction error: 0.20877354042920213, decrease = 3.109216828445227e-09
iteration 2, reconstruction error: 0.20877353732580647, decrease = 3.1033956515713612e-09
iteration 3, reconstruction error: 0.20877353422816952, decrease = 3.097636952498206e-09
iteration 4, reconstruction error: 0.2087735311362882, decrease = 3.0918813342939444e-09
PARAFAC2 reconstruction error=0.8189088498214165, variation=1.3670040655000548e-09.
Starting iteration 1342
reconstruction error=0.2087735271893321
iteration 1, reconstruction error: 0.20877352408240463, decrease = 3.106927465301723e-09
iteration 2, reconstruction error: 0.20877352098128601, decrease = 3.1011186119034306e-09
iteration 3, reconstruction error: 0.208773517885923, decrease = 3.0953630214547445e-09
iteration 4, reconstruction error: 0.20877351479630016, decrease = 3.089622835350525e-09
PARAFAC2 reconstruction error=0.8189088484554209, variation=1.3659956499267878e-09.
Starting iteration 1343
reconstruction error=0.20877351085228957
iteration 1, reconstruction error: 0.20877350774764916, decrease = 3.1046404058709953e-09
iteration 2, reconstruction error: 0.2087735046488091, decrease = 3.098840073434417e-09
iteration 3, reconstruction error: 0.2087735015557154, decrease = 3.093093697836835e-09
iteration 4, reconstruction error: 0.20877349846835186, decrease = 3.087363531495413e-09
PARAFAC2 reconstruction error=0.818908847090433, variation=1.3649879004873355e-09.
Starting iteration 1344
reconstruction error=0.20877349452728527
iteration 1, reconstruction error: 0.20877349142492727, decrease = 3.102358009376971e-09
iteration 2, reconstruction error: 0.208773488328365, decrease = 3.096562256610369e-09
iteration 3, reconstruction error: 0.208773485237536, decrease = 3.0908290094000535e-09
iteration 4, reconstruction error: 0.20877348215242944, decrease = 3.0851065591086524e-09
PARAFAC2 reconstruction error=0.8189088457264513, variation=1.3639817053601178e-09.
Starting iteration 1345
reconstruction error=0.20877347821430073
iteration 1, reconstruction error: 0.2087734751142298, decrease = 3.1000709221906675e-09
iteration 2, reconstruction error: 0.2087734720199384, decrease = 3.0942914064358007e-09
iteration 3, reconstruction error: 0.20877346893137405, decrease = 3.0885643487188474e-09
iteration 4, reconstruction error: 0.20877346584852755, decrease = 3.0828465058529986e-09
PARAFAC2 reconstruction error=0.8189088443634756, variation=1.362975732277505e-09.
Starting iteration 1346
reconstruction error=0.2087734619133351
iteration 1, reconstruction error: 0.20877345881554427, decrease = 3.097790829409419e-09
iteration 2, reconstruction error: 0.2087734557235253, decrease = 3.0920189741934223e-09
iteration 3, reconstruction error: 0.20877345263722255, decrease = 3.086302741150959e-09
iteration 4, reconstruction error: 0.20877344955662683, decrease = 3.0805957229596004e-09
PARAFAC2 reconstruction error=0.8189088430015046, variation=1.3619709804402191e-09.
Starting iteration 1347
reconstruction error=0.2087734456243715
iteration 1, reconstruction error: 0.20877344252885927, decrease = 3.095512235429254e-09
iteration 2, reconstruction error: 0.2087734394391111, decrease = 3.0897481517744296e-09
iteration 3, reconstruction error: 0.20877343635506768, decrease = 3.084043437295847e-09
iteration 4, reconstruction error: 0.20877343327672584, decrease = 3.0783418314417332e-09
PARAFAC2 reconstruction error=0.8189088416405373, variation=1.3609672278036555e-09.
Starting iteration 1348
reconstruction error=0.20877342934739998
iteration 1, reconstruction error: 0.20877342625416245, decrease = 3.0932375272296753e-09
iteration 2, reconstruction error: 0.20877342316667974, decrease = 3.0874827139371064e-09
iteration 3, reconstruction error: 0.2087734200848948, decrease = 3.0817849383524276e-09
iteration 4, reconstruction error: 0.20877341700880378, decrease = 3.0760910207927594e-09
PARAFAC2 reconstruction error=0.8189088402805732, variation=1.3599641413009067e-09.
Starting iteration 1349
reconstruction error=0.20877341308241193
iteration 1, reconstruction error: 0.20877340999144758, decrease = 3.0909643455867553e-09
iteration 2, reconstruction error: 0.2087734069062319, decrease = 3.085215694031973e-09
iteration 3, reconstruction error: 0.20877340382670548, decrease = 3.0795264116534327e-09
iteration 4, reconstruction error: 0.20877340075285675, decrease = 3.0738487311054996e-09
PARAFAC2 reconstruction error=0.8189088389216109, variation=1.358962276043485e-09.
Starting iteration 1350
reconstruction error=0.20877339682939058
iteration 1, reconstruction error: 0.20877339374070014, decrease = 3.0886904422988692e-09
iteration 2, reconstruction error: 0.20877339065774606, decrease = 3.0829540864640848e-09
iteration 3, reconstruction error: 0.20877338758047506, decrease = 3.0772709935789067e-09
iteration 4, reconstruction error: 0.20877338450887098, decrease = 3.0716040821943125e-09
PARAFAC2 reconstruction error=0.81890883756365, variation=1.3579609658975755e-09.
Starting iteration 1351
reconstruction error=0.20877338058832895
iteration 1, reconstruction error: 0.20877337750190939, decrease = 3.0864195643687253e-09
iteration 2, reconstruction error: 0.20877337442121688, decrease = 3.080692506651772e-09
iteration 3, reconstruction error: 0.20877337134619744, decrease = 3.0750194335293912e-09
iteration 4, reconstruction error: 0.2087733682768388, decrease = 3.069358656127008e-09
PARAFAC2 reconstruction error=0.8189088362066894, variation=1.3569605439300858e-09.
Starting iteration 1352
reconstruction error=0.20877336435921848
iteration 1, reconstruction error: 0.20877336127506516, decrease = 3.0841533216197092e-09
iteration 2, reconstruction error: 0.20877335819663348, decrease = 3.078431676240001e-09
iteration 3, reconstruction error: 0.2087733551238633, decrease = 3.072770177192652e-09
iteration 4, reconstruction error: 0.20877335205674774, decrease = 3.0671155615280554e-09
PARAFAC2 reconstruction error=0.818908834850728, variation=1.3559614542302256e-09.
Starting iteration 1353
reconstruction error=0.20877334814204232
iteration 1, reconstruction error: 0.20877334506015754, decrease = 3.081884775157917e-09
iteration 2, reconstruction error: 0.2087733419839813, decrease = 3.076176258165475e-09
iteration 3, reconstruction error: 0.2087733389134604, decrease = 3.070520893100337e-09
iteration 4, reconstruction error: 0.20877333584858557, decrease = 3.06487482615303e-09
PARAFAC2 reconstruction error=0.8189088334957649, variation=1.3549630306641802e-09.
Starting iteration 1354
reconstruction error=0.20877333193679432
iteration 1, reconstruction error: 0.20877332885717576, decrease = 3.0796185601644765e-09
iteration 2, reconstruction error: 0.2087733257832542, decrease = 3.073921561735915e-09
iteration 3, reconstruction error: 0.20877332271498025, decrease = 3.0682739404763737e-09
iteration 4, reconstruction error: 0.20877331965233847, decrease = 3.0626417790724503e-09
PARAFAC2 reconstruction error=0.8189088321417993, variation=1.353965606298857e-09.
Starting iteration 1355
reconstruction error=0.20877331574346525
iteration 1, reconstruction error: 0.20877331266610288, decrease = 3.0773623649338333e-09
iteration 2, reconstruction error: 0.20877330959443752, decrease = 3.0716653665052718e-09
iteration 3, reconstruction error: 0.2087733065284082, decrease = 3.066029319320762e-09
iteration 4, reconstruction error: 0.20877330346800257, decrease = 3.0604056233674015e-09
PARAFAC2 reconstruction error=0.8189088307888306, variation=1.352968737045046e-09.
Starting iteration 1356
reconstruction error=0.2087732995620381
iteration 1, reconstruction error: 0.2087732964869412, decrease = 3.0750968993409344e-09
iteration 2, reconstruction error: 0.2087732934175251, decrease = 3.0694161101685324e-09
iteration 3, reconstruction error: 0.20877329035373576, decrease = 3.0637893333462785e-09
iteration 4, reconstruction error: 0.2087732872955663, decrease = 3.0581694676623528e-09
PARAFAC2 reconstruction error=0.8189088294368573, variation=1.3519733110811671e-09.
Starting iteration 1357
reconstruction error=0.20877328339250986
iteration 1, reconstruction error: 0.20877328031966608, decrease = 3.0728437849791845e-09
iteration 2, reconstruction error: 0.2087732772525023, decrease = 3.0671637729628998e-09
iteration 3, reconstruction error: 0.20877327419095532, decrease = 3.0615469881478674e-09
iteration 4, reconstruction error: 0.2087732711350135, decrease = 3.0559418051634424e-09
PARAFAC2 reconstruction error=0.818908828085879, variation=1.350978329206498e-09.
Starting iteration 1358
reconstruction error=0.2087732672348628
iteration 1, reconstruction error: 0.20877326416428063, decrease = 3.0705821774112962e-09
iteration 2, reconstruction error: 0.2087732610993584, decrease = 3.0649222326761816e-09
iteration 3, reconstruction error: 0.20877325804005067, decrease = 3.0593077238183497e-09
iteration 4, reconstruction error: 0.20877325498633958, decrease = 3.0537110895512143e-09
PARAFAC2 reconstruction error=0.8189088267358945, variation=1.3499844575548536e-09.
Starting iteration 1359
reconstruction error=0.20877325108908928
iteration 1, reconstruction error: 0.20877324802075636, decrease = 3.068332921074557e-09
iteration 2, reconstruction error: 0.20877324495808341, decrease = 3.0626729485838666e-09
iteration 3, reconstruction error: 0.20877324190101412, decrease = 3.0570692921561005e-09
iteration 4, reconstruction error: 0.20877323884952687, decrease = 3.051487257321739e-09
PARAFAC2 reconstruction error=0.818908825386903, variation=1.3489914740816289e-09.
Starting iteration 1360
reconstruction error=0.20877323495517847
iteration 1, reconstruction error: 0.20877323188909866, decrease = 3.066079806712807e-09
iteration 2, reconstruction error: 0.20877322882866803, decrease = 3.060430631141031e-09
iteration 3, reconstruction error: 0.20877322577382793, decrease = 3.0548401031005312e-09
iteration 4, reconstruction error: 0.20877322272456988, decrease = 3.049258040510594e-09
PARAFAC2 reconstruction error=0.8189088240389034, variation=1.3479996008314288e-09.
Starting iteration 1361
reconstruction error=0.20877321883311883
iteration 1, reconstruction error: 0.20877321576928828, decrease = 3.0638305503760677e-09
iteration 2, reconstruction error: 0.20877321271109997, decrease = 3.0581883136981958e-09
iteration 3, reconstruction error: 0.2087732096584922, decrease = 3.0526077776649174e-09
iteration 4, reconstruction error: 0.20877320661146104, decrease = 3.047031155167801e-09
PARAFAC2 reconstruction error=0.8189088226918954, variation=1.347008060648136e-09.
Starting iteration 1362
reconstruction error=0.2087732027229011
iteration 1, reconstruction error: 0.2087731996613206, decrease = 3.0615804891276355e-09
iteration 2, reconstruction error: 0.2087731966053669, decrease = 3.0559537123053815e-09
iteration 3, reconstruction error: 0.20877319355499063, decrease = 3.0503762571409965e-09
iteration 4, reconstruction error: 0.2087731905101794, decrease = 3.0448112364744873e-09
PARAFAC2 reconstruction error=0.8189088213458773, variation=1.3460180747770778e-09.
Starting iteration 1363
reconstruction error=0.2087731866245115
iteration 1, reconstruction error: 0.2087731835651741, decrease = 3.059337394528683e-09
iteration 2, reconstruction error: 0.20877318051146118, decrease = 3.053712921419205e-09
iteration 3, reconstruction error: 0.20877317746331026, decrease = 3.048150926110438e-09
iteration 4, reconstruction error: 0.20877317442071977, decrease = 3.042590485113905e-09
PARAFAC2 reconstruction error=0.8189088200008487, variation=1.3450285329952294e-09.
Starting iteration 1364
reconstruction error=0.20877317053794306
iteration 1, reconstruction error: 0.20877316748085106, decrease = 3.057091996216954e-09
iteration 2, reconstruction error: 0.2087731644293712, decrease = 3.051479874338625e-09
iteration 3, reconstruction error: 0.20877316138345026, decrease = 3.0459209321431757e-09
iteration 4, reconstruction error: 0.20877315834307586, decrease = 3.0403743966900265e-09
PARAFAC2 reconstruction error=0.8189088186568086, variation=1.3440401014364056e-09.
Starting iteration 1365
reconstruction error=0.20877315446318268
iteration 1, reconstruction error: 0.208773151408333, decrease = 3.0548496787741186e-09
iteration 2, reconstruction error: 0.20877314835908542, decrease = 3.049247576658587e-09
iteration 3, reconstruction error: 0.20877314531538751, decrease = 3.043697904825393e-09
iteration 4, reconstruction error: 0.20877314227723076, decrease = 3.0381567539539134e-09
PARAFAC2 reconstruction error=0.8189088173137562, variation=1.343052447033699e-09.
Starting iteration 1366
reconstruction error=0.20877313840022113
iteration 1, reconstruction error: 0.2087731353476107, decrease = 3.0526104422001765e-09
iteration 2, reconstruction error: 0.20877313230059233, decrease = 3.047018359847442e-09
iteration 3, reconstruction error: 0.20877312925912056, decrease = 3.0414717688831416e-09
iteration 4, reconstruction error: 0.20877312622317526, decrease = 3.0359453007111625e-09
PARAFAC2 reconstruction error=0.8189088159716905, variation=1.3420656808094122e-09.
Starting iteration 1367
reconstruction error=0.20877312234904613
iteration 1, reconstruction error: 0.20877311929867415, decrease = 3.0503719827823517e-09
iteration 2, reconstruction error: 0.20877311625388653, decrease = 3.0447876164796384e-09
iteration 3, reconstruction error: 0.20877311321463163, decrease = 3.0392549033031457e-09
iteration 4, reconstruction error: 0.2087731101808955, decrease = 3.033736123425612e-09
PARAFAC2 reconstruction error=0.8189088146306105, variation=1.34108002480815e-09.
Starting iteration 1368
reconstruction error=0.2087731063096469
iteration 1, reconstruction error: 0.20877310326150875, decrease = 3.0481381585456546e-09
iteration 2, reconstruction error: 0.2087731002189496, decrease = 3.042559149069035e-09
iteration 3, reconstruction error: 0.20877309718191694, decrease = 3.0370326531414804e-09
iteration 4, reconstruction error: 0.20877309415039305, decrease = 3.031523893026744e-09
PARAFAC2 reconstruction error=0.8189088132905157, variation=1.3400948128960977e-09.
Starting iteration 1369
reconstruction error=0.20877309028209692
iteration 1, reconstruction error: 0.20877308723619262, decrease = 3.045904306553382e-09
iteration 2, reconstruction error: 0.20877308419585802, decrease = 3.0403345951945937e-09
iteration 3, reconstruction error: 0.20877308116104068, decrease = 3.034817341873719e-09
iteration 4, reconstruction error: 0.2087730781317221, decrease = 3.0293185737662043e-09
PARAFAC2 reconstruction error=0.8189088119514045, variation=1.3391111552962798e-09.
Starting iteration 1370
reconstruction error=0.20877307426621777
iteration 1, reconstruction error: 0.20877307122254576, decrease = 3.0436720088733438e-09
iteration 2, reconstruction error: 0.20877306818443578, decrease = 3.038109985809001e-09
iteration 3, reconstruction error: 0.2087730651518307, decrease = 3.0326050837192753e-09
iteration 4, reconstruction error: 0.208773062124722, decrease = 3.0271087025912635e-09
PARAFAC2 reconstruction error=0.8189088106132772, variation=1.338127275651857e-09.
Starting iteration 1371
reconstruction error=0.2087730582620799
iteration 1, reconstruction error: 0.2087730552206394, decrease = 3.041440488349423e-09
iteration 2, reconstruction error: 0.2087730521847486, decrease = 3.035890816516229e-09
iteration 3, reconstruction error: 0.2087730491543573, decrease = 3.0303912990081727e-09
iteration 4, reconstruction error: 0.20877304612945005, decrease = 3.0249072413557343e-09
PARAFAC2 reconstruction error=0.8189088092761316, variation=1.3371456164534834e-09.
Starting iteration 1372
reconstruction error=0.20877304226968216
iteration 1, reconstruction error: 0.20877303923046936, decrease = 3.039212798094937e-09
iteration 2, reconstruction error: 0.20877303619680002, decrease = 3.033669343510681e-09
iteration 3, reconstruction error: 0.20877303316861867, decrease = 3.028181344566505e-09
iteration 4, reconstruction error: 0.20877303014591056, decrease = 3.0227081115885568e-09
PARAFAC2 reconstruction error=0.8189088079399678, variation=1.3361638462328074e-09.
Starting iteration 1373
reconstruction error=0.2087730262890147
iteration 1, reconstruction error: 0.2087730232520234, decrease = 3.036991297333813e-09
iteration 2, reconstruction error: 0.20877302022057095, decrease = 3.0314524501751094e-09
iteration 3, reconstruction error: 0.20877301719459718, decrease = 3.0259737771043405e-09
iteration 4, reconstruction error: 0.2087730141740913, decrease = 3.0205058731969103e-09
PARAFAC2 reconstruction error=0.818908806604784, variation=1.3351837413466683e-09.
Starting iteration 1374
reconstruction error=0.20877301032005674
iteration 1, reconstruction error: 0.20877300728529155, decrease = 3.0347651891471372e-09
iteration 2, reconstruction error: 0.20877300425605214, decrease = 3.0292394148645485e-09
iteration 3, reconstruction error: 0.20877300123228362, decrease = 3.023768513354952e-09
iteration 4, reconstruction error: 0.2087729982139761, decrease = 3.01830752058585e-09
PARAFAC2 reconstruction error=0.8189088052705801, variation=1.3342039695274366e-09.
Starting iteration 1375
reconstruction error=0.20877299436279828
iteration 1, reconstruction error: 0.20877299133025845, decrease = 3.032539830361003e-09
iteration 2, reconstruction error: 0.20877298830322893, decrease = 3.027029515934032e-09
iteration 3, reconstruction error: 0.20877298528166807, decrease = 3.0215608626260604e-09
iteration 4, reconstruction error: 0.20877298226555505, decrease = 3.0161130259998004e-09
PARAFAC2 reconstruction error=0.8189088039373545, variation=1.3332255299758344e-09.
Starting iteration 1376
reconstruction error=0.20877297841723635
iteration 1, reconstruction error: 0.20877297538691109, decrease = 3.030325268493783e-09
iteration 2, reconstruction error: 0.20877297236209533, decrease = 3.024815758978505e-09
iteration 3, reconstruction error: 0.2087729693427367, decrease = 3.019358624234414e-09
iteration 4, reconstruction error: 0.20877296632881895, decrease = 3.0139177542576334e-09
PARAFAC2 reconstruction error=0.818908802605107, variation=1.3322475345134421e-09.
Starting iteration 1377
reconstruction error=0.20877296248335317
iteration 1, reconstruction error: 0.20877295945524632, decrease = 3.0281068486015528e-09
iteration 2, reconstruction error: 0.2087729564326413, decrease = 3.0226050273807203e-09
iteration 3, reconstruction error: 0.2087729534154787, decrease = 3.0171626030917054e-09
iteration 4, reconstruction error: 0.2087729504037554, decrease = 3.0117232874271593e-09
PARAFAC2 reconstruction error=0.8189088012738363, variation=1.331270760296377e-09.
Starting iteration 1378
reconstruction error=0.20877294656114184
iteration 1, reconstruction error: 0.2087729435352511, decrease = 3.0258907324220985e-09
iteration 2, reconstruction error: 0.20877294051485137, decrease = 3.020399735875756e-09
iteration 3, reconstruction error: 0.2087729374998902, decrease = 3.0149611696117518e-09
iteration 4, reconstruction error: 0.20877293449035453, decrease = 3.0095356762238623e-09
PARAFAC2 reconstruction error=0.8189087999435416, variation=1.3302946522131265e-09.
Starting iteration 1379
reconstruction error=0.20877293065058622
iteration 1, reconstruction error: 0.20877292762691077, decrease = 3.0236754489099127e-09
iteration 2, reconstruction error: 0.20877292460871713, decrease = 3.018193639459099e-09
iteration 3, reconstruction error: 0.20877292159595276, decrease = 3.012764371312926e-09
iteration 4, reconstruction error: 0.20877291858860386, decrease = 3.0073488976878338e-09
PARAFAC2 reconstruction error=0.8189087986142219, variation=1.3293196543529007e-09.
Starting iteration 1380
reconstruction error=0.20877291475168547
iteration 1, reconstruction error: 0.20877291173021845, decrease = 3.021467021024904e-09
iteration 2, reconstruction error: 0.208772908714227, decrease = 3.015991456578604e-09
iteration 3, reconstruction error: 0.20877290570366025, decrease = 3.0105667403468317e-09
iteration 4, reconstruction error: 0.2087729026984958, decrease = 3.005164450620157e-09
PARAFAC2 reconstruction error=0.8189087972858766, variation=1.3283453226264896e-09.
Starting iteration 1381
reconstruction error=0.20877289886441966
iteration 1, reconstruction error: 0.2087728958451641, decrease = 3.019255567782153e-09
iteration 2, reconstruction error: 0.20877289283137335, decrease = 3.0137907447436163e-09
iteration 3, reconstruction error: 0.20877288982299413, decrease = 3.0083792124102615e-09
iteration 4, reconstruction error: 0.20877288682001802, decrease = 3.002976117771894e-09
PARAFAC2 reconstruction error=0.8189087959585046, variation=1.3273719901008008e-09.
Starting iteration 1382
reconstruction error=0.2087728829887834
iteration 1, reconstruction error: 0.20877287997173624, decrease = 3.01704716765272e-09
iteration 2, reconstruction error: 0.20877287696014613, decrease = 3.0115901161753555e-09
iteration 3, reconstruction error: 0.20877287395395913, decrease = 3.0061869937814123e-09
iteration 4, reconstruction error: 0.20877287095316133, decrease = 3.000797804686428e-09
PARAFAC2 reconstruction error=0.818908794632105, variation=1.326399656775834e-09.
Starting iteration 1383
reconstruction error=0.20877286712476506
iteration 1, reconstruction error: 0.20877286410992396, decrease = 3.0148410989916385e-09
iteration 2, reconstruction error: 0.20877286110052914, decrease = 3.009394816677613e-09
iteration 3, reconstruction error: 0.20877285809652893, decrease = 3.0040002152453837e-09
iteration 4, reconstruction error: 0.20877285509791482, decrease = 2.998614107019293e-09
PARAFAC2 reconstruction error=0.8189087933066771, variation=1.3254278785623796e-09.
Starting iteration 1384
reconstruction error=0.20877285127235468
iteration 1, reconstruction error: 0.2087728482597158, decrease = 3.0126388883555677e-09
iteration 2, reconstruction error: 0.2087728452525155, decrease = 3.0072002943359877e-09
iteration 3, reconstruction error: 0.20877284225070514, decrease = 3.001810355840462e-09
iteration 4, reconstruction error: 0.208772839254267, decrease = 2.996438125402179e-09
PARAFAC2 reconstruction error=0.8189087919822198, variation=1.3244573215942523e-09.
Starting iteration 1385
reconstruction error=0.2087728354315408
iteration 1, reconstruction error: 0.20877283242110026, decrease = 3.0104405357445074e-09
iteration 2, reconstruction error: 0.2087728294160952, decrease = 3.0050050503493964e-09
iteration 3, reconstruction error: 0.20877282641646933, decrease = 2.9996258810172094e-09
iteration 4, reconstruction error: 0.2087728234222072, decrease = 2.994262116029489e-09
PARAFAC2 reconstruction error=0.8189087906587325, variation=1.3234873197376373e-09.
Starting iteration 1386
reconstruction error=0.20877281960231014
iteration 1, reconstruction error: 0.2087728165940734, decrease = 3.0082367430406265e-09
iteration 2, reconstruction error: 0.20877281359125743, decrease = 3.0028159681005917e-09
iteration 3, reconstruction error: 0.20877281059381375, decrease = 2.9974436821511574e-09
iteration 4, reconstruction error: 0.20877280760172606, decrease = 2.9920876887246095e-09
PARAFAC2 reconstruction error=0.818908789336214, variation=1.322518428104047e-09.
Starting iteration 1387
reconstruction error=0.20877280378465904
iteration 1, reconstruction error: 0.20877280077861832, decrease = 3.006040721897918e-09
iteration 2, reconstruction error: 0.2087727977779915, decrease = 3.000626830340636e-09
iteration 3, reconstruction error: 0.20877279478272762, decrease = 2.9952638702646084e-09
iteration 4, reconstruction error: 0.20877279179281286, decrease = 2.989914760220813e-09
PARAFAC2 reconstruction error=0.8189087880146635, variation=1.3215505356711787e-09.
Starting iteration 1388
reconstruction error=0.20877278797857127
iteration 1, reconstruction error: 0.2087727849747235, decrease = 3.003847753868527e-09
iteration 2, reconstruction error: 0.20877278197628654, decrease = 2.998436970935714e-09
iteration 3, reconstruction error: 0.2087727789832002, decrease = 2.99308633433526e-09
iteration 4, reconstruction error: 0.20877277599545527, decrease = 2.9877449403414857e-09
PARAFAC2 reconstruction error=0.8189087866940802, variation=1.3205833093721253e-09.
Starting iteration 1389
reconstruction error=0.2087727721840383
iteration 1, reconstruction error: 0.20877276918238508, decrease = 3.0016532315269018e-09
iteration 2, reconstruction error: 0.20877276618613336, decrease = 2.9962517189563442e-09
iteration 3, reconstruction error: 0.2087727631952261, decrease = 2.990907244093677e-09
iteration 4, reconstruction error: 0.20877276020964713, decrease = 2.985578978487169e-09
PARAFAC2 reconstruction error=0.8189087853744632, variation=1.3196169712514916e-09.
Starting iteration 1390
reconstruction error=0.20877275640104948
iteration 1, reconstruction error: 0.20877275340158688, decrease = 2.9994625949658626e-09
iteration 2, reconstruction error: 0.20877275040751808, decrease = 2.9940687984453263e-09
iteration 3, reconstruction error: 0.20877274741878374, decrease = 2.988734343345456e-09
iteration 4, reconstruction error: 0.2087727444353746, decrease = 2.983409130852266e-09
PARAFAC2 reconstruction error=0.8189087840558117, variation=1.3186515213092775e-09.
Starting iteration 1391
reconstruction error=0.20877274062959475
iteration 1, reconstruction error: 0.2087727376323251, decrease = 2.9972696546920474e-09
iteration 2, reconstruction error: 0.20877273464043383, decrease = 2.9918912625159777e-09
iteration 3, reconstruction error: 0.20877273165387317, decrease = 2.986560665441118e-09
iteration 4, reconstruction error: 0.20877272867262997, decrease = 2.9812431967535247e-09
PARAFAC2 reconstruction error=0.8189087827381248, variation=1.3176868485231807e-09.
Starting iteration 1392
reconstruction error=0.2087727248696625
iteration 1, reconstruction error: 0.20877272187457813, decrease = 2.995084374957102e-09
iteration 2, reconstruction error: 0.2087727188848698, decrease = 2.989708314249384e-09
iteration 3, reconstruction error: 0.2087727159004782, decrease = 2.984391622717908e-09
iteration 4, reconstruction error: 0.20877271292139635, decrease = 2.97908184232476e-09
PARAFAC2 reconstruction error=0.8189087814214017, variation=1.3167231749378061e-09.
Starting iteration 1393
reconstruction error=0.20877270912124124
iteration 1, reconstruction error: 0.20877270612834598, decrease = 2.992895264952722e-09
iteration 2, reconstruction error: 0.20877270314081364, decrease = 2.98753233263227e-09
iteration 3, reconstruction error: 0.20877270015859187, decrease = 2.982221775083005e-09
iteration 4, reconstruction error: 0.20877269718167288, decrease = 2.976918989094912e-09
PARAFAC2 reconstruction error=0.8189087801056409, variation=1.3157607225977586e-09.
Starting iteration 1394
reconstruction error=0.2087726933843256
iteration 1, reconstruction error: 0.2087726903936125, decrease = 2.990713121597821e-09
iteration 2, reconstruction error: 0.20877268740825772, decrease = 2.985354768947346e-09
iteration 3, reconstruction error: 0.20877268442820573, decrease = 2.980051982959253e-09
iteration 4, reconstruction error: 0.20877268145344194, decrease = 2.974763796403934e-09
PARAFAC2 reconstruction error=0.8189087787908425, variation=1.314798492302316e-09.
Starting iteration 1395
reconstruction error=0.20877267765890248
iteration 1, reconstruction error: 0.2087726746703723, decrease = 2.9885301733312275e-09
iteration 2, reconstruction error: 0.20877267168718813, decrease = 2.9831841719119012e-09
iteration 3, reconstruction error: 0.20877266870929595, decrease = 2.977892182842723e-09
iteration 4, reconstruction error: 0.20877266573669348, decrease = 2.972602469730745e-09
PARAFAC2 reconstruction error=0.8189087774770049, variation=1.3138375942745029e-09.
Starting iteration 1396
reconstruction error=0.2087726619449588
iteration 1, reconstruction error: 0.2087726589586077, decrease = 2.98635111084522e-09
iteration 2, reconstruction error: 0.2087726559775972, decrease = 2.9810104940075632e-09
iteration 3, reconstruction error: 0.2087726530018679, decrease = 2.9757293018572994e-09
iteration 4, reconstruction error: 0.20877265003141982, decrease = 2.97044808195146e-09
PARAFAC2 reconstruction error=0.8189087761641277, variation=1.3128771403358996e-09.
Starting iteration 1397
reconstruction error=0.20877264624248534
iteration 1, reconstruction error: 0.20877264325831332, decrease = 2.984172020603637e-09
iteration 2, reconstruction error: 0.2087726402794734, decrease = 2.9788399247276942e-09
iteration 3, reconstruction error: 0.2087726373059047, decrease = 2.9735686968290764e-09
iteration 4, reconstruction error: 0.20877263433760868, decrease = 2.9682960256405266e-09
PARAFAC2 reconstruction error=0.8189087748522095, variation=1.3119182407095309e-09.
Starting iteration 1398
reconstruction error=0.2087726305514774
iteration 1, reconstruction error: 0.20877262756947906, decrease = 2.981998342699299e-09
iteration 2, reconstruction error: 0.20877262459280357, decrease = 2.9766754894300362e-09
iteration 3, reconstruction error: 0.20877262162139773, decrease = 2.9714058435992285e-09
iteration 4, reconstruction error: 0.20877261865525304, decrease = 2.9661446909745592e-09
PARAFAC2 reconstruction error=0.8189087735412499, variation=1.310959563127767e-09.
Starting iteration 1399
reconstruction error=0.2087726148719151
iteration 1, reconstruction error: 0.20877261189209198, decrease = 2.9798231104827266e-09
iteration 2, reconstruction error: 0.20877260891758245, decrease = 2.9745095275757194e-09
iteration 3, reconstruction error: 0.2087726059483341, decrease = 2.9692483471954745e-09
iteration 4, reconstruction error: 0.2087726029843361, decrease = 2.9639980192452953e-09
PARAFAC2 reconstruction error=0.818908772231248, variation=1.3100018847467254e-09.
Starting iteration 1400
reconstruction error=0.20877259920379518
iteration 1, reconstruction error: 0.208772596226145, decrease = 2.9776501819789303e-09
iteration 2, reconstruction error: 0.2087725932537968, decrease = 2.9723482009025304e-09
iteration 3, reconstruction error: 0.20877259028670364, decrease = 2.9670931545044965e-09
iteration 4, reconstruction error: 0.20877258732485537, decrease = 2.961848266647138e-09
PARAFAC2 reconstruction error=0.8189087709222027, variation=1.3090453165887084e-09.
Starting iteration 1401
reconstruction error=0.20877258354710707
iteration 1, reconstruction error: 0.2087725805716244, decrease = 2.975482665812379e-09
iteration 2, reconstruction error: 0.20877257760143908, decrease = 2.970185319917107e-09
iteration 3, reconstruction error: 0.2087725746365003, decrease = 2.9649387667252114e-09
iteration 4, reconstruction error: 0.20877257167679644, decrease = 2.9597038708750745e-09
PARAFAC2 reconstruction error=0.8189087696141132, variation=1.3080895255868086e-09.
Starting iteration 1402
reconstruction error=0.2087725679018353
iteration 1, reconstruction error: 0.2087725649285201, decrease = 2.973315205156979e-09
iteration 2, reconstruction error: 0.20877256196049385, decrease = 2.9680262414455427e-09
iteration 3, reconstruction error: 0.2087725589977071, decrease = 2.9627867381698536e-09
iteration 4, reconstruction error: 0.2087725560401476, decrease = 2.9575595028585866e-09
PARAFAC2 reconstruction error=0.8189087683069787, variation=1.307134511741026e-09.
Starting iteration 1403
reconstruction error=0.2087725522679729
iteration 1, reconstruction error: 0.20877254929682443, decrease = 2.971148466146545e-09
iteration 2, reconstruction error: 0.20877254633095643, decrease = 2.965867995641247e-09
iteration 3, reconstruction error: 0.20877254337031947, decrease = 2.9606369578161207e-09
iteration 4, reconstruction error: 0.20877254041490204, decrease = 2.955417438554875e-09
PARAFAC2 reconstruction error=0.8189087670007983, variation=1.3061803860736632e-09.
Starting iteration 1404
reconstruction error=0.20877253664550674
iteration 1, reconstruction error: 0.20877253367652351, decrease = 2.968983225937194e-09
iteration 2, reconstruction error: 0.2087725307128122, decrease = 2.963711304149186e-09
iteration 3, reconstruction error: 0.20877252775432198, decrease = 2.9584902305757055e-09
iteration 4, reconstruction error: 0.20877252480104194, decrease = 2.9532800371878665e-09
PARAFAC2 reconstruction error=0.818908765695571, variation=1.3052272596070225e-09.
Starting iteration 1405
reconstruction error=0.20877252103443694
iteration 1, reconstruction error: 0.20877251806761274, decrease = 2.966824202976781e-09
iteration 2, reconstruction error: 0.20877251510605585, decrease = 2.961556888614325e-09
iteration 3, reconstruction error: 0.2087725121497084, decrease = 2.9563474446270277e-09
iteration 4, reconstruction error: 0.2087725091985666, decrease = 2.9511418031535896e-09
PARAFAC2 reconstruction error=0.8189087643912963, variation=1.304274688251894e-09.
Starting iteration 1406
reconstruction error=0.20877250543473885
iteration 1, reconstruction error: 0.20877250247007598, decrease = 2.964662876303592e-09
iteration 2, reconstruction error: 0.2087724995106704, decrease = 2.9594055817039333e-09
iteration 3, reconstruction error: 0.20877249655646965, decrease = 2.954200745142188e-09
iteration 4, reconstruction error: 0.2087724936074614, decrease = 2.949008259811592e-09
PARAFAC2 reconstruction error=0.818908763087973, variation=1.3033233381420928e-09.
Starting iteration 1407
reconstruction error=0.20877248984640778
iteration 1, reconstruction error: 0.2087724868839047, decrease = 2.962503076187062e-09
iteration 2, reconstruction error: 0.2087724839266458, decrease = 2.9572589099746693e-09
iteration 3, reconstruction error: 0.2087724809745879, decrease = 2.952057903682359e-09
iteration 4, reconstruction error: 0.20877247802771784, decrease = 2.9468700535328907e-09
PARAFAC2 reconstruction error=0.8189087617856001, variation=1.3023728762107112e-09.
Starting iteration 1408
reconstruction error=0.20877247426943765
iteration 1, reconstruction error: 0.20877247130908894, decrease = 2.9603487161633524e-09
iteration 2, reconstruction error: 0.20877246835398136, decrease = 2.955107575308702e-09
iteration 3, reconstruction error: 0.2087724654040624, decrease = 2.9499189480031163e-09
iteration 4, reconstruction error: 0.2087724624593213, decrease = 2.944741117616445e-09
PARAFAC2 reconstruction error=0.8189087604841774, variation=1.301422747346237e-09.
Starting iteration 1409
reconstruction error=0.20877245870381375
iteration 1, reconstruction error: 0.20877245574561792, decrease = 2.9581958271851505e-09
iteration 2, reconstruction error: 0.20877245279265627, decrease = 2.9529616529799796e-09
iteration 3, reconstruction error: 0.20877244984487628, decrease = 2.9477799923238734e-09
iteration 4, reconstruction error: 0.208772446902268, decrease = 2.9426082681638377e-09
PARAFAC2 reconstruction error=0.8189087591837035, variation=1.3004738397270899e-09.
Starting iteration 1410
reconstruction error=0.20877244314952464
iteration 1, reconstruction error: 0.20877244019348168, decrease = 2.9560429659625242e-09
iteration 2, reconstruction error: 0.20877243724266673, decrease = 2.95081495349514e-09
iteration 3, reconstruction error: 0.20877243429702108, decrease = 2.945645644070183e-09
iteration 4, reconstruction error: 0.20877243135653942, decrease = 2.940481663715744e-09
PARAFAC2 reconstruction error=0.8189087578841775, variation=1.2995260423309674e-09.
Starting iteration 1411
reconstruction error=0.2087724276065618
iteration 1, reconstruction error: 0.20877242465267093, decrease = 2.9538908818960152e-09
iteration 2, reconstruction error: 0.2087724217039972, decrease = 2.9486737218586967e-09
iteration 3, reconstruction error: 0.20877241876048594, decrease = 2.9435112680609166e-09
iteration 4, reconstruction error: 0.20877241582213169, decrease = 2.938354254355957e-09
PARAFAC2 reconstruction error=0.8189087565855989, variation=1.2985785780017522e-09.
Starting iteration 1412
reconstruction error=0.20877241207491753
iteration 1, reconstruction error: 0.20877240912317335, decrease = 2.9517441824111756e-09
iteration 2, reconstruction error: 0.20877240617664017, decrease = 2.9465331841116438e-09
iteration 3, reconstruction error: 0.20877240323526244, decrease = 2.9413777247189188e-09
iteration 4, reconstruction error: 0.20877240029903174, decrease = 2.936230703021181e-09
PARAFAC2 reconstruction error=0.8189087552879667, variation=1.2976322238955618e-09.
Starting iteration 1413
reconstruction error=0.20877239655458105
iteration 1, reconstruction error: 0.20877239360498587, decrease = 2.94959517921356e-09
iteration 2, reconstruction error: 0.20877239066058625, decrease = 2.9443996130140704e-09
iteration 3, reconstruction error: 0.20877238772134135, decrease = 2.939244903021887e-09
iteration 4, reconstruction error: 0.20877238478723187, decrease = 2.9341094831547565e-09
PARAFAC2 reconstruction error=0.8189087539912797, variation=1.296686980012396e-09.
Starting iteration 1414
reconstruction error=0.20877238104553852
iteration 1, reconstruction error: 0.20877237809808616, decrease = 2.9474523655093066e-09
iteration 2, reconstruction error: 0.20877237515582478, decrease = 2.9422613789797936e-09
iteration 3, reconstruction error: 0.20877237221870495, decrease = 2.937119825130452e-09
iteration 4, reconstruction error: 0.2087723692867167, decrease = 2.931988263288332e-09
PARAFAC2 reconstruction error=0.8189087526955374, variation=1.2957422912407424e-09.
Starting iteration 1415
reconstruction error=0.20877236554778145
iteration 1, reconstruction error: 0.20877236260247115, decrease = 2.9453103012055948e-09
iteration 2, reconstruction error: 0.2087723596623433, decrease = 2.9401278356377958e-09
iteration 3, reconstruction error: 0.20877235672735245, decrease = 2.934990861458431e-09
iteration 4, reconstruction error: 0.20877235379748313, decrease = 2.929869319379108e-09
PARAFAC2 reconstruction error=0.8189087514007387, variation=1.2947987126921134e-09.
Starting iteration 1416
reconstruction error=0.20877235006129985
iteration 1, reconstruction error: 0.20877234711813086, decrease = 2.9431689863024246e-09
iteration 2, reconstruction error: 0.2087723441801343, decrease = 2.9379965682529985e-09
iteration 3, reconstruction error: 0.20877234124727007, decrease = 2.9328642292547613e-09
iteration 4, reconstruction error: 0.20877233831951503, decrease = 2.9277550384065876e-09
PARAFAC2 reconstruction error=0.8189087501068832, variation=1.293855467210392e-09.
Starting iteration 1417
reconstruction error=0.2087723345860838
iteration 1, reconstruction error: 0.2087723316450522, decrease = 2.9410315849354163e-09
iteration 2, reconstruction error: 0.20877232870919077, decrease = 2.9358614428431906e-09
iteration 3, reconstruction error: 0.20877232577844548, decrease = 2.9307452853455374e-09
iteration 4, reconstruction error: 0.2087723228528078, decrease = 2.9256376765651737e-09
PARAFAC2 reconstruction error=0.8189087488139696, variation=1.2929136650186024e-09.
Starting iteration 1418
reconstruction error=0.20877231912212393
iteration 1, reconstruction error: 0.2087723161832275, decrease = 2.9388964317700328e-09
iteration 2, reconstruction error: 0.20877231324949266, decrease = 2.9337348383950967e-09
iteration 3, reconstruction error: 0.2087723103208709, decrease = 2.928621761766337e-09
iteration 4, reconstruction error: 0.20877230739734365, decrease = 2.9235272536176637e-09
PARAFAC2 reconstruction error=0.8189087475219973, variation=1.2919723069160227e-09.
Starting iteration 1419
reconstruction error=0.20877230366940566
iteration 1, reconstruction error: 0.2087723007326466, decrease = 2.9367590581586e-09
iteration 2, reconstruction error: 0.20877229780103998, decrease = 2.931606624123617e-09
iteration 3, reconstruction error: 0.20877229487453483, decrease = 2.9265051493254646e-09
iteration 4, reconstruction error: 0.20877229195312264, decrease = 2.921412195489026e-09
PARAFAC2 reconstruction error=0.8189087462309653, variation=1.2910319480141652e-09.
Starting iteration 1420
reconstruction error=0.20877228822792204
iteration 1, reconstruction error: 0.20877228529329736, decrease = 2.934624682149334e-09
iteration 2, reconstruction error: 0.20877228236381426, decrease = 2.9294831005444166e-09
iteration 3, reconstruction error: 0.2087722794394288, decrease = 2.924385456015699e-09
iteration 4, reconstruction error: 0.20877227652012476, decrease = 2.9193040484987165e-09
PARAFAC2 reconstruction error=0.8189087449408725, variation=1.2900928103576348e-09.
Starting iteration 1421
reconstruction error=0.20877227279766547
iteration 1, reconstruction error: 0.20877226986516897, decrease = 2.93249649563343e-09
iteration 2, reconstruction error: 0.20877226693781176, decrease = 2.9273572177412888e-09
iteration 3, reconstruction error: 0.2087722640155398, decrease = 2.9222719521992957e-09
iteration 4, reconstruction error: 0.20877226109834388, decrease = 2.9171959292639826e-09
PARAFAC2 reconstruction error=0.8189087436517188, variation=1.2891536727011044e-09.
Starting iteration 1422
reconstruction error=0.20877225737862357
iteration 1, reconstruction error: 0.2087722544482583, decrease = 2.930365256004208e-09
iteration 2, reconstruction error: 0.20877225152301926, decrease = 2.925239050988182e-09
iteration 3, reconstruction error: 0.20877224860285926, decrease = 2.920160002695127e-09
iteration 4, reconstruction error: 0.2087722456877676, decrease = 2.9150916680542593e-09
PARAFAC2 reconstruction error=0.8189087423635029, variation=1.288215978334506e-09.
Starting iteration 1423
reconstruction error=0.208772241970784
iteration 1, reconstruction error: 0.20877223904254308, decrease = 2.9282409275133148e-09
iteration 2, reconstruction error: 0.20877223611942758, decrease = 2.923115499653406e-09
iteration 3, reconstruction error: 0.20877223320137805, decrease = 2.9180495242364657e-09
iteration 4, reconstruction error: 0.2087722302883891, decrease = 2.9129889611567705e-09
PARAFAC2 reconstruction error=0.8189087410762236, variation=1.2872792831686297e-09.
Starting iteration 1424
reconstruction error=0.20877222657413985
iteration 1, reconstruction error: 0.20877222364802406, decrease = 2.9261157941107285e-09
iteration 2, reconstruction error: 0.20877222072702437, decrease = 2.9209996921242265e-09
iteration 3, reconstruction error: 0.2087722178110868, decrease = 2.915937574732297e-09
iteration 4, reconstruction error: 0.20877221490019904, decrease = 2.910887753060365e-09
PARAFAC2 reconstruction error=0.8189087397898804, variation=1.2863431431142658e-09.
Starting iteration 1425
reconstruction error=0.20877221118867806
iteration 1, reconstruction error: 0.2087722082646881, decrease = 2.923989966818752e-09
iteration 2, reconstruction error: 0.20877220534580504, decrease = 2.9188830519277786e-09
iteration 3, reconstruction error: 0.20877220243197098, decrease = 2.913834062923115e-09
iteration 4, reconstruction error: 0.20877219952318438, decrease = 2.9087866004751106e-09
PARAFAC2 reconstruction error=0.8189087385044727, variation=1.285407780216019e-09.
Starting iteration 1426
reconstruction error=0.20877219581439252
iteration 1, reconstruction error: 0.20877219289251914, decrease = 2.9218733821334553e-09
iteration 2, reconstruction error: 0.2087721899757496, decrease = 2.9167695481113753e-09
iteration 3, reconstruction error: 0.20877218706402367, decrease = 2.9117259159328057e-09
iteration 4, reconstruction error: 0.20877218415733517, decrease = 2.906688501003174e-09
PARAFAC2 reconstruction error=0.8189087372199991, variation=1.284473527540797e-09.
Starting iteration 1427
reconstruction error=0.20877218045126691
iteration 1, reconstruction error: 0.2087721775315179, decrease = 2.9197490258869863e-09
iteration 2, reconstruction error: 0.20877217461685646, decrease = 2.9146614288766415e-09
iteration 3, reconstruction error: 0.20877217170723478, decrease = 2.909621682478658e-09
iteration 4, reconstruction error: 0.20877216880264207, decrease = 2.9045927052440135e-09
PARAFAC2 reconstruction error=0.8189087359364593, variation=1.2835398299770873e-09.
Starting iteration 1428
reconstruction error=0.20877216509929827
iteration 1, reconstruction error: 0.20877216218166586, decrease = 2.917632413446114e-09
iteration 2, reconstruction error: 0.20877215926911488, decrease = 2.912550978173556e-09
iteration 3, reconstruction error: 0.20877215636159516, decrease = 2.907519724981711e-09
iteration 4, reconstruction error: 0.2087721534590959, decrease = 2.9024992687087803e-09
PARAFAC2 reconstruction error=0.8189087346538522, variation=1.2826071316140997e-09.
Starting iteration 1429
reconstruction error=0.20877214975847194
iteration 1, reconstruction error: 0.20877214684295461, decrease = 2.9155173275619006e-09
iteration 2, reconstruction error: 0.2087721439325125, decrease = 2.9104421095382804e-09
iteration 3, reconstruction error: 0.2087721410270932, decrease = 2.9054192940414225e-09
iteration 4, reconstruction error: 0.20877213812668818, decrease = 2.9004050272618542e-09
PARAFAC2 reconstruction error=0.8189087333721767, variation=1.2816754324518342e-09.
Starting iteration 1430
reconstruction error=0.20877213442877798
iteration 1, reconstruction error: 0.20877213151537724, decrease = 2.913400742876604e-09
iteration 2, reconstruction error: 0.20877212860703787, decrease = 2.908339374885216e-09
iteration 3, reconstruction error: 0.20877212570371742, decrease = 2.9033204451689443e-09
iteration 4, reconstruction error: 0.20877212280539817, decrease = 2.898319251265491e-09
PARAFAC2 reconstruction error=0.8189087320914322, variation=1.280744510445686e-09.
Starting iteration 1431
reconstruction error=0.20877211911020865
iteration 1, reconstruction error: 0.20877211619891525, decrease = 2.9112934007979874e-09
iteration 2, reconstruction error: 0.20877211329268633, decrease = 2.9062289241821304e-09
iteration 3, reconstruction error: 0.2087721103914586, decrease = 2.901227730278677e-09
iteration 4, reconstruction error: 0.20877210749523048, decrease = 2.896228118443034e-09
PARAFAC2 reconstruction error=0.8189087308116182, variation=1.2798140325287477e-09.
Starting iteration 1432
reconstruction error=0.20877210380275082
iteration 1, reconstruction error: 0.2087721008935702, decrease = 2.90918061862655e-09
iteration 2, reconstruction error: 0.2087720979894378, decrease = 2.904132406778004e-09
iteration 3, reconstruction error: 0.20877209509030972, decrease = 2.899128076494506e-09
iteration 4, reconstruction error: 0.20877209219616583, decrease = 2.894143896758905e-09
PARAFAC2 reconstruction error=0.8189087295327331, variation=1.2788851089240438e-09.
Starting iteration 1433
reconstruction error=0.20877208850639836
iteration 1, reconstruction error: 0.20877208559932356, decrease = 2.9070748031045923e-09
iteration 2, reconstruction error: 0.20877208269729544, decrease = 2.902028117812705e-09
iteration 3, reconstruction error: 0.20877207980025617, decrease = 2.8970392751404006e-09
iteration 4, reconstruction error: 0.20877207690819805, decrease = 2.8920581207625418e-09
PARAFAC2 reconstruction error=0.8189087282547769, variation=1.27795618531934e-09.
Starting iteration 1434
reconstruction error=0.20877207322113897
iteration 1, reconstruction error: 0.2087720703161692, decrease = 2.9049697647387518e-09
iteration 2, reconstruction error: 0.20877206741623763, decrease = 2.899931572653003e-09
iteration 3, reconstruction error: 0.20877206452128955, decrease = 2.8949480868067923e-09
iteration 4, reconstruction error: 0.2087720616313164, decrease = 2.8899731496778713e-09
PARAFAC2 reconstruction error=0.818908726977748, variation=1.277028927049173e-09.
Starting iteration 1435
reconstruction error=0.20877205794696035
iteration 1, reconstruction error: 0.20877205504409638, decrease = 2.9028639769723696e-09
iteration 2, reconstruction error: 0.20877205214625907, decrease = 2.897837303450501e-09
iteration 3, reconstruction error: 0.20877204925340365, decrease = 2.8928554274276763e-09
iteration 4, reconstruction error: 0.20877204636550856, decrease = 2.887895089731529e-09
PARAFAC2 reconstruction error=0.818908725701646, variation=1.2761020018459135e-09.
Starting iteration 1436
reconstruction error=0.2087720426838586
iteration 1, reconstruction error: 0.20877203978309736, decrease = 2.9007612423193052e-09
iteration 2, reconstruction error: 0.20877203688735582, decrease = 2.8957415354469163e-09
iteration 3, reconstruction error: 0.20877203399658542, decrease = 2.8907704008318547e-09
iteration 4, reconstruction error: 0.20877203111076986, decrease = 2.8858155587396794e-09
PARAFAC2 reconstruction error=0.81890872442647, variation=1.2751759648210736e-09.
Starting iteration 1437
reconstruction error=0.2087720274318176
iteration 1, reconstruction error: 0.20877202453315602, decrease = 2.898661588535134e-09
iteration 2, reconstruction error: 0.2087720216395072, decrease = 2.893648820556649e-09
iteration 3, reconstruction error: 0.20877201875081944, decrease = 2.888687761215536e-09
iteration 4, reconstruction error: 0.20877201586708274, decrease = 2.8837366938816444e-09
PARAFAC2 reconstruction error=0.818908723152219, variation=1.2742510380192584e-09.
Starting iteration 1438
reconstruction error=0.2087720121908274
iteration 1, reconstruction error: 0.20877200929426468, decrease = 2.8965627119070803e-09
iteration 2, reconstruction error: 0.20877200640270543, decrease = 2.8915592420464264e-09
iteration 3, reconstruction error: 0.20877200351610345, decrease = 2.8866019852191727e-09
iteration 4, reconstruction error: 0.20877200063444246, decrease = 2.8816609931592296e-09
PARAFAC2 reconstruction error=0.8189087218788925, variation=1.2733264442843506e-09.
Starting iteration 1439
reconstruction error=0.20877199696088095
iteration 1, reconstruction error: 0.20877199406641708, decrease = 2.894463863034602e-09
iteration 2, reconstruction error: 0.20877199117694747, decrease = 2.8894696080250526e-09
iteration 3, reconstruction error: 0.20877198829242197, decrease = 2.8845255073406406e-09
iteration 4, reconstruction error: 0.20877198541283903, decrease = 2.8795829332128875e-09
PARAFAC2 reconstruction error=0.8189087206064891, variation=1.2724034048616772e-09.
Starting iteration 1440
reconstruction error=0.2087719817419691
iteration 1, reconstruction error: 0.2087719788495987, decrease = 2.892370398743793e-09
iteration 2, reconstruction error: 0.2087719759622164, decrease = 2.8873823054720305e-09
iteration 3, reconstruction error: 0.2087719730797728, decrease = 2.882443589369288e-09
iteration 4, reconstruction error: 0.2087719702022571, decrease = 2.8775156979410355e-09
PARAFAC2 reconstruction error=0.8189087193350084, variation=1.2714806985059113e-09.
Starting iteration 1441
reconstruction error=0.208771966534081
iteration 1, reconstruction error: 0.208771963643801, decrease = 2.8902800153218777e-09
iteration 2, reconstruction error: 0.20877196075850601, decrease = 2.8852949751634327e-09
iteration 3, reconstruction error: 0.20877195787813813, decrease = 2.880367888646873e-09
iteration 4, reconstruction error: 0.208771955002692, decrease = 2.8754461312008317e-09
PARAFAC2 reconstruction error=0.8189087180644495, variation=1.270558880328565e-09.
Starting iteration 1442
reconstruction error=0.20877195133720747
iteration 1, reconstruction error: 0.2087719484490171, decrease = 2.888190381300504e-09
iteration 2, reconstruction error: 0.20877194556580247, decrease = 2.8832146115043145e-09
iteration 3, reconstruction error: 0.20877194268751265, decrease = 2.878289828700531e-09
iteration 4, reconstruction error: 0.20877193981413683, decrease = 2.8733758150600863e-09
PARAFAC2 reconstruction error=0.8189087167948117, variation=1.269637839307336e-09.
Starting iteration 1443
reconstruction error=0.20877193615133313
iteration 1, reconstruction error: 0.20877193326523466, decrease = 2.8860984713219295e-09
iteration 2, reconstruction error: 0.20877193038409964, decrease = 2.8811350250013135e-09
iteration 3, reconstruction error: 0.2087719275078832, decrease = 2.8762164316908923e-09
iteration 4, reconstruction error: 0.20877192463657387, decrease = 2.871309329188776e-09
PARAFAC2 reconstruction error=0.8189087155260937, variation=1.268718019531434e-09.
Starting iteration 1444
reconstruction error=0.20877192097645259
iteration 1, reconstruction error: 0.2087719180924399, decrease = 2.8840126953255663e-09
iteration 2, reconstruction error: 0.2087719152133875, decrease = 2.8790523853849947e-09
iteration 3, reconstruction error: 0.20877191233924144, decrease = 2.8741460600389956e-09
iteration 4, reconstruction error: 0.20877190946999627, decrease = 2.869245174785817e-09
PARAFAC2 reconstruction error=0.8189087142582951, variation=1.2677985328224395e-09.
Starting iteration 1445
reconstruction error=0.20877190581255503
iteration 1, reconstruction error: 0.20877190293062808, decrease = 2.8819269470847786e-09
iteration 2, reconstruction error: 0.20877190005365298, decrease = 2.87697510259477e-09
iteration 3, reconstruction error: 0.208771897181578, decrease = 2.8720749944977086e-09
iteration 4, reconstruction error: 0.2087718943143947, decrease = 2.867183296340059e-09
PARAFAC2 reconstruction error=0.8189087129914149, variation=1.266880267358772e-09.
Starting iteration 1446
reconstruction error=0.20877189065963195
iteration 1, reconstruction error: 0.20877188777979, decrease = 2.8798419482445325e-09
iteration 2, reconstruction error: 0.20877188490489063, decrease = 2.8748993741167794e-09
iteration 3, reconstruction error: 0.2087718820348806, decrease = 2.870010035183057e-09
iteration 4, reconstruction error: 0.2087718791697599, decrease = 2.8651206962493347e-09
PARAFAC2 reconstruction error=0.8189087117254523, variation=1.2659625570066169e-09.
Starting iteration 1447
reconstruction error=0.2087718755176735
iteration 1, reconstruction error: 0.2087718726399096, decrease = 2.877763916053766e-09
iteration 2, reconstruction error: 0.20877186976708517, decrease = 2.8728244227949062e-09
iteration 3, reconstruction error: 0.2087718668991424, decrease = 2.8679427721556294e-09
iteration 4, reconstruction error: 0.20877186403607967, decrease = 2.8630627313397383e-09
PARAFAC2 reconstruction error=0.8189087104604064, variation=1.2650459568774863e-09.
Starting iteration 1448
reconstruction error=0.20877186038666415
iteration 1, reconstruction error: 0.20877185751098062, decrease = 2.875683524639072e-09
iteration 2, reconstruction error: 0.20877185464022807, decrease = 2.8707525523419264e-09
iteration 3, reconstruction error: 0.20877185177435176, decrease = 2.8658763140398946e-09
iteration 4, reconstruction error: 0.20877184891334627, decrease = 2.861005488075108e-09
PARAFAC2 reconstruction error=0.8189087091962767, variation=1.2641296898152632e-09.
Starting iteration 1449
reconstruction error=0.2087718452666001
iteration 1, reconstruction error: 0.20877184239299768, decrease = 2.8736024115794123e-09
iteration 2, reconstruction error: 0.2087718395243147, decrease = 2.8686829856017226e-09
iteration 3, reconstruction error: 0.208771836660501, decrease = 2.8638136861935948e-09
iteration 4, reconstruction error: 0.20877183380154654, decrease = 2.8589544620594154e-09
PARAFAC2 reconstruction error=0.8189087079330616, variation=1.263215088087577e-09.
Starting iteration 1450
reconstruction error=0.20877183015747205
iteration 1, reconstruction error: 0.20877182728594385, decrease = 2.8715282096580808e-09
iteration 2, reconstruction error: 0.20877182441932657, decrease = 2.8666172768865295e-09
iteration 3, reconstruction error: 0.20877182155757548, decrease = 2.8617510861028705e-09
iteration 4, reconstruction error: 0.2087718187006798, decrease = 2.856895692238126e-09
PARAFAC2 reconstruction error=0.8189087066707611, variation=1.2623004863598908e-09.
Starting iteration 1451
reconstruction error=0.2087718150592678
iteration 1, reconstruction error: 0.208771812189813, decrease = 2.869454812648442e-09
iteration 2, reconstruction error: 0.20877180932526146, decrease = 2.8645515404157607e-09
iteration 3, reconstruction error: 0.2087718064655668, decrease = 2.859694647749933e-09
iteration 4, reconstruction error: 0.20877180361072295, decrease = 2.8548438613107407e-09
PARAFAC2 reconstruction error=0.8189087054093741, variation=1.2613869948552292e-09.
Starting iteration 1452
reconstruction error=0.2087717999719742
iteration 1, reconstruction error: 0.2087717971045905, decrease = 2.867383691596004e-09
iteration 2, reconstruction error: 0.20877179424210618, decrease = 2.8624843328994842e-09
iteration 3, reconstruction error: 0.20877179138446955, decrease = 2.8576366273291853e-09
iteration 4, reconstruction error: 0.20877178853167672, decrease = 2.8527928352950482e-09
PARAFAC2 reconstruction error=0.8189087041488996, variation=1.2604745025512898e-09.
Starting iteration 1453
reconstruction error=0.20877178489558432
iteration 1, reconstruction error: 0.20877178203027175, decrease = 2.8653125705435656e-09
iteration 2, reconstruction error: 0.20877177916985004, decrease = 2.8604217050531844e-09
iteration 3, reconstruction error: 0.2087717763142683, decrease = 2.8555817432884822e-09
iteration 4, reconstruction error: 0.20877177346351883, decrease = 2.8507494698182256e-09
PARAFAC2 reconstruction error=0.8189087028893368, variation=1.2595627874034676e-09.
Starting iteration 1454
reconstruction error=0.20877176983009124
iteration 1, reconstruction error: 0.20877176696684513, decrease = 2.8632461124278308e-09
iteration 2, reconstruction error: 0.20877176410848605, decrease = 2.8583590772068845e-09
iteration 3, reconstruction error: 0.20877176125496152, decrease = 2.8535245277794274e-09
iteration 4, reconstruction error: 0.20877175840625306, decrease = 2.8487084635653304e-09
PARAFAC2 reconstruction error=0.8189087016306851, variation=1.2586517383894602e-09.
Starting iteration 1455
reconstruction error=0.20877175477548188
iteration 1, reconstruction error: 0.20877175191430378, decrease = 2.8611780999998615e-09
iteration 2, reconstruction error: 0.20877174905800114, decrease = 2.856302638853947e-09
iteration 3, reconstruction error: 0.2087717462065277, decrease = 2.8514734462525837e-09
iteration 4, reconstruction error: 0.2087717433598641, decrease = 2.8466635992874245e-09
PARAFAC2 reconstruction error=0.8189087003729434, variation=1.257741688576175e-09.
Starting iteration 1456
reconstruction error=0.20877173973174626
iteration 1, reconstruction error: 0.2087717368726316, decrease = 2.859114667241869e-09
iteration 2, reconstruction error: 0.20877173401838692, decrease = 2.8542446739443506e-09
iteration 3, reconstruction error: 0.20877173116896067, decrease = 2.849426250506326e-09
iteration 4, reconstruction error: 0.20877172832434274, decrease = 2.844617930097826e-09
PARAFAC2 reconstruction error=0.818908699116111, variation=1.256832415919007e-09.
Starting iteration 1457
reconstruction error=0.2087717246988743
iteration 1, reconstruction error: 0.20877172184182455, decrease = 2.8570497634383685e-09
iteration 2, reconstruction error: 0.20877171898963248, decrease = 2.852192065860848e-09
iteration 3, reconstruction error: 0.20877171614225573, decrease = 2.8473767510472925e-09
iteration 4, reconstruction error: 0.2087717132996804, decrease = 2.8425753417771205e-09
PARAFAC2 reconstruction error=0.818908697860187, variation=1.2559239204179562e-09.
Starting iteration 1458
reconstruction error=0.20877170967685918
iteration 1, reconstruction error: 0.2087717068218674, decrease = 2.8549917707731964e-09
iteration 2, reconstruction error: 0.2087717039717326, decrease = 2.8501348225962175e-09
iteration 3, reconstruction error: 0.20877170112639995, decrease = 2.8453326361699283e-09
iteration 4, reconstruction error: 0.20877169828586406, decrease = 2.8405358898364597e-09
PARAFAC2 reconstruction error=0.8189086966051711, variation=1.2550159800284177e-09.
Starting iteration 1459
reconstruction error=0.20877169466568843
iteration 1, reconstruction error: 0.2087716918127593, decrease = 2.852929115171321e-09
iteration 2, reconstruction error: 0.20877168896467166, decrease = 2.8480876546055356e-09
iteration 3, reconstruction error: 0.2087716861213839, decrease = 2.8432877718920224e-09
iteration 4, reconstruction error: 0.2087716832828821, decrease = 2.8385017947218927e-09
PARAFAC2 reconstruction error=0.8189086953510616, variation=1.2541094829288113e-09.
Starting iteration 1460
reconstruction error=0.20877167966534993
iteration 1, reconstruction error: 0.20877167681447797, decrease = 2.8508719551734174e-09
iteration 2, reconstruction error: 0.20877167396844373, decrease = 2.84603424161034e-09
iteration 3, reconstruction error: 0.20877167112719544, decrease = 2.841248292195786e-09
iteration 4, reconstruction error: 0.20877166829073157, decrease = 2.8364638693378907e-09
PARAFAC2 reconstruction error=0.8189086940978582, variation=1.2532034299184147e-09.
Starting iteration 1461
reconstruction error=0.20877166467583969
iteration 1, reconstruction error: 0.20877166182702114, decrease = 2.848818542178222e-09
iteration 2, reconstruction error: 0.2087716589830356, decrease = 2.8439855470629993e-09
iteration 3, reconstruction error: 0.20877165614382912, decrease = 2.839206481031198e-09
iteration 4, reconstruction error: 0.20877165330939623, decrease = 2.8344328828477927e-09
PARAFAC2 reconstruction error=0.8189086928455601, variation=1.252298043041833e-09.
Starting iteration 1462
reconstruction error=0.2087716496971462
iteration 1, reconstruction error: 0.20877164685037947, decrease = 2.846766739006412e-09
iteration 2, reconstruction error: 0.2087716440084388, decrease = 2.841940655029518e-09
iteration 3, reconstruction error: 0.2087716411712718, decrease = 2.8371670013349615e-09
iteration 4, reconstruction error: 0.2087716383388707, decrease = 2.8324011192015774e-09
PARAFAC2 reconstruction error=0.8189086915941663, variation=1.2513937663882757e-09.
Starting iteration 1463
reconstruction error=0.20877163472925256
iteration 1, reconstruction error: 0.20877163188453995, decrease = 2.8447126043662507e-09
iteration 2, reconstruction error: 0.20877162904464422, decrease = 2.839895735240461e-09
iteration 3, reconstruction error: 0.20877162620951356, decrease = 2.8351306580187696e-09
iteration 4, reconstruction error: 0.20877162337914348, decrease = 2.830370077200328e-09
PARAFAC2 reconstruction error=0.8189086903436761, variation=1.2504902668908358e-09.
Starting iteration 1464
reconstruction error=0.2087716197721618
iteration 1, reconstruction error: 0.20877161692949642, decrease = 2.8426653808644176e-09
iteration 2, reconstruction error: 0.20877161409164477, decrease = 2.837851648118672e-09
iteration 3, reconstruction error: 0.20877161125854746, decrease = 2.8330973123047443e-09
iteration 4, reconstruction error: 0.2087716084302045, decrease = 2.8283429487352407e-09
PARAFAC2 reconstruction error=0.8189086890940885, variation=1.249587544549513e-09.
Starting iteration 1465
reconstruction error=0.20877160482585244
iteration 1, reconstruction error: 0.20877160198523656, decrease = 2.840615881405384e-09
iteration 2, reconstruction error: 0.2087715991494221, decrease = 2.835814472135212e-09
iteration 3, reconstruction error: 0.20877159631836117, decrease = 2.831060913477401e-09
iteration 4, reconstruction error: 0.20877159349204305, decrease = 2.8263181239829294e-09
PARAFAC2 reconstruction error=0.8189086878454029, variation=1.2486855993643076e-09.
Starting iteration 1466
reconstruction error=0.20877158989032205
iteration 1, reconstruction error: 0.2087715870517495, decrease = 2.838572543684137e-09
iteration 2, reconstruction error: 0.20877158421797448, decrease = 2.833775020194551e-09
iteration 3, reconstruction error: 0.2087715813889469, decrease = 2.8290275955189514e-09
iteration 4, reconstruction error: 0.2087715785646536, decrease = 2.824293299230618e-09
PARAFAC2 reconstruction error=0.8189086865976185, variation=1.2477844313352193e-09.
Starting iteration 1467
reconstruction error=0.20877157496555693
iteration 1, reconstruction error: 0.2087715721290285, decrease = 2.8365284288067727e-09
iteration 2, reconstruction error: 0.20877156929729065, decrease = 2.8317378442110908e-09
iteration 3, reconstruction error: 0.20877156647029174, decrease = 2.8269989127416295e-09
iteration 4, reconstruction error: 0.2087715636480186, decrease = 2.82227313741501e-09
PARAFAC2 reconstruction error=0.8189086853507344, variation=1.2468841514845508e-09.
Starting iteration 1468
reconstruction error=0.2087715600515508
iteration 1, reconstruction error: 0.2087715572170649, decrease = 2.8344858959972186e-09
iteration 2, reconstruction error: 0.20877155438736272, decrease = 2.8297021670287137e-09
iteration 3, reconstruction error: 0.20877155156238786, decrease = 2.8249748651454354e-09
iteration 4, reconstruction error: 0.20877154874213802, decrease = 2.8202498392193576e-09
PARAFAC2 reconstruction error=0.8189086841047496, variation=1.245984759812302e-09.
Starting iteration 1469
reconstruction error=0.20877154514829058
iteration 1, reconstruction error: 0.2087715423158496, decrease = 2.8324409762081615e-09
iteration 2, reconstruction error: 0.20877153948817453, decrease = 2.827675066319202e-09
iteration 3, reconstruction error: 0.20877153666522835, decrease = 2.8229461823681135e-09
iteration 4, reconstruction error: 0.20877153384699718, decrease = 2.818231176204833e-09
PARAFAC2 reconstruction error=0.8189086828596636, variation=1.2450860342738679e-09.
Starting iteration 1470
reconstruction error=0.20877153025576636
iteration 1, reconstruction error: 0.20877152742535945, decrease = 2.83040690884917e-09
iteration 2, reconstruction error: 0.20877152459972312, decrease = 2.825636336023507e-09
iteration 3, reconstruction error: 0.20877152177879715, decrease = 2.8209259650413543e-09
iteration 4, reconstruction error: 0.2087715189625854, decrease = 2.8162117637897666e-09
PARAFAC2 reconstruction error=0.8189086816154754, variation=1.2441881969138535e-09.
Starting iteration 1471
reconstruction error=0.20877151537397196
iteration 1, reconstruction error: 0.20877151254560453, decrease = 2.8283674291529337e-09
iteration 2, reconstruction error: 0.20877150972199376, decrease = 2.823610761870654e-09
iteration 3, reconstruction error: 0.20877150690309262, decrease = 2.818901140289043e-09
iteration 4, reconstruction error: 0.20877150408889414, decrease = 2.8141984853569113e-09
PARAFAC2 reconstruction error=0.8189086803721841, variation=1.2432912477322589e-09.
Starting iteration 1472
reconstruction error=0.20877150050289417
iteration 1, reconstruction error: 0.20877149767656006, decrease = 2.826334111194484e-09
iteration 2, reconstruction error: 0.20877149485497953, decrease = 2.8215805247810977e-09
iteration 3, reconstruction error: 0.20877149203810091, decrease = 2.8168786192495077e-09
iteration 4, reconstruction error: 0.20877148922591413, decrease = 2.812186788991866e-09
PARAFAC2 reconstruction error=0.8189086791297893, variation=1.2423948536621765e-09.
Starting iteration 1473
reconstruction error=0.2087714856425262
iteration 1, reconstruction error: 0.20877148281822389, decrease = 2.824302319792693e-09
iteration 2, reconstruction error: 0.20877147999866896, decrease = 2.819554922872669e-09
iteration 3, reconstruction error: 0.20877147718380823, decrease = 2.8148607333911002e-09
iteration 4, reconstruction error: 0.20877147437363316, decrease = 2.8101750648712454e-09
PARAFAC2 reconstruction error=0.8189086778882896, variation=1.2414996808374212e-09.
Starting iteration 1474
reconstruction error=0.2087714707928557
iteration 1, reconstruction error: 0.2087714679705859, decrease = 2.822269806745936e-09
iteration 2, reconstruction error: 0.20877146515305506, decrease = 2.8175308475208993e-09
iteration 3, reconstruction error: 0.20877146234020913, decrease = 2.812845928401586e-09
iteration 4, reconstruction error: 0.20877145953204498, decrease = 2.8081641456623174e-09
PARAFAC2 reconstruction error=0.8189086766476846, variation=1.2406049521018758e-09.
Starting iteration 1475
reconstruction error=0.20877145595387497
iteration 1, reconstruction error: 0.2087714531336354, decrease = 2.8202395696563798e-09
iteration 2, reconstruction error: 0.20877145031812472, decrease = 2.8155106857052914e-09
iteration 3, reconstruction error: 0.2087714475072959, decrease = 2.810828819699296e-09
iteration 4, reconstruction error: 0.20877144470113887, decrease = 2.806157028967249e-09
PARAFAC2 reconstruction error=0.8189086754079734, variation=1.2397112225670526e-09.
Starting iteration 1476
reconstruction error=0.20877144112557475
iteration 1, reconstruction error: 0.20877143830736156, decrease = 2.818213190591834e-09
iteration 2, reconstruction error: 0.20877143549387264, decrease = 2.8134889140662978e-09
iteration 3, reconstruction error: 0.20877143268505707, decrease = 2.8088155690220162e-09
iteration 4, reconstruction error: 0.20877142988090558, decrease = 2.8041514943399903e-09
PARAFAC2 reconstruction error=0.8189086741691552, variation=1.238818159166044e-09.
Starting iteration 1477
reconstruction error=0.20877142630794196
iteration 1, reconstruction error: 0.20877142349175518, decrease = 2.8161867837717125e-09
iteration 2, reconstruction error: 0.20877142068028257, decrease = 2.8114726102757004e-09
iteration 3, reconstruction error: 0.20877141787348336, decrease = 2.8067992097202676e-09
iteration 4, reconstruction error: 0.20877141507133432, decrease = 2.802149040581625e-09
PARAFAC2 reconstruction error=0.818908672931229, variation=1.2379262059880602e-09.
Starting iteration 1478
reconstruction error=0.20877141150097128
iteration 1, reconstruction error: 0.2087714086868062, decrease = 2.8141650953994457e-09
iteration 2, reconstruction error: 0.2087714058773523, decrease = 2.8094538917500245e-09
iteration 3, reconstruction error: 0.20877140307255782, decrease = 2.804794480004702e-09
iteration 4, reconstruction error: 0.20877140027241514, decrease = 2.800142673287098e-09
PARAFAC2 reconstruction error=0.8189086716941946, variation=1.2370344748546813e-09.
Starting iteration 1479
reconstruction error=0.20877139670464953
iteration 1, reconstruction error: 0.20877139389250773, decrease = 2.812141797203793e-09
iteration 2, reconstruction error: 0.20877139108507017, decrease = 2.8074375602038515e-09
iteration 3, reconstruction error: 0.20877138828228203, decrease = 2.8027881404657506e-09
iteration 4, reconstruction error: 0.20877138548413945, decrease = 2.7981425787526604e-09
PARAFAC2 reconstruction error=0.8189086704580504, variation=1.2361441870112344e-09.
Starting iteration 1480
reconstruction error=0.2087713819189683
iteration 1, reconstruction error: 0.20877137910884824, decrease = 2.810120053320375e-09
iteration 2, reconstruction error: 0.2087713763034224, decrease = 2.8054258360832307e-09
iteration 3, reconstruction error: 0.2087713735026437, decrease = 2.800778720057906e-09
iteration 4, reconstruction error: 0.2087713707064974, decrease = 2.796146286732082e-09
PARAFAC2 reconstruction error=0.818908669222796, variation=1.2352543432569973e-09.
Starting iteration 1481
reconstruction error=0.2087713671439199
iteration 1, reconstruction error: 0.20877136433581694, decrease = 2.808102944618085e-09
iteration 2, reconstruction error: 0.20877136153240203, decrease = 2.8034149168743028e-09
iteration 3, reconstruction error: 0.20877135873362807, decrease = 2.7987739625867647e-09
iteration 4, reconstruction error: 0.20877135593947965, decrease = 2.7941484126436933e-09
PARAFAC2 reconstruction error=0.8189086679884305, variation=1.2343654987034824e-09.
Starting iteration 1482
reconstruction error=0.20877135237949346
iteration 1, reconstruction error: 0.20877134957340765, decrease = 2.806085808160219e-09
iteration 2, reconstruction error: 0.2087713467720029, decrease = 2.8014047470659165e-09
iteration 3, reconstruction error: 0.20877134397522987, decrease = 2.7967730353850584e-09
iteration 4, reconstruction error: 0.20877134118307464, decrease = 2.7921552292475837e-09
PARAFAC2 reconstruction error=0.8189086667549531, variation=1.2334774313060848e-09.
Starting iteration 1483
reconstruction error=0.20877133762567604
iteration 1, reconstruction error: 0.20877133482160506, decrease = 2.8040709754151294e-09
iteration 2, reconstruction error: 0.20877133202220738, decrease = 2.799397685881999e-09
iteration 3, reconstruction error: 0.20877132922743452, decrease = 2.7947728575838937e-09
iteration 4, reconstruction error: 0.20877132643727708, decrease = 2.790157438425922e-09
PARAFAC2 reconstruction error=0.8189086655223631, variation=1.2325900300425019e-09.
Starting iteration 1484
reconstruction error=0.20877132288246367
iteration 1, reconstruction error: 0.2087713200804098, decrease = 2.802053866712839e-09
iteration 2, reconstruction error: 0.2087713172830169, decrease = 2.7973929006552822e-09
iteration 3, reconstruction error: 0.20877131449024264, decrease = 2.792774261850539e-09
iteration 4, reconstruction error: 0.20877131170207613, decrease = 2.7881665032314373e-09
PARAFAC2 reconstruction error=0.8189086642906597, variation=1.2317034059350362e-09.
Starting iteration 1485
reconstruction error=0.2087713081498418
iteration 1, reconstruction error: 0.20877130534979732, decrease = 2.80004447406057e-09
iteration 2, reconstruction error: 0.20877130255441, decrease = 2.7953873105168725e-09
iteration 3, reconstruction error: 0.20877129976363354, decrease = 2.7907764710288774e-09
iteration 4, reconstruction error: 0.20877129697745717, decrease = 2.7861763729486455e-09
PARAFAC2 reconstruction error=0.8189086630598419, variation=1.2308177810282928e-09.
Starting iteration 1486
reconstruction error=0.20877129342780887
iteration 1, reconstruction error: 0.20877129062976918, decrease = 2.7980396888338532e-09
iteration 2, reconstruction error: 0.2087712878363851, decrease = 2.79338407960239e-09
iteration 3, reconstruction error: 0.2087712850476034, decrease = 2.7887817055649577e-09
iteration 4, reconstruction error: 0.20877128226341327, decrease = 2.78419012844644e-09
PARAFAC2 reconstruction error=0.8189086618299092, variation=1.2299327112330616e-09.
Starting iteration 1487
reconstruction error=0.20877127871634257
iteration 1, reconstruction error: 0.20877127592031383, decrease = 2.7960287418693497e-09
iteration 2, reconstruction error: 0.20877127312892987, decrease = 2.7913839573123767e-09
iteration 3, reconstruction error: 0.20877127034214216, decrease = 2.7867877172571554e-09
iteration 4, reconstruction error: 0.20877126755993752, decrease = 2.782204633344776e-09
PARAFAC2 reconstruction error=0.8189086606008603, variation=1.2290488626831575e-09.
Starting iteration 1488
reconstruction error=0.20877126401544288
iteration 1, reconstruction error: 0.20877126122142356, decrease = 2.794019321461505e-09
iteration 2, reconstruction error: 0.2087712584320336, decrease = 2.7893899690045743e-09
iteration 3, reconstruction error: 0.20877125564723983, decrease = 2.7847937567049286e-09
iteration 4, reconstruction error: 0.20877125286702147, decrease = 2.7802183610869946e-09
PARAFAC2 reconstruction error=0.8189086593726949, variation=1.2281654582224633e-09.
Starting iteration 1489
reconstruction error=0.20877124932510208
iteration 1, reconstruction error: 0.2087712465330806, decrease = 2.792021475128692e-09
iteration 2, reconstruction error: 0.20877124374569, decrease = 2.7873905961151024e-09
iteration 3, reconstruction error: 0.20877124096288407, decrease = 2.782805930134913e-09
iteration 4, reconstruction error: 0.20877123818465193, decrease = 2.7782321443403646e-09
PARAFAC2 reconstruction error=0.8189086581454121, variation=1.2272827198955838e-09.
Starting iteration 1490
reconstruction error=0.208771234645301
iteration 1, reconstruction error: 0.20877123185528199, decrease = 2.790019021370327e-09
iteration 2, reconstruction error: 0.20877122906989154, decrease = 2.7853904460695134e-09
iteration 3, reconstruction error: 0.20877122628907108, decrease = 2.7808204627888244e-09
iteration 4, reconstruction error: 0.20877122351281674, decrease = 2.776254337533146e-09
PARAFAC2 reconstruction error=0.8189086569190108, variation=1.2264013138363339e-09.
Starting iteration 1491
reconstruction error=0.2087712199760365
iteration 1, reconstruction error: 0.20877121718802302, decrease = 2.7880134867430684e-09
iteration 2, reconstruction error: 0.20877121440461885, decrease = 2.783404173811732e-09
iteration 3, reconstruction error: 0.20877121162578618, decrease = 2.7788326639743843e-09
iteration 4, reconstruction error: 0.20877120885151274, decrease = 2.7742734498570343e-09
PARAFAC2 reconstruction error=0.8189086556934907, variation=1.225520129821689e-09.
Starting iteration 1492
reconstruction error=0.20877120531729867
iteration 1, reconstruction error: 0.20877120253128226, decrease = 2.7860164175663726e-09
iteration 2, reconstruction error: 0.2087711997498713, decrease = 2.781410962660047e-09
iteration 3, reconstruction error: 0.20877119697302335, decrease = 2.7768479460288376e-09
iteration 4, reconstruction error: 0.20877119420072768, decrease = 2.7722956708053914e-09
PARAFAC2 reconstruction error=0.8189086544688506, variation=1.2246400560300685e-09.
Starting iteration 1493
reconstruction error=0.2087711906690781
iteration 1, reconstruction error: 0.20877118788505797, decrease = 2.784020125545794e-09
iteration 2, reconstruction error: 0.2087711851056371, decrease = 2.7794208601328307e-09
iteration 3, reconstruction error: 0.20877118233077083, decrease = 2.7748662811966085e-09
iteration 4, reconstruction error: 0.20877117956045368, decrease = 2.770317142353207e-09
PARAFAC2 reconstruction error=0.8189086532450899, variation=1.2237607593945654e-09.
Starting iteration 1494
reconstruction error=0.20877117603136267
iteration 1, reconstruction error: 0.2087711732493365, decrease = 2.7820261649935674e-09
iteration 2, reconstruction error: 0.20877117047190502, decrease = 2.7774314792505805e-09
iteration 3, reconstruction error: 0.20877116769902268, decrease = 2.772882340407179e-09
iteration 4, reconstruction error: 0.20877116493067638, decrease = 2.768346302195468e-09
PARAFAC2 reconstruction error=0.8189086520222076, variation=1.2228822399151795e-09.
Starting iteration 1495
reconstruction error=0.20877116140414526
iteration 1, reconstruction error: 0.20877115862411308, decrease = 2.780032176685765e-09
iteration 2, reconstruction error: 0.20877115584866707, decrease = 2.775446011904492e-09
iteration 3, reconstruction error: 0.20877115307776098, decrease = 2.770906087912195e-09
iteration 4, reconstruction error: 0.20877115031139015, decrease = 2.766370826856601e-09
PARAFAC2 reconstruction error=0.8189086508002033, variation=1.2220043865696084e-09.
Starting iteration 1496
reconstruction error=0.20877114678741832
iteration 1, reconstruction error: 0.20877114400937702, decrease = 2.7780412970024315e-09
iteration 2, reconstruction error: 0.2087711412359173, decrease = 2.7734597118911353e-09
iteration 3, reconstruction error: 0.20877113846698822, decrease = 2.7689290860166693e-09
iteration 4, reconstruction error: 0.20877113570258435, decrease = 2.7644038724794484e-09
PARAFAC2 reconstruction error=0.8189086495790756, variation=1.221127643447062e-09.
Starting iteration 1497
reconstruction error=0.20877113218116872
iteration 1, reconstruction error: 0.20877112940511677, decrease = 2.776051943875757e-09
iteration 2, reconstruction error: 0.2087711266336379, decrease = 2.7714788797261747e-09
iteration 3, reconstruction error: 0.2087711238666858, decrease = 2.7669520841211437e-09
iteration 4, reconstruction error: 0.20877112110425358, decrease = 2.7624322274100166e-09
PARAFAC2 reconstruction error=0.8189086483588242, variation=1.2202514554360278e-09.
Starting iteration 1498
reconstruction error=0.20877111758538952
iteration 1, reconstruction error: 0.20877111481132152, decrease = 2.7740680030863274e-09
iteration 2, reconstruction error: 0.20877111204182583, decrease = 2.7694956883372868e-09
iteration 3, reconstruction error: 0.2087711092768477, decrease = 2.7649781353389358e-09
iteration 4, reconstruction error: 0.20877110651638012, decrease = 2.76046757674564e-09
PARAFAC2 reconstruction error=0.8189086471394481, variation=1.2193760445811108e-09.
Starting iteration 1499
reconstruction error=0.20877110300006613
iteration 1, reconstruction error: 0.20877110022798673, decrease = 2.7720793993601944e-09
iteration 2, reconstruction error: 0.2087710974604673, decrease = 2.7675194358423028e-09
iteration 3, reconstruction error: 0.2087710946974623, decrease = 2.7630049914684207e-09
iteration 4, reconstruction error: 0.20877109193896093, decrease = 2.7585013717690288e-09
PARAFAC2 reconstruction error=0.8189086459209468, variation=1.2185012998600087e-09.
Starting iteration 1500
reconstruction error=0.2087710884251939
iteration 1, reconstruction error: 0.20877108565510152, decrease = 2.7700923777018716e-09
iteration 2, reconstruction error: 0.20877108288955756, decrease = 2.765543960503436e-09
iteration 3, reconstruction error: 0.20877108012852263, decrease = 2.761034928466799e-09
iteration 4, reconstruction error: 0.20877107737198672, decrease = 2.7565359161929592e-09
PARAFAC2 reconstruction error=0.8189086447033191, variation=1.2176276653619311e-09.
Starting iteration 1501
reconstruction error=0.20877107386076663
iteration 1, reconstruction error: 0.2087710710926528, decrease = 2.7681138214941114e-09
iteration 2, reconstruction error: 0.20877106832908662, decrease = 2.763566181451793e-09
iteration 3, reconstruction error: 0.20877106557002176, decrease = 2.7590648654651773e-09
iteration 4, reconstruction error: 0.20877106281544125, decrease = 2.7545805081352626e-09
PARAFAC2 reconstruction error=0.8189086434865643, variation=1.2167548080199708e-09.
Starting iteration 1502
reconstruction error=0.20877105930676823
iteration 1, reconstruction error: 0.20877105654063532, decrease = 2.766132906062424e-09
iteration 2, reconstruction error: 0.2087710537790423, decrease = 2.761593037581278e-09
iteration 3, reconstruction error: 0.20877105102194052, decrease = 2.757101769113035e-09
iteration 4, reconstruction error: 0.20877104826932702, decrease = 2.7526134982469586e-09
PARAFAC2 reconstruction error=0.8189086422706819, variation=1.2158823947672204e-09.
Starting iteration 1503
reconstruction error=0.20877104476319105
iteration 1, reconstruction error: 0.20877104199903743, decrease = 2.764153628209698e-09
iteration 2, reconstruction error: 0.20877103923941445, decrease = 2.7596229745796563e-09
iteration 3, reconstruction error: 0.2087710364842797, decrease = 2.755134759224731e-09
iteration 4, reconstruction error: 0.20877103373362313, decrease = 2.750656563632603e-09
PARAFAC2 reconstruction error=0.8189086410556708, variation=1.2150110917374946e-09.
Starting iteration 1504
reconstruction error=0.20877103023002416
iteration 1, reconstruction error: 0.20877102746784987, decrease = 2.7621742948458206e-09
iteration 2, reconstruction error: 0.2087710247101985, decrease = 2.7576513572658e-09
iteration 3, reconstruction error: 0.20877102195702768, decrease = 2.7531708302053204e-09
iteration 4, reconstruction error: 0.20877101920833036, decrease = 2.7486973253054714e-09
PARAFAC2 reconstruction error=0.8189086398415303, variation=1.214140565863886e-09.
Starting iteration 1505
reconstruction error=0.20877101570726386
iteration 1, reconstruction error: 0.20877101294706119, decrease = 2.7602026775319644e-09
iteration 2, reconstruction error: 0.20877101019138455, decrease = 2.755676631327475e-09
iteration 3, reconstruction error: 0.20877100744017296, decrease = 2.7512115918781888e-09
iteration 4, reconstruction error: 0.20877100469342644, decrease = 2.746746524673327e-09
PARAFAC2 reconstruction error=0.8189086386282598, variation=1.2132704840794872e-09.
Starting iteration 1506
reconstruction error=0.20877100119489617
iteration 1, reconstruction error: 0.20877099843666977, decrease = 2.7582263972814047e-09
iteration 2, reconstruction error: 0.208770995682957, decrease = 2.7537127578192155e-09
iteration 3, reconstruction error: 0.208770992933707, decrease = 2.7492500220827054e-09
iteration 4, reconstruction error: 0.2087709901889097, decrease = 2.744797278353417e-09
PARAFAC2 reconstruction error=0.8189086374158582, variation=1.2124016235404156e-09.
Starting iteration 1507
reconstruction error=0.20877098669291583
iteration 1, reconstruction error: 0.2087709839366587, decrease = 2.756257139191476e-09
iteration 2, reconstruction error: 0.20877098118490753, decrease = 2.7517511602681566e-09
iteration 3, reconstruction error: 0.20877097843761447, decrease = 2.7472930597127743e-09
iteration 4, reconstruction error: 0.2087709756947757, decrease = 2.7428387616712513e-09
PARAFAC2 reconstruction error=0.8189086362043251, variation=1.2115330960682513e-09.
Starting iteration 1508
reconstruction error=0.20877097220130506
iteration 1, reconstruction error: 0.2087709694470211, decrease = 2.754283967565385e-09
iteration 2, reconstruction error: 0.20877096669723302, decrease = 2.7497880639160144e-09
iteration 3, reconstruction error: 0.20877096395189618, decrease = 2.7453368467433847e-09
iteration 4, reconstruction error: 0.20877096121100666, decrease = 2.7408895153513413e-09
PARAFAC2 reconstruction error=0.8189086349936591, variation=1.210666011886019e-09.
Starting iteration 1509
reconstruction error=0.20877095772006385
iteration 1, reconstruction error: 0.20877095496774534, decrease = 2.7523185119893157e-09
iteration 2, reconstruction error: 0.20877095221991965, decrease = 2.747825689208838e-09
iteration 3, reconstruction error: 0.20877094947653665, decrease = 2.7433829929979225e-09
iteration 4, reconstruction error: 0.20877094673759405, decrease = 2.738942600499783e-09
PARAFAC2 reconstruction error=0.81890863378386, variation=1.2097990387260893e-09.
Starting iteration 1510
reconstruction error=0.20877094324917606
iteration 1, reconstruction error: 0.20877094049882683, decrease = 2.750349226143811e-09
iteration 2, reconstruction error: 0.2087709377529612, decrease = 2.745865618214438e-09
iteration 3, reconstruction error: 0.20877093501152977, decrease = 2.7414314429652364e-09
iteration 4, reconstruction error: 0.2087709322745364, decrease = 2.736993354179873e-09
PARAFAC2 reconstruction error=0.8189086325749267, variation=1.2089332868114866e-09.
Starting iteration 1511
reconstruction error=0.2087709287886394
iteration 1, reconstruction error: 0.208770926040251, decrease = 2.7483884057488694e-09
iteration 2, reconstruction error: 0.20877092329634234, decrease = 2.743908655844507e-09
iteration 3, reconstruction error: 0.20877092055686708, decrease = 2.7394752577514225e-09
iteration 4, reconstruction error: 0.20877091782181448, decrease = 2.7350526010661014e-09
PARAFAC2 reconstruction error=0.8189086313668585, variation=1.2080682010306987e-09.
Starting iteration 1512
reconstruction error=0.20877091433843617
iteration 1, reconstruction error: 0.20877091159201014, decrease = 2.7464260310416932e-09
iteration 2, reconstruction error: 0.2087709088500584, decrease = 2.741951748985727e-09
iteration 3, reconstruction error: 0.20877090611253163, decrease = 2.737526760832054e-09
iteration 4, reconstruction error: 0.2087709033794221, decrease = 2.733109516483978e-09
PARAFAC2 reconstruction error=0.8189086301596548, variation=1.2072037813837255e-09.
Starting iteration 1513
reconstruction error=0.20877089989856099
iteration 1, reconstruction error: 0.20877089715409805, decrease = 2.744462934689551e-09
iteration 2, reconstruction error: 0.20877089441410096, decrease = 2.739997090328572e-09
iteration 3, reconstruction error: 0.20877089167852034, decrease = 2.735580623136613e-09
iteration 4, reconstruction error: 0.20877088894735388, decrease = 2.7311664596574303e-09
PARAFAC2 reconstruction error=0.8189086289533146, variation=1.2063401388928696e-09.
Starting iteration 1514
reconstruction error=0.20877088546900913
iteration 1, reconstruction error: 0.20877088272650549, decrease = 2.742503640851268e-09
iteration 2, reconstruction error: 0.2087708799884592, decrease = 2.7380462896964275e-09
iteration 3, reconstruction error: 0.2087708772548232, decrease = 2.7336359842422553e-09
iteration 4, reconstruction error: 0.20877087452559442, decrease = 2.729228787412552e-09
PARAFAC2 reconstruction error=0.8189086277478371, variation=1.2054774956027359e-09.
Starting iteration 1515
reconstruction error=0.2087708710497638
iteration 1, reconstruction error: 0.20877086830921712, decrease = 2.740546678481337e-09
iteration 2, reconstruction error: 0.2087708655731216, decrease = 2.7360955168198586e-09
iteration 3, reconstruction error: 0.20877086284143176, decrease = 2.7316898465468142e-09
iteration 4, reconstruction error: 0.20877086011413912, decrease = 2.7272926417243326e-09
PARAFAC2 reconstruction error=0.8189086265432217, variation=1.2046154074241144e-09.
Starting iteration 1516
reconstruction error=0.20877085664082184
iteration 1, reconstruction error: 0.20877085390222827, decrease = 2.7385935741364165e-09
iteration 2, reconstruction error: 0.20877085116808122, decrease = 2.734147047656066e-09
iteration 3, reconstruction error: 0.20877084843833524, decrease = 2.7297459848085737e-09
iteration 4, reconstruction error: 0.20877084571297716, decrease = 2.7253580781039233e-09
PARAFAC2 reconstruction error=0.8189086253394676, variation=1.2037540964016102e-09.
Starting iteration 1517
reconstruction error=0.20877084224216635
iteration 1, reconstruction error: 0.20877083950553124, decrease = 2.736635112965402e-09
iteration 2, reconstruction error: 0.20877083677332883, decrease = 2.732202408761708e-09
iteration 3, reconstruction error: 0.20877083404552052, decrease = 2.7278083125636954e-09
iteration 4, reconstruction error: 0.20877083132210011, decrease = 2.723420405859045e-09
PARAFAC2 reconstruction error=0.8189086241365738, variation=1.2028937845798282e-09.
Starting iteration 1518
reconstruction error=0.2087708278537958
iteration 1, reconstruction error: 0.2087708251191053, decrease = 2.73469050182662e-09
iteration 2, reconstruction error: 0.20877082238885752, decrease = 2.7302477778601286e-09
iteration 3, reconstruction error: 0.20877081966298766, decrease = 2.7258698631627e-09
iteration 4, reconstruction error: 0.20877081694149646, decrease = 2.7214911990647295e-09
PARAFAC2 reconstruction error=0.8189086229345399, variation=1.202033916847256e-09.
Starting iteration 1519
reconstruction error=0.20877081347569473
iteration 1, reconstruction error: 0.20877081074295967, decrease = 2.7327350660133476e-09
iteration 2, reconstruction error: 0.20877080801465112, decrease = 2.728308551303016e-09
iteration 3, reconstruction error: 0.20877080529072048, decrease = 2.723930636605587e-09
iteration 4, reconstruction error: 0.20877080257115846, decrease = 2.7195620200259896e-09
PARAFAC2 reconstruction error=0.8189086217333644, variation=1.2011754924046159e-09.
Starting iteration 1520
reconstruction error=0.20877079910785862
iteration 1, reconstruction error: 0.20877079637707202, decrease = 2.730786596849555e-09
iteration 2, reconstruction error: 0.20877079365070347, decrease = 2.726368547589786e-09
iteration 3, reconstruction error: 0.20877079092871126, decrease = 2.721992214960167e-09
iteration 4, reconstruction error: 0.20877078821107692, decrease = 2.717634339788333e-09
PARAFAC2 reconstruction error=0.8189086205330472, variation=1.2003171789842781e-09.
Starting iteration 1521
reconstruction error=0.20877078475027813
iteration 1, reconstruction error: 0.2087707820214354, decrease = 2.7288427351113143e-09
iteration 2, reconstruction error: 0.20877077929700913, decrease = 2.7244262679193554e-09
iteration 3, reconstruction error: 0.20877077657695076, decrease = 2.720058372984724e-09
iteration 4, reconstruction error: 0.20877077386124404, decrease = 2.7157067150618275e-09
PARAFAC2 reconstruction error=0.8189086193335878, variation=1.1994594206754527e-09.
Starting iteration 1522
reconstruction error=0.2087707704029372
iteration 1, reconstruction error: 0.20877076767604297, decrease = 2.726894238191946e-09
iteration 2, reconstruction error: 0.20877076495355745, decrease = 2.7224855148055838e-09
iteration 3, reconstruction error: 0.2087707622354244, decrease = 2.7181330519709945e-09
iteration 4, reconstruction error: 0.2087707595216469, decrease = 2.713777508267512e-09
PARAFAC2 reconstruction error=0.8189086181349847, variation=1.1986031056565594e-09.
Starting iteration 1523
reconstruction error=0.20877075606583803
iteration 1, reconstruction error: 0.20877075334088607, decrease = 2.7249519585215154e-09
iteration 2, reconstruction error: 0.20877075062033673, decrease = 2.7205493413617887e-09
iteration 3, reconstruction error: 0.20877074790413364, decrease = 2.7162030957761374e-09
iteration 4, reconstruction error: 0.2087707451922799, decrease = 2.711853741566017e-09
PARAFAC2 reconstruction error=0.8189086169372372, variation=1.1977475677937832e-09.
Starting iteration 1524
reconstruction error=0.20877074173896149
iteration 1, reconstruction error: 0.20877073901595417, decrease = 2.7230073196271576e-09
iteration 2, reconstruction error: 0.20877073629733628, decrease = 2.7186178863658483e-09
iteration 3, reconstruction error: 0.20877073358306394, decrease = 2.7142723346695874e-09
iteration 4, reconstruction error: 0.20877073087313325, decrease = 2.7099306965094883e-09
PARAFAC2 reconstruction error=0.8189086157403448, variation=1.1968923629979145e-09.
Starting iteration 1525
reconstruction error=0.20877072742230063
iteration 1, reconstruction error: 0.20877072470123328, decrease = 2.721067343669503e-09
iteration 2, reconstruction error: 0.2087707219845508, decrease = 2.7166824900781705e-09
iteration 3, reconstruction error: 0.2087707192722053, decrease = 2.712345487099199e-09
iteration 4, reconstruction error: 0.20877071656419224, decrease = 2.7080130637902045e-09
PARAFAC2 reconstruction error=0.8189086145443066, variation=1.1960381574027679e-09.
Starting iteration 1526
reconstruction error=0.2087707131158523
iteration 1, reconstruction error: 0.20877071039672032, decrease = 2.719131975137401e-09
iteration 2, reconstruction error: 0.20877070768197087, decrease = 2.71474945301442e-09
iteration 3, reconstruction error: 0.20877070497155303, decrease = 2.710417834617118e-09
iteration 4, reconstruction error: 0.20877070226545294, decrease = 2.706100094007624e-09
PARAFAC2 reconstruction error=0.8189086133491218, variation=1.195184839986041e-09.
Starting iteration 1527
reconstruction error=0.2087706988195981
iteration 1, reconstruction error: 0.2087706961024046, decrease = 2.71719349798083e-09
iteration 2, reconstruction error: 0.20877069338958198, decrease = 2.712822605444032e-09
iteration 3, reconstruction error: 0.20877069068108872, decrease = 2.7084932630039305e-09
iteration 4, reconstruction error: 0.20877068797690781, decrease = 2.704180906976106e-09
PARAFAC2 reconstruction error=0.8189086121547902, variation=1.1943316335916165e-09.
Starting iteration 1528
reconstruction error=0.20877068453353798
iteration 1, reconstruction error: 0.20877068181827674, decrease = 2.7152612380731966e-09
iteration 2, reconstruction error: 0.2087706791073818, decrease = 2.710894925206375e-09
iteration 3, reconstruction error: 0.2087706764008077, decrease = 2.7065741037279878e-09
iteration 4, reconstruction error: 0.2087706736985475, decrease = 2.7022602211435043e-09
PARAFAC2 reconstruction error=0.8189086109613101, variation=1.193480092531729e-09.
Starting iteration 1529
reconstruction error=0.20877067025765347
iteration 1, reconstruction error: 0.20877066754432605, decrease = 2.713327423853329e-09
iteration 2, reconstruction error: 0.2087706648353588, decrease = 2.7089672449687185e-09
iteration 3, reconstruction error: 0.20877066213070308, decrease = 2.7046557216081624e-09
iteration 4, reconstruction error: 0.208770659430352, decrease = 2.700351081630359e-09
PARAFAC2 reconstruction error=0.8189086097686812, variation=1.192628884538749e-09.
Starting iteration 1530
reconstruction error=0.20877065599194
iteration 1, reconstruction error: 0.2087706532805464, decrease = 2.7113936096334612e-09
iteration 2, reconstruction error: 0.20877065057350366, decrease = 2.707042728866682e-09
iteration 3, reconstruction error: 0.20877064787076635, decrease = 2.7027373117327613e-09
iteration 4, reconstruction error: 0.20877064517232904, decrease = 2.6984373069360856e-09
PARAFAC2 reconstruction error=0.8189086085769028, variation=1.1917783426795836e-09.
Starting iteration 1531
reconstruction error=0.2087706417363906
iteration 1, reconstruction error: 0.20877063902692772, decrease = 2.709462876282487e-09
iteration 2, reconstruction error: 0.20877063632180803, decrease = 2.7051196838101532e-09
iteration 3, reconstruction error: 0.20877063362098525, decrease = 2.7008227876379465e-09
iteration 4, reconstruction error: 0.20877063092445938, decrease = 2.696525863710164e-09
PARAFAC2 reconstruction error=0.818908607385974, variation=1.1909288000211404e-09.
Starting iteration 1532
reconstruction error=0.2087706274909922
iteration 1, reconstruction error: 0.2087706247834562, decrease = 2.707536000956523e-09
iteration 2, reconstruction error: 0.208770622080258, decrease = 2.703198193065859e-09
iteration 3, reconstruction error: 0.208770619381349, decrease = 2.6989090129436732e-09
iteration 4, reconstruction error: 0.20877061668673227, decrease = 2.6946167241970187e-09
PARAFAC2 reconstruction error=0.818908606195894, variation=1.1900800345188145e-09.
Starting iteration 1533
reconstruction error=0.20877061325573942
iteration 1, reconstruction error: 0.20877061055012958, decrease = 2.7056098472755252e-09
iteration 2, reconstruction error: 0.208770607848849, decrease = 2.7012805881021507e-09
iteration 3, reconstruction error: 0.2087706051518545, decrease = 2.6969944888488584e-09
iteration 4, reconstruction error: 0.20877060245914228, decrease = 2.692712219865001e-09
PARAFAC2 reconstruction error=0.8189086050066622, variation=1.1892318241280009e-09.
Starting iteration 1534
reconstruction error=0.20877059903062228
iteration 1, reconstruction error: 0.2087705963269331, decrease = 2.7036891891984993e-09
iteration 2, reconstruction error: 0.20877059362757247, decrease = 2.699360623914515e-09
iteration 3, reconstruction error: 0.20877059093249328, decrease = 2.6950791875979263e-09
iteration 4, reconstruction error: 0.20877058824168093, decrease = 2.6908123507141113e-09
PARAFAC2 reconstruction error=0.8189086038182776, variation=1.1883846129379094e-09.
Starting iteration 1535
reconstruction error=0.2087705848156299
iteration 1, reconstruction error: 0.20877058211386296, decrease = 2.7017669490536633e-09
iteration 2, reconstruction error: 0.20877057941641763, decrease = 2.697445322663583e-09
iteration 3, reconstruction error: 0.20877057672324528, decrease = 2.693172351797557e-09
iteration 4, reconstruction error: 0.2087705740343421, decrease = 2.6889031834453903e-09
PARAFAC2 reconstruction error=0.8189086026307396, variation=1.1875379568593303e-09.
Starting iteration 1536
reconstruction error=0.20877057061075013
iteration 1, reconstruction error: 0.20877056791090545, decrease = 2.6998446811532517e-09
iteration 2, reconstruction error: 0.20877056521537313, decrease = 2.695532325125427e-09
iteration 3, reconstruction error: 0.20877056252410994, decrease = 2.691263184528836e-09
iteration 4, reconstruction error: 0.20877055983710585, decrease = 2.6870040914506177e-09
PARAFAC2 reconstruction error=0.8189086014440473, variation=1.1866922999814733e-09.
Starting iteration 1537
reconstruction error=0.20877055641598127
iteration 1, reconstruction error: 0.20877055371805425, decrease = 2.6979270206783923e-09
iteration 2, reconstruction error: 0.2087705510244349, decrease = 2.6936193553428467e-09
iteration 3, reconstruction error: 0.20877054833507774, decrease = 2.6893571536401595e-09
iteration 4, reconstruction error: 0.20877054564997277, decrease = 2.6851049717002695e-09
PARAFAC2 reconstruction error=0.8189086002582, variation=1.185847309237431e-09.
Starting iteration 1538
reconstruction error=0.2087705422313049
iteration 1, reconstruction error: 0.20877053953529623, decrease = 2.6960086663141425e-09
iteration 2, reconstruction error: 0.2087705368435899, decrease = 2.691706330049115e-09
iteration 3, reconstruction error: 0.20877053415613725, decrease = 2.687452649308142e-09
iteration 4, reconstruction error: 0.20877053147293292, decrease = 2.6832043253932625e-09
PARAFAC2 reconstruction error=0.8189085990731972, variation=1.1850027625825987e-09.
Starting iteration 1539
reconstruction error=0.20877052805671953
iteration 1, reconstruction error: 0.20877052536263005, decrease = 2.6940894792826242e-09
iteration 2, reconstruction error: 0.208770522672829, decrease = 2.6898010485609802e-09
iteration 3, reconstruction error: 0.20877051998728086, decrease = 2.6855481449761243e-09
iteration 4, reconstruction error: 0.20877051730597332, decrease = 2.681307537111266e-09
PARAFAC2 reconstruction error=0.8189085978890379, variation=1.184159326150791e-09.
Starting iteration 1540
reconstruction error=0.2087705138922182
iteration 1, reconstruction error: 0.20877051120003787, decrease = 2.6921803397694788e-09
iteration 2, reconstruction error: 0.2087705085121475, decrease = 2.6878903547356003e-09
iteration 3, reconstruction error: 0.20877050582849926, decrease = 2.683648248069659e-09
iteration 4, reconstruction error: 0.20877050314908158, decrease = 2.6794176877231735e-09
PARAFAC2 reconstruction error=0.8189085967057211, variation=1.183316777897403e-09.
Starting iteration 1541
reconstruction error=0.20877049973778244
iteration 1, reconstruction error: 0.20877049704751433, decrease = 2.69026811938744e-09
iteration 2, reconstruction error: 0.20877049436153, decrease = 2.685984323846924e-09
iteration 3, reconstruction error: 0.20877049167977857, decrease = 2.6817514320320868e-09
iteration 4, reconstruction error: 0.20877048900226, decrease = 2.6775185679728253e-09
PARAFAC2 reconstruction error=0.8189085955232466, variation=1.1824745627109223e-09.
Starting iteration 1542
reconstruction error=0.20877048559341221
iteration 1, reconstruction error: 0.20877048290505557, decrease = 2.688356648405943e-09
iteration 2, reconstruction error: 0.20877048022097267, decrease = 2.6840829003837996e-09
iteration 3, reconstruction error: 0.2087704775411211, decrease = 2.679851562881197e-09
iteration 4, reconstruction error: 0.2087704748654893, decrease = 2.675631799453626e-09
PARAFAC2 reconstruction error=0.8189085943416133, variation=1.1816332357028614e-09.
Starting iteration 1543
reconstruction error=0.20877047145909144
iteration 1, reconstruction error: 0.20877046877264008, decrease = 2.686451366917808e-09
iteration 2, reconstruction error: 0.20877046609046324, decrease = 2.6821768417395475e-09
iteration 3, reconstruction error: 0.2087704634125085, decrease = 2.677954746843625e-09
iteration 4, reconstruction error: 0.20877046073876573, decrease = 2.6737427549772264e-09
PARAFAC2 reconstruction error=0.8189085931608202, variation=1.1807931299401275e-09.
Starting iteration 1544
reconstruction error=0.2087704573348139
iteration 1, reconstruction error: 0.2087704546502724, decrease = 2.684541478004121e-09
iteration 2, reconstruction error: 0.20877045196999625, decrease = 2.680276167676965e-09
iteration 3, reconstruction error: 0.20877044929393518, decrease = 2.6760610671860974e-09
iteration 4, reconstruction error: 0.20877044662208077, decrease = 2.671854404390217e-09
PARAFAC2 reconstruction error=0.8189085919808673, variation=1.1799529131550912e-09.
Starting iteration 1545
reconstruction error=0.20877044322057267
iteration 1, reconstruction error: 0.20877044053793722, decrease = 2.6826354471154445e-09
iteration 2, reconstruction error: 0.20877043785955862, decrease = 2.678378602238851e-09
iteration 3, reconstruction error: 0.20877043518538743, decrease = 2.674171190042429e-09
iteration 4, reconstruction error: 0.20877043251542365, decrease = 2.6699637778460072e-09
PARAFAC2 reconstruction error=0.8189085908017527, variation=1.1791145837491968e-09.
Starting iteration 1546
reconstruction error=0.20877042911635696
iteration 1, reconstruction error: 0.20877042643562377, decrease = 2.680733190985052e-09
iteration 2, reconstruction error: 0.2087704237591404, decrease = 2.676483368269089e-09
iteration 3, reconstruction error: 0.20877042108686522, decrease = 2.67227517891655e-09
iteration 4, reconstruction error: 0.20877041841878205, decrease = 2.6680831710645947e-09
PARAFAC2 reconstruction error=0.8189085896234767, variation=1.1782760322986974e-09.
Starting iteration 1547
reconstruction error=0.20877041502215526
iteration 1, reconstruction error: 0.2087704123433258, decrease = 2.6788294638091514e-09
iteration 2, reconstruction error: 0.20877040966873847, decrease = 2.6745873293876343e-09
iteration 3, reconstruction error: 0.20877040699834853, decrease = 2.6703899369540096e-09
iteration 4, reconstruction error: 0.20877040433215138, decrease = 2.666197151945937e-09
PARAFAC2 reconstruction error=0.8189085884460379, variation=1.1774388131158275e-09.
Starting iteration 1548
reconstruction error=0.20877040093796143
iteration 1, reconstruction error: 0.20877039826103108, decrease = 2.6769303440588033e-09
iteration 2, reconstruction error: 0.2087703955883421, decrease = 2.6726889867934034e-09
iteration 3, reconstruction error: 0.20877039291983432, decrease = 2.6685077758603626e-09
iteration 4, reconstruction error: 0.2087703902555185, decrease = 2.6643158235195585e-09
PARAFAC2 reconstruction error=0.8189085872694359, variation=1.176601926999865e-09.
Starting iteration 1549
reconstruction error=0.20877038686376698
iteration 1, reconstruction error: 0.20877038418873575, decrease = 2.675031224308455e-09
iteration 2, reconstruction error: 0.20877038151793276, decrease = 2.6708029954303214e-09
iteration 3, reconstruction error: 0.2087703788513179, decrease = 2.6666148456033767e-09
iteration 4, reconstruction error: 0.20877037618888195, decrease = 2.6624359661386876e-09
PARAFAC2 reconstruction error=0.8189085860936699, variation=1.1757660400846248e-09.
Starting iteration 1550
reconstruction error=0.2087703727995588
iteration 1, reconstruction error: 0.20877037012642896, decrease = 2.6731298286009064e-09
iteration 2, reconstruction error: 0.20877036745751587, decrease = 2.6689130905310776e-09
iteration 3, reconstruction error: 0.20877036479278624, decrease = 2.664729631396412e-09
iteration 4, reconstruction error: 0.20877036213222544, decrease = 2.6605607994500957e-09
PARAFAC2 reconstruction error=0.818908584918739, variation=1.1749309303255018e-09.
Starting iteration 1551
reconstruction error=0.20877035874533847
iteration 1, reconstruction error: 0.20877035607409772, decrease = 2.671240756368931e-09
iteration 2, reconstruction error: 0.2087703534070737, decrease = 2.6670240182991023e-09
iteration 3, reconstruction error: 0.20877035074422545, decrease = 2.662848247458882e-09
iteration 4, reconstruction error: 0.20877034808554065, decrease = 2.6586848000942354e-09
PARAFAC2 reconstruction error=0.8189085837446425, variation=1.1740964867001935e-09.
Starting iteration 1552
reconstruction error=0.2087703447010836
iteration 1, reconstruction error: 0.20877034203173736, decrease = 2.669346244044135e-09
iteration 2, reconstruction error: 0.20877033936659856, decrease = 2.6651388040921375e-09
iteration 3, reconstruction error: 0.208770336705634, decrease = 2.6609645598085763e-09
iteration 4, reconstruction error: 0.2087703340488236, decrease = 2.656810382806185e-09
PARAFAC2 reconstruction error=0.8189085825713799, variation=1.1732625981863976e-09.
Starting iteration 1553
reconstruction error=0.20877033066679124
iteration 1, reconstruction error: 0.20877032799933792, decrease = 2.6674533137871492e-09
iteration 2, reconstruction error: 0.20877032533608514, decrease = 2.66325278497348e-09
iteration 3, reconstruction error: 0.20877032267699575, decrease = 2.6590893931199844e-09
iteration 4, reconstruction error: 0.20877032002206214, decrease = 2.6549336062942075e-09
PARAFAC2 reconstruction error=0.8189085813989501, variation=1.1724298198956262e-09.
Starting iteration 1554
reconstruction error=0.20877031664245282
iteration 1, reconstruction error: 0.20877031397688708, decrease = 2.665565740356257e-09
iteration 2, reconstruction error: 0.208770311315521, decrease = 2.661366071965432e-09
iteration 3, reconstruction error: 0.20877030865830842, decrease = 2.657212588852431e-09
iteration 4, reconstruction error: 0.2087703060052446, decrease = 2.653063824187285e-09
PARAFAC2 reconstruction error=0.8189085802273522, variation=1.1715978187609721e-09.
Starting iteration 1555
reconstruction error=0.20877030262805682
iteration 1, reconstruction error: 0.20877029996438323, decrease = 2.6636735872553885e-09
iteration 2, reconstruction error: 0.20877029730489932, decrease = 2.659483910871785e-09
iteration 3, reconstruction error: 0.20877029464956193, decrease = 2.6553373944082637e-09
iteration 4, reconstruction error: 0.20877029199836558, decrease = 2.6511963457931387e-09
PARAFAC2 reconstruction error=0.818908579056586, variation=1.1707662617155279e-09.
Starting iteration 1556
reconstruction error=0.20877028862359856
iteration 1, reconstruction error: 0.20877028596181021, decrease = 2.661788345292848e-09
iteration 2, reconstruction error: 0.20877028330420694, decrease = 2.6576032763347968e-09
iteration 3, reconstruction error: 0.2087702806507447, decrease = 2.6534622277196718e-09
iteration 4, reconstruction error: 0.20877027800141898, decrease = 2.6493257310189477e-09
PARAFAC2 reconstruction error=0.8189085778866504, variation=1.1699355928485033e-09.
Starting iteration 1557
reconstruction error=0.2087702746290689
iteration 1, reconstruction error: 0.20877027196916503, decrease = 2.659903880486425e-09
iteration 2, reconstruction error: 0.20877026931343773, decrease = 2.655727304734512e-09
iteration 3, reconstruction error: 0.2087702666618453, decrease = 2.6515924178571737e-09
iteration 4, reconstruction error: 0.20877026401438625, decrease = 2.6474590575364942e-09
PARAFAC2 reconstruction error=0.8189085767175447, variation=1.169105701137596e-09.
Starting iteration 1558
reconstruction error=0.20877026064445553
iteration 1, reconstruction error: 0.20877025798643148, decrease = 2.6580240508611297e-09
iteration 2, reconstruction error: 0.20877025533258245, decrease = 2.653849029421451e-09
iteration 3, reconstruction error: 0.20877025268286292, decrease = 2.6497195271257823e-09
iteration 4, reconstruction error: 0.2087702500372683, decrease = 2.6455946322556656e-09
PARAFAC2 reconstruction error=0.818908575549268, variation=1.1682766976051084e-09.
Starting iteration 1559
reconstruction error=0.20877024666974764
iteration 1, reconstruction error: 0.20877024401360575, decrease = 2.6561418897674827e-09
iteration 2, reconstruction error: 0.208770241361635, decrease = 2.6519707541083903e-09
iteration 3, reconstruction error: 0.2087702387137845, decrease = 2.6478504944194015e-09
iteration 4, reconstruction error: 0.20877023607004885, decrease = 2.6437356470676576e-09
PARAFAC2 reconstruction error=0.8189085743818199, variation=1.1674481381618307e-09.
Starting iteration 1560
reconstruction error=0.20877023270494288
iteration 1, reconstruction error: 0.2087702300506808, decrease = 2.654262087897763e-09
iteration 2, reconstruction error: 0.2087702274005814, decrease = 2.6500993899336578e-09
iteration 3, reconstruction error: 0.20877022475459842, decrease = 2.6459829882696795e-09
iteration 4, reconstruction error: 0.2087702221127241, decrease = 2.6418743026557223e-09
PARAFAC2 reconstruction error=0.8189085732151995, variation=1.1666203558746702e-09.
Starting iteration 1561
reconstruction error=0.2087702187500282
iteration 1, reconstruction error: 0.20877021609764057, decrease = 2.652387642854137e-09
iteration 2, reconstruction error: 0.20877021344941715, decrease = 2.648223418333373e-09
iteration 3, reconstruction error: 0.20877021080530012, decrease = 2.644117036432192e-09
iteration 4, reconstruction error: 0.20877020816528555, decrease = 2.6400145680671727e-09
PARAFAC2 reconstruction error=0.8189085720494059, variation=1.1657935727882318e-09.
Starting iteration 1562
reconstruction error=0.2087702048049913
iteration 1, reconstruction error: 0.20877020215448658, decrease = 2.6505047323599484e-09
iteration 2, reconstruction error: 0.20877019950813067, decrease = 2.646355912183651e-09
iteration 3, reconstruction error: 0.20877019686587572, decrease = 2.642254942619715e-09
iteration 4, reconstruction error: 0.20877019422772172, decrease = 2.6381540008113546e-09
PARAFAC2 reconstruction error=0.8189085708844386, variation=1.1649673448133058e-09.
Starting iteration 1563
reconstruction error=0.20877019086983448
iteration 1, reconstruction error: 0.20877018822120114, decrease = 2.6486333404296403e-09
iteration 2, reconstruction error: 0.20877018557671345, decrease = 2.644487684388963e-09
iteration 3, reconstruction error: 0.20877018293632366, decrease = 2.6403897956939204e-09
iteration 4, reconstruction error: 0.20877018030002098, decrease = 2.6363026761622166e-09
PARAFAC2 reconstruction error=0.8189085697202968, variation=1.1641417829721945e-09.
Starting iteration 1564
reconstruction error=0.20877017694454006
iteration 1, reconstruction error: 0.20877017429777647, decrease = 2.6467635860782934e-09
iteration 2, reconstruction error: 0.20877017165515707, decrease = 2.642619401083124e-09
iteration 3, reconstruction error: 0.20877016901662862, decrease = 2.638528451281985e-09
iteration 4, reconstruction error: 0.20877016638218107, decrease = 2.634447548999219e-09
PARAFAC2 reconstruction error=0.8189085685569797, variation=1.163317109309503e-09.
Starting iteration 1565
reconstruction error=0.20877016302909646
iteration 1, reconstruction error: 0.2087701603842081, decrease = 2.6448883638785503e-09
iteration 2, reconstruction error: 0.20877015774344998, decrease = 2.64075811218234e-09
iteration 3, reconstruction error: 0.208770155106779, decrease = 2.636670992650636e-09
iteration 4, reconstruction error: 0.20877015247419045, decrease = 2.6325885360556356e-09
PARAFAC2 reconstruction error=0.8189085673944863, variation=1.1624934348475335e-09.
Starting iteration 1566
reconstruction error=0.20877014912350214
iteration 1, reconstruction error: 0.2087701464804805, decrease = 2.6430216348849456e-09
iteration 2, reconstruction error: 0.20877014384159068, decrease = 2.6388898288765006e-09
iteration 3, reconstruction error: 0.2087701412067748, decrease = 2.6348158654876386e-09
iteration 4, reconstruction error: 0.2087701385760368, decrease = 2.6307380163181904e-09
PARAFAC2 reconstruction error=0.8189085662328163, variation=1.161669982430169e-09.
Starting iteration 1567
reconstruction error=0.20877013522774326
iteration 1, reconstruction error: 0.20877013258659374, decrease = 2.6411495213096714e-09
iteration 2, reconstruction error: 0.20877012994956062, decrease = 2.637033119645693e-09
iteration 3, reconstruction error: 0.20877012731660455, decrease = 2.6329560753879377e-09
iteration 4, reconstruction error: 0.20877012468771242, decrease = 2.628892131761873e-09
PARAFAC2 reconstruction error=0.8189085650719686, variation=1.1608476402358292e-09.
Starting iteration 1568
reconstruction error=0.20877012134181752
iteration 1, reconstruction error: 0.20877011870253084, decrease = 2.639286678096653e-09
iteration 2, reconstruction error: 0.20877011606735982, decrease = 2.635171025833216e-09
iteration 3, reconstruction error: 0.20877011343625504, decrease = 2.6311047784943753e-09
iteration 4, reconstruction error: 0.2087701108092142, decrease = 2.6270408348683105e-09
PARAFAC2 reconstruction error=0.8189085639119427, variation=1.1600259641753041e-09.
Starting iteration 1569
reconstruction error=0.20877010746570795
iteration 1, reconstruction error: 0.2087701048282857, decrease = 2.6374222528158242e-09
iteration 2, reconstruction error: 0.20877010219497674, decrease = 2.633308959776315e-09
iteration 3, reconstruction error: 0.2087700995657217, decrease = 2.6292550359130473e-09
iteration 4, reconstruction error: 0.20877009694052676, decrease = 2.625194950311993e-09
PARAFAC2 reconstruction error=0.8189085627527378, variation=1.1592048432262914e-09.
Starting iteration 1570
reconstruction error=0.2087700935994092
iteration 1, reconstruction error: 0.2087700909638506, decrease = 2.635558604691113e-09
iteration 2, reconstruction error: 0.2087700883323945, decrease = 2.631456108570518e-09
iteration 3, reconstruction error: 0.20877008570499767, decrease = 2.6273968278811566e-09
iteration 4, reconstruction error: 0.20877008308164785, decrease = 2.6233498151562173e-09
PARAFAC2 reconstruction error=0.8189085615943533, variation=1.1583844994333958e-09.
Starting iteration 1571
reconstruction error=0.20877007974291276
iteration 1, reconstruction error: 0.20877007710921855, decrease = 2.6336942071658598e-09
iteration 2, reconstruction error: 0.20877007447961837, decrease = 2.6296001764958277e-09
iteration 3, reconstruction error: 0.20877007185406515, decrease = 2.6255532192820397e-09
iteration 4, reconstruction error: 0.20877006923255814, decrease = 2.6215070114687933e-09
PARAFAC2 reconstruction error=0.8189085604367883, variation=1.15756504381892e-09.
Starting iteration 1572
reconstruction error=0.2087700658962133
iteration 1, reconstruction error: 0.20877006326437658, decrease = 2.631836720778935e-09
iteration 2, reconstruction error: 0.20877006063662845, decrease = 2.6277481302017236e-09
iteration 3, reconstruction error: 0.20877005801292192, decrease = 2.6237065298140294e-09
iteration 4, reconstruction error: 0.2087700553932577, decrease = 2.619664235536945e-09
PARAFAC2 reconstruction error=0.8189085592800418, variation=1.1567464763828639e-09.
Starting iteration 1573
reconstruction error=0.2087700520592931
iteration 1, reconstruction error: 0.20877004942931462, decrease = 2.6299784849914687e-09
iteration 2, reconstruction error: 0.20877004680341854, decrease = 2.6258960839076195e-09
iteration 3, reconstruction error: 0.20877004418156175, decrease = 2.6218567872327014e-09
iteration 4, reconstruction error: 0.2087700415637334, decrease = 2.617828342987849e-09
PARAFAC2 reconstruction error=0.8189085581241133, variation=1.15592846405832e-09.
Starting iteration 1574
reconstruction error=0.20877003823215065
iteration 1, reconstruction error: 0.20877003560402882, decrease = 2.6281218312718124e-09
iteration 2, reconstruction error: 0.20877003297998487, decrease = 2.6240439543467886e-09
iteration 3, reconstruction error: 0.20877003035996933, decrease = 2.620015537857512e-09
iteration 4, reconstruction error: 0.20877002774398148, decrease = 2.615987843013201e-09
PARAFAC2 reconstruction error=0.8189085569690023, variation=1.1551110068452886e-09.
Starting iteration 1575
reconstruction error=0.20877002441477585
iteration 1, reconstruction error: 0.20877002178851076, decrease = 2.6262650942854293e-09
iteration 2, reconstruction error: 0.20877001916631033, decrease = 2.6222004290143985e-09
iteration 3, reconstruction error: 0.20877001654813995, decrease = 2.6181703749461605e-09
iteration 4, reconstruction error: 0.20877001393398795, decrease = 2.6141520059752565e-09
PARAFAC2 reconstruction error=0.818908555814708, variation=1.1542943267883743e-09.
Starting iteration 1576
reconstruction error=0.20877001060716108
iteration 1, reconstruction error: 0.20877000798274573, decrease = 2.6244153517041013e-09
iteration 2, reconstruction error: 0.2087700053623966, decrease = 2.620349132120836e-09
iteration 3, reconstruction error: 0.2087700027460644, decrease = 2.616332206439864e-09
iteration 4, reconstruction error: 0.20877000013374902, decrease = 2.612315364025619e-09
PARAFAC2 reconstruction error=0.8189085546612294, variation=1.1534786459321822e-09.
Starting iteration 1577
reconstruction error=0.20876999680929323
iteration 1, reconstruction error: 0.2087699941867284, decrease = 2.622564831966656e-09
iteration 2, reconstruction error: 0.20876999156822595, decrease = 2.618502442652826e-09
iteration 3, reconstruction error: 0.20876998895373267, decrease = 2.6144932885330263e-09
iteration 4, reconstruction error: 0.20876998634325167, decrease = 2.6104809980331822e-09
PARAFAC2 reconstruction error=0.8189085535085656, variation=1.1526637422321073e-09.
Starting iteration 1578
reconstruction error=0.20876998302116384
iteration 1, reconstruction error: 0.2087699804004534, decrease = 2.6207104542042003e-09
iteration 2, reconstruction error: 0.2087699777837899, decrease = 2.6166634969904123e-09
iteration 3, reconstruction error: 0.2087699751711371, decrease = 2.6126527885583783e-09
iteration 4, reconstruction error: 0.208769972562485, decrease = 2.6086520998891416e-09
PARAFAC2 reconstruction error=0.8189085523567166, variation=1.1518490605766374e-09.
Starting iteration 1579
reconstruction error=0.20876996924276986
iteration 1, reconstruction error: 0.20876996662390299, decrease = 2.618866873360659e-09
iteration 2, reconstruction error: 0.20876996400908537, decrease = 2.614817612434095e-09
iteration 3, reconstruction error: 0.20876996139826617, decrease = 2.6108191997220587e-09
iteration 4, reconstruction error: 0.20876995879144533, decrease = 2.6068208425211736e-09
PARAFAC2 reconstruction error=0.8189085512056808, variation=1.151035711188797e-09.
Starting iteration 1580
reconstruction error=0.2087699554740989
iteration 1, reconstruction error: 0.20876995285707867, decrease = 2.6170202394038e-09
iteration 2, reconstruction error: 0.20876995024409928, decrease = 2.6129793884166475e-09
iteration 3, reconstruction error: 0.20876994763512055, decrease = 2.6089787275029863e-09
iteration 4, reconstruction error: 0.20876994503012014, decrease = 2.6050004098276958e-09
PARAFAC2 reconstruction error=0.8189085500554584, variation=1.150222472823259e-09.
Starting iteration 1581
reconstruction error=0.20876994171514024
iteration 1, reconstruction error: 0.2087699390999667, decrease = 2.6151735499357898e-09
iteration 2, reconstruction error: 0.20876993648882625, decrease = 2.611140442754234e-09
iteration 3, reconstruction error: 0.2087699338816757, decrease = 2.6071505510039117e-09
iteration 4, reconstruction error: 0.20876993127850804, decrease = 2.6031676536586446e-09
PARAFAC2 reconstruction error=0.8189085489060477, variation=1.1494106777476532e-09.
Starting iteration 1582
reconstruction error=0.20876992796589086
iteration 1, reconstruction error: 0.2087699253525578, decrease = 2.613333049961142e-09
iteration 2, reconstruction error: 0.2087699227432532, decrease = 2.6093046057162894e-09
iteration 3, reconstruction error: 0.2087699201379331, decrease = 2.6053200985476366e-09
iteration 4, reconstruction error: 0.20876991753659363, decrease = 2.60133947715957e-09
PARAFAC2 reconstruction error=0.8189085477574487, variation=1.1485989936943497e-09.
Starting iteration 1583
reconstruction error=0.2087699142263352
iteration 1, reconstruction error: 0.2087699116148442, decrease = 2.6114909956742594e-09
iteration 2, reconstruction error: 0.20876990900737472, decrease = 2.607469490323311e-09
iteration 3, reconstruction error: 0.20876990640388815, decrease = 2.603486565222468e-09
iteration 4, reconstruction error: 0.20876990380436758, decrease = 2.599520571022751e-09
PARAFAC2 reconstruction error=0.8189085466096602, variation=1.1477885308863733e-09.
Starting iteration 1584
reconstruction error=0.20876990049646954
iteration 1, reconstruction error: 0.20876989788681746, decrease = 2.6096520777674215e-09
iteration 2, reconstruction error: 0.20876989528118306, decrease = 2.605634402685908e-09
iteration 3, reconstruction error: 0.20876989267951926, decrease = 2.6016638010606385e-09
iteration 4, reconstruction error: 0.20876989008182453, decrease = 2.597694725992028e-09
PARAFAC2 reconstruction error=0.8189085454626819, variation=1.146978290123002e-09.
Starting iteration 1585
reconstruction error=0.20876988677628078
iteration 1, reconstruction error: 0.20876988416846612, decrease = 2.607814658661667e-09
iteration 2, reconstruction error: 0.208769881564663, decrease = 2.6038031175623644e-09
iteration 3, reconstruction error: 0.20876987896482965, decrease = 2.5998333486043634e-09
iteration 4, reconstruction error: 0.20876987636895303, decrease = 2.595876624766902e-09
PARAFAC2 reconstruction error=0.8189085443165124, variation=1.1461694926495625e-09.
Starting iteration 1586
reconstruction error=0.2087698730657666
iteration 1, reconstruction error: 0.20876987045978632, decrease = 2.60598029266923e-09
iteration 2, reconstruction error: 0.2087698678578167, decrease = 2.6019696119927715e-09
iteration 3, reconstruction error: 0.2087698652598023, decrease = 2.598014414711969e-09
iteration 4, reconstruction error: 0.20876986266574687, decrease = 2.5940554149173067e-09
PARAFAC2 reconstruction error=0.8189085431711517, variation=1.145360695176123e-09.
Starting iteration 1587
reconstruction error=0.20876985936491083
iteration 1, reconstruction error: 0.20876985676077023, decrease = 2.604140597606275e-09
iteration 2, reconstruction error: 0.20876985416062646, decrease = 2.6001437669620486e-09
iteration 3, reconstruction error: 0.20876985156443634, decrease = 2.5961901239934804e-09
iteration 4, reconstruction error: 0.20876984897219675, decrease = 2.592239589649381e-09
PARAFAC2 reconstruction error=0.8189085420265986, variation=1.1445531189480107e-09.
Starting iteration 1588
reconstruction error=0.20876984567370804
iteration 1, reconstruction error: 0.208769843071401, decrease = 2.6023070365255307e-09
iteration 2, reconstruction error: 0.2087698404730823, decrease = 2.598318699087443e-09
iteration 3, reconstruction error: 0.2087698378787165, decrease = 2.5943658055194163e-09
iteration 4, reconstruction error: 0.20876983528829274, decrease = 2.5904237643814554e-09
PARAFAC2 reconstruction error=0.8189085408828529, variation=1.1437456537422008e-09.
Starting iteration 1589
reconstruction error=0.2087698319921522
iteration 1, reconstruction error: 0.20876982939167565, decrease = 2.60047655631368e-09
iteration 2, reconstruction error: 0.2087698267951851, decrease = 2.596490550343944e-09
iteration 3, reconstruction error: 0.20876982420263665, decrease = 2.5925484536948318e-09
iteration 4, reconstruction error: 0.2087698216140256, decrease = 2.5886110477379987e-09
PARAFAC2 reconstruction error=0.8189085397399133, variation=1.142939631826323e-09.
Starting iteration 1590
reconstruction error=0.20876981832023472
iteration 1, reconstruction error: 0.2087698157215848, decrease = 2.59864993412684e-09
iteration 2, reconstruction error: 0.2087698131269193, decrease = 2.5946654824693383e-09
iteration 3, reconstruction error: 0.20876981053619206, decrease = 2.5907272438452367e-09
iteration 4, reconstruction error: 0.20876980794939143, decrease = 2.586800634807318e-09
PARAFAC2 reconstruction error=0.8189085385977795, variation=1.14213383195505e-09.
Starting iteration 1591
reconstruction error=0.20876980465794254
iteration 1, reconstruction error: 0.20876980206112306, decrease = 2.5968194816705648e-09
iteration 2, reconstruction error: 0.2087697994682788, decrease = 2.5928442448641675e-09
iteration 3, reconstruction error: 0.20876979687936506, decrease = 2.5889137500456627e-09
iteration 4, reconstruction error: 0.20876979429437637, decrease = 2.5849886953199785e-09
PARAFAC2 reconstruction error=0.8189085374564504, variation=1.1413290312844993e-09.
Starting iteration 1592
reconstruction error=0.20876979100527107
iteration 1, reconstruction error: 0.20876978841027669, decrease = 2.5949943860403835e-09
iteration 2, reconstruction error: 0.2087697858192521, decrease = 2.591024589326807e-09
iteration 3, reconstruction error: 0.20876978323215414, decrease = 2.5870979525333127e-09
iteration 4, reconstruction error: 0.20876978064897433, decrease = 2.5831798089459568e-09
PARAFAC2 reconstruction error=0.8189085363159253, variation=1.1405251187923682e-09.
Starting iteration 1593
reconstruction error=0.20876977736220576
iteration 1, reconstruction error: 0.2087697747690364, decrease = 2.5931693459213534e-09
iteration 2, reconstruction error: 0.2087697721798315, decrease = 2.5892049060338707e-09
iteration 3, reconstruction error: 0.2087697695945463, decrease = 2.5852852081342803e-09
iteration 4, reconstruction error: 0.20876976701317304, decrease = 2.5813732540402867e-09
PARAFAC2 reconstruction error=0.8189085351762038, variation=1.1397215393671445e-09.
Starting iteration 1594
reconstruction error=0.2087697637287441
iteration 1, reconstruction error: 0.20876976113739829, decrease = 2.5913458046034066e-09
iteration 2, reconstruction error: 0.20876975855000998, decrease = 2.5873883036098277e-09
iteration 3, reconstruction error: 0.2087697559665344, decrease = 2.583475572359717e-09
iteration 4, reconstruction error: 0.20876975338697004, decrease = 2.579564367666265e-09
PARAFAC2 reconstruction error=0.818908534037285, variation=1.138918737098038e-09.
Starting iteration 1595
reconstruction error=0.20876975010487392
iteration 1, reconstruction error: 0.20876974751535166, decrease = 2.5895222632854598e-09
iteration 2, reconstruction error: 0.20876974492977915, decrease = 2.5855725060974777e-09
iteration 3, reconstruction error: 0.20876974234811554, decrease = 2.581663605116802e-09
iteration 4, reconstruction error: 0.20876973977035002, decrease = 2.577765528810616e-09
PARAFAC2 reconstruction error=0.8189085328991683, variation=1.1381167119850488e-09.
Starting iteration 1596
reconstruction error=0.20876973649059063
iteration 1, reconstruction error: 0.20876973390288492, decrease = 2.587705716372568e-09
iteration 2, reconstruction error: 0.2087697313191267, decrease = 2.583758207386211e-09
iteration 3, reconstruction error: 0.20876972873927274, decrease = 2.5798539693422384e-09
iteration 4, reconstruction error: 0.2087697261633107, decrease = 2.5759620547738393e-09
PARAFAC2 reconstruction error=0.8189085317618529, variation=1.1373154640281768e-09.
Starting iteration 1597
reconstruction error=0.20876972288588258
iteration 1, reconstruction error: 0.2087697202999958, decrease = 2.5858867824801735e-09
iteration 2, reconstruction error: 0.2087697177180503, decrease = 2.581945490742754e-09
iteration 3, reconstruction error: 0.20876971514000212, decrease = 2.5780481915926856e-09
iteration 4, reconstruction error: 0.20876971256584198, decrease = 2.574160135049297e-09
PARAFAC2 reconstruction error=0.8189085306253375, variation=1.1365153262943295e-09.
Starting iteration 1598
reconstruction error=0.20876970929073907
iteration 1, reconstruction error: 0.20876970670666886, decrease = 2.584070207811706e-09
iteration 2, reconstruction error: 0.20876970412653456, decrease = 2.5801343006559563e-09
iteration 3, reconstruction error: 0.20876970155028832, decrease = 2.5762462441125678e-09
iteration 4, reconstruction error: 0.2087696989779332, decrease = 2.572355106700286e-09
PARAFAC2 reconstruction error=0.8189085294896226, variation=1.1357149665158772e-09.
Starting iteration 1599
reconstruction error=0.20876969570515852
iteration 1, reconstruction error: 0.20876969312290106, decrease = 2.582257463412674e-09
iteration 2, reconstruction error: 0.20876969054457561, decrease = 2.57832544203751e-09
iteration 3, reconstruction error: 0.20876968797013745, decrease = 2.574438162650239e-09
iteration 4, reconstruction error: 0.2087696853995735, decrease = 2.5705639561390825e-09
PARAFAC2 reconstruction error=0.8189085283547064, variation=1.1349161610496594e-09.
Starting iteration 1600
reconstruction error=0.2087696821291217
iteration 1, reconstruction error: 0.20876967954868544, decrease = 2.5804362535630787e-09
iteration 2, reconstruction error: 0.20876967697216503, decrease = 2.576520413688499e-09
iteration 3, reconstruction error: 0.20876967439952648, decrease = 2.5726385466384727e-09
iteration 4, reconstruction error: 0.20876967183076137, decrease = 2.5687651172834336e-09
PARAFAC2 reconstruction error=0.8189085272205888, variation=1.1341175776280465e-09.
Starting iteration 1601
reconstruction error=0.208769668562634
iteration 1, reconstruction error: 0.2087696659840012, decrease = 2.578632779526302e-09
iteration 2, reconstruction error: 0.20876966340929273, decrease = 2.5747084742011594e-09
iteration 3, reconstruction error: 0.20876966083845153, decrease = 2.570841206583907e-09
iteration 4, reconstruction error: 0.20876965827147986, decrease = 2.566971663009454e-09
PARAFAC2 reconstruction error=0.8189085260872688, variation=1.1333199934071558e-09.
Starting iteration 1602
reconstruction error=0.20876965500567618
iteration 1, reconstruction error: 0.2087696524288546, decrease = 2.576821589439504e-09
iteration 2, reconstruction error: 0.20876964985594731, decrease = 2.5729072761215832e-09
iteration 3, reconstruction error: 0.208769647286908, decrease = 2.5690393146149404e-09
iteration 4, reconstruction error: 0.20876964472173054, decrease = 2.565177459334933e-09
PARAFAC2 reconstruction error=0.8189085249547456, variation=1.1325231863423824e-09.
Starting iteration 1603
reconstruction error=0.20876964145823512
iteration 1, reconstruction error: 0.20876963888322936, decrease = 2.5750057641715784e-09
iteration 2, reconstruction error: 0.20876963631212248, decrease = 2.5711068829537e-09
iteration 3, reconstruction error: 0.20876963374487892, decrease = 2.567243556628185e-09
iteration 4, reconstruction error: 0.2087696311814949, decrease = 2.5633840050609535e-09
PARAFAC2 reconstruction error=0.8189085238230188, variation=1.1317268233668187e-09.
Starting iteration 1604
reconstruction error=0.20876962792032017
iteration 1, reconstruction error: 0.20876962534711557, decrease = 2.573204593847578e-09
iteration 2, reconstruction error: 0.20876962277781136, decrease = 2.569304213828616e-09
iteration 3, reconstruction error: 0.20876962021236128, decrease = 2.5654500745986297e-09
iteration 4, reconstruction error: 0.20876961765076377, decrease = 2.5615975174364536e-09
PARAFAC2 reconstruction error=0.8189085226920874, variation=1.1309314595919773e-09.
Starting iteration 1605
reconstruction error=0.20876961439190736
iteration 1, reconstruction error: 0.20876961182050777, decrease = 2.5713995932541422e-09
iteration 2, reconstruction error: 0.2087696092530024, decrease = 2.567505374972967e-09
iteration 3, reconstruction error: 0.20876960668935118, decrease = 2.563651207987405e-09
iteration 4, reconstruction error: 0.20876960412954093, decrease = 2.5598102526558364e-09
PARAFAC2 reconstruction error=0.818908521561951, variation=1.1301363178617407e-09.
Starting iteration 1606
reconstruction error=0.2087696008729928
iteration 1, reconstruction error: 0.20876959830340056, decrease = 2.5695922334367793e-09
iteration 2, reconstruction error: 0.20876959573769327, decrease = 2.5657072855178598e-09
iteration 3, reconstruction error: 0.20876959317583163, decrease = 2.561861639494012e-09
iteration 4, reconstruction error: 0.20876959061780945, decrease = 2.5580221829635263e-09
PARAFAC2 reconstruction error=0.8189085204326089, variation=1.1293421753322264e-09.
Starting iteration 1607
reconstruction error=0.2087695873635713
iteration 1, reconstruction error: 0.20876958479578095, decrease = 2.5677903414678127e-09
iteration 2, reconstruction error: 0.2087695822318656, decrease = 2.563915357800539e-09
iteration 3, reconstruction error: 0.20876957967179738, decrease = 2.560068212975608e-09
iteration 4, reconstruction error: 0.20876957711555708, decrease = 2.5562403027645786e-09
PARAFAC2 reconstruction error=0.8189085193040596, variation=1.128549254048039e-09.
Starting iteration 1608
reconstruction error=0.20876957386362954
iteration 1, reconstruction error: 0.20876957129763346, decrease = 2.5659960822821404e-09
iteration 2, reconstruction error: 0.20876956873552155, decrease = 2.562111911519338e-09
iteration 3, reconstruction error: 0.20876956617723755, decrease = 2.5582840013083086e-09
iteration 4, reconstruction error: 0.2087695636227853, decrease = 2.554452260827844e-09
PARAFAC2 reconstruction error=0.8189085181763033, variation=1.1277563327638518e-09.
Starting iteration 1609
reconstruction error=0.2087695603731608
iteration 1, reconstruction error: 0.20876955780896359, decrease = 2.564197215670916e-09
iteration 2, reconstruction error: 0.20876955524864202, decrease = 2.5603215658698275e-09
iteration 3, reconstruction error: 0.2087695526921507, decrease = 2.5564913241904463e-09
iteration 4, reconstruction error: 0.208769550139478, decrease = 2.5526726843416725e-09
PARAFAC2 reconstruction error=0.8189085170493389, variation=1.1269644106803867e-09.
Starting iteration 1610
reconstruction error=0.20876954689215801
iteration 1, reconstruction error: 0.2087695443297604, decrease = 2.5623976274147253e-09
iteration 2, reconstruction error: 0.20876954177122845, decrease = 2.558531941865283e-09
iteration 3, reconstruction error: 0.20876953921652286, decrease = 2.554705585966488e-09
iteration 4, reconstruction error: 0.20876953666562895, decrease = 2.5508939127671937e-09
PARAFAC2 reconstruction error=0.8189085159231659, variation=1.1261729326861314e-09.
Starting iteration 1611
reconstruction error=0.20876953342060886
iteration 1, reconstruction error: 0.20876953086001007, decrease = 2.5605987885590764e-09
iteration 2, reconstruction error: 0.2087695283032662, decrease = 2.556743872172973e-09
iteration 3, reconstruction error: 0.20876952575034402, decrease = 2.5529221792108814e-09
iteration 4, reconstruction error: 0.2087695232012312, decrease = 2.549112809724363e-09
PARAFAC2 reconstruction error=0.8189085147977829, variation=1.1253830090041106e-09.
Starting iteration 1612
reconstruction error=0.20876951995850732
iteration 1, reconstruction error: 0.2087695173996989, decrease = 2.5588084151539903e-09
iteration 2, reconstruction error: 0.20876951484474845, decrease = 2.554950445654569e-09
iteration 3, reconstruction error: 0.20876951229360816, decrease = 2.5511402990119336e-09
iteration 4, reconstruction error: 0.20876950974627337, decrease = 2.547334787550426e-09
PARAFAC2 reconstruction error=0.8189085136731903, variation=1.12459264123288e-09.
Starting iteration 1613
reconstruction error=0.20876950650584705
iteration 1, reconstruction error: 0.2087695039488321, decrease = 2.5570149608800108e-09
iteration 2, reconstruction error: 0.20876950139566894, decrease = 2.5531631531183763e-09
iteration 3, reconstruction error: 0.20876949884630666, decrease = 2.5493622768379964e-09
iteration 4, reconstruction error: 0.20876949630074526, decrease = 2.5455614005576166e-09
PARAFAC2 reconstruction error=0.8189085125493865, variation=1.1238038277738838e-09.
Starting iteration 1614
reconstruction error=0.20876949306261666
iteration 1, reconstruction error: 0.20876949050739207, decrease = 2.5552245874749246e-09
iteration 2, reconstruction error: 0.2087694879560123, decrease = 2.5513797741183453e-09
iteration 3, reconstruction error: 0.2087694854084327, decrease = 2.547579591727356e-09
iteration 4, reconstruction error: 0.20876948286464547, decrease = 2.54378723640869e-09
PARAFAC2 reconstruction error=0.8189085114263712, variation=1.1230152363594925e-09.
Starting iteration 1615
reconstruction error=0.20876947962880688
iteration 1, reconstruction error: 0.2087694770753765, decrease = 2.5534303838004035e-09
iteration 2, reconstruction error: 0.20876947452577785, decrease = 2.549598643319939e-09
iteration 3, reconstruction error: 0.20876947197997395, decrease = 2.5458039010217703e-09
iteration 4, reconstruction error: 0.20876946943796168, decrease = 2.5420122673480705e-09
PARAFAC2 reconstruction error=0.8189085103041436, variation=1.1222276441458234e-09.
Starting iteration 1616
reconstruction error=0.20876946620441303
iteration 1, reconstruction error: 0.20876946365276605, decrease = 2.551646977044797e-09
iteration 2, reconstruction error: 0.20876946110495237, decrease = 2.547813682252098e-09
iteration 3, reconstruction error: 0.20876945856092494, decrease = 2.5440274331600676e-09
iteration 4, reconstruction error: 0.20876945602068606, decrease = 2.540238880355261e-09
PARAFAC2 reconstruction error=0.818908509182703, variation=1.1214406070436667e-09.
Starting iteration 1617
reconstruction error=0.20876945278942516
iteration 1, reconstruction error: 0.20876945023956625, decrease = 2.549858907352487e-09
iteration 2, reconstruction error: 0.20876944769352984, decrease = 2.5460364094787025e-09
iteration 3, reconstruction error: 0.2087694451512781, decrease = 2.542251742454482e-09
iteration 4, reconstruction error: 0.20876944261280334, decrease = 2.5384747637247074e-09
PARAFAC2 reconstruction error=0.8189085080620485, variation=1.1206544581199296e-09.
Starting iteration 1618
reconstruction error=0.20876943938383244
iteration 1, reconstruction error: 0.20876943683575389, decrease = 2.548078553710198e-09
iteration 2, reconstruction error: 0.20876943429150166, decrease = 2.5442522255669786e-09
iteration 3, reconstruction error: 0.20876943175102256, decrease = 2.5404791048622144e-09
iteration 4, reconstruction error: 0.20876942921431427, decrease = 2.5367082878702263e-09
PARAFAC2 reconstruction error=0.8189085069421798, variation=1.1198687532854024e-09.
Starting iteration 1619
reconstruction error=0.20876942598762957
iteration 1, reconstruction error: 0.20876942344133287, decrease = 2.546296701266826e-09
iteration 2, reconstruction error: 0.20876942089885714, decrease = 2.5424757299497003e-09
iteration 3, reconstruction error: 0.20876941836015142, decrease = 2.538705717869405e-09
iteration 4, reconstruction error: 0.20876941582521344, decrease = 2.5349379817463102e-09
PARAFAC2 reconstruction error=0.8189085058230959, variation=1.1190838256069924e-09.
Starting iteration 1620
reconstruction error=0.20876941260080492
iteration 1, reconstruction error: 0.20876941005629243, decrease = 2.5445124895995264e-09
iteration 2, reconstruction error: 0.2087694075155901, decrease = 2.540702342956891e-09
iteration 3, reconstruction error: 0.2087694049786539, decrease = 2.5369361889016062e-09
iteration 4, reconstruction error: 0.20876940244547543, decrease = 2.5331784725413087e-09
PARAFAC2 reconstruction error=0.8189085047047961, variation=1.118299786107002e-09.
Starting iteration 1621
reconstruction error=0.2087693992233539
iteration 1, reconstruction error: 0.2087693966806233, decrease = 2.5427306094005786e-09
iteration 2, reconstruction error: 0.2087693941416897, decrease = 2.5389335911452093e-09
iteration 3, reconstruction error: 0.20876939160652386, decrease = 2.5351658550221146e-09
iteration 4, reconstruction error: 0.20876938907510953, decrease = 2.5314143281551793e-09
PARAFAC2 reconstruction error=0.8189085035872798, variation=1.1175163017185241e-09.
Starting iteration 1622
reconstruction error=0.2087693858552658
iteration 1, reconstruction error: 0.20876938331431089, decrease = 2.540954918694993e-09
iteration 2, reconstruction error: 0.20876938077715376, decrease = 2.5371571232835066e-09
iteration 3, reconstruction error: 0.20876937824375283, decrease = 2.533400933479868e-09
iteration 4, reconstruction error: 0.2087693757140988, decrease = 2.5296540417940605e-09
PARAFAC2 reconstruction error=0.8189085024705464, variation=1.116733483463861e-09.
Starting iteration 1623
reconstruction error=0.20876937249653207
iteration 1, reconstruction error: 0.20876936995735132, decrease = 2.5391807545460665e-09
iteration 2, reconstruction error: 0.2087693674219676, decrease = 2.5353837085351216e-09
iteration 3, reconstruction error: 0.2087693648903308, decrease = 2.531636816849314e-09
iteration 4, reconstruction error: 0.20876936236243934, decrease = 2.5278914517201656e-09
PARAFAC2 reconstruction error=0.8189085013545949, variation=1.115951442365315e-09.
Starting iteration 1624
reconstruction error=0.2087693591471427
iteration 1, reconstruction error: 0.20876935660974, decrease = 2.5374027046165537e-09
iteration 2, reconstruction error: 0.20876935407612504, decrease = 2.53361495672344e-09
iteration 3, reconstruction error: 0.20876935154625081, decrease = 2.5298742267754193e-09
iteration 4, reconstruction error: 0.20876934902012043, decrease = 2.5261303882029296e-09
PARAFAC2 reconstruction error=0.8189085002394247, variation=1.1151701784228862e-09.
Starting iteration 1625
reconstruction error=0.20876934580709464
iteration 1, reconstruction error: 0.20876934327146454, decrease = 2.5356300947798616e-09
iteration 2, reconstruction error: 0.20876934073961376, decrease = 2.531850784581735e-09
iteration 3, reconstruction error: 0.20876933821150445, decrease = 2.5281093052331727e-09
iteration 4, reconstruction error: 0.20876933568712894, decrease = 2.524375514179056e-09
PARAFAC2 reconstruction error=0.8189084991250353, variation=1.1143894695919698e-09.
Starting iteration 1626
reconstruction error=0.20876933247637713
iteration 1, reconstruction error: 0.20876932994251812, decrease = 2.5338590114998283e-09
iteration 2, reconstruction error: 0.208769327412433, decrease = 2.530085113638947e-09
iteration 3, reconstruction error: 0.20876932488608477, decrease = 2.5263482417159366e-09
iteration 4, reconstruction error: 0.20876932236346102, decrease = 2.522623748779651e-09
PARAFAC2 reconstruction error=0.8189084980114257, variation=1.1136095379171707e-09.
Starting iteration 1627
reconstruction error=0.20876931915497707
iteration 1, reconstruction error: 0.2087693166228876, decrease = 2.532089454776454e-09
iteration 2, reconstruction error: 0.20876931409456972, decrease = 2.528317888383924e-09
iteration 3, reconstruction error: 0.20876931156998021, decrease = 2.5245895096670523e-09
iteration 4, reconstruction error: 0.20876930904911445, decrease = 2.5208657661313083e-09
PARAFAC2 reconstruction error=0.8189084968985957, variation=1.1128300503315813e-09.
Starting iteration 1628
reconstruction error=0.20876930584289216
iteration 1, reconstruction error: 0.20876930331257376, decrease = 2.530318399251996e-09
iteration 2, reconstruction error: 0.20876930078601613, decrease = 2.526557629778381e-09
iteration 3, reconstruction error: 0.20876929826318308, decrease = 2.5228330535753685e-09
iteration 4, reconstruction error: 0.20876929574406755, decrease = 2.5191155272885624e-09
PARAFAC2 reconstruction error=0.8189084957865439, variation=1.112051783991319e-09.
Starting iteration 1629
reconstruction error=0.2087692925401085
iteration 1, reconstruction error: 0.20876929001155814, decrease = 2.5285503690852806e-09
iteration 2, reconstruction error: 0.20876928748676388, decrease = 2.524794262548369e-09
iteration 3, reconstruction error: 0.20876928496568722, decrease = 2.521076652994836e-09
iteration 4, reconstruction error: 0.20876928244832274, decrease = 2.5173644835341236e-09
PARAFAC2 reconstruction error=0.8189084946752699, variation=1.1112739617402667e-09.
Starting iteration 1630
reconstruction error=0.20876927924662464
iteration 1, reconstruction error: 0.2087692767198415, decrease = 2.526783143830258e-09
iteration 2, reconstruction error: 0.208769274196806, decrease = 2.523035502743909e-09
iteration 3, reconstruction error: 0.20876927167748346, decrease = 2.5193225283715037e-09
iteration 4, reconstruction error: 0.20876926916186536, decrease = 2.515618102716388e-09
PARAFAC2 reconstruction error=0.8189084935647734, variation=1.1104965835784242e-09.
Starting iteration 1631
reconstruction error=0.2087692659624328
iteration 1, reconstruction error: 0.20876926343740684, decrease = 2.525025966093608e-09
iteration 2, reconstruction error: 0.20876926091613238, decrease = 2.5212744669822484e-09
iteration 3, reconstruction error: 0.20876925839856242, decrease = 2.517569958060406e-09
iteration 4, reconstruction error: 0.20876925588469303, decrease = 2.513869390430301e-09
PARAFAC2 reconstruction error=0.818908492455053, variation=1.1097203156396063e-09.
Starting iteration 1632
reconstruction error=0.20876925268751376
iteration 1, reconstruction error: 0.2087692501642527, decrease = 2.5232610445513615e-09
iteration 2, reconstruction error: 0.20876924764473237, decrease = 2.5195203423589163e-09
iteration 3, reconstruction error: 0.20876924512891729, decrease = 2.5158150840365323e-09
iteration 4, reconstruction error: 0.20876924261679122, decrease = 2.5121260627258835e-09
PARAFAC2 reconstruction error=0.8189084913461085, variation=1.1089444917899982e-09.
Starting iteration 1633
reconstruction error=0.2087692394218668
iteration 1, reconstruction error: 0.2087692369003691, decrease = 2.5214976773213493e-09
iteration 2, reconstruction error: 0.2087692343826029, decrease = 2.517766217735584e-09
iteration 3, reconstruction error: 0.2087692318685373, decrease = 2.514065594594328e-09
iteration 4, reconstruction error: 0.20876922935815764, decrease = 2.5103796541525725e-09
PARAFAC2 reconstruction error=0.8189084902379392, variation=1.108169334074205e-09.
Starting iteration 1634
reconstruction error=0.20876922616549112
iteration 1, reconstruction error: 0.20876922364574754, decrease = 2.519743580453593e-09
iteration 2, reconstruction error: 0.2087692211297339, decrease = 2.5160136474244865e-09
iteration 3, reconstruction error: 0.20876921861741082, decrease = 2.512323071801603e-09
iteration 4, reconstruction error: 0.20876921610877755, decrease = 2.508633273334837e-09
PARAFAC2 reconstruction error=0.8189084891305441, variation=1.1073950645368313e-09.
Starting iteration 1635
reconstruction error=0.2087692129183643
iteration 1, reconstruction error: 0.20876921040037794, decrease = 2.5179863749613673e-09
iteration 2, reconstruction error: 0.20876920788611764, decrease = 2.5142602999572716e-09
iteration 3, reconstruction error: 0.2087692053755456, decrease = 2.5105720280471644e-09
iteration 4, reconstruction error: 0.2087692028686518, decrease = 2.50689380365543e-09
PARAFAC2 reconstruction error=0.8189084880239227, variation=1.1066214611332725e-09.
Starting iteration 1636
reconstruction error=0.20876919968048344
iteration 1, reconstruction error: 0.2087691971642558, decrease = 2.516227642912483e-09
iteration 2, reconstruction error: 0.20876919465174576, decrease = 2.51251003335895e-09
iteration 3, reconstruction error: 0.208769192142917, decrease = 2.508828755853898e-09
iteration 4, reconstruction error: 0.2087691896377596, decrease = 2.5051574148449163e-09
PARAFAC2 reconstruction error=0.8189084869180746, variation=1.1058480797743186e-09.
Starting iteration 1637
reconstruction error=0.20876918645184073
iteration 1, reconstruction error: 0.2087691839373641, decrease = 2.51447662691362e-09
iteration 2, reconstruction error: 0.20876918142660586, decrease = 2.5107582402039696e-09
iteration 3, reconstruction error: 0.20876917891951965, decrease = 2.5070862053055976e-09
iteration 4, reconstruction error: 0.208769176416104, decrease = 2.503415641452733e-09
PARAFAC2 reconstruction error=0.8189084858129984, variation=1.1050762527275992e-09.
Starting iteration 1638
reconstruction error=0.20876917323242924
iteration 1, reconstruction error: 0.2087691707197052, decrease = 2.512724056602522e-09
iteration 2, reconstruction error: 0.20876916821069258, decrease = 2.509012608786776e-09
iteration 3, reconstruction error: 0.20876916570535126, decrease = 2.5053413232889454e-09
iteration 4, reconstruction error: 0.20876916320366734, decrease = 2.5016839155789228e-09
PARAFAC2 reconstruction error=0.818908484708694, variation=1.1043043146585774e-09.
Starting iteration 1639
reconstruction error=0.208769160022239
iteration 1, reconstruction error: 0.20876915751126757, decrease = 2.5109714307802733e-09
iteration 2, reconstruction error: 0.20876915500400056, decrease = 2.5072670051251578e-09
iteration 3, reconstruction error: 0.2087691525003956, decrease = 2.5036049622340073e-09
iteration 4, reconstruction error: 0.2087691500004504, decrease = 2.4999451953000573e-09
PARAFAC2 reconstruction error=0.8189084836051602, variation=1.1035338198794875e-09.
Starting iteration 1640
reconstruction error=0.20876914682126232
iteration 1, reconstruction error: 0.20876914431203805, decrease = 2.5092242728064207e-09
iteration 2, reconstruction error: 0.20876914180651898, decrease = 2.505519069995188e-09
iteration 3, reconstruction error: 0.20876913930465274, decrease = 2.501866241955142e-09
iteration 4, reconstruction error: 0.20876913680643924, decrease = 2.4982134971818226e-09
PARAFAC2 reconstruction error=0.818908482502397, variation=1.1027632140780952e-09.
Starting iteration 1641
reconstruction error=0.20876913362949148
iteration 1, reconstruction error: 0.20876913112201897, decrease = 2.507472507407016e-09
iteration 2, reconstruction error: 0.20876912861823788, decrease = 2.503781099116864e-09
iteration 3, reconstruction error: 0.2087691261181095, decrease = 2.5001283820991205e-09
iteration 4, reconstruction error: 0.20876912362163083, decrease = 2.4964786626835433e-09
PARAFAC2 reconstruction error=0.8189084814004032, variation=1.10199382952203e-09.
Starting iteration 1642
reconstruction error=0.20876912044691417
iteration 1, reconstruction error: 0.20876911794118735, decrease = 2.505726820478671e-09
iteration 2, reconstruction error: 0.20876911543915258, decrease = 2.50203477381028e-09
iteration 3, reconstruction error: 0.20876911294075753, decrease = 2.4983950464019244e-09
iteration 4, reconstruction error: 0.208769110446006, decrease = 2.4947515442352852e-09
PARAFAC2 reconstruction error=0.8189084802991783, variation=1.1012248890551746e-09.
Starting iteration 1643
reconstruction error=0.20876910727352888
iteration 1, reconstruction error: 0.20876910476954766, decrease = 2.5039812168170528e-09
iteration 2, reconstruction error: 0.20876910226924775, decrease = 2.500299911556425e-09
iteration 3, reconstruction error: 0.2087690997725906, decrease = 2.4966571587903275e-09
iteration 4, reconstruction error: 0.20876909727957083, decrease = 2.4930197628503237e-09
PARAFAC2 reconstruction error=0.8189084791987215, variation=1.1004568367667389e-09.
Starting iteration 1644
reconstruction error=0.20876909410932248
iteration 1, reconstruction error: 0.20876909160708612, decrease = 2.5022363625559763e-09
iteration 2, reconstruction error: 0.20876908910852182, decrease = 2.4985642999020286e-09
iteration 3, reconstruction error: 0.20876908661359872, decrease = 2.4949231014481654e-09
iteration 4, reconstruction error: 0.20876908412230452, decrease = 2.4912941987143e-09
PARAFAC2 reconstruction error=0.818908478099032, variation=1.099689450612118e-09.
Starting iteration 1645
reconstruction error=0.20876908095429111
iteration 1, reconstruction error: 0.20876907845379497, decrease = 2.5004961434760276e-09
iteration 2, reconstruction error: 0.2087690759569686, decrease = 2.4968263567792803e-09
iteration 3, reconstruction error: 0.2087690734637757, decrease = 2.493192902131014e-09
iteration 4, reconstruction error: 0.2087690709742086, decrease = 2.4895671080216175e-09
PARAFAC2 reconstruction error=0.8189084770001096, variation=1.0989223975244045e-09.
Starting iteration 1646
reconstruction error=0.2087690678084233
iteration 1, reconstruction error: 0.2087690653096643, decrease = 2.498759005264972e-09
iteration 2, reconstruction error: 0.20876906281457738, decrease = 2.495086914855449e-09
iteration 3, reconstruction error: 0.20876906032311163, decrease = 2.4914657559271802e-09
iteration 4, reconstruction error: 0.20876905783526623, decrease = 2.4878454019106044e-09
PARAFAC2 reconstruction error=0.818908475901953, variation=1.098156565682018e-09.
Starting iteration 1647
reconstruction error=0.20876905467171053
iteration 1, reconstruction error: 0.20876905217469177, decrease = 2.497018758429448e-09
iteration 2, reconstruction error: 0.20876904968133198, decrease = 2.4933597964071907e-09
iteration 3, reconstruction error: 0.20876904719159947, decrease = 2.489732503496711e-09
iteration 4, reconstruction error: 0.20876904470548044, decrease = 2.486119032862888e-09
PARAFAC2 reconstruction error=0.818908474804562, variation=1.097391066906539e-09.
Starting iteration 1648
reconstruction error=0.2087690415441428
iteration 1, reconstruction error: 0.20876903904886351, decrease = 2.4952792887500408e-09
iteration 2, reconstruction error: 0.20876903655724086, decrease = 2.4916226581961354e-09
iteration 3, reconstruction error: 0.2087690340692293, decrease = 2.4880115467862396e-09
iteration 4, reconstruction error: 0.20876903158483046, decrease = 2.4843988533085337e-09
PARAFAC2 reconstruction error=0.8189084737079355, variation=1.0966264563094796e-09.
Starting iteration 1649
reconstruction error=0.20876902842571937
iteration 1, reconstruction error: 0.20876902593217567, decrease = 2.49354370485122e-09
iteration 2, reconstruction error: 0.2087690234422786, decrease = 2.489897066304536e-09
iteration 3, reconstruction error: 0.2087690209559934, decrease = 2.4862852054940987e-09
iteration 4, reconstruction error: 0.2087690184733155, decrease = 2.4826778965980623e-09
PARAFAC2 reconstruction error=0.8189084726120732, variation=1.0958622898016301e-09.
Starting iteration 1650
reconstruction error=0.20876901531642705
iteration 1, reconstruction error: 0.20876901282461358, decrease = 2.491813477778493e-09
iteration 2, reconstruction error: 0.20876901033644593, decrease = 2.488167644143502e-09
iteration 3, reconstruction error: 0.20876900785188862, decrease = 2.4845573098897233e-09
iteration 4, reconstruction error: 0.20876900537092702, decrease = 2.4809616028242942e-09
PARAFAC2 reconstruction error=0.8189084715169741, variation=1.0950991224945028e-09.
Starting iteration 1651
reconstruction error=0.20876900221625444
iteration 1, reconstruction error: 0.20876899972617577, decrease = 2.490078671035789e-09
iteration 2, reconstruction error: 0.2087689972397368, decrease = 2.4864389713830093e-09
iteration 3, reconstruction error: 0.20876899475689967, decrease = 2.482837130335369e-09
iteration 4, reconstruction error: 0.20876899227765283, decrease = 2.479246835607185e-09
PARAFAC2 reconstruction error=0.8189084704226379, variation=1.0943361772319804e-09.
Starting iteration 1652
reconstruction error=0.20876898912520073
iteration 1, reconstruction error: 0.20876898663684842, decrease = 2.4883523019880727e-09
iteration 2, reconstruction error: 0.20876898415213888, decrease = 2.484709549221975e-09
iteration 3, reconstruction error: 0.20876898167102112, decrease = 2.4811177556927078e-09
iteration 4, reconstruction error: 0.20876897919348678, decrease = 2.4775343443472764e-09
PARAFAC2 reconstruction error=0.8189084693290634, variation=1.0935745642370875e-09.
Starting iteration 1653
reconstruction error=0.20876897604324812
iteration 1, reconstruction error: 0.20876897355662913, decrease = 2.4866189940464523e-09
iteration 2, reconstruction error: 0.20876897107364437, decrease = 2.4829847622420687e-09
iteration 3, reconstruction error: 0.20876896859424374, decrease = 2.4794006292516713e-09
iteration 4, reconstruction error: 0.20876896611842877, decrease = 2.475814969704615e-09
PARAFAC2 reconstruction error=0.8189084682362503, variation=1.0928130622644971e-09.
Starting iteration 1654
reconstruction error=0.20876896297040293
iteration 1, reconstruction error: 0.20876896048550872, decrease = 2.484894207066546e-09
iteration 2, reconstruction error: 0.20876895800424106, decrease = 2.4812676635566078e-09
iteration 3, reconstruction error: 0.20876895552656216, decrease = 2.4776788953850826e-09
iteration 4, reconstruction error: 0.20876895305245657, decrease = 2.4741055870691753e-09
PARAFAC2 reconstruction error=0.8189084671441978, variation=1.0920524484703265e-09.
Starting iteration 1655
reconstruction error=0.20876894990664344
iteration 1, reconstruction error: 0.20876894742347557, decrease = 2.483167865774405e-09
iteration 2, reconstruction error: 0.20876894494393272, decrease = 2.4795428488211257e-09
iteration 3, reconstruction error: 0.20876894246796548, decrease = 2.4759672367924423e-09
iteration 4, reconstruction error: 0.20876893999557158, decrease = 2.4723939007209594e-09
PARAFAC2 reconstruction error=0.8189084660529052, variation=1.091292611832273e-09.
Starting iteration 1656
reconstruction error=0.2087689368519659
iteration 1, reconstruction error: 0.20876893437052668, decrease = 2.481439220769488e-09
iteration 2, reconstruction error: 0.20876893189270015, decrease = 2.477826527291782e-09
iteration 3, reconstruction error: 0.2087689294184485, decrease = 2.4742516646636403e-09
iteration 4, reconstruction error: 0.20876892694776242, decrease = 2.470686072397754e-09
PARAFAC2 reconstruction error=0.818908464962372, variation=1.0905332192834294e-09.
Starting iteration 1657
reconstruction error=0.20876892380636108
iteration 1, reconstruction error: 0.20876892132664743, decrease = 2.4797136566334643e-09
iteration 2, reconstruction error: 0.20876891885053722, decrease = 2.4761102057624385e-09
iteration 3, reconstruction error: 0.20876891637799724, decrease = 2.4725399783154245e-09
iteration 4, reconstruction error: 0.2087689139090198, decrease = 2.468977439162856e-09
PARAFAC2 reconstruction error=0.8189084638725974, variation=1.089774603890703e-09.
Starting iteration 1658
reconstruction error=0.20876891076982507
iteration 1, reconstruction error: 0.20876890829182929, decrease = 2.477995780791886e-09
iteration 2, reconstruction error: 0.20876890581744004, decrease = 2.474389249051967e-09
iteration 3, reconstruction error: 0.20876890334661172, decrease = 2.4708283197227843e-09
iteration 4, reconstruction error: 0.2087689008793444, decrease = 2.4672673071268747e-09
PARAFAC2 reconstruction error=0.8189084627835808, variation=1.0890166546317914e-09.
Starting iteration 1659
reconstruction error=0.20876889774234944
iteration 1, reconstruction error: 0.20876889526607156, decrease = 2.4762778771947325e-09
iteration 2, reconstruction error: 0.2087688927933986, decrease = 2.472672955278199e-09
iteration 3, reconstruction error: 0.20876889032428048, decrease = 2.4691181321756517e-09
iteration 4, reconstruction error: 0.2087688878587148, decrease = 2.4655656682970317e-09
PARAFAC2 reconstruction error=0.818908461695321, variation=1.088259704573602e-09.
Starting iteration 1660
reconstruction error=0.20876888472392038
iteration 1, reconstruction error: 0.20876888224936266, decrease = 2.474557725395954e-09
iteration 2, reconstruction error: 0.20876887977840064, decrease = 2.4709620183305248e-09
iteration 3, reconstruction error: 0.20876887731099034, decrease = 2.4674103038524464e-09
iteration 4, reconstruction error: 0.20876887484712867, decrease = 2.4638616702432614e-09
PARAFAC2 reconstruction error=0.8189084606078181, variation=1.0875029765600175e-09.
Starting iteration 1661
reconstruction error=0.20876887171453629
iteration 1, reconstruction error: 0.20876886924169336, decrease = 2.472842930423269e-09
iteration 2, reconstruction error: 0.20876886677244225, decrease = 2.469251109138426e-09
iteration 3, reconstruction error: 0.20876886430674055, decrease = 2.465701698373124e-09
iteration 4, reconstruction error: 0.20876886184457902, decrease = 2.4621615302145017e-09
PARAFAC2 reconstruction error=0.8189084595210709, variation=1.0867471367248527e-09.
Starting iteration 1662
reconstruction error=0.20876885871418255
iteration 1, reconstruction error: 0.20876885624305747, decrease = 2.4711250823372666e-09
iteration 2, reconstruction error: 0.20876885377551882, decrease = 2.467538645634093e-09
iteration 3, reconstruction error: 0.208768851311518, decrease = 2.4640008089438226e-09
iteration 4, reconstruction error: 0.20876884885106198, decrease = 2.460456033359648e-09
PARAFAC2 reconstruction error=0.8189084584350791, variation=1.0859918520012002e-09.
Starting iteration 1663
reconstruction error=0.20876884572285764
iteration 1, reconstruction error: 0.20876884325344658, decrease = 2.469411064520699e-09
iteration 2, reconstruction error: 0.20876884078761423, decrease = 2.4658323438675467e-09
iteration 3, reconstruction error: 0.20876883832531662, decrease = 2.462297615801745e-09
iteration 4, reconstruction error: 0.2087688358665553, decrease = 2.4587613056681334e-09
PARAFAC2 reconstruction error=0.8189084573498415, variation=1.0852375664782699e-09.
Starting iteration 1664
reconstruction error=0.2087688327405477
iteration 1, reconstruction error: 0.20876883027285062, decrease = 2.467697074459707e-09
iteration 2, reconstruction error: 0.20876882780872766, decrease = 2.464122961232107e-09
iteration 3, reconstruction error: 0.20876882534813482, decrease = 2.4605928405918576e-09
iteration 4, reconstruction error: 0.20876882289106977, decrease = 2.45706505141996e-09
PARAFAC2 reconstruction error=0.8189084562653578, variation=1.0844837250445494e-09.
Starting iteration 1665
reconstruction error=0.2087688197672504
iteration 1, reconstruction error: 0.20876881730126273, decrease = 2.4659876640686917e-09
iteration 2, reconstruction error: 0.2087688148388476, decrease = 2.4624151329089017e-09
iteration 3, reconstruction error: 0.20876881237995332, decrease = 2.458894282630908e-09
iteration 4, reconstruction error: 0.20876880992458377, decrease = 2.455369546572328e-09
PARAFAC2 reconstruction error=0.8189084551816274, variation=1.0837304387223412e-09.
Starting iteration 1666
reconstruction error=0.20876880680295498
iteration 1, reconstruction error: 0.20876880433867667, decrease = 2.4642783091888276e-09
iteration 2, reconstruction error: 0.20876880187796476, decrease = 2.4607119120112486e-09
iteration 3, reconstruction error: 0.20876879942077062, decrease = 2.457194142602148e-09
iteration 4, reconstruction error: 0.20876879696709272, decrease = 2.4536778997497066e-09
PARAFAC2 reconstruction error=0.8189084540986494, variation=1.0829779295562503e-09.
Starting iteration 1667
reconstruction error=0.20876879384764996
iteration 1, reconstruction error: 0.2087687913850818, decrease = 2.4625681493972706e-09
iteration 2, reconstruction error: 0.20876878892607154, decrease = 2.4590102731814056e-09
iteration 3, reconstruction error: 0.20876878647057442, decrease = 2.4554971111978574e-09
iteration 4, reconstruction error: 0.20876878401859125, decrease = 2.451983172058192e-09
PARAFAC2 reconstruction error=0.8189084530164233, variation=1.0822260865239741e-09.
Starting iteration 1668
reconstruction error=0.2087687809013337
iteration 1, reconstruction error: 0.2087687784404726, decrease = 2.4608610982301826e-09
iteration 2, reconstruction error: 0.2087687759831609, decrease = 2.4573116874648804e-09
iteration 3, reconstruction error: 0.2087687735293624, decrease = 2.4537984977257565e-09
iteration 4, reconstruction error: 0.208768771079067, decrease = 2.4502954110161568e-09
PARAFAC2 reconstruction error=0.8189084519349482, variation=1.0814751316701177e-09.
Starting iteration 1669
reconstruction error=0.20876876796399396
iteration 1, reconstruction error: 0.2087687655048353, decrease = 2.4591586544886468e-09
iteration 2, reconstruction error: 0.2087687630492253, decrease = 2.4556100208794618e-09
iteration 3, reconstruction error: 0.2087687605971215, decrease = 2.4521037977898175e-09
iteration 4, reconstruction error: 0.20876875814851695, decrease = 2.4486045413496527e-09
PARAFAC2 reconstruction error=0.8189084508542238, variation=1.0807243988608661e-09.
Starting iteration 1670
reconstruction error=0.20876875503562678
iteration 1, reconstruction error: 0.20876875257817057, decrease = 2.457456210747111e-09
iteration 2, reconstruction error: 0.20876875012425683, decrease = 2.4539137388757126e-09
iteration 3, reconstruction error: 0.2087687476738485, decrease = 2.450408320697761e-09
iteration 4, reconstruction error: 0.20876874522693176, decrease = 2.446916752552042e-09
PARAFAC2 reconstruction error=0.818908449774249, variation=1.0799747762746392e-09.
Starting iteration 1671
reconstruction error=0.20876874211621846
iteration 1, reconstruction error: 0.20876873966046003, decrease = 2.4557584299422786e-09
iteration 2, reconstruction error: 0.20876873720824948, decrease = 2.452210545733635e-09
iteration 3, reconstruction error: 0.20876873475952587, decrease = 2.4487236127690437e-09
iteration 4, reconstruction error: 0.2087687323143, decrease = 2.4452258828855378e-09
PARAFAC2 reconstruction error=0.8189084486950234, variation=1.0792255977776222e-09.
Starting iteration 1672
reconstruction error=0.20876872920575965
iteration 1, reconstruction error: 0.20876872675171063, decrease = 2.454049019551263e-09
iteration 2, reconstruction error: 0.20876872430119095, decrease = 2.450519676067131e-09
iteration 3, reconstruction error: 0.20876872185415973, decrease = 2.4470312165458807e-09
iteration 4, reconstruction error: 0.20876871941061392, decrease = 2.443545810137948e-09
PARAFAC2 reconstruction error=0.8189084476165462, variation=1.0784771964367224e-09.
Starting iteration 1673
reconstruction error=0.20876871630425348
iteration 1, reconstruction error: 0.20876871385189918, decrease = 2.4523542918597485e-09
iteration 2, reconstruction error: 0.20876871140307193, decrease = 2.4488272520883925e-09
iteration 3, reconstruction error: 0.20876870895773314, decrease = 2.445338792567142e-09
iteration 4, reconstruction error: 0.20876870651586893, decrease = 2.4418642108336996e-09
PARAFAC2 reconstruction error=0.818908446538817, variation=1.0777292391850324e-09.
Starting iteration 1674
reconstruction error=0.20876870341167758
iteration 1, reconstruction error: 0.2087687009610257, decrease = 2.4506518758737883e-09
iteration 2, reconstruction error: 0.20876869851389085, decrease = 2.4471348558652295e-09
iteration 3, reconstruction error: 0.208768696070236, decrease = 2.443654861794542e-09
iteration 4, reconstruction error: 0.20876869363006034, decrease = 2.4401756448799716e-09
PARAFAC2 reconstruction error=0.8189084454618348, variation=1.0769821701117621e-09.
Starting iteration 1675
reconstruction error=0.20876869052803815
iteration 1, reconstruction error: 0.2087686880790795, decrease = 2.448958646983357e-09
iteration 2, reconstruction error: 0.20876868563363396, decrease = 2.44544554051096e-09
iteration 3, reconstruction error: 0.2087686831916661, decrease = 2.4419678501530484e-09
iteration 4, reconstruction error: 0.20876868075316973, decrease = 2.438496377044075e-09
PARAFAC2 reconstruction error=0.8189084443855991, variation=1.0762357671723066e-09.
Starting iteration 1676
reconstruction error=0.20876867765331908
iteration 1, reconstruction error: 0.20876867520605435, decrease = 2.447264724203535e-09
iteration 2, reconstruction error: 0.20876867276229968, decrease = 2.4437546708444557e-09
iteration 3, reconstruction error: 0.20876867032201574, decrease = 2.440283947136024e-09
iteration 4, reconstruction error: 0.20876866788519405, decrease = 2.4368216888781546e-09
PARAFAC2 reconstruction error=0.818908443310109, variation=1.075490030366666e-09.
Starting iteration 1677
reconstruction error=0.20876866478751102
iteration 1, reconstruction error: 0.20876866234193944, decrease = 2.4455715785798304e-09
iteration 2, reconstruction error: 0.20876865989987334, decrease = 2.4420661048907277e-09
iteration 3, reconstruction error: 0.20876865746127102, decrease = 2.4386023200761997e-09
iteration 4, reconstruction error: 0.20876865502613248, decrease = 2.4351385352616717e-09
PARAFAC2 reconstruction error=0.8189084422353643, variation=1.074744737650235e-09.
Starting iteration 1678
reconstruction error=0.20876865193061253
iteration 1, reconstruction error: 0.20876864948673032, decrease = 2.4438822077144096e-09
iteration 2, reconstruction error: 0.20876864704634968, decrease = 2.4403806475614687e-09
iteration 3, reconstruction error: 0.20876864460942818, decrease = 2.4369214979280684e-09
iteration 4, reconstruction error: 0.20876864217596278, decrease = 2.433465401407986e-09
PARAFAC2 reconstruction error=0.8189084411613641, variation=1.0740002220899214e-09.
Starting iteration 1679
reconstruction error=0.2087686390826104
iteration 1, reconstruction error: 0.20876863664041828, decrease = 2.4421921152040227e-09
iteration 2, reconstruction error: 0.2087686342017208, decrease = 2.4386974939449857e-09
iteration 3, reconstruction error: 0.20876863176648017, decrease = 2.435240620268786e-09
iteration 4, reconstruction error: 0.2087686293346925, decrease = 2.431787660128748e-09
PARAFAC2 reconstruction error=0.8189084400881075, variation=1.0732565947080275e-09.
Starting iteration 1680
reconstruction error=0.20876862624349554
iteration 1, reconstruction error: 0.20876862380299507, decrease = 2.4405004683814013e-09
iteration 2, reconstruction error: 0.20876862136597688, decrease = 2.4370181983535133e-09
iteration 3, reconstruction error: 0.20876861893241633, decrease = 2.4335605475211963e-09
iteration 4, reconstruction error: 0.20876861650230025, decrease = 2.4301160805872968e-09
PARAFAC2 reconstruction error=0.818908439015594, variation=1.0725135224376459e-09.
Starting iteration 1681
reconstruction error=0.20876861341326866
iteration 1, reconstruction error: 0.2087686109744475, decrease = 2.438821172789929e-09
iteration 2, reconstruction error: 0.2087686085391186, decrease = 2.4353288829992437e-09
iteration 3, reconstruction error: 0.20876860610723272, decrease = 2.4318858871108517e-09
iteration 4, reconstruction error: 0.20876860367878514, decrease = 2.428447581914739e-09
PARAFAC2 reconstruction error=0.8189084379438231, variation=1.071770894256474e-09.
Starting iteration 1682
reconstruction error=0.20876860059191046
iteration 1, reconstruction error: 0.2087685981547786, decrease = 2.4371318574356593e-09
iteration 2, reconstruction error: 0.20876859572112674, decrease = 2.4336518633649717e-09
iteration 3, reconstruction error: 0.20876859329091552, decrease = 2.430211226700507e-09
iteration 4, reconstruction error: 0.20876859086414185, decrease = 2.426773670904936e-09
PARAFAC2 reconstruction error=0.8189084368727939, variation=1.071029154253722e-09.
Starting iteration 1683
reconstruction error=0.20876858777941718
iteration 1, reconstruction error: 0.20876858534397155, decrease = 2.435445622950283e-09
iteration 2, reconstruction error: 0.20876858291199824, decrease = 2.431973317174041e-09
iteration 3, reconstruction error: 0.20876858048346553, decrease = 2.428532708265152e-09
iteration 4, reconstruction error: 0.20876857805835725, decrease = 2.425108280856847e-09
PARAFAC2 reconstruction error=0.8189084358025059, variation=1.0702879693624823e-09.
Starting iteration 1684
reconstruction error=0.20876857497578724
iteration 1, reconstruction error: 0.20876857254202325, decrease = 2.433763995890459e-09
iteration 2, reconstruction error: 0.2087685701117246, decrease = 2.4302986567636964e-09
iteration 3, reconstruction error: 0.20876856768486038, decrease = 2.426864209592594e-09
iteration 4, reconstruction error: 0.20876856526141982, decrease = 2.4234405593404063e-09
PARAFAC2 reconstruction error=0.8189084347329582, variation=1.0695477836719647e-09.
Starting iteration 1685
reconstruction error=0.20876856218100603
iteration 1, reconstruction error: 0.2087685597489213, decrease = 2.432084728054562e-09
iteration 2, reconstruction error: 0.2087685573203004, decrease = 2.4286209154844585e-09
iteration 3, reconstruction error: 0.20876855489510623, decrease = 2.4251941566078017e-09
iteration 4, reconstruction error: 0.20876855247333342, decrease = 2.42177281006839e-09
PARAFAC2 reconstruction error=0.8189084336641506, variation=1.068807597981447e-09.
Starting iteration 1686
reconstruction error=0.2087685493950658
iteration 1, reconstruction error: 0.20876854696465888, decrease = 2.430406931264173e-09
iteration 2, reconstruction error: 0.2087685445377157, decrease = 2.4269431742052205e-09
iteration 3, reconstruction error: 0.20876854211419082, decrease = 2.4235248807791265e-09
iteration 4, reconstruction error: 0.20876853969408035, decrease = 2.4201104731336187e-09
PARAFAC2 reconstruction error=0.8189084325960821, variation=1.0680684114916517e-09.
Starting iteration 1687
reconstruction error=0.20876853661796202
iteration 1, reconstruction error: 0.20876853418923438, decrease = 2.4287276356727006e-09
iteration 2, reconstruction error: 0.20876853176395815, decrease = 2.425276229844897e-09
iteration 3, reconstruction error: 0.2087685293421033, decrease = 2.4218548555499098e-09
iteration 4, reconstruction error: 0.2087685269236559, decrease = 2.418447386798306e-09
PARAFAC2 reconstruction error=0.818908431528752, variation=1.067330113180276e-09.
Starting iteration 1688
reconstruction error=0.20876852384967923
iteration 1, reconstruction error: 0.20876852142263008, decrease = 2.427049144992921e-09
iteration 2, reconstruction error: 0.20876851899902935, decrease = 2.423600736767284e-09
iteration 3, reconstruction error: 0.20876851657884146, decrease = 2.4201878834340107e-09
iteration 4, reconstruction error: 0.2087685141620556, decrease = 2.4167858547752274e-09
PARAFAC2 reconstruction error=0.8189084304621601, variation=1.0665919258912027e-09.
Starting iteration 1689
reconstruction error=0.20876851109031597
iteration 1, reconstruction error: 0.20876850866493768, decrease = 2.4253782870964358e-09
iteration 2, reconstruction error: 0.20876850624300772, decrease = 2.4219299621375256e-09
iteration 3, reconstruction error: 0.20876850382448214, decrease = 2.418525574254815e-09
iteration 4, reconstruction error: 0.2087685014093602, decrease = 2.415121935772646e-09
PARAFAC2 reconstruction error=0.8189084293963051, variation=1.0658549598474565e-09.
Starting iteration 1690
reconstruction error=0.20876849833966993
iteration 1, reconstruction error: 0.20876849591596783, decrease = 2.4237021001294323e-09
iteration 2, reconstruction error: 0.20876849349570176, decrease = 2.42026607089052e-09
iteration 3, reconstruction error: 0.20876849107884007, decrease = 2.4168616830078093e-09
iteration 4, reconstruction error: 0.2087684886653758, decrease = 2.4134642617745783e-09
PARAFAC2 reconstruction error=0.8189084283311869, variation=1.0651182158483152e-09.
Starting iteration 1691
reconstruction error=0.20876848559781896
iteration 1, reconstruction error: 0.20876848317578767, decrease = 2.4220312977440983e-09
iteration 2, reconstruction error: 0.20876848075719084, decrease = 2.4185968228174204e-09
iteration 3, reconstruction error: 0.20876847834199072, decrease = 2.4152001232291553e-09
iteration 4, reconstruction error: 0.20876847593018416, decrease = 2.411806560020935e-09
PARAFAC2 reconstruction error=0.8189084272668048, variation=1.0643821379829888e-09.
Starting iteration 1692
reconstruction error=0.20876847286477032
iteration 1, reconstruction error: 0.2087684704444083, decrease = 2.420362021915423e-09
iteration 2, reconstruction error: 0.20876846802747845, decrease = 2.4169298507015213e-09
iteration 3, reconstruction error: 0.20876846561393833, decrease = 2.413540117762736e-09
iteration 4, reconstruction error: 0.2087684632037841, decrease = 2.410154242848961e-09
PARAFAC2 reconstruction error=0.8189084262031575, variation=1.0636472813629894e-09.
Starting iteration 1693
reconstruction error=0.20876846014050945
iteration 1, reconstruction error: 0.208768457721819, decrease = 2.418690442373972e-09
iteration 2, reconstruction error: 0.20876845530654994, decrease = 2.4152690680789846e-09
iteration 3, reconstruction error: 0.20876845289467216, decrease = 2.4118777808279646e-09
iteration 4, reconstruction error: 0.20876845048617024, decrease = 2.408501925676987e-09
PARAFAC2 reconstruction error=0.8189084251402449, variation=1.0629126467875949e-09.
Starting iteration 1694
reconstruction error=0.20876844742503115
iteration 1, reconstruction error: 0.2087684450080069, decrease = 2.41702424741419e-09
iteration 2, reconstruction error: 0.20876844259440014, decrease = 2.413606758899789e-09
iteration 3, reconstruction error: 0.20876844018417853, decrease = 2.41022160563098e-09
iteration 4, reconstruction error: 0.20876843777733428, decrease = 2.406844251678919e-09
PARAFAC2 reconstruction error=0.8189084240780662, variation=1.0621786783460152e-09.
Starting iteration 1695
reconstruction error=0.2087684347183253
iteration 1, reconstruction error: 0.20876843230296338, decrease = 2.415361910479419e-09
iteration 2, reconstruction error: 0.20876842989102207, decrease = 2.4119413133405487e-09
iteration 3, reconstruction error: 0.2087684274824512, decrease = 2.408570870526816e-09
iteration 4, reconstruction error: 0.2087684250772577, decrease = 2.4051934888191795e-09
PARAFAC2 reconstruction error=0.8189084230166207, variation=1.0614454870605528e-09.
Starting iteration 1696
reconstruction error=0.20876842202038046
iteration 1, reconstruction error: 0.20876841960668704, decrease = 2.413693411806861e-09
iteration 2, reconstruction error: 0.20876841719640035, decrease = 2.4102866924557986e-09
iteration 3, reconstruction error: 0.2087684147894864, decrease = 2.40691394592929e-09
iteration 4, reconstruction error: 0.20876841238594676, decrease = 2.4035396450905466e-09
PARAFAC2 reconstruction error=0.8189084219559081, variation=1.0607126288419977e-09.
Starting iteration 1697
reconstruction error=0.20876840933119428
iteration 1, reconstruction error: 0.2087684069191609, decrease = 2.4120333785848658e-09
iteration 2, reconstruction error: 0.20876840451053497, decrease = 2.4086259375888375e-09
iteration 3, reconstruction error: 0.20876840210527797, decrease = 2.405256993576188e-09
iteration 4, reconstruction error: 0.20876839970337827, decrease = 2.401899706905297e-09
PARAFAC2 reconstruction error=0.8189084208959269, variation=1.0599812139133746e-09.
Starting iteration 1698
reconstruction error=0.20876839665075445
iteration 1, reconstruction error: 0.2087683942403857, decrease = 2.4103687379373184e-09
iteration 2, reconstruction error: 0.20876839183341672, decrease = 2.4069689852357357e-09
iteration 3, reconstruction error: 0.20876838942980816, decrease = 2.4036085621848002e-09
iteration 4, reconstruction error: 0.20876838702956002, decrease = 2.400248139133865e-09
PARAFAC2 reconstruction error=0.8189084198366774, variation=1.0592494659178442e-09.
Starting iteration 1699
reconstruction error=0.20876838397905867
iteration 1, reconstruction error: 0.20876838157034608, decrease = 2.4087125904959095e-09
iteration 2, reconstruction error: 0.20876837916503171, decrease = 2.4053143643509856e-09
iteration 3, reconstruction error: 0.2087683767630747, decrease = 2.4019570221689435e-09
iteration 4, reconstruction error: 0.20876837436447035, decrease = 2.398604342923605e-09
PARAFAC2 reconstruction error=0.8189084187781583, variation=1.0585190501899433e-09.
Starting iteration 1700
reconstruction error=0.20876837131609385
iteration 1, reconstruction error: 0.20876836890903974, decrease = 2.4070541115861488e-09
iteration 2, reconstruction error: 0.20876836650537844, decrease = 2.40366129777847e-09
iteration 3, reconstruction error: 0.20876836410506602, decrease = 2.4003124210469906e-09
iteration 4, reconstruction error: 0.2087683617081109, decrease = 2.3969551343760997e-09
PARAFAC2 reconstruction error=0.8189084177203694, variation=1.0577889675289498e-09.
Starting iteration 1701
reconstruction error=0.20876835866185153
iteration 1, reconstruction error: 0.2087683562564559, decrease = 2.405395632676388e-09
iteration 2, reconstruction error: 0.20876835385444767, decrease = 2.4020082312059543e-09
iteration 3, reconstruction error: 0.20876835145578598, decrease = 2.3986616859428267e-09
iteration 4, reconstruction error: 0.20876834906046776, decrease = 2.3953182215485924e-09
PARAFAC2 reconstruction error=0.8189084166633098, variation=1.057059551001771e-09.
Starting iteration 1702
reconstruction error=0.20876834601632627
iteration 1, reconstruction error: 0.2087683436125899, decrease = 2.40373637661051e-09
iteration 2, reconstruction error: 0.20876834121223012, decrease = 2.400359772058991e-09
iteration 3, reconstruction error: 0.20876833881521534, decrease = 2.3970147811080977e-09
iteration 4, reconstruction error: 0.20876833642153939, decrease = 2.3936759518949913e-09
PARAFAC2 reconstruction error=0.8189084156069789, variation=1.0563309116307096e-09.
Starting iteration 1703
reconstruction error=0.20876833337951667
iteration 1, reconstruction error: 0.20876833097743028, decrease = 2.402086390906888e-09
iteration 2, reconstruction error: 0.20876832857871971, decrease = 2.398710563511486e-09
iteration 3, reconstruction error: 0.20876832618334953, decrease = 2.395370179986145e-09
iteration 4, reconstruction error: 0.208768323791312, decrease = 2.3920375402664007e-09
PARAFAC2 reconstruction error=0.8189084145513758, variation=1.0556031604380678e-09.
Starting iteration 1704
reconstruction error=0.2087683207514064
iteration 1, reconstruction error: 0.2087683183509715, decrease = 2.4004348786466068e-09
iteration 2, reconstruction error: 0.20876831595390943, decrease = 2.3970620766089468e-09
iteration 3, reconstruction error: 0.20876831356017997, decrease = 2.393729464644778e-09
iteration 4, reconstruction error: 0.2087683111697824, decrease = 2.3903975743255756e-09
PARAFAC2 reconstruction error=0.8189084134965002, variation=1.0548755202677285e-09.
Starting iteration 1705
reconstruction error=0.2087683081319863
iteration 1, reconstruction error: 0.2087683057331999, decrease = 2.3987863917440677e-09
iteration 2, reconstruction error: 0.2087683033377893, decrease = 2.3954105921042412e-09
iteration 3, reconstruction error: 0.20876830094570215, decrease = 2.3920871672356014e-09
iteration 4, reconstruction error: 0.20876829855694065, decrease = 2.3887614941653368e-09
PARAFAC2 reconstruction error=0.8189084124423512, variation=1.0541489903204138e-09.
Starting iteration 1706
reconstruction error=0.20876829552125714
iteration 1, reconstruction error: 0.2087682931241246, decrease = 2.397132548015435e-09
iteration 2, reconstruction error: 0.20876829073035322, decrease = 2.393771375563958e-09
iteration 3, reconstruction error: 0.2087682883399052, decrease = 2.3904480062064692e-09
iteration 4, reconstruction error: 0.20876828595277983, decrease = 2.3871253862495223e-09
PARAFAC2 reconstruction error=0.8189084113889284, variation=1.0534227934400064e-09.
Starting iteration 1707
reconstruction error=0.20876828291920357
iteration 1, reconstruction error: 0.20876828052371638, decrease = 2.3954871974929404e-09
iteration 2, reconstruction error: 0.20876827813158805, decrease = 2.3921283287542394e-09
iteration 3, reconstruction error: 0.2087682757427831, decrease = 2.388804959396751e-09
iteration 4, reconstruction error: 0.20876827335728843, decrease = 2.3854946629153773e-09
PARAFAC2 reconstruction error=0.8189084103362312, variation=1.052697262693414e-09.
Starting iteration 1708
reconstruction error=0.20876827032582243
iteration 1, reconstruction error: 0.20876826793198444, decrease = 2.3938379889454353e-09
iteration 2, reconstruction error: 0.20876826554149763, decrease = 2.39048680850118e-09
iteration 3, reconstruction error: 0.20876826315432725, decrease = 2.3871703780375952e-09
iteration 4, reconstruction error: 0.2087682607704656, decrease = 2.3838616636240317e-09
PARAFAC2 reconstruction error=0.8189084092842588, variation=1.0519723980806361e-09.
Starting iteration 1709
reconstruction error=0.20876825774110455
iteration 1, reconstruction error: 0.20876825534891114, decrease = 2.392193415579058e-09
iteration 2, reconstruction error: 0.20876825296006737, decrease = 2.3888437616914615e-09
iteration 3, reconstruction error: 0.20876825057453233, decrease = 2.385535047277898e-09
iteration 4, reconstruction error: 0.2087682481923006, decrease = 2.382231717446004e-09
PARAFAC2 reconstruction error=0.8189084082330105, variation=1.0512483106239756e-09.
Starting iteration 1710
reconstruction error=0.20876824516504217
iteration 1, reconstruction error: 0.2087682427744895, decrease = 2.3905526724821158e-09
iteration 2, reconstruction error: 0.2087682403872849, decrease = 2.3872046006623293e-09
iteration 3, reconstruction error: 0.20876823800338365, decrease = 2.3839012430748596e-09
iteration 4, reconstruction error: 0.2087682356227811, decrease = 2.3806025484240934e-09
PARAFAC2 reconstruction error=0.8189084071824857, variation=1.0505247782788274e-09.
Starting iteration 1711
reconstruction error=0.20876823259762375
iteration 1, reconstruction error: 0.20876823020872032, decrease = 2.388903436179035e-09
iteration 2, reconstruction error: 0.2087682278231503, decrease = 2.3855700193031737e-09
iteration 3, reconstruction error: 0.20876822544087897, decrease = 2.3822713246524074e-09
iteration 4, reconstruction error: 0.20876822306190404, decrease = 2.3789749337144173e-09
PARAFAC2 reconstruction error=0.8189084061326837, variation=1.0498020230897964e-09.
Starting iteration 1712
reconstruction error=0.20876822003885087
iteration 1, reconstruction error: 0.20876821765158585, decrease = 2.3872650245504445e-09
iteration 2, reconstruction error: 0.2087682152676535, decrease = 2.3839323570751247e-09
iteration 3, reconstruction error: 0.20876821288701594, decrease = 2.3806375482049447e-09
iteration 4, reconstruction error: 0.20876821050966707, decrease = 2.3773488733169756e-09
PARAFAC2 reconstruction error=0.8189084050836039, variation=1.0490798230122778e-09.
Starting iteration 1713
reconstruction error=0.20876820748870892
iteration 1, reconstruction error: 0.20876820510308158, decrease = 2.38562733456682e-09
iteration 2, reconstruction error: 0.2087682027207853, decrease = 2.382296276914886e-09
iteration 3, reconstruction error: 0.20876820034177385, decrease = 2.3790114600519274e-09
iteration 4, reconstruction error: 0.20876819796605417, decrease = 2.3757196765394895e-09
PARAFAC2 reconstruction error=0.8189084040352456, variation=1.0483582890685739e-09.
Starting iteration 1714
reconstruction error=0.2087681949471894
iteration 1, reconstruction error: 0.2087681925631997, decrease = 2.3839897000943466e-09
iteration 2, reconstruction error: 0.20876819018253415, decrease = 2.380665553580741e-09
iteration 3, reconstruction error: 0.20876818780515802, decrease = 2.37737612929223e-09
iteration 4, reconstruction error: 0.20876818543105824, decrease = 2.3740997778798345e-09
PARAFAC2 reconstruction error=0.8189084029876084, variation=1.0476371992140798e-09.
Starting iteration 1715
reconstruction error=0.2087681824142908
iteration 1, reconstruction error: 0.20876818003193717, decrease = 2.3823536199341078e-09
iteration 2, reconstruction error: 0.20876817765290384, decrease = 2.3790333314455125e-09
iteration 3, reconstruction error: 0.20876817527714994, decrease = 2.3757538991642235e-09
iteration 4, reconstruction error: 0.20876817290467548, decrease = 2.3724744668829345e-09
PARAFAC2 reconstruction error=0.8189084019406915, variation=1.046916886515703e-09.
Starting iteration 1716
reconstruction error=0.20876816988999689
iteration 1, reconstruction error: 0.20876816750928015, decrease = 2.380716734862176e-09
iteration 2, reconstruction error: 0.20876816513187677, decrease = 2.3774033852674847e-09
iteration 3, reconstruction error: 0.20876816275775126, decrease = 2.37412550729843e-09
iteration 4, reconstruction error: 0.20876816038689439, decrease = 2.3708568719360557e-09
PARAFAC2 reconstruction error=0.818908400894494, variation=1.046197461995746e-09.
Starting iteration 1717
reconstruction error=0.2087681573743077
iteration 1, reconstruction error: 0.2087681549952209, decrease = 2.379086816439724e-09
iteration 2, reconstruction error: 0.20876815261945056, decrease = 2.375770330464988e-09
iteration 3, reconstruction error: 0.2087681502469519, decrease = 2.3724986697448713e-09
iteration 4, reconstruction error: 0.20876814787771258, decrease = 2.3692393047447524e-09
PARAFAC2 reconstruction error=0.8189083998490159, variation=1.0454781484980913e-09.
Starting iteration 1718
reconstruction error=0.20876814486721407
iteration 1, reconstruction error: 0.2087681424897595, decrease = 2.37745456654892e-09
iteration 2, reconstruction error: 0.20876814011561215, decrease = 2.3741473509364397e-09
iteration 3, reconstruction error: 0.2087681377447334, decrease = 2.3708787433296408e-09
iteration 4, reconstruction error: 0.20876813537711558, decrease = 2.3676178240172874e-09
PARAFAC2 reconstruction error=0.8189083988042559, variation=1.0447599452234613e-09.
Starting iteration 1719
reconstruction error=0.2087681323687059
iteration 1, reconstruction error: 0.20876812999288205, decrease = 2.375823843214775e-09
iteration 2, reconstruction error: 0.20876812762036076, decrease = 2.372521290538998e-09
iteration 3, reconstruction error: 0.20876812525110425, decrease = 2.369256513201634e-09
iteration 4, reconstruction error: 0.2087681228851009, decrease = 2.3660033376948775e-09
PARAFAC2 reconstruction error=0.8189083977602136, variation=1.0440422970603436e-09.
Starting iteration 1720
reconstruction error=0.2087681198787732
iteration 1, reconstruction error: 0.20876811750457852, decrease = 2.3741946741928643e-09
iteration 2, reconstruction error: 0.20876811513368254, decrease = 2.370895979542098e-09
iteration 3, reconstruction error: 0.20876811276604437, decrease = 2.3676381688542136e-09
iteration 4, reconstruction error: 0.2087681104016571, decrease = 2.3643872693046575e-09
PARAFAC2 reconstruction error=0.8189083967168886, variation=1.0433249819641333e-09.
Starting iteration 1721
reconstruction error=0.20876810739741522
iteration 1, reconstruction error: 0.20876810502484663, decrease = 2.372568586039847e-09
iteration 2, reconstruction error: 0.20876810265557674, decrease = 2.369269891389081e-09
iteration 3, reconstruction error: 0.20876810028955387, decrease = 2.366022877620111e-09
iteration 4, reconstruction error: 0.20876809792678494, decrease = 2.362768924957237e-09
PARAFAC2 reconstruction error=0.8189083956742799, variation=1.0426087770909476e-09.
Starting iteration 1722
reconstruction error=0.20876809492461887
iteration 1, reconstruction error: 0.20876809255367945, decrease = 2.3709394170179365e-09
iteration 2, reconstruction error: 0.20876809018603026, decrease = 2.367649187817733e-09
iteration 3, reconstruction error: 0.20876808782162265, decrease = 2.3644076141415837e-09
iteration 4, reconstruction error: 0.20876808546046208, decrease = 2.361160572617038e-09
PARAFAC2 reconstruction error=0.8189083946323871, variation=1.0418927942623668e-09.
Starting iteration 1723
reconstruction error=0.20876808246037648
iteration 1, reconstruction error: 0.2087680800910616, decrease = 2.3693148831771538e-09
iteration 2, reconstruction error: 0.20876807772503306, decrease = 2.3660285397575365e-09
iteration 3, reconstruction error: 0.20876807536224767, decrease = 2.362785384013577e-09
iteration 4, reconstruction error: 0.20876807300269773, decrease = 2.359549944319639e-09
PARAFAC2 reconstruction error=0.8189083935912094, variation=1.0411776996122057e-09.
Starting iteration 1724
reconstruction error=0.20876807000468958
iteration 1, reconstruction error: 0.20876806763699612, decrease = 2.36769345796084e-09
iteration 2, reconstruction error: 0.2087680652725844, decrease = 2.364411721966775e-09
iteration 3, reconstruction error: 0.2087680629114097, decrease = 2.3611747002050265e-09
iteration 4, reconstruction error: 0.2087680605534712, decrease = 2.3579385111105466e-09
PARAFAC2 reconstruction error=0.8189083925507463, variation=1.0404630490512545e-09.
Starting iteration 1725
reconstruction error=0.20876805755753655
iteration 1, reconstruction error: 0.20876805519146766, decrease = 2.3660688963644816e-09
iteration 2, reconstruction error: 0.20876805282867278, decrease = 2.3627948764204376e-09
iteration 3, reconstruction error: 0.2087680504691141, decrease = 2.3595586873259577e-09
iteration 4, reconstruction error: 0.2087680481127816, decrease = 2.3563324902386995e-09
PARAFAC2 reconstruction error=0.8189083915109969, variation=1.0397493976910255e-09.
Starting iteration 1726
reconstruction error=0.2087680451189205
iteration 1, reconstruction error: 0.2087680427544715, decrease = 2.3644489977048266e-09
iteration 2, reconstruction error: 0.20876804039329036, decrease = 2.3611811394985693e-09
iteration 3, reconstruction error: 0.20876803803534236, decrease = 2.357948003517407e-09
iteration 4, reconstruction error: 0.20876803568061666, decrease = 2.354725692210735e-09
PARAFAC2 reconstruction error=0.8189083904719613, variation=1.039035635308494e-09.
Starting iteration 1727
reconstruction error=0.20876803268882613
iteration 1, reconstruction error: 0.20876803032599783, decrease = 2.362828294133479e-09
iteration 2, reconstruction error: 0.2087680279664343, decrease = 2.3595635445516905e-09
iteration 3, reconstruction error: 0.2087680256100938, decrease = 2.356340483844477e-09
iteration 4, reconstruction error: 0.2087680232569726, decrease = 2.353121197895547e-09
PARAFAC2 reconstruction error=0.8189083894336379, variation=1.038323427238197e-09.
Starting iteration 1728
reconstruction error=0.20876802026725563
iteration 1, reconstruction error: 0.20876801790604338, decrease = 2.3612122534988345e-09
iteration 2, reconstruction error: 0.20876801554809277, decrease = 2.357950612541515e-09
iteration 3, reconstruction error: 0.20876801319336066, decrease = 2.3547321037487023e-09
iteration 4, reconstruction error: 0.20876801084184782, decrease = 2.351512845555348e-09
PARAFAC2 reconstruction error=0.8189083883960266, variation=1.0376112191678999e-09.
Starting iteration 1729
reconstruction error=0.20876800785418909
iteration 1, reconstruction error: 0.20876800549459518, decrease = 2.359593909151414e-09
iteration 2, reconstruction error: 0.20876800313825758, decrease = 2.3563375972646128e-09
iteration 3, reconstruction error: 0.2087680007851315, decrease = 2.3531260828768552e-09
iteration 4, reconstruction error: 0.20876799843522, decrease = 2.3499114876202043e-09
PARAFAC2 reconstruction error=0.8189083873591269, variation=1.03689978825372e-09.
Starting iteration 1730
reconstruction error=0.20876799544962793
iteration 1, reconstruction error: 0.2087679930916524, decrease = 2.357975537048418e-09
iteration 2, reconstruction error: 0.20876799073692157, decrease = 2.354730826992224e-09
iteration 3, reconstruction error: 0.20876798838540073, decrease = 2.3515208391611253e-09
iteration 4, reconstruction error: 0.20876798603709065, decrease = 2.3483100741739094e-09
PARAFAC2 reconstruction error=0.8189083863229375, variation=1.0361893565402625e-09.
Starting iteration 1731
reconstruction error=0.20876798305356456
iteration 1, reconstruction error: 0.20876798069719893, decrease = 2.3563656303959846e-09
iteration 2, reconstruction error: 0.2087679783440772, decrease = 2.3531217252514836e-09
iteration 3, reconstruction error: 0.20876797599416316, decrease = 2.349914041133161e-09
iteration 4, reconstruction error: 0.20876797364745217, decrease = 2.346710992195966e-09
PARAFAC2 reconstruction error=0.8189083852874584, variation=1.0354791468714097e-09.
Starting iteration 1732
reconstruction error=0.20876797066598507
iteration 1, reconstruction error: 0.20876796831123315, decrease = 2.354751921229692e-09
iteration 2, reconstruction error: 0.20876796595972055, decrease = 2.3515125957551675e-09
iteration 3, reconstruction error: 0.20876796361140715, decrease = 2.3483134048429832e-09
iteration 4, reconstruction error: 0.2087679612662929, decrease = 2.3451142416863746e-09
PARAFAC2 reconstruction error=0.8189083842526889, variation=1.0347694923140693e-09.
Starting iteration 1733
reconstruction error=0.2087679582868933
iteration 1, reconstruction error: 0.2087679559337505, decrease = 2.353142791733376e-09
iteration 2, reconstruction error: 0.2087679535838393, decrease = 2.349911210064448e-09
iteration 3, reconstruction error: 0.20876795123713188, decrease = 2.3467074117267117e-09
iteration 4, reconstruction error: 0.2087679488936129, decrease = 2.3435189899778663e-09
PARAFAC2 reconstruction error=0.8189083832186284, variation=1.0340605038905437e-09.
Starting iteration 1734
reconstruction error=0.20876794591626546
iteration 1, reconstruction error: 0.20876794356473408, decrease = 2.3515313862798592e-09
iteration 2, reconstruction error: 0.20876794121642814, decrease = 2.3483059385931426e-09
iteration 3, reconstruction error: 0.20876793887131984, decrease = 2.345108301993193e-09
iteration 4, reconstruction error: 0.20876793652939452, decrease = 2.341925320337168e-09
PARAFAC2 reconstruction error=0.8189083821852758, variation=1.0333525146677403e-09.
Starting iteration 1735
reconstruction error=0.20876793355411224
iteration 1, reconstruction error: 0.2087679312041869, decrease = 2.3499253376524365e-09
iteration 2, reconstruction error: 0.20876792885748233, decrease = 2.346704580657999e-09
iteration 3, reconstruction error: 0.2087679265139731, decrease = 2.3435092200152496e-09
iteration 4, reconstruction error: 0.2087679241736384, decrease = 2.3403347038097877e-09
PARAFAC2 reconstruction error=0.818908381152631, variation=1.0326448585118442e-09.
Starting iteration 1736
reconstruction error=0.2087679212004083
iteration 1, reconstruction error: 0.20876791885208898, decrease = 2.3483193167805894e-09
iteration 2, reconstruction error: 0.20876791650698814, decrease = 2.3451008357433523e-09
iteration 3, reconstruction error: 0.20876791416507567, decrease = 2.341912469505658e-09
iteration 4, reconstruction error: 0.2087679118263408, decrease = 2.338734872431303e-09
PARAFAC2 reconstruction error=0.818908380120693, variation=1.0319379795120653e-09.
Starting iteration 1737
reconstruction error=0.20876790885515978
iteration 1, reconstruction error: 0.2087679065084434, decrease = 2.3467163767776356e-09
iteration 2, reconstruction error: 0.20876790416494628, decrease = 2.3434971185842812e-09
iteration 3, reconstruction error: 0.20876790182462363, decrease = 2.3403226578899705e-09
iteration 4, reconstruction error: 0.20876789948747862, decrease = 2.337145005304464e-09
PARAFAC2 reconstruction error=0.8189083790894612, variation=1.0312317666461013e-09.
Starting iteration 1738
reconstruction error=0.20876789651835126
iteration 1, reconstruction error: 0.2087678941732386, decrease = 2.3451126596185645e-09
iteration 2, reconstruction error: 0.208767891831339, decrease = 2.3418995909185725e-09
iteration 3, reconstruction error: 0.20876788949261546, decrease = 2.3387235481564517e-09
iteration 4, reconstruction error: 0.20876788715706102, decrease = 2.3355544442882348e-09
PARAFAC2 reconstruction error=0.8189083780589355, variation=1.0305257758247421e-09.
Starting iteration 1739
reconstruction error=0.20876788418997505
iteration 1, reconstruction error: 0.20876788184646766, decrease = 2.343507388147259e-09
iteration 2, reconstruction error: 0.20876787950616635, decrease = 2.340301313852322e-09
iteration 3, reconstruction error: 0.20876787716902956, decrease = 2.3371367896540818e-09
iteration 4, reconstruction error: 0.2087678748350696, decrease = 2.3339599697358437e-09
PARAFAC2 reconstruction error=0.8189083770291146, variation=1.0298208952264076e-09.
Starting iteration 1740
reconstruction error=0.2087678718700335
iteration 1, reconstruction error: 0.20876786952812518, decrease = 2.3419083339248914e-09
iteration 2, reconstruction error: 0.20876786718942067, decrease = 2.3387045078315793e-09
iteration 3, reconstruction error: 0.20876786485387985, decrease = 2.3355408163006075e-09
iteration 4, reconstruction error: 0.2087678625214966, decrease = 2.3323832587518467e-09
PARAFAC2 reconstruction error=0.8189083759999983, variation=1.029116236672678e-09.
Starting iteration 1741
reconstruction error=0.20876785955851354
iteration 1, reconstruction error: 0.20876785721819738, decrease = 2.3403161630852765e-09
iteration 2, reconstruction error: 0.20876785488108657, decrease = 2.3371108104353056e-09
iteration 3, reconstruction error: 0.20876785254713712, decrease = 2.3339494503726854e-09
iteration 4, reconstruction error: 0.2087678502163398, decrease = 2.3307973051611697e-09
PARAFAC2 reconstruction error=0.8189083749715855, variation=1.0284127993642755e-09.
Starting iteration 1742
reconstruction error=0.20876784725539738
iteration 1, reconstruction error: 0.2087678449166849, decrease = 2.338712473681781e-09
iteration 2, reconstruction error: 0.20876784258116854, decrease = 2.33551636363849e-09
iteration 3, reconstruction error: 0.20876784024880507, decrease = 2.3323634690264328e-09
iteration 4, reconstruction error: 0.20876783791959608, decrease = 2.3292089923465653e-09
PARAFAC2 reconstruction error=0.8189083739438764, variation=1.0277091400112681e-09.
Starting iteration 1743
reconstruction error=0.2087678349606928
iteration 1, reconstruction error: 0.2087678326235748, decrease = 2.33711799912939e-09
iteration 2, reconstruction error: 0.2087678302896498, decrease = 2.333924997710568e-09
iteration 3, reconstruction error: 0.20876782795887613, decrease = 2.330773657410745e-09
iteration 4, reconstruction error: 0.2087678256312454, decrease = 2.327630727050334e-09
PARAFAC2 reconstruction error=0.8189083729168697, variation=1.0270067019035878e-09.
Starting iteration 1744
reconstruction error=0.20876782267438587
iteration 1, reconstruction error: 0.20876782033886307, decrease = 2.335522802932033e-09
iteration 2, reconstruction error: 0.20876781800652483, decrease = 2.332338239208198e-09
iteration 3, reconstruction error: 0.20876781567733563, decrease = 2.3291892026211514e-09
iteration 4, reconstruction error: 0.2087678133512924, decrease = 2.3260432191474223e-09
PARAFAC2 reconstruction error=0.8189083718905646, variation=1.0263050409520247e-09.
Starting iteration 1745
reconstruction error=0.20876781039646966
iteration 1, reconstruction error: 0.20876780806253903, decrease = 2.333930632092418e-09
iteration 2, reconstruction error: 0.20876780573178985, decrease = 2.330749176993052e-09
iteration 3, reconstruction error: 0.20876780340418738, decrease = 2.327602471874357e-09
iteration 4, reconstruction error: 0.2087678010797247, decrease = 2.3244626778939903e-09
PARAFAC2 reconstruction error=0.8189083708649614, variation=1.0256032689781591e-09.
Starting iteration 1746
reconstruction error=0.20876779812693277
iteration 1, reconstruction error: 0.20876779579459812, decrease = 2.3323346587389437e-09
iteration 2, reconstruction error: 0.20876779346543722, decrease = 2.3291608919340234e-09
iteration 3, reconstruction error: 0.20876779113941457, decrease = 2.326022652265891e-09
iteration 4, reconstruction error: 0.20876778881652708, decrease = 2.322887493466652e-09
PARAFAC2 reconstruction error=0.8189083698400584, variation=1.0249029402942256e-09.
Starting iteration 1747
reconstruction error=0.20876778586577505
iteration 1, reconstruction error: 0.20876778353502715, decrease = 2.330747900236574e-09
iteration 2, reconstruction error: 0.20876778120745532, decrease = 2.3275718297188774e-09
iteration 3, reconstruction error: 0.20876777888301473, decrease = 2.3244405844558003e-09
iteration 4, reconstruction error: 0.2087677765617055, decrease = 2.3213092281704206e-09
PARAFAC2 reconstruction error=0.8189083688158557, variation=1.0242027226325945e-09.
Starting iteration 1748
reconstruction error=0.20876777361298424
iteration 1, reconstruction error: 0.2087677712838277, decrease = 2.3291565343086518e-09
iteration 2, reconstruction error: 0.2087677689578372, decrease = 2.3259905113093282e-09
iteration 3, reconstruction error: 0.20876776663497876, decrease = 2.3228584333789826e-09
iteration 4, reconstruction error: 0.20876776431524238, decrease = 2.319736375211434e-09
PARAFAC2 reconstruction error=0.8189083677923527, variation=1.0235030600824757e-09.
Starting iteration 1749
reconstruction error=0.20876776136855568
iteration 1, reconstruction error: 0.20876775904098743, decrease = 2.327568249249623e-09
iteration 2, reconstruction error: 0.2087677567165806, decrease = 2.3244068336758517e-09
iteration 3, reconstruction error: 0.20876775439529965, decrease = 2.3212809452388683e-09
iteration 4, reconstruction error: 0.20876775207713996, decrease = 2.3181596919830127e-09
PARAFAC2 reconstruction error=0.8189083667695483, variation=1.022804396733079e-09.
Starting iteration 1750
reconstruction error=0.2087677491324756
iteration 1, reconstruction error: 0.2087677468064964, decrease = 2.325979187034477e-09
iteration 2, reconstruction error: 0.20876774448367244, decrease = 2.322823960954068e-09
iteration 3, reconstruction error: 0.2087677421639705, decrease = 2.319701930542095e-09
iteration 4, reconstruction error: 0.2087677398473837, decrease = 2.3165868112684507e-09
PARAFAC2 reconstruction error=0.8189083657474422, variation=1.0221060664505899e-09.
Starting iteration 1751
reconstruction error=0.2087677369047485
iteration 1, reconstruction error: 0.20876773458035067, decrease = 2.324397840869352e-09
iteration 2, reconstruction error: 0.20876773225910805, decrease = 2.321242614788943e-09
iteration 3, reconstruction error: 0.20876772994098206, decrease = 2.3181259967142154e-09
iteration 4, reconstruction error: 0.2087677276259658, decrease = 2.3150162620222403e-09
PARAFAC2 reconstruction error=0.8189083647260335, variation=1.0214087353688228e-09.
Starting iteration 1752
reconstruction error=0.2087677246853576
iteration 1, reconstruction error: 0.20876772236254496, decrease = 2.3228126366792168e-09
iteration 2, reconstruction error: 0.20876772004287983, decrease = 2.319665126648829e-09
iteration 3, reconstruction error: 0.2087677177263298, decrease = 2.31655003513076e-09
iteration 4, reconstruction error: 0.20876771541288408, decrease = 2.31344571277603e-09
PARAFAC2 reconstruction error=0.818908363705322, variation=1.0207114042870558e-09.
Starting iteration 1753
reconstruction error=0.2087677124742974
iteration 1, reconstruction error: 0.2087677101530638, decrease = 2.321233594226868e-09
iteration 2, reconstruction error: 0.20876770783498155, decrease = 2.318082253927045e-09
iteration 3, reconstruction error: 0.2087677055200005, decrease = 2.314981040196784e-09
iteration 4, reconstruction error: 0.20876770320812688, decrease = 2.3118736369731607e-09
PARAFAC2 reconstruction error=0.8189083626853069, variation=1.0200151834283133e-09.
Starting iteration 1754
reconstruction error=0.2087677002715587
iteration 1, reconstruction error: 0.20876769795190872, decrease = 2.3196499721045427e-09
iteration 2, reconstruction error: 0.2087676956354009, decrease = 2.3165078189002486e-09
iteration 3, reconstruction error: 0.20876769332199271, decrease = 2.3134081872377976e-09
iteration 4, reconstruction error: 0.2087676910116873, decrease = 2.310305419195302e-09
PARAFAC2 reconstruction error=0.8189083616659876, variation=1.0193192956364783e-09.
Starting iteration 1755
reconstruction error=0.2087676880771399
iteration 1, reconstruction error: 0.20876768575906823, decrease = 2.3180716790527356e-09
iteration 2, reconstruction error: 0.20876768344413477, decrease = 2.314933467140179e-09
iteration 3, reconstruction error: 0.2087676811322964, decrease = 2.3118383596365533e-09
iteration 4, reconstruction error: 0.2087676788235569, decrease = 2.3087395051302195e-09
PARAFAC2 reconstruction error=0.8189083606473632, variation=1.0186244070453654e-09.
Starting iteration 1756
reconstruction error=0.20876767589102876
iteration 1, reconstruction error: 0.20876767357453302, decrease = 2.316495745224856e-09
iteration 2, reconstruction error: 0.208767671261174, decrease = 2.3133590321133823e-09
iteration 3, reconstruction error: 0.20876766895091078, decrease = 2.3102632029647907e-09
iteration 4, reconstruction error: 0.20876766664373106, decrease = 2.307179725047348e-09
PARAFAC2 reconstruction error=0.8189083596294334, variation=1.0179297404988574e-09.
Starting iteration 1757
reconstruction error=0.20876766371321687
iteration 1, reconstruction error: 0.20876766139830247, decrease = 2.314914399059731e-09
iteration 2, reconstruction error: 0.20876765908651396, decrease = 2.3117885106227476e-09
iteration 3, reconstruction error: 0.20876765677781514, decrease = 2.308698815456367e-09
iteration 4, reconstruction error: 0.2087676544722036, decrease = 2.305611535025065e-09
PARAFAC2 reconstruction error=0.8189083586121976, variation=1.0172358511084667e-09.
Starting iteration 1758
reconstruction error=0.2087676515437048
iteration 1, reconstruction error: 0.2087676492303656, decrease = 2.3133392146323928e-09
iteration 2, reconstruction error: 0.20876764692014532, decrease = 2.3102202650893133e-09
iteration 3, reconstruction error: 0.20876764461301395, decrease = 2.3071313748346256e-09
iteration 4, reconstruction error: 0.20876764230896064, decrease = 2.304053309254428e-09
PARAFAC2 reconstruction error=0.818908357595655, variation=1.0165426278518908e-09.
Starting iteration 1759
reconstruction error=0.2087676393824797
iteration 1, reconstruction error: 0.20876763707071178, decrease = 2.311767915985641e-09
iteration 2, reconstruction error: 0.20876763476206361, decrease = 2.3086481615308685e-09
iteration 3, reconstruction error: 0.20876763245649582, decrease = 2.3055677922378948e-09
iteration 4, reconstruction error: 0.20876763015400226, decrease = 2.302493556927132e-09
PARAFAC2 reconstruction error=0.8189083565798051, variation=1.0158498486845247e-09.
Starting iteration 1760
reconstruction error=0.20876762722952674
iteration 1, reconstruction error: 0.20876762491933476, decrease = 2.310191982157761e-09
iteration 2, reconstruction error: 0.2087676226122533, decrease = 2.3070814703096687e-09
iteration 3, reconstruction error: 0.20876762030825144, decrease = 2.3040018504172366e-09
iteration 4, reconstruction error: 0.20876761800731994, decrease = 2.30093150088706e-09
PARAFAC2 reconstruction error=0.8189083555646474, variation=1.0151577356509733e-09.
Starting iteration 1761
reconstruction error=0.20876761508485608
iteration 1, reconstruction error: 0.20876761277623235, decrease = 2.3086237366243267e-09
iteration 2, reconstruction error: 0.2087676104707145, decrease = 2.3055178599573622e-09
iteration 3, reconstruction error: 0.20876760816827622, decrease = 2.3024382678205058e-09
iteration 4, reconstruction error: 0.20876760586890677, decrease = 2.299369444846988e-09
PARAFAC2 reconstruction error=0.818908354550181, variation=1.0144663997735393e-09.
Starting iteration 1762
reconstruction error=0.2087676029484422
iteration 1, reconstruction error: 0.2087676006413929, decrease = 2.30704930159753e-09
iteration 2, reconstruction error: 0.20876759833744093, decrease = 2.3039519736478553e-09
iteration 3, reconstruction error: 0.20876759603656012, decrease = 2.300880819205986e-09
iteration 4, reconstruction error: 0.20876759373874812, decrease = 2.2978119962324683e-09
PARAFAC2 reconstruction error=0.8189083535364053, variation=1.0137756190076175e-09.
Starting iteration 1763
reconstruction error=0.20876759082029214
iteration 1, reconstruction error: 0.2087675885148049, decrease = 2.3054872455574582e-09
iteration 2, reconstruction error: 0.20876758621242117, decrease = 2.302383728114421e-09
iteration 3, reconstruction error: 0.2087675839130993, decrease = 2.299321871790383e-09
iteration 4, reconstruction error: 0.20876758161683856, decrease = 2.296260737111311e-09
PARAFAC2 reconstruction error=0.8189083525233201, variation=1.0130852823309056e-09.
Starting iteration 1764
reconstruction error=0.2087675787003912
iteration 1, reconstruction error: 0.20876757639647295, decrease = 2.3039182506234823e-09
iteration 2, reconstruction error: 0.20876757409564972, decrease = 2.3008232263865835e-09
iteration 3, reconstruction error: 0.2087675717978853, decrease = 2.297764423175863e-09
iteration 4, reconstruction error: 0.20876756950317735, decrease = 2.2947079514334945e-09
PARAFAC2 reconstruction error=0.8189083515109243, variation=1.0123957228103109e-09.
Starting iteration 1765
reconstruction error=0.20876756658873175
iteration 1, reconstruction error: 0.20876756428637708, decrease = 2.3023546680267515e-09
iteration 2, reconstruction error: 0.20876756198711824, decrease = 2.29925883887816e-09
iteration 3, reconstruction error: 0.2087675596909097, decrease = 2.296208528873578e-09
iteration 4, reconstruction error: 0.20876755739775688, decrease = 2.2931528342873264e-09
PARAFAC2 reconstruction error=0.8189083504992176, variation=1.0117067184012285e-09.
Starting iteration 1766
reconstruction error=0.2087675544853075
iteration 1, reconstruction error: 0.20876755218451876, decrease = 2.300788753961669e-09
iteration 2, reconstruction error: 0.20876754988681814, decrease = 2.297700613107523e-09
iteration 3, reconstruction error: 0.2087675475921678, decrease = 2.2946503308585164e-09
iteration 4, reconstruction error: 0.20876754530056085, decrease = 2.2916069597478383e-09
PARAFAC2 reconstruction error=0.8189083494881995, variation=1.011018158081356e-09.
Starting iteration 1767
reconstruction error=0.20876754239011402
iteration 1, reconstruction error: 0.2087675400908858, decrease = 2.299228224478256e-09
iteration 2, reconstruction error: 0.2087675377947449, decrease = 2.2961408885358026e-09
iteration 3, reconstruction error: 0.20876753550165122, decrease = 2.2930936871556895e-09
iteration 4, reconstruction error: 0.20876753321159247, decrease = 2.2900587537399986e-09
PARAFAC2 reconstruction error=0.8189083484778689, variation=1.0103305969622056e-09.
Starting iteration 1768
reconstruction error=0.20876753030314113
iteration 1, reconstruction error: 0.2087675280054773, decrease = 2.297663836969832e-09
iteration 2, reconstruction error: 0.2087675257108877, decrease = 2.2945896016590694e-09
iteration 3, reconstruction error: 0.20876752341934837, decrease = 2.291539319410063e-09
iteration 4, reconstruction error: 0.20876752113084085, decrease = 2.2885075223744167e-09
PARAFAC2 reconstruction error=0.8189083474682256, variation=1.0096432578876602e-09.
Starting iteration 1769
reconstruction error=0.20876751822438122
iteration 1, reconstruction error: 0.20876751592827636, decrease = 2.2961048617986535e-09
iteration 2, reconstruction error: 0.20876751363524648, decrease = 2.293029877087349e-09
iteration 3, reconstruction error: 0.20876751134525767, decrease = 2.289988809689447e-09
iteration 4, reconstruction error: 0.208767509058296, decrease = 2.2869616755905042e-09
PARAFAC2 reconstruction error=0.8189083464592688, variation=1.0089568069915344e-09.
Starting iteration 1770
reconstruction error=0.20876750615382816
iteration 1, reconstruction error: 0.20876750385928228, decrease = 2.294545886627475e-09
iteration 2, reconstruction error: 0.20876750156780755, decrease = 2.2914747321856055e-09
iteration 3, reconstruction error: 0.20876749927936686, decrease = 2.2884406869483342e-09
iteration 4, reconstruction error: 0.2087674969939534, decrease = 2.2854134695826644e-09
PARAFAC2 reconstruction error=0.818908345450998, variation=1.0082708001846186e-09.
Starting iteration 1771
reconstruction error=0.20876749409147952
iteration 1, reconstruction error: 0.20876749179848955, decrease = 2.292989964569614e-09
iteration 2, reconstruction error: 0.20876748950856758, decrease = 2.2899219742633647e-09
iteration 3, reconstruction error: 0.20876748722167435, decrease = 2.286893230341036e-09
iteration 4, reconstruction error: 0.20876748493780595, decrease = 2.2838683999548692e-09
PARAFAC2 reconstruction error=0.8189083444434127, variation=1.007585348489215e-09.
Starting iteration 1772
reconstruction error=0.2087674820373154
iteration 1, reconstruction error: 0.20876747974588591, decrease = 2.291429490597352e-09
iteration 2, reconstruction error: 0.20876747745751448, decrease = 2.2883714367871733e-09
iteration 3, reconstruction error: 0.20876747517216862, decrease = 2.2853458570004648e-09
iteration 4, reconstruction error: 0.20876747288984532, decrease = 2.2823233025714984e-09
PARAFAC2 reconstruction error=0.8189083434365119, variation=1.0069007849722311e-09.
Starting iteration 1773
reconstruction error=0.20876746999134277
iteration 1, reconstruction error: 0.20876746770146765, decrease = 2.2898751228517256e-09
iteration 2, reconstruction error: 0.20876746541464514, decrease = 2.2868225091343675e-09
iteration 3, reconstruction error: 0.20876746313084207, decrease = 2.28380306332987e-09
iteration 4, reconstruction error: 0.20876746085005846, decrease = 2.2807836175253726e-09
PARAFAC2 reconstruction error=0.8189083424302952, variation=1.006216665544457e-09.
Starting iteration 1774
reconstruction error=0.20876745795354457
iteration 1, reconstruction error: 0.20876745566521915, decrease = 2.2883254180428025e-09
iteration 2, reconstruction error: 0.20876745337994712, decrease = 2.285272027169327e-09
iteration 3, reconstruction error: 0.20876745109769226, decrease = 2.2822548573220303e-09
iteration 4, reconstruction error: 0.20876744881845066, decrease = 2.279241601010895e-09
PARAFAC2 reconstruction error=0.8189083414247622, variation=1.005532990205893e-09.
Starting iteration 1775
reconstruction error=0.20876744592391858
iteration 1, reconstruction error: 0.20876744363714902, decrease = 2.286769551496093e-09
iteration 2, reconstruction error: 0.2087674413534198, decrease = 2.2837292334987325e-09
iteration 3, reconstruction error: 0.20876743907270848, decrease = 2.280711314250894e-09
iteration 4, reconstruction error: 0.20876743679500426, decrease = 2.2777042196775454e-09
PARAFAC2 reconstruction error=0.8189083404199121, variation=1.004850092023446e-09.
Starting iteration 1776
reconstruction error=0.20876743390245545
iteration 1, reconstruction error: 0.20876743161723332, decrease = 2.2852221226443703e-09
iteration 2, reconstruction error: 0.2087674293350546, decrease = 2.2821787237781166e-09
iteration 3, reconstruction error: 0.20876742705588527, decrease = 2.279169325491992e-09
iteration 4, reconstruction error: 0.20876742477971688, decrease = 2.2761683926564302e-09
PARAFAC2 reconstruction error=0.8189083394157444, variation=1.0041677489525114e-09.
Starting iteration 1777
reconstruction error=0.20876742188914835
iteration 1, reconstruction error: 0.20876741960547596, decrease = 2.2836723900798717e-09
iteration 2, reconstruction error: 0.20876741732484155, decrease = 2.280634403550863e-09
iteration 3, reconstruction error: 0.20876741504721114, decrease = 2.2776304176019835e-09
iteration 4, reconstruction error: 0.2087674127725809, decrease = 2.2746302341669633e-09
PARAFAC2 reconstruction error=0.8189083384122584, variation=1.003485960993089e-09.
Starting iteration 1778
reconstruction error=0.2087674098839919
iteration 1, reconstruction error: 0.20876740760186618, decrease = 2.2821257106286907e-09
iteration 2, reconstruction error: 0.20876740532277296, decrease = 2.279093219703654e-09
iteration 3, reconstruction error: 0.20876740304668073, decrease = 2.276092231356941e-09
iteration 4, reconstruction error: 0.20876740077358866, decrease = 2.2730920756774964e-09
PARAFAC2 reconstruction error=0.8189083374094533, variation=1.0028050612120865e-09.
Starting iteration 1779
reconstruction error=0.20876739788697607
iteration 1, reconstruction error: 0.20876739560639695, decrease = 2.2805791144442367e-09
iteration 2, reconstruction error: 0.20876739332884578, decrease = 2.277551175433601e-09
iteration 3, reconstruction error: 0.20876739105429398, decrease = 2.2745517969102735e-09
iteration 4, reconstruction error: 0.20876738878273465, decrease = 2.2715593295252745e-09
PARAFAC2 reconstruction error=0.818908336407329, variation=1.0021243834756888e-09.
Starting iteration 1780
reconstruction error=0.2087673858980924
iteration 1, reconstruction error: 0.20876738361905917, decrease = 2.2790332399047486e-09
iteration 2, reconstruction error: 0.2087673813430515, decrease = 2.27600766011804e-09
iteration 3, reconstruction error: 0.20876737907003248, decrease = 2.273019023002476e-09
iteration 4, reconstruction error: 0.20876737680000204, decrease = 2.270030441398063e-09
PARAFAC2 reconstruction error=0.8189083354058844, variation=1.0014445939177108e-09.
Starting iteration 1781
reconstruction error=0.20876737391733702
iteration 1, reconstruction error: 0.20876737163984657, decrease = 2.277490446234154e-09
iteration 2, reconstruction error: 0.20876736936537785, decrease = 2.274468724472456e-09
iteration 3, reconstruction error: 0.2087673670939008, decrease = 2.271477034243574e-09
iteration 4, reconstruction error: 0.20876736482540081, decrease = 2.2684999989586174e-09
PARAFAC2 reconstruction error=0.8189083344051192, variation=1.0007651374266402e-09.
Starting iteration 1782
reconstruction error=0.20876736194470763
iteration 1, reconstruction error: 0.20876735966875531, decrease = 2.2759523155002626e-09
iteration 2, reconstruction error: 0.20876735739582397, decrease = 2.2729313431391063e-09
iteration 3, reconstruction error: 0.2087673551258774, decrease = 2.2699465640485528e-09
iteration 4, reconstruction error: 0.20876735285890863, decrease = 2.2669687793630544e-09
PARAFAC2 reconstruction error=0.8189083334050327, variation=1.0000865691139893e-09.
Starting iteration 1783
reconstruction error=0.20876734998018423
iteration 1, reconstruction error: 0.20876734770577546, decrease = 2.274408772429126e-09
iteration 2, reconstruction error: 0.20876734543437844, decrease = 2.2713970149190743e-09
iteration 3, reconstruction error: 0.20876734316596615, decrease = 2.268412291339672e-09
iteration 4, reconstruction error: 0.20876734090052776, decrease = 2.26543839243476e-09
PARAFAC2 reconstruction error=0.8189083324056242, variation=9.994084448905483e-10.
Starting iteration 1784
reconstruction error=0.2087673380237714
iteration 1, reconstruction error: 0.20876733575090156, decrease = 2.272869836783542e-09
iteration 2, reconstruction error: 0.20876733348104576, decrease = 2.2698558033162897e-09
iteration 3, reconstruction error: 0.20876733121415925, decrease = 2.2668865118369297e-09
iteration 4, reconstruction error: 0.20876732895024133, decrease = 2.26391791424696e-09
PARAFAC2 reconstruction error=0.8189083314068936, variation=9.987306537340146e-10.
Starting iteration 1785
reconstruction error=0.20876732607545614
iteration 1, reconstruction error: 0.2087673238041252, decrease = 2.271330956649109e-09
iteration 2, reconstruction error: 0.2087673215357983, decrease = 2.2683268874335027e-09
iteration 3, reconstruction error: 0.20876731927044379, decrease = 2.2653545150852494e-09
iteration 4, reconstruction error: 0.20876731700805165, decrease = 2.2623921347442177e-09
PARAFAC2 reconstruction error=0.8189083304088396, variation=9.980539728005056e-10.
Starting iteration 1786
reconstruction error=0.20876731413523064
iteration 1, reconstruction error: 0.20876731186543554, decrease = 2.2697951018724183e-09
iteration 2, reconstruction error: 0.20876730959864062, decrease = 2.266794918437398e-09
iteration 3, reconstruction error: 0.20876730733481733, decrease = 2.2638232954896864e-09
iteration 4, reconstruction error: 0.20876730507395178, decrease = 2.2608655503297825e-09
PARAFAC2 reconstruction error=0.8189083294114622, variation=9.97377402889299e-10.
Starting iteration 1787
reconstruction error=0.20876730220308728
iteration 1, reconstruction error: 0.20876729993483112, decrease = 2.268256166226834e-09
iteration 2, reconstruction error: 0.20876729766957128, decrease = 2.2652598408168245e-09
iteration 3, reconstruction error: 0.20876729540726915, decrease = 2.2623021234124963e-09
iteration 4, reconstruction error: 0.2087672931479302, decrease = 2.2593389659153473e-09
PARAFAC2 reconstruction error=0.8189083284147601, variation=9.967020542234195e-10.
Starting iteration 1788
reconstruction error=0.20876729027902532
iteration 1, reconstruction error: 0.2087672880123019, decrease = 2.2667234200746122e-09
iteration 2, reconstruction error: 0.2087672857485702, decrease = 2.263731702090155e-09
iteration 3, reconstruction error: 0.20876728348779927, decrease = 2.260770931572509e-09
iteration 4, reconstruction error: 0.2087672812299738, decrease = 2.2578254821326027e-09
PARAFAC2 reconstruction error=0.8189083274187332, variation=9.96026927602145e-10.
Starting iteration 1789
reconstruction error=0.20876727836303544
iteration 1, reconstruction error: 0.20876727609784246, decrease = 2.2651929776351665e-09
iteration 2, reconstruction error: 0.20876727383563656, decrease = 2.262205894831837e-09
iteration 3, reconstruction error: 0.20876727157639222, decrease = 2.2592443471580737e-09
iteration 4, reconstruction error: 0.20876726932009096, decrease = 2.256301256942095e-09
PARAFAC2 reconstruction error=0.818908326423381, variation=9.953522450700802e-10.
Starting iteration 1790
reconstruction error=0.20876726645510535
iteration 1, reconstruction error: 0.2087672641914436, decrease = 2.2636617580396035e-09
iteration 2, reconstruction error: 0.20876726193076967, decrease = 2.2606739258357322e-09
iteration 3, reconstruction error: 0.2087672596730442, decrease = 2.2577254787936596e-09
iteration 4, reconstruction error: 0.20876725741826338, decrease = 2.2547808065098707e-09
PARAFAC2 reconstruction error=0.8189083254287026, variation=9.946783396941328e-10.
Starting iteration 1791
reconstruction error=0.20876725455523043
iteration 1, reconstruction error: 0.20876725229310142, decrease = 2.2621290118873816e-09
iteration 2, reconstruction error: 0.20876725003395177, decrease = 2.259149645134073e-09
iteration 3, reconstruction error: 0.20876724777774824, decrease = 2.256203529560352e-09
iteration 4, reconstruction error: 0.20876724552448164, decrease = 2.25326660108216e-09
PARAFAC2 reconstruction error=0.8189083244346979, variation=9.940047673850927e-10.
Starting iteration 1792
reconstruction error=0.20876724266340688
iteration 1, reconstruction error: 0.20876724040280292, decrease = 2.2606039540296052e-09
iteration 2, reconstruction error: 0.20876723814517598, decrease = 2.257626946500224e-09
iteration 3, reconstruction error: 0.20876723589049598, decrease = 2.2546799982592347e-09
iteration 4, reconstruction error: 0.20876723363874977, decrease = 2.251746206161087e-09
PARAFAC2 reconstruction error=0.8189083234413655, variation=9.933323052990772e-10.
Starting iteration 1793
reconstruction error=0.20876723077962311
iteration 1, reconstruction error: 0.2087672285205488, decrease = 2.2590743165018523e-09
iteration 2, reconstruction error: 0.2087672262644492, decrease = 2.2560995849296717e-09
iteration 3, reconstruction error: 0.20876722401127806, decrease = 2.253171149657618e-09
iteration 4, reconstruction error: 0.20876722176105073, decrease = 2.250227337796673e-09
PARAFAC2 reconstruction error=0.8189083224487055, variation=9.926600652576667e-10.
Starting iteration 1794
reconstruction error=0.2087672189038753
iteration 1, reconstruction error: 0.20876721664632528, decrease = 2.257550035800193e-09
iteration 2, reconstruction error: 0.2087672143917476, decrease = 2.25457766345194e-09
iteration 3, reconstruction error: 0.20876721214010072, decrease = 2.2516468967115344e-09
iteration 4, reconstruction error: 0.2087672098913807, decrease = 2.248720015751715e-09
PARAFAC2 reconstruction error=0.8189083214567168, variation=9.919887133946759e-10.
Starting iteration 1795
reconstruction error=0.20876720703615723
iteration 1, reconstruction error: 0.20876720478012994, decrease = 2.256027281655193e-09
iteration 2, reconstruction error: 0.20876720252707348, decrease = 2.253056463619174e-09
iteration 3, reconstruction error: 0.20876720027694234, decrease = 2.2501311369715893e-09
iteration 4, reconstruction error: 0.20876719802973578, decrease = 2.247206559724546e-09
PARAFAC2 reconstruction error=0.8189083204653992, variation=9.9131758357629e-10.
Starting iteration 1796
reconstruction error=0.20876719517645284
iteration 1, reconstruction error: 0.2087671929219552, decrease = 2.25449764412744e-09
iteration 2, reconstruction error: 0.2087671906704153, decrease = 2.251539898967536e-09
iteration 3, reconstruction error: 0.20876718842179842, decrease = 2.2486168760327274e-09
iteration 4, reconstruction error: 0.20876718617610301, decrease = 2.245695407410153e-09
PARAFAC2 reconstruction error=0.8189083194747521, variation=9.906471198917188e-10.
Starting iteration 1797
reconstruction error=0.20876718332476973
iteration 1, reconstruction error: 0.20876718107178863, decrease = 2.2529811072313777e-09
iteration 2, reconstruction error: 0.20876717882176607, decrease = 2.250022557159781e-09
iteration 3, reconstruction error: 0.20876717657466573, decrease = 2.247100339136665e-09
iteration 4, reconstruction error: 0.20876717433048225, decrease = 2.244183477939643e-09
PARAFAC2 reconstruction error=0.8189083184847746, variation=9.89977433363265e-10.
Starting iteration 1798
reconstruction error=0.20876717148109172
iteration 1, reconstruction error: 0.2087671692296303, decrease = 2.2514614339552708e-09
iteration 2, reconstruction error: 0.20876716698112274, decrease = 2.2485075468203775e-09
iteration 3, reconstruction error: 0.2087671647355374, decrease = 2.2455853287972616e-09
iteration 4, reconstruction error: 0.20876716249285737, decrease = 2.2426800416752712e-09
PARAFAC2 reconstruction error=0.8189083174954664, variation=9.893081909240209e-10.
Starting iteration 1799
reconstruction error=0.20876715964540896
iteration 1, reconstruction error: 0.20876715739546944, decrease = 2.249939512477539e-09
iteration 2, reconstruction error: 0.20876715514847766, decrease = 2.2469917870804323e-09
iteration 3, reconstruction error: 0.20876715290440195, decrease = 2.2440757030395275e-09
iteration 4, reconstruction error: 0.20876715066322923, decrease = 2.2411727196303133e-09
PARAFAC2 reconstruction error=0.8189083165068268, variation=9.886396146185916e-10.
Starting iteration 1800
reconstruction error=0.208767147817719
iteration 1, reconstruction error: 0.2087671455692999, decrease = 2.2484190898008904e-09
iteration 2, reconstruction error: 0.20876714332382004, decrease = 2.245479857609922e-09
iteration 3, reconstruction error: 0.2087671410812555, decrease = 2.2425645507251346e-09
iteration 4, reconstruction error: 0.2087671388415893, decrease = 2.239666202497048e-09
PARAFAC2 reconstruction error=0.8189083155188551, variation=9.879717044469771e-10.
Starting iteration 1801
reconstruction error=0.2087671359980157
iteration 1, reconstruction error: 0.2087671337511124, decrease = 2.2469033023053697e-09
iteration 2, reconstruction error: 0.20876713150714754, decrease = 2.2439648472705187e-09
iteration 3, reconstruction error: 0.2087671292660872, decrease = 2.2410603373046456e-09
iteration 4, reconstruction error: 0.20876712702792752, decrease = 2.238159685363783e-09
PARAFAC2 reconstruction error=0.8189083145315509, variation=9.873042383645725e-10.
Starting iteration 1802
reconstruction error=0.20876712418629217
iteration 1, reconstruction error: 0.20876712194090002, decrease = 2.245392149990977e-09
iteration 2, reconstruction error: 0.20876711969845096, decrease = 2.242449059774998e-09
iteration 3, reconstruction error: 0.2087671174588941, decrease = 2.2395568732846982e-09
iteration 4, reconstruction error: 0.20876711522224015, decrease = 2.236653945386635e-09
PARAFAC2 reconstruction error=0.8189083135449134, variation=9.866374384159826e-10.
Starting iteration 1803
reconstruction error=0.2087671123825399
iteration 1, reconstruction error: 0.20876711013866356, decrease = 2.2438763347398805e-09
iteration 2, reconstruction error: 0.20876710789771716, decrease = 2.2409464006667434e-09
iteration 3, reconstruction error: 0.20876710565967296, decrease = 2.2380441944136464e-09
iteration 4, reconstruction error: 0.20876710342451554, decrease = 2.2351574202605917e-09
PARAFAC2 reconstruction error=0.8189083125589424, variation=9.859710825566026e-10.
Starting iteration 1804
reconstruction error=0.2087671005867474
iteration 1, reconstruction error: 0.20876709834438453, decrease = 2.2423628787127114e-09
iteration 2, reconstruction error: 0.2087670961049485, decrease = 2.2394360255084678e-09
iteration 3, reconstruction error: 0.20876709386840933, decrease = 2.2365391760814646e-09
iteration 4, reconstruction error: 0.20876709163475302, decrease = 2.2336563154645717e-09
PARAFAC2 reconstruction error=0.8189083115736369, variation=9.853055038533398e-10.
Starting iteration 1805
reconstruction error=0.20876708879891773
iteration 1, reconstruction error: 0.2087670865580637, decrease = 2.2408540301110946e-09
iteration 2, reconstruction error: 0.20876708432013885, decrease = 2.2379248454384992e-09
iteration 3, reconstruction error: 0.20876708208509842, decrease = 2.235040430509372e-09
iteration 4, reconstruction error: 0.20876707985294093, decrease = 2.232157486625752e-09
PARAFAC2 reconstruction error=0.8189083105889965, variation=9.846403692392869e-10.
Starting iteration 1806
reconstruction error=0.20876707701903394
iteration 1, reconstruction error: 0.2087670747796918, decrease = 2.23934212839616e-09
iteration 2, reconstruction error: 0.20876707254327043, decrease = 2.236421381418552e-09
iteration 3, reconstruction error: 0.20876707030973035, decrease = 2.2335400751138934e-09
iteration 4, reconstruction error: 0.20876706807907477, decrease = 2.230655576918039e-09
PARAFAC2 reconstruction error=0.8189083096050205, variation=9.839760117813512e-10.
Starting iteration 1807
reconstruction error=0.2087670652470922
iteration 1, reconstruction error: 0.2087670630092597, decrease = 2.237832502638426e-09
iteration 2, reconstruction error: 0.20876706077434715, decrease = 2.2349125605725106e-09
iteration 3, reconstruction error: 0.20876705854230593, decrease = 2.2320412185194982e-09
iteration 4, reconstruction error: 0.208767056313143, decrease = 2.229162937572582e-09
PARAFAC2 reconstruction error=0.8189083086217083, variation=9.833122094349278e-10.
Starting iteration 1808
reconstruction error=0.20876705348309327
iteration 1, reconstruction error: 0.2087670512467665, decrease = 2.236326762661278e-09
iteration 2, reconstruction error: 0.20876704901335275, decrease = 2.2334137594892667e-09
iteration 3, reconstruction error: 0.20876704678281344, decrease = 2.2305393088117853e-09
iteration 4, reconstruction error: 0.20876704455514544, decrease = 2.2276679945143485e-09
PARAFAC2 reconstruction error=0.8189083076390596, variation=9.826486291331094e-10.
Starting iteration 1809
reconstruction error=0.20876704172701938
iteration 1, reconstruction error: 0.20876703949219994, decrease = 2.2348194406163202e-09
iteration 2, reconstruction error: 0.20876703726028886, decrease = 2.2319110726254365e-09
iteration 3, reconstruction error: 0.2087670350312445, decrease = 2.229044365753552e-09
iteration 4, reconstruction error: 0.2087670328050707, decrease = 2.2261738008566567e-09
PARAFAC2 reconstruction error=0.8189083066570736, variation=9.81986048032013e-10.
Starting iteration 1810
reconstruction error=0.20876702997886915
iteration 1, reconstruction error: 0.20876702774555236, decrease = 2.2333167815080657e-09
iteration 2, reconstruction error: 0.20876702551513623, decrease = 2.230416129567203e-09
iteration 3, reconstruction error: 0.20876702328759378, decrease = 2.227542456045839e-09
iteration 4, reconstruction error: 0.2087670210629134, decrease = 2.224680384355082e-09
PARAFAC2 reconstruction error=0.8189083056757497, variation=9.813239110201266e-10.
Starting iteration 1811
reconstruction error=0.2087670182386286
iteration 1, reconstruction error: 0.20876701600681988, decrease = 2.231808710062566e-09
iteration 2, reconstruction error: 0.20876701377790566, decrease = 2.2289142198594902e-09
iteration 3, reconstruction error: 0.20876701155185662, decrease = 2.2260490395442645e-09
iteration 4, reconstruction error: 0.20876700932866502, decrease = 2.2231916030346355e-09
PARAFAC2 reconstruction error=0.8189083046950875, variation=9.8066221809745e-10.
Starting iteration 1812
reconstruction error=0.2087670065063001
iteration 1, reconstruction error: 0.20876700427599096, decrease = 2.230309131823205e-09
iteration 2, reconstruction error: 0.20876700204857865, decrease = 2.2274123101517773e-09
iteration 3, reconstruction error: 0.20876699982402222, decrease = 2.224556427954383e-09
iteration 4, reconstruction error: 0.20876699760232326, decrease = 2.221698963689178e-09
PARAFAC2 reconstruction error=0.8189083037150862, variation=9.800013023308907e-10.
Starting iteration 1813
reconstruction error=0.20876699478187352
iteration 1, reconstruction error: 0.2087669925530663, decrease = 2.228807222115492e-09
iteration 2, reconstruction error: 0.20876699032714896, decrease = 2.2259173393379683e-09
iteration 3, reconstruction error: 0.20876698810408903, decrease = 2.223059930583915e-09
iteration 4, reconstruction error: 0.20876698588387732, decrease = 2.2202117089253903e-09
PARAFAC2 reconstruction error=0.818908302735745, variation=9.793411637204485e-10.
Starting iteration 1814
reconstruction error=0.20876698306533903
iteration 1, reconstruction error: 0.20876698083803372, decrease = 2.227305312407779e-09
iteration 2, reconstruction error: 0.20876697861361054, decrease = 2.224423173435852e-09
iteration 3, reconstruction error: 0.20876697639203862, decrease = 2.2215719264195855e-09
iteration 4, reconstruction error: 0.20876697417331802, decrease = 2.218720596136592e-09
PARAFAC2 reconstruction error=0.8189083017570641, variation=9.78680914087704e-10.
Starting iteration 1815
reconstruction error=0.20876697135669653
iteration 1, reconstruction error: 0.20876696913088771, decrease = 2.225808815037311e-09
iteration 2, reconstruction error: 0.20876696690795873, decrease = 2.2229289797781604e-09
iteration 3, reconstruction error: 0.20876696468787717, decrease = 2.2200815630313286e-09
iteration 4, reconstruction error: 0.20876696247064225, decrease = 2.217234923440614e-09
PARAFAC2 reconstruction error=0.8189083007790421, variation=9.78021996722589e-10.
Starting iteration 1816
reconstruction error=0.2087669596559322
iteration 1, reconstruction error: 0.20876695743162144, decrease = 2.224310763354609e-09
iteration 2, reconstruction error: 0.2087669552101812, decrease = 2.2214402262132893e-09
iteration 3, reconstruction error: 0.20876695299159076, decrease = 2.2185904502425302e-09
iteration 4, reconstruction error: 0.20876695077583846, decrease = 2.215752303857954e-09
PARAFAC2 reconstruction error=0.8189082998016788, variation=9.773633014020788e-10.
Starting iteration 1817
reconstruction error=0.2087669479630422
iteration 1, reconstruction error: 0.20876694574021942, decrease = 2.222822786945855e-09
iteration 2, reconstruction error: 0.2087669435202788, decrease = 2.2199406202183525e-09
iteration 3, reconstruction error: 0.20876694130317328, decrease = 2.217105526947094e-09
iteration 4, reconstruction error: 0.20876693908890667, decrease = 2.2142666034064007e-09
PARAFAC2 reconstruction error=0.8189082988249736, variation=9.76705161193081e-10.
Starting iteration 1818
reconstruction error=0.20876693627801798
iteration 1, reconstruction error: 0.2087669340566925, decrease = 2.2213254846636943e-09
iteration 2, reconstruction error: 0.20876693183823836, decrease = 2.218454142610682e-09
iteration 3, reconstruction error: 0.2087669296226224, decrease = 2.21561596847053e-09
iteration 4, reconstruction error: 0.20876692740983221, decrease = 2.212790173317103e-09
PARAFAC2 reconstruction error=0.8189082978489257, variation=9.76047909162503e-10.
Starting iteration 1819
reconstruction error=0.20876692460085272
iteration 1, reconstruction error: 0.2087669223810191, decrease = 2.2198336224743542e-09
iteration 2, reconstruction error: 0.20876692016405604, decrease = 2.216963057577459e-09
iteration 3, reconstruction error: 0.2087669179499204, decrease = 2.214135652600646e-09
iteration 4, reconstruction error: 0.20876691573861283, decrease = 2.211307553734443e-09
PARAFAC2 reconstruction error=0.8189082968735351, variation=9.753906571319249e-10.
Starting iteration 1820
reconstruction error=0.20876691293154176
iteration 1, reconstruction error: 0.20876691071320003, decrease = 2.2183417325294386e-09
iteration 2, reconstruction error: 0.2087669084977219, decrease = 2.215478134282023e-09
iteration 3, reconstruction error: 0.20876690628507039, decrease = 2.2126515064613272e-09
iteration 4, reconstruction error: 0.20876690407524467, decrease = 2.2098257113079e-09
PARAFAC2 reconstruction error=0.8189082958988007, variation=9.74734404302069e-10.
Starting iteration 1821
reconstruction error=0.20876690127007355
iteration 1, reconstruction error: 0.20876689905322213, decrease = 2.216851424652333e-09
iteration 2, reconstruction error: 0.2087668968392305, decrease = 2.2139916289187767e-09
iteration 3, reconstruction error: 0.20876689462806236, decrease = 2.2111681374781256e-09
iteration 4, reconstruction error: 0.20876689241971236, decrease = 2.2083500028635683e-09
PARAFAC2 reconstruction error=0.8189082949247218, variation=9.740788176060278e-10.
Starting iteration 1822
reconstruction error=0.20876688961644885
iteration 1, reconstruction error: 0.20876688740108468, decrease = 2.215364169888545e-09
iteration 2, reconstruction error: 0.20876688518857797, decrease = 2.2125067056233405e-09
iteration 3, reconstruction error: 0.20876688297889015, decrease = 2.2096878216082416e-09
iteration 4, reconstruction error: 0.2087668807720204, decrease = 2.2068697425048356e-09
PARAFAC2 reconstruction error=0.8189082939512984, variation=9.734234529545915e-10.
Starting iteration 1823
reconstruction error=0.2087668779706515
iteration 1, reconstruction error: 0.2087668757567777, decrease = 2.2138738065002883e-09
iteration 2, reconstruction error: 0.20876687354575435, decrease = 2.211023336640139e-09
iteration 3, reconstruction error: 0.20876687133754837, decrease = 2.208205979181699e-09
iteration 4, reconstruction error: 0.20876686913215353, decrease = 2.2053948389721967e-09
PARAFAC2 reconstruction error=0.8189082929785294, variation=9.72768976481575e-10.
Starting iteration 1824
reconstruction error=0.2087668663326846
iteration 1, reconstruction error: 0.20876686412029338, decrease = 2.212391214673204e-09
iteration 2, reconstruction error: 0.20876686191075347, decrease = 2.209539912145786e-09
iteration 3, reconstruction error: 0.20876685970402392, decrease = 2.206729549092401e-09
iteration 4, reconstruction error: 0.20876685750010476, decrease = 2.2039191582834405e-09
PARAFAC2 reconstruction error=0.8189082920064144, variation=9.721150551200708e-10.
Starting iteration 1825
reconstruction error=0.20876685470253195
iteration 1, reconstruction error: 0.20876685249162952, decrease = 2.210902433352757e-09
iteration 2, reconstruction error: 0.20876685028356912, decrease = 2.208060401187595e-09
iteration 3, reconstruction error: 0.20876684807831525, decrease = 2.205253868403645e-09
iteration 4, reconstruction error: 0.20876684587587024, decrease = 2.2024450041513433e-09
PARAFAC2 reconstruction error=0.8189082910349531, variation=9.71461244780869e-10.
Starting iteration 1826
reconstruction error=0.20876684308018975
iteration 1, reconstruction error: 0.2087668408707715, decrease = 2.2094182594578626e-09
iteration 2, reconstruction error: 0.20876683866418985, decrease = 2.2065816396299454e-09
iteration 3, reconstruction error: 0.2087668364604155, decrease = 2.203774357445454e-09
iteration 4, reconstruction error: 0.20876683425944387, decrease = 2.2009716271753632e-09
PARAFAC2 reconstruction error=0.8189082900641446, variation=9.70808544664692e-10.
Starting iteration 1827
reconstruction error=0.20876683146565564
iteration 1, reconstruction error: 0.20876682925772, decrease = 2.2079356398752026e-09
iteration 2, reconstruction error: 0.2087668270526171, decrease = 2.2051029058278715e-09
iteration 3, reconstruction error: 0.20876682485031461, decrease = 2.202302479270557e-09
iteration 4, reconstruction error: 0.20876682265081167, decrease = 2.199502940891662e-09
PARAFAC2 reconstruction error=0.8189082890939882, variation=9.70156399660027e-10.
Starting iteration 1828
reconstruction error=0.2087668198589166
iteration 1, reconstruction error: 0.2087668176524628, decrease = 2.2064537974486598e-09
iteration 2, reconstruction error: 0.20876681544883635, decrease = 2.203626447982998e-09
iteration 3, reconstruction error: 0.20876681324800644, decrease = 2.20082990720627e-09
iteration 4, reconstruction error: 0.2087668110499738, decrease = 2.1980326447845755e-09
PARAFAC2 reconstruction error=0.8189082881244838, variation=9.695043656776647e-10.
Starting iteration 1829
reconstruction error=0.2087668082599718
iteration 1, reconstruction error: 0.20876680605499676, decrease = 2.2049750358910103e-09
iteration 2, reconstruction error: 0.208766803852846, decrease = 2.202150767294242e-09
iteration 3, reconstruction error: 0.20876680165348943, decrease = 2.1993565579858654e-09
iteration 4, reconstruction error: 0.20876679945692245, decrease = 2.1965669838586166e-09
PARAFAC2 reconstruction error=0.8189082871556302, variation=9.688535529406295e-10.
Starting iteration 1830
reconstruction error=0.20876679666880968
iteration 1, reconstruction error: 0.20876679446531263, decrease = 2.203497051489478e-09
iteration 2, reconstruction error: 0.20876679226463601, decrease = 2.2006766131621447e-09
iteration 3, reconstruction error: 0.20876679006675355, decrease = 2.1978824593649193e-09
iteration 4, reconstruction error: 0.20876678787165068, decrease = 2.195102877244892e-09
PARAFAC2 reconstruction error=0.8189082861874275, variation=9.682027402035942e-10.
Starting iteration 1831
reconstruction error=0.20876678508542335
iteration 1, reconstruction error: 0.20876678288340275, decrease = 2.2020205936446047e-09
iteration 2, reconstruction error: 0.20876678068420026, decrease = 2.199202486785623e-09
iteration 3, reconstruction error: 0.20876677848778655, decrease = 2.196413717570067e-09
iteration 4, reconstruction error: 0.2087667762941501, decrease = 2.193636439162816e-09
PARAFAC2 reconstruction error=0.8189082852198746, variation=9.67552926667281e-10.
Starting iteration 1832
reconstruction error=0.20876677350980827
iteration 1, reconstruction error: 0.20876677130926333, decrease = 2.200544940711424e-09
iteration 2, reconstruction error: 0.20876676911153266, decrease = 2.1977306641218775e-09
iteration 3, reconstruction error: 0.20876676691658613, decrease = 2.1949465300874493e-09
iteration 4, reconstruction error: 0.20876676472441377, decrease = 2.1921723603046672e-09
PARAFAC2 reconstruction error=0.8189082842529714, variation=9.669032241532705e-10.
Starting iteration 1833
reconstruction error=0.20876676194195815
iteration 1, reconstruction error: 0.20876675974288583, decrease = 2.1990723131359857e-09
iteration 2, reconstruction error: 0.20876675754662619, decrease = 2.1962596463698247e-09
iteration 3, reconstruction error: 0.20876675535314917, decrease = 2.19347701113648e-09
iteration 4, reconstruction error: 0.20876675316243862, decrease = 2.190710557403719e-09
PARAFAC2 reconstruction error=0.8189082832867168, variation=9.66254520839982e-10.
Starting iteration 1834
reconstruction error=0.2087667503818607
iteration 1, reconstruction error: 0.20876674818426869, decrease = 2.1975920250216774e-09
iteration 2, reconstruction error: 0.2087667459894793, decrease = 2.1947893780183136e-09
iteration 3, reconstruction error: 0.20876674379746332, decrease = 2.1920159853916488e-09
iteration 4, reconstruction error: 0.2087667416082161, decrease = 2.1892472279461117e-09
PARAFAC2 reconstruction error=0.8189082823211106, variation=9.656062616159033e-10.
Starting iteration 1835
reconstruction error=0.20876673882951757
iteration 1, reconstruction error: 0.20876673663339118, decrease = 2.196126391851294e-09
iteration 2, reconstruction error: 0.2087667344400698, decrease = 2.193321385624003e-09
iteration 3, reconstruction error: 0.208766732249521, decrease = 2.190548797909031e-09
iteration 4, reconstruction error: 0.20876673006173094, decrease = 2.187790060226291e-09
PARAFAC2 reconstruction error=0.8189082813561522, variation=9.649583354587321e-10.
Starting iteration 1836
reconstruction error=0.20876672728491552
iteration 1, reconstruction error: 0.2087667250902625, decrease = 2.194653014875314e-09
iteration 2, reconstruction error: 0.2087667228984083, decrease = 2.1918541981413853e-09
iteration 3, reconstruction error: 0.208766720709319, decrease = 2.1890892987208588e-09
iteration 4, reconstruction error: 0.20876671852299072, decrease = 2.1863282850809185e-09
PARAFAC2 reconstruction error=0.8189082803918408, variation=9.64311408502283e-10.
Starting iteration 1837
reconstruction error=0.2087667157480493
iteration 1, reconstruction error: 0.2087667135548673, decrease = 2.1931819971232613e-09
iteration 2, reconstruction error: 0.2087667113644757, decrease = 2.1903916180843197e-09
iteration 3, reconstruction error: 0.20876670917684817, decrease = 2.187627523575486e-09
iteration 4, reconstruction error: 0.2087667069919801, decrease = 2.1848680642477802e-09
PARAFAC2 reconstruction error=0.818908279428176, variation=9.636648146127413e-10.
Starting iteration 1838
reconstruction error=0.20876670421891572
iteration 1, reconstruction error: 0.20876670202720016, decrease = 2.191715559041185e-09
iteration 2, reconstruction error: 0.2087666998382734, decrease = 2.1889267620700537e-09
iteration 3, reconstruction error: 0.20876669765210842, decrease = 2.186164971273996e-09
iteration 4, reconstruction error: 0.20876669546869525, decrease = 2.18341317248516e-09
PARAFAC2 reconstruction error=0.8189082784651576, variation=9.630184427678046e-10.
Starting iteration 1839
reconstruction error=0.20876669269750406
iteration 1, reconstruction error: 0.20876669050725336, decrease = 2.190250703026919e-09
iteration 2, reconstruction error: 0.20876668831978992, decrease = 2.1874634326124465e-09
iteration 3, reconstruction error: 0.2087666861350829, decrease = 2.1847070263980584e-09
iteration 4, reconstruction error: 0.20876668395312686, decrease = 2.1819560325209153e-09
PARAFAC2 reconstruction error=0.8189082775027842, variation=9.623734031904974e-10.
Starting iteration 1840
reconstruction error=0.20876668118380504
iteration 1, reconstruction error: 0.20876667899502155, decrease = 2.1887834877887258e-09
iteration 2, reconstruction error: 0.2087666768090207, decrease = 2.186000852555381e-09
iteration 3, reconstruction error: 0.2087666746257716, decrease = 2.1832491092776962e-09
iteration 4, reconstruction error: 0.20876667244526886, decrease = 2.1805027228261054e-09
PARAFAC2 reconstruction error=0.8189082765410559, variation=9.617282525908877e-10.
Starting iteration 1841
reconstruction error=0.2087666696778172
iteration 1, reconstruction error: 0.20876666749049935, decrease = 2.1873178546183425e-09
iteration 2, reconstruction error: 0.20876666530595953, decrease = 2.18453982681055e-09
iteration 3, reconstruction error: 0.2087666631241645, decrease = 2.181795022426769e-09
iteration 4, reconstruction error: 0.2087666609451143, decrease = 2.1790501902874126e-09
PARAFAC2 reconstruction error=0.8189082755799719, variation=9.610839901696977e-10.
Starting iteration 1842
reconstruction error=0.20876665817953435
iteration 1, reconstruction error: 0.20876665599367678, decrease = 2.185857578274053e-09
iteration 2, reconstruction error: 0.20876665381059564, decrease = 2.1830811325340704e-09
iteration 3, reconstruction error: 0.20876665163025934, decrease = 2.180336300394714e-09
iteration 4, reconstruction error: 0.2087666494526609, decrease = 2.177598434904837e-09
PARAFAC2 reconstruction error=0.8189082746195315, variation=9.604403938823225e-10.
Starting iteration 1843
reconstruction error=0.2087666466889426
iteration 1, reconstruction error: 0.20876664450455143, decrease = 2.1843911679475525e-09
iteration 2, reconstruction error: 0.2087666423229267, decrease = 2.181624741970367e-09
iteration 3, reconstruction error: 0.20876664014404214, decrease = 2.1788845450121386e-09
iteration 4, reconstruction error: 0.20876663796789469, decrease = 2.176147456678379e-09
PARAFAC2 reconstruction error=0.8189082736597344, variation=9.597971306618547e-10.
Starting iteration 1844
reconstruction error=0.20876663520604732
iteration 1, reconstruction error: 0.2087666330231087, decrease = 2.18293863540886e-09
iteration 2, reconstruction error: 0.20876663084294345, decrease = 2.180165242782195e-09
iteration 3, reconstruction error: 0.20876662866551218, decrease = 2.1774312630729042e-09
iteration 4, reconstruction error: 0.2087666264908142, decrease = 2.174697977253004e-09
PARAFAC2 reconstruction error=0.8189082727005802, variation=9.591542005082943e-10.
Starting iteration 1845
reconstruction error=0.20876662373082938
iteration 1, reconstruction error: 0.20876662154935022, decrease = 2.181479163976263e-09
iteration 2, reconstruction error: 0.20876661937064211, decrease = 2.17870810281795e-09
iteration 3, reconstruction error: 0.2087666171946634, decrease = 2.175978702778636e-09
iteration 4, reconstruction error: 0.20876661502141103, decrease = 2.173252383608215e-09
PARAFAC2 reconstruction error=0.8189082717420677, variation=9.58512491600061e-10.
Starting iteration 1846
reconstruction error=0.20876661226328408
iteration 1, reconstruction error: 0.20876661008326747, decrease = 2.1800166116747732e-09
iteration 2, reconstruction error: 0.2087666079060096, decrease = 2.1772578739920334e-09
iteration 3, reconstruction error: 0.20876660573148267, decrease = 2.174526919640485e-09
iteration 4, reconstruction error: 0.20876660355967586, decrease = 2.171806817719002e-09
PARAFAC2 reconstruction error=0.8189082707841968, variation=9.5787089371413e-10.
Starting iteration 1847
reconstruction error=0.20876660080341067
iteration 1, reconstruction error: 0.20876659862484814, decrease = 2.178562524823846e-09
iteration 2, reconstruction error: 0.2087665964490451, decrease = 2.1758030377405646e-09
iteration 3, reconstruction error: 0.20876659427596453, decrease = 2.1730805765951544e-09
iteration 4, reconstruction error: 0.2087665921056041, decrease = 2.1703604191625203e-09
PARAFAC2 reconstruction error=0.818908269826967, variation=9.572298509397115e-10.
Starting iteration 1848
reconstruction error=0.20876658935119982
iteration 1, reconstruction error: 0.20876658717409524, decrease = 2.1771045799479083e-09
iteration 2, reconstruction error: 0.2087665849997401, decrease = 2.1743551403829997e-09
iteration 3, reconstruction error: 0.20876658282810745, decrease = 2.171632651482014e-09
iteration 4, reconstruction error: 0.20876658065919262, decrease = 2.1689148255177315e-09
PARAFAC2 reconstruction error=0.8189082688703774, variation=9.565895853214101e-10.
Starting iteration 1849
reconstruction error=0.2087665779066409
iteration 1, reconstruction error: 0.20876657573099272, decrease = 2.175648189384205e-09
iteration 2, reconstruction error: 0.20876657355808784, decrease = 2.1729048838015075e-09
iteration 3, reconstruction error: 0.20876657138790305, decrease = 2.1701847818800246e-09
iteration 4, reconstruction error: 0.2087665692204292, decrease = 2.1674738670540705e-09
PARAFAC2 reconstruction error=0.8189082679144275, variation=9.559498748146211e-10.
Starting iteration 1850
reconstruction error=0.20876656646973465
iteration 1, reconstruction error: 0.20876656429553903, decrease = 2.1741956290899367e-09
iteration 2, reconstruction error: 0.2087665621240828, decrease = 2.171456237043401e-09
iteration 3, reconstruction error: 0.20876655995533747, decrease = 2.168745322217447e-09
iteration 4, reconstruction error: 0.20876655778931147, decrease = 2.1660259974520812e-09
PARAFAC2 reconstruction error=0.8189082669591169, variation=9.55310608397042e-10.
Starting iteration 1851
reconstruction error=0.20876655504047179
iteration 1, reconstruction error: 0.20876655286772097, decrease = 2.172750812601265e-09
iteration 2, reconstruction error: 0.2087665506977142, decrease = 2.1700067853736016e-09
iteration 3, reconstruction error: 0.20876654853041599, decrease = 2.1672982020159992e-09
iteration 4, reconstruction error: 0.20876654636582562, decrease = 2.1645903680589385e-09
PARAFAC2 reconstruction error=0.8189082660044452, variation=9.546716750463702e-10.
Starting iteration 1852
reconstruction error=0.2087665436188392
iteration 1, reconstruction error: 0.20876654144754092, decrease = 2.1712982800625724e-09
iteration 2, reconstruction error: 0.2087665392789813, decrease = 2.1685596096610027e-09
iteration 3, reconstruction error: 0.20876653711312945, decrease = 2.1658518589706688e-09
iteration 4, reconstruction error: 0.20876653494997538, decrease = 2.163154072531981e-09
PARAFAC2 reconstruction error=0.8189082650504115, variation=9.540337408964206e-10.
Starting iteration 1853
reconstruction error=0.2087665322048385
iteration 1, reconstruction error: 0.20876653003498735, decrease = 2.1698511598611248e-09
iteration 2, reconstruction error: 0.20876652786787797, decrease = 2.167109380835086e-09
iteration 3, reconstruction error: 0.20876652570346166, decrease = 2.164416312844253e-09
iteration 4, reconstruction error: 0.2087665235417478, decrease = 2.1617138634688615e-09
PARAFAC2 reconstruction error=0.8189082640970156, variation=9.533959177687734e-10.
Starting iteration 1854
reconstruction error=0.20876652079845812
iteration 1, reconstruction error: 0.20876651863005566, decrease = 2.168402457591867e-09
iteration 2, reconstruction error: 0.20876651646438718, decrease = 2.1656684778825763e-09
iteration 3, reconstruction error: 0.20876651430141344, decrease = 2.162973744557206e-09
iteration 4, reconstruction error: 0.2087665121411359, decrease = 2.1602775401863283e-09
PARAFAC2 reconstruction error=0.8189082631442564, variation=9.527592048641509e-10.
Starting iteration 1855
reconstruction error=0.20876650939968958
iteration 1, reconstruction error: 0.20876650723273887, decrease = 2.1669507022092915e-09
iteration 2, reconstruction error: 0.20876650506851216, decrease = 2.1642267145072225e-09
iteration 3, reconstruction error: 0.20876650290697552, decrease = 2.1615366441185557e-09
iteration 4, reconstruction error: 0.20876650074813202, decrease = 2.1588434928609956e-09
PARAFAC2 reconstruction error=0.8189082621921338, variation=9.521226029818308e-10.
Starting iteration 1856
reconstruction error=0.20876649800853672
iteration 1, reconstruction error: 0.208766495843027, decrease = 2.165509715990055e-09
iteration 2, reconstruction error: 0.20876649368024358, decrease = 2.1627834245752098e-09
iteration 3, reconstruction error: 0.2087664915201448, decrease = 2.1600987942793637e-09
iteration 4, reconstruction error: 0.20876648936273298, decrease = 2.1574118047595903e-09
PARAFAC2 reconstruction error=0.818908261240647, variation=9.51486778255628e-10.
Starting iteration 1857
reconstruction error=0.20876648662498268
iteration 1, reconstruction error: 0.20876648446091622, decrease = 2.164066453813618e-09
iteration 2, reconstruction error: 0.20876648229957143, decrease = 2.1613447975799005e-09
iteration 3, reconstruction error: 0.2087664801409121, decrease = 2.158659334616786e-09
iteration 4, reconstruction error: 0.20876647798493278, decrease = 2.155979311746492e-09
PARAFAC2 reconstruction error=0.8189082602897956, variation=9.50851397618635e-10.
Starting iteration 1858
reconstruction error=0.2087664752490235
iteration 1, reconstruction error: 0.2087664730864003, decrease = 2.1626231916371808e-09
iteration 2, reconstruction error: 0.20876647092649112, decrease = 2.1599091959423333e-09
iteration 3, reconstruction error: 0.20876646876926655, decrease = 2.1572245656464872e-09
iteration 4, reconstruction error: 0.20876646661472437, decrease = 2.154542183552266e-09
PARAFAC2 reconstruction error=0.818908259339579, variation=9.502165720931544e-10.
Starting iteration 1859
reconstruction error=0.20876646388065076
iteration 1, reconstruction error: 0.20876646171947238, decrease = 2.161178375148509e-09
iteration 2, reconstruction error: 0.20876645956100492, decrease = 2.158467460322555e-09
iteration 3, reconstruction error: 0.20876645740521055, decrease = 2.155794376346165e-09
iteration 4, reconstruction error: 0.2087664552520962, decrease = 2.1531143534758712e-09
PARAFAC2 reconstruction error=0.8189082583899966, variation=9.495824127014885e-10.
Starting iteration 1860
reconstruction error=0.20876645251986684
iteration 1, reconstruction error: 0.20876645036012173, decrease = 2.1597451049792937e-09
iteration 2, reconstruction error: 0.20876644820309137, decrease = 2.1570303598839047e-09
iteration 3, reconstruction error: 0.2087664460487318, decrease = 2.1543595796202908e-09
iteration 4, reconstruction error: 0.20876644389704374, decrease = 2.1516880499561353e-09
PARAFAC2 reconstruction error=0.8189082574410479, variation=9.489486973990324e-10.
Starting iteration 1861
reconstruction error=0.20876644116665236
iteration 1, reconstruction error: 0.208766439008349, decrease = 2.1583033693595155e-09
iteration 2, reconstruction error: 0.20876643685275034, decrease = 2.1555986440269237e-09
iteration 3, reconstruction error: 0.20876643469982323, decrease = 2.152927114362768e-09
iteration 4, reconstruction error: 0.20876643254956845, decrease = 2.15025477978692e-09
PARAFAC2 reconstruction error=0.8189082564927322, variation=9.483156482303912e-10.
Starting iteration 1862
reconstruction error=0.20876642982100663
iteration 1, reconstruction error: 0.20876642766414347, decrease = 2.156863160296396e-09
iteration 2, reconstruction error: 0.2087664255099765, decrease = 2.1541669559255183e-09
iteration 3, reconstruction error: 0.208766423358485, decrease = 2.151491512725201e-09
iteration 4, reconstruction error: 0.20876642120964875, decrease = 2.1488362478283562e-09
PARAFAC2 reconstruction error=0.8189082555450492, variation=9.476830431509597e-10.
Starting iteration 1863
reconstruction error=0.20876641848292504
iteration 1, reconstruction error: 0.2087664163274959, decrease = 2.155429140726639e-09
iteration 2, reconstruction error: 0.20876641417476685, decrease = 2.152729050575175e-09
iteration 3, reconstruction error: 0.20876641202469776, decrease = 2.1500690949860513e-09
iteration 4, reconstruction error: 0.20876640987728942, decrease = 2.1474083344852346e-09
PARAFAC2 reconstruction error=0.8189082545979982, variation=9.470509931830406e-10.
Starting iteration 1864
reconstruction error=0.20876640715240072
iteration 1, reconstruction error: 0.20876640499840096, decrease = 2.1539997563380098e-09
iteration 2, reconstruction error: 0.20876640284710593, decrease = 2.151295031005418e-09
iteration 3, reconstruction error: 0.20876640069846392, decrease = 2.148642014310198e-09
iteration 4, reconstruction error: 0.2087663985524834, decrease = 2.14598050440884e-09
PARAFAC2 reconstruction error=0.8189082536515786, variation=9.464196093489363e-10.
Starting iteration 1865
reconstruction error=0.20876639582941967
iteration 1, reconstruction error: 0.2087663936768578, decrease = 2.152561878743242e-09
iteration 2, reconstruction error: 0.20876639152698906, decrease = 2.149868727485682e-09
iteration 3, reconstruction error: 0.2087663893797772, decrease = 2.1472118527654516e-09
iteration 4, reconstruction error: 0.20876638723521765, decrease = 2.1445595577151977e-09
PARAFAC2 reconstruction error=0.8189082527057899, variation=9.457886696040418e-10.
Starting iteration 1866
reconstruction error=0.2087663845139835
iteration 1, reconstruction error: 0.20876638236285486, decrease = 2.1511286363296023e-09
iteration 2, reconstruction error: 0.2087663802144171, decrease = 2.1484377610292427e-09
iteration 3, reconstruction error: 0.20876637806863077, decrease = 2.145786326401833e-09
iteration 4, reconstruction error: 0.2087663759254867, decrease = 2.143144078869952e-09
PARAFAC2 reconstruction error=0.8189082517606315, variation=9.451583959929621e-10.
Starting iteration 1867
reconstruction error=0.20876637320608146
iteration 1, reconstruction error: 0.20876637105638995, decrease = 2.1496915081353762e-09
iteration 2, reconstruction error: 0.20876636890937464, decrease = 2.1470153155345173e-09
iteration 3, reconstruction error: 0.20876636676501, decrease = 2.144364630307649e-09
iteration 4, reconstruction error: 0.20876636462329148, decrease = 2.1417185247507575e-09
PARAFAC2 reconstruction error=0.8189082508161032, variation=9.445283444264874e-10.
Starting iteration 1868
reconstruction error=0.20876636190571118
iteration 1, reconstruction error: 0.20876635975744756, decrease = 2.1482636225478302e-09
iteration 2, reconstruction error: 0.20876635761186085, decrease = 2.1455867083020053e-09
iteration 3, reconstruction error: 0.20876635546891947, decrease = 2.142941379901231e-09
iteration 4, reconstruction error: 0.2087663533286195, decrease = 2.1402999650366183e-09
PARAFAC2 reconstruction error=0.8189082498722037, variation=9.438995141053397e-10.
Starting iteration 1869
reconstruction error=0.2087663506128681
iteration 1, reconstruction error: 0.20876634846602846, decrease = 2.146839650496446e-09
iteration 2, reconstruction error: 0.208766346321865, decrease = 2.144163457895587e-09
iteration 3, reconstruction error: 0.2087663441803468, decrease = 2.141518185005964e-09
iteration 4, reconstruction error: 0.20876634204146394, decrease = 2.138882876367987e-09
PARAFAC2 reconstruction error=0.8189082489289332, variation=9.43270461739587e-10.
Starting iteration 1870
reconstruction error=0.20876633932753455
iteration 1, reconstruction error: 0.2087663371821243, decrease = 2.145410238352241e-09
iteration 2, reconstruction error: 0.20876633503938252, decrease = 2.142741789556979e-09
iteration 3, reconstruction error: 0.208766332899286, decrease = 2.1400965166673558e-09
iteration 4, reconstruction error: 0.20876633076182097, decrease = 2.1374650382988136e-09
PARAFAC2 reconstruction error=0.8189082479862908, variation=9.426424085745566e-10.
Starting iteration 1871
reconstruction error=0.20876632804970582
iteration 1, reconstruction error: 0.20876632590572344, decrease = 2.1439823805202707e-09
iteration 2, reconstruction error: 0.20876632376441182, decrease = 2.1413116280122324e-09
iteration 3, reconstruction error: 0.20876632162573008, decrease = 2.1386817317115003e-09
iteration 4, reconstruction error: 0.20876631948968052, decrease = 2.1360495594535678e-09
PARAFAC2 reconstruction error=0.8189082470442759, variation=9.420149105210385e-10.
Starting iteration 1872
reconstruction error=0.20876631677938812
iteration 1, reconstruction error: 0.20876631463682974, decrease = 2.142558380713311e-09
iteration 2, reconstruction error: 0.20876631249693672, decrease = 2.139893012786942e-09
iteration 3, reconstruction error: 0.20876631035967202, decrease = 2.13726469855402e-09
iteration 4, reconstruction error: 0.208766308225038, decrease = 2.1346340250971707e-09
PARAFAC2 reconstruction error=0.8189082461028883, variation=9.413876345121253e-10.
Starting iteration 1873
reconstruction error=0.20876630551656525
iteration 1, reconstruction error: 0.20876630337543006, decrease = 2.141135185818044e-09
iteration 2, reconstruction error: 0.2087663012369541, decrease = 2.138475951873886e-09
iteration 3, reconstruction error: 0.2087662991011088, decrease = 2.1358453061726124e-09
iteration 4, reconstruction error: 0.2087662969678841, decrease = 2.1332247079897115e-09
PARAFAC2 reconstruction error=0.8189082451621268, variation=9.407614687262367e-10.
Starting iteration 1874
reconstruction error=0.20876629426123033
iteration 1, reconstruction error: 0.20876629212151918, decrease = 2.1397111582555084e-09
iteration 2, reconstruction error: 0.2087662899844633, decrease = 2.137055865603088e-09
iteration 3, reconstruction error: 0.2087662878500312, decrease = 2.134432103284567e-09
iteration 4, reconstruction error: 0.20876628571822203, decrease = 2.1318091736333145e-09
PARAFAC2 reconstruction error=0.8189082442219915, variation=9.40135302940348e-10.
Starting iteration 1875
reconstruction error=0.20876628301337952
iteration 1, reconstruction error: 0.20876628087508617, decrease = 2.138293347941911e-09
iteration 2, reconstruction error: 0.208766278739452, decrease = 2.1356341695089043e-09
iteration 3, reconstruction error: 0.20876627660643154, decrease = 2.133020454708756e-09
iteration 4, reconstruction error: 0.2087662744760348, decrease = 2.1303967479013863e-09
PARAFAC2 reconstruction error=0.8189082432824816, variation=9.395099143105767e-10.
Starting iteration 1876
reconstruction error=0.20876627177300272
iteration 1, reconstruction error: 0.20876626963613493, decrease = 2.1368677938227165e-09
iteration 2, reconstruction error: 0.20876626750191088, decrease = 2.1342240474897523e-09
iteration 3, reconstruction error: 0.20876626537030746, decrease = 2.131603421551276e-09
iteration 4, reconstruction error: 0.20876626324131775, decrease = 2.1289897067511276e-09
PARAFAC2 reconstruction error=0.8189082423435965, variation=9.388850807923177e-10.
Starting iteration 1877
reconstruction error=0.2087662605401008
iteration 1, reconstruction error: 0.20876625840464313, decrease = 2.1354576718035645e-09
iteration 2, reconstruction error: 0.2087662562718423, decrease = 2.1328008248389096e-09
iteration 3, reconstruction error: 0.20876625414164748, decrease = 2.1301948260887826e-09
iteration 4, reconstruction error: 0.20876625201406784, decrease = 2.127579640243127e-09
PARAFAC2 reconstruction error=0.8189082414053357, variation=9.38260802385571e-10.
Starting iteration 1878
reconstruction error=0.20876624931466292
iteration 1, reconstruction error: 0.20876624718062384, decrease = 2.1340390843338497e-09
iteration 2, reconstruction error: 0.2087662450492339, decrease = 2.1313899256636404e-09
iteration 3, reconstruction error: 0.20876624292045148, decrease = 2.12878242811243e-09
iteration 4, reconstruction error: 0.20876624079427658, decrease = 2.1261749028056443e-09
PARAFAC2 reconstruction error=0.8189082404676986, variation=9.376370790903366e-10.
Starting iteration 1879
reconstruction error=0.2087662380966745
iteration 1, reconstruction error: 0.20876623596405555, decrease = 2.1326189425519004e-09
iteration 2, reconstruction error: 0.20876623383407572, decrease = 2.129979831400064e-09
iteration 3, reconstruction error: 0.20876623170670575, decrease = 2.1273699746249264e-09
iteration 4, reconstruction error: 0.2087662295819348, decrease = 2.124770942524279e-09
PARAFAC2 reconstruction error=0.8189082395306849, variation=9.370136888620095e-10.
Starting iteration 1880
reconstruction error=0.2087662268861417
iteration 1, reconstruction error: 0.2087662247549367, decrease = 2.1312049902633134e-09
iteration 2, reconstruction error: 0.2087662226263693, decrease = 2.128567405668136e-09
iteration 3, reconstruction error: 0.20876622050040558, decrease = 2.125963710630785e-09
iteration 4, reconstruction error: 0.2087662183770378, decrease = 2.1233677871546064e-09
PARAFAC2 reconstruction error=0.818908238594294, variation=9.363909647674973e-10.
Starting iteration 1881
reconstruction error=0.20876621568305137
iteration 1, reconstruction error: 0.20876621355326191, decrease = 2.1297894559069164e-09
iteration 2, reconstruction error: 0.20876621142610466, decrease = 2.127157255893408e-09
iteration 3, reconstruction error: 0.20876620930154563, decrease = 2.1245590287044536e-09
iteration 4, reconstruction error: 0.2087662071795864, decrease = 2.121959219447689e-09
PARAFAC2 reconstruction error=0.8189082376585247, variation=9.357692398737072e-10.
Starting iteration 1882
reconstruction error=0.20876620448739666
iteration 1, reconstruction error: 0.20876620235902427, decrease = 2.1283723949938604e-09
iteration 2, reconstruction error: 0.20876620023327555, decrease = 2.1257487159420663e-09
iteration 3, reconstruction error: 0.20876619811012204, decrease = 2.1231535141108537e-09
iteration 4, reconstruction error: 0.20876619598956214, decrease = 2.1205598943474513e-09
PARAFAC2 reconstruction error=0.8189082367233774, variation=9.351472929353122e-10.
Starting iteration 1883
reconstruction error=0.20876619329917523
iteration 1, reconstruction error: 0.20876619117221062, decrease = 2.12696460444306e-09
iteration 2, reconstruction error: 0.20876618904787206, decrease = 2.1243385661673386e-09
iteration 3, reconstruction error: 0.20876618692612553, decrease = 2.1217465284717463e-09
iteration 4, reconstruction error: 0.20876618480696574, decrease = 2.1191597920910965e-09
PARAFAC2 reconstruction error=0.8189082357888511, variation=9.345263451976393e-10.
Starting iteration 1884
reconstruction error=0.20876618211837863
iteration 1, reconstruction error: 0.20876617999282646, decrease = 2.125552178711132e-09
iteration 2, reconstruction error: 0.20876617786989338, decrease = 2.1229330793293144e-09
iteration 3, reconstruction error: 0.20876617574954617, decrease = 2.1203472033715087e-09
iteration 4, reconstruction error: 0.20876617363178798, decrease = 2.1177581910336585e-09
PARAFAC2 reconstruction error=0.8189082348549452, variation=9.339058415491763e-10.
Starting iteration 1885
reconstruction error=0.2087661709450029
iteration 1, reconstruction error: 0.20876616882085622, decrease = 2.1241466918731078e-09
iteration 2, reconstruction error: 0.20876616669933015, decrease = 2.1215260659346313e-09
iteration 3, reconstruction error: 0.2087661645803877, decrease = 2.118942465934026e-09
iteration 4, reconstruction error: 0.20876616246402416, decrease = 2.1163635288701244e-09
PARAFAC2 reconstruction error=0.8189082339216595, variation=9.332857819899232e-10.
Starting iteration 1886
reconstruction error=0.20876615977903437
iteration 1, reconstruction error: 0.20876615765629777, decrease = 2.1227365976095314e-09
iteration 2, reconstruction error: 0.20876615553617336, decrease = 2.120124409366042e-09
iteration 3, reconstruction error: 0.20876615341863172, decrease = 2.1175416420327053e-09
iteration 4, reconstruction error: 0.208766151303666, decrease = 2.1149657303265457e-09
PARAFAC2 reconstruction error=0.818908232988993, variation=9.326664995867873e-10.
Starting iteration 1887
reconstruction error=0.20876614862047296
iteration 1, reconstruction error: 0.20876614649914263, decrease = 2.12133033361539e-09
iteration 2, reconstruction error: 0.2087661443804206, decrease = 2.118722031152487e-09
iteration 3, reconstruction error: 0.20876614226427906, decrease = 2.1161415397763506e-09
iteration 4, reconstruction error: 0.20876614015070954, decrease = 2.113569513850777e-09
PARAFAC2 reconstruction error=0.8189082320569453, variation=9.320476612728612e-10.
Starting iteration 1888
reconstruction error=0.20876613746931405
iteration 1, reconstruction error: 0.20876613534938765, decrease = 2.1199264010896e-09
iteration 2, reconstruction error: 0.2087661332320657, decrease = 2.1173219566517076e-09
iteration 3, reconstruction error: 0.20876613111731654, decrease = 2.114749153570017e-09
iteration 4, reconstruction error: 0.2087661290051502, decrease = 2.112166330725529e-09
PARAFAC2 reconstruction error=0.818908231125516, variation=9.31429267048145e-10.
Starting iteration 1889
reconstruction error=0.20876612632554065
iteration 1, reconstruction error: 0.20876612420701895, decrease = 2.118521691407693e-09
iteration 2, reconstruction error: 0.20876612209110174, decrease = 2.115917219214225e-09
iteration 3, reconstruction error: 0.20876611997775266, decrease = 2.1133490790692377e-09
iteration 4, reconstruction error: 0.2087661178669687, decrease = 2.1107839642819926e-09
PARAFAC2 reconstruction error=0.8189082301947046, variation=9.308114279349411e-10.
Starting iteration 1890
reconstruction error=0.20876611518915741
iteration 1, reconstruction error: 0.20876611307203738, decrease = 2.117120034839104e-09
iteration 2, reconstruction error: 0.20876611095751405, decrease = 2.114523334206808e-09
iteration 3, reconstruction error: 0.20876610884556507, decrease = 2.111948976812883e-09
iteration 4, reconstruction error: 0.20876610673617577, decrease = 2.1093893021184584e-09
PARAFAC2 reconstruction error=0.8189082292645105, variation=9.301941439332495e-10.
Starting iteration 1891
reconstruction error=0.208766104060149
iteration 1, reconstruction error: 0.20876610194443365, decrease = 2.1157153529127726e-09
iteration 2, reconstruction error: 0.20876609983131197, decrease = 2.113121677638219e-09
iteration 3, reconstruction error: 0.20876609772075305, decrease = 2.110558922074901e-09
iteration 4, reconstruction error: 0.20876609561275614, decrease = 2.1079969159121248e-09
PARAFAC2 reconstruction error=0.8189082283349329, variation=9.295775260653727e-10.
Starting iteration 1892
reconstruction error=0.20876609293851695
iteration 1, reconstruction error: 0.2087660908241986, decrease = 2.114318331525311e-09
iteration 2, reconstruction error: 0.20876608871247546, decrease = 2.111723157449674e-09
iteration 3, reconstruction error: 0.2087660866033112, decrease = 2.109164259911367e-09
iteration 4, reconstruction error: 0.2087660844966997, decrease = 2.1066114963552707e-09
PARAFAC2 reconstruction error=0.8189082274059716, variation=9.289613522867057e-10.
Starting iteration 1893
reconstruction error=0.2087660818242496
iteration 1, reconstruction error: 0.20876607971133215, decrease = 2.112917452112839e-09
iteration 2, reconstruction error: 0.20876607760100444, decrease = 2.110327718130023e-09
iteration 3, reconstruction error: 0.20876607549323337, decrease = 2.1077710687933404e-09
iteration 4, reconstruction error: 0.2087660733880127, decrease = 2.1052206644611715e-09
PARAFAC2 reconstruction error=0.818908226477626, variation=9.283456225972486e-10.
Starting iteration 1894
reconstruction error=0.20876607071734238
iteration 1, reconstruction error: 0.2087660686058258, decrease = 2.111516572700367e-09
iteration 2, reconstruction error: 0.20876606649689433, decrease = 2.1089314738986786e-09
iteration 3, reconstruction error: 0.20876606439050865, decrease = 2.106385676992062e-09
iteration 4, reconstruction error: 0.2087660622866765, decrease = 2.103832164035424e-09
PARAFAC2 reconstruction error=0.8189082255498955, variation=9.277304480193038e-10.
Starting iteration 1895
reconstruction error=0.20876605961779005
iteration 1, reconstruction error: 0.2087660575076704, decrease = 2.1101196345796325e-09
iteration 2, reconstruction error: 0.208766055400129, decrease = 2.1075414191606967e-09
iteration 3, reconstruction error: 0.20876605329513728, decrease = 2.104991708717918e-09
iteration 4, reconstruction error: 0.2087660511926944, decrease = 2.1024428864535594e-09
PARAFAC2 reconstruction error=0.8189082246227796, variation=9.271159395751738e-10.
Starting iteration 1896
reconstruction error=0.208766048525587
iteration 1, reconstruction error: 0.20876604641685978, decrease = 2.1087272206177232e-09
iteration 2, reconstruction error: 0.20876604431071308, decrease = 2.1061467014860114e-09
iteration 3, reconstruction error: 0.20876604220710906, decrease = 2.1036040132038636e-09
iteration 4, reconstruction error: 0.20876604010604777, decrease = 2.1010612971661402e-09
PARAFAC2 reconstruction error=0.8189082236962776, variation=9.265019862425561e-10.
Starting iteration 1897
reconstruction error=0.2087660374407211
iteration 1, reconstruction error: 0.2087660353333901, decrease = 2.107330976386379e-09
iteration 2, reconstruction error: 0.2087660332286342, decrease = 2.104755897347488e-09
iteration 3, reconstruction error: 0.20876603112641254, decrease = 2.102221674515903e-09
iteration 4, reconstruction error: 0.20876602902673821, decrease = 2.0996743232970516e-09
PARAFAC2 reconstruction error=0.818908222770389, variation=9.258885880214507e-10.
Starting iteration 1898
reconstruction error=0.20876602636319225
iteration 1, reconstruction error: 0.20876602425725208, decrease = 2.1059401722478555e-09
iteration 2, reconstruction error: 0.2087660221538839, decrease = 2.1033681740778576e-09
iteration 3, reconstruction error: 0.20876602005305542, decrease = 2.1008284833978763e-09
iteration 4, reconstruction error: 0.20876601795476035, decrease = 2.098295065477984e-09
PARAFAC2 reconstruction error=0.8189082218451136, variation=9.252754118449502e-10.
Starting iteration 1899
reconstruction error=0.20876601529299116
iteration 1, reconstruction error: 0.20876601318844412, decrease = 2.10454703664098e-09
iteration 2, reconstruction error: 0.20876601108646528, decrease = 2.1019788409848417e-09
iteration 3, reconstruction error: 0.20876600898701758, decrease = 2.09944769902215e-09
iteration 4, reconstruction error: 0.2087660068901064, decrease = 2.096911172477789e-09
PARAFAC2 reconstruction error=0.8189082209204506, variation=9.24663012824567e-10.
Starting iteration 1900
reconstruction error=0.2087660042301095
iteration 1, reconstruction error: 0.2087660021269541, decrease = 2.103155399835188e-09
iteration 2, reconstruction error: 0.2087660000263599, decrease = 2.1005941985841048e-09
iteration 3, reconstruction error: 0.20876599792829606, decrease = 2.0980638337775304e-09
iteration 4, reconstruction error: 0.20876599583276723, decrease = 2.095528833789828e-09
PARAFAC2 reconstruction error=0.8189082199963994, variation=9.240511689156961e-10.
Starting iteration 1901
reconstruction error=0.2087659931745495
iteration 1, reconstruction error: 0.2087659910727795, decrease = 2.1017700080339097e-09
iteration 2, reconstruction error: 0.2087659889735723, decrease = 2.0992071969594406e-09
iteration 3, reconstruction error: 0.20876598687689235, decrease = 2.096679940777335e-09
iteration 4, reconstruction error: 0.20876598478274122, decrease = 2.094151130282995e-09
PARAFAC2 reconstruction error=0.8189082190729597, variation=9.234396580737325e-10.
Starting iteration 1902
reconstruction error=0.20876598212628888
iteration 1, reconstruction error: 0.20876598002590974, decrease = 2.100379148384235e-09
iteration 2, reconstruction error: 0.20876597792808946, decrease = 2.0978202786015032e-09
iteration 3, reconstruction error: 0.20876597583279033, decrease = 2.095299128646033e-09
iteration 4, reconstruction error: 0.20876597374001696, decrease = 2.092773371265011e-09
PARAFAC2 reconstruction error=0.8189082181501309, variation=9.228288133655838e-10.
Starting iteration 1903
reconstruction error=0.20876597108533448
iteration 1, reconstruction error: 0.20876596898634617, decrease = 2.0989883164901357e-09
iteration 2, reconstruction error: 0.20876596688990828, decrease = 2.096437884402391e-09
iteration 3, reconstruction error: 0.20876596479599302, decrease = 2.0939152634014135e-09
iteration 4, reconstruction error: 0.2087659627045904, decrease = 2.091402606652082e-09
PARAFAC2 reconstruction error=0.818908217227912, variation=9.222189678581572e-10.
Starting iteration 1904
reconstruction error=0.20876596005168024
iteration 1, reconstruction error: 0.20876595795407274, decrease = 2.097607504358834e-09
iteration 2, reconstruction error: 0.20876595585901486, decrease = 2.095057877182782e-09
iteration 3, reconstruction error: 0.20876595376648352, decrease = 2.0925313426456427e-09
iteration 4, reconstruction error: 0.20876595167645706, decrease = 2.0900264574574834e-09
PARAFAC2 reconstruction error=0.8189082163063032, variation=9.216087892838232e-10.
Starting iteration 1905
reconstruction error=0.20876594902531231
iteration 1, reconstruction error: 0.208765946929091, decrease = 2.0962213076458625e-09
iteration 2, reconstruction error: 0.20876594483541625, decrease = 2.093674761338704e-09
iteration 3, reconstruction error: 0.20876594274425642, decrease = 2.091159828632172e-09
iteration 4, reconstruction error: 0.20876594065560772, decrease = 2.088648698439499e-09
PARAFAC2 reconstruction error=0.8189082153853036, variation=9.209996099102113e-10.
Starting iteration 1906
reconstruction error=0.20876593800622675
iteration 1, reconstruction error: 0.20876593591139242, decrease = 2.094834333776774e-09
iteration 2, reconstruction error: 0.20876593381909692, decrease = 2.0922955035196367e-09
iteration 3, reconstruction error: 0.2087659317293133, decrease = 2.0897836239264223e-09
iteration 4, reconstruction error: 0.20876592964203844, decrease = 2.0872748529576768e-09
PARAFAC2 reconstruction error=0.8189082144649126, variation=9.203909856481118e-10.
Starting iteration 1907
reconstruction error=0.20876592699442287
iteration 1, reconstruction error: 0.2087659249009693, decrease = 2.093453577156623e-09
iteration 2, reconstruction error: 0.20876592281005385, decrease = 2.0909154407888764e-09
iteration 3, reconstruction error: 0.2087659207216433, decrease = 2.088410555600717e-09
iteration 4, reconstruction error: 0.20876591863574154, decrease = 2.085901756876396e-09
PARAFAC2 reconstruction error=0.8189082135451299, variation=9.197826944529197e-10.
Starting iteration 1908
reconstruction error=0.20876591598988675
iteration 1, reconstruction error: 0.20876591389781018, decrease = 2.0920765675391806e-09
iteration 2, reconstruction error: 0.20876591180827397, decrease = 2.0895362107253845e-09
iteration 3, reconstruction error: 0.20876590972123807, decrease = 2.087035905207202e-09
iteration 4, reconstruction error: 0.20876590763670708, decrease = 2.084530992263467e-09
PARAFAC2 reconstruction error=0.8189082126259546, variation=9.191752914361473e-10.
Starting iteration 1909
reconstruction error=0.2087659049926177
iteration 1, reconstruction error: 0.2087659029019196, decrease = 2.090698114631806e-09
iteration 2, reconstruction error: 0.20876590081375573, decrease = 2.0881638640446454e-09
iteration 3, reconstruction error: 0.2087658987280991, decrease = 2.0856566473881344e-09
iteration 4, reconstruction error: 0.20876589664493578, decrease = 2.0831633085194312e-09
PARAFAC2 reconstruction error=0.8189082117073867, variation=9.185678884193749e-10.
Starting iteration 1910
reconstruction error=0.20876589400260182
iteration 1, reconstruction error: 0.20876589191328374, decrease = 2.0893180796566213e-09
iteration 2, reconstruction error: 0.20876588982650066, decrease = 2.086783079668919e-09
iteration 3, reconstruction error: 0.20876588774221325, decrease = 2.084287409331864e-09
iteration 4, reconstruction error: 0.20876588566041918, decrease = 2.081794070463161e-09
PARAFAC2 reconstruction error=0.8189082107894253, variation=9.179613735810221e-10.
Starting iteration 1911
reconstruction error=0.20876588301983756
iteration 1, reconstruction error: 0.2087658809319034, decrease = 2.0879341589008504e-09
iteration 2, reconstruction error: 0.20876587884648878, decrease = 2.085414618768766e-09
iteration 3, reconstruction error: 0.20876587676357136, decrease = 2.0829174218750524e-09
iteration 4, reconstruction error: 0.20876587468314883, decrease = 2.0804225286941147e-09
PARAFAC2 reconstruction error=0.8189082098720699, variation=9.173554138541817e-10.
Starting iteration 1912
reconstruction error=0.2087658720443234
iteration 1, reconstruction error: 0.20876586995776153, decrease = 2.0865618677312625e-09
iteration 2, reconstruction error: 0.20876586787372386, decrease = 2.0840376646624748e-09
iteration 3, reconstruction error: 0.20876586579217568, decrease = 2.081548183818782e-09
iteration 4, reconstruction error: 0.20876586371311467, decrease = 2.0790610066878656e-09
PARAFAC2 reconstruction error=0.8189082089553201, variation=9.167497871942487e-10.
Starting iteration 1913
reconstruction error=0.2087658610760493
iteration 1, reconstruction error: 0.2087658589908644, decrease = 2.085184913624971e-09
iteration 2, reconstruction error: 0.20876585690819596, decrease = 2.0826684266062045e-09
iteration 3, reconstruction error: 0.2087658548280147, decrease = 2.080181249475288e-09
iteration 4, reconstruction error: 0.20876585275031984, decrease = 2.0776948772560644e-09
PARAFAC2 reconstruction error=0.8189082080391753, variation=9.161448266681305e-10.
Starting iteration 1914
reconstruction error=0.20876585011500604
iteration 1, reconstruction error: 0.20876584803119652, decrease = 2.0838095138309143e-09
iteration 2, reconstruction error: 0.2087658459499004, decrease = 2.081296107681041e-09
iteration 3, reconstruction error: 0.2087658438710853, decrease = 2.0788151200434868e-09
iteration 4, reconstruction error: 0.20876584179475272, decrease = 2.076332578093698e-09
PARAFAC2 reconstruction error=0.8189082071236349, variation=9.155404212535245e-10.
Starting iteration 1915
reconstruction error=0.20876583916118907
iteration 1, reconstruction error: 0.20876583707874957, decrease = 2.082439498618527e-09
iteration 2, reconstruction error: 0.20876583499882348, decrease = 2.0799260924686536e-09
iteration 3, reconstruction error: 0.2087658329213753, decrease = 2.0774481856999927e-09
iteration 4, reconstruction error: 0.20876583084640576, decrease = 2.07496952953079e-09
PARAFAC2 reconstruction error=0.8189082062086986, variation=9.149362378835235e-10.
Starting iteration 1916
reconstruction error=0.20876582821459524
iteration 1, reconstruction error: 0.2087658261335265, decrease = 2.0810687340055978e-09
iteration 2, reconstruction error: 0.2087658240549681, decrease = 2.078558408724618e-09
iteration 3, reconstruction error: 0.20876582197888374, decrease = 2.0760843599809675e-09
iteration 4, reconstruction error: 0.20876581990527576, decrease = 2.0736079797689655e-09
PARAFAC2 reconstruction error=0.8189082052943656, variation=9.143330537142447e-10.
Starting iteration 1917
reconstruction error=0.20876581727521226
iteration 1, reconstruction error: 0.2087658151955128, decrease = 2.079699468193752e-09
iteration 2, reconstruction error: 0.20876581311832204, decrease = 2.0771907527361577e-09
iteration 3, reconstruction error: 0.20876581104360228, decrease = 2.074719757105825e-09
iteration 4, reconstruction error: 0.20876580897135738, decrease = 2.072244903450482e-09
PARAFAC2 reconstruction error=0.8189082043806355, variation=9.137300915895707e-10.
Starting iteration 1918
reconstruction error=0.2087658063430401
iteration 1, reconstruction error: 0.2087658042647106, decrease = 2.07832948073694e-09
iteration 2, reconstruction error: 0.20876580218888374, decrease = 2.0758268715059813e-09
iteration 3, reconstruction error: 0.20876580011552473, decrease = 2.0733590122556933e-09
iteration 4, reconstruction error: 0.20876579804463438, decrease = 2.0708903480937124e-09
PARAFAC2 reconstruction error=0.8189082034675078, variation=9.131276845764091e-10.
Starting iteration 1919
reconstruction error=0.20876579541806725
iteration 1, reconstruction error: 0.20876579334110315, decrease = 2.0769641007056805e-09
iteration 2, reconstruction error: 0.20876579126664627, decrease = 2.0744568840491695e-09
iteration 3, reconstruction error: 0.20876578919465263, decrease = 2.0719936322244337e-09
iteration 4, reconstruction error: 0.2087657871251161, decrease = 2.0695365421374845e-09
PARAFAC2 reconstruction error=0.8189082025549819, variation=9.125259436970623e-10.
Starting iteration 1920
reconstruction error=0.20876578450028982
iteration 1, reconstruction error: 0.208765782424698, decrease = 2.0755918095360926e-09
iteration 2, reconstruction error: 0.20876578035159496, decrease = 2.073103050337366e-09
iteration 3, reconstruction error: 0.208765778280959, decrease = 2.070635968243195e-09
iteration 4, reconstruction error: 0.20876577621278936, decrease = 2.068169635549566e-09
PARAFAC2 reconstruction error=0.8189082016430573, variation=9.119245358846229e-10.
Starting iteration 1921
reconstruction error=0.20876577358970405
iteration 1, reconstruction error: 0.2087657715154761, decrease = 2.074227956061492e-09
iteration 2, reconstruction error: 0.20876576944373454, decrease = 2.0717415560866925e-09
iteration 3, reconstruction error: 0.2087657673744624, decrease = 2.06927214252417e-09
iteration 4, reconstruction error: 0.20876576530764274, decrease = 2.066819659862773e-09
PARAFAC2 reconstruction error=0.8189082007317338, variation=9.113235721613933e-10.
Starting iteration 1922
reconstruction error=0.20876576268629593
iteration 1, reconstruction error: 0.2087657606134326, decrease = 2.0728633254307738e-09
iteration 2, reconstruction error: 0.20876575854305718, decrease = 2.0703754266548913e-09
iteration 3, reconstruction error: 0.20876575647513965, decrease = 2.0679175316562493e-09
iteration 4, reconstruction error: 0.20876575440967532, decrease = 2.0654643273498863e-09
PARAFAC2 reconstruction error=0.8189081998210104, variation=9.107233855942809e-10.
Starting iteration 1923
reconstruction error=0.20876575179007179
iteration 1, reconstruction error: 0.2087657497185707, decrease = 2.0715010817795587e-09
iteration 2, reconstruction error: 0.20876574764955144, decrease = 2.069019261474736e-09
iteration 3, reconstruction error: 0.20876574558299155, decrease = 2.0665598954305864e-09
iteration 4, reconstruction error: 0.20876574351888103, decrease = 2.0641105213936584e-09
PARAFAC2 reconstruction error=0.8189081989108868, variation=9.101235320940759e-10.
Starting iteration 1924
reconstruction error=0.20876574090101305
iteration 1, reconstruction error: 0.2087657388308766, decrease = 2.0701364511488407e-09
iteration 2, reconstruction error: 0.20876573676321805, decrease = 2.06765854438018e-09
iteration 3, reconstruction error: 0.2087657346980081, decrease = 2.065209947499369e-09
iteration 4, reconstruction error: 0.20876573263524753, decrease = 2.062760573462441e-09
PARAFAC2 reconstruction error=0.8189081980013624, variation=9.095244557499882e-10.
Starting iteration 1925
reconstruction error=0.20876573001912205
iteration 1, reconstruction error: 0.20876572795034326, decrease = 2.0687787871676022e-09
iteration 2, reconstruction error: 0.20876572588404163, decrease = 2.066301629799483e-09
iteration 3, reconstruction error: 0.20876572382019012, decrease = 2.0638515063620133e-09
iteration 4, reconstruction error: 0.20876572175878105, decrease = 2.061409071218989e-09
PARAFAC2 reconstruction error=0.8189081970924366, variation=9.089258234951103e-10.
Starting iteration 1926
reconstruction error=0.2087657191443849
iteration 1, reconstruction error: 0.20876571707696842, decrease = 2.067416488005236e-09
iteration 2, reconstruction error: 0.20876571501202212, decrease = 2.064946297286596e-09
iteration 3, reconstruction error: 0.20876571294952365, decrease = 2.0624984775619026e-09
iteration 4, reconstruction error: 0.208765710889463, decrease = 2.0600606498444307e-09
PARAFAC2 reconstruction error=0.818908196184109, variation=9.083275243071398e-10.
Starting iteration 1927
reconstruction error=0.2087657082767986
iteration 1, reconstruction error: 0.20876570621073978, decrease = 2.0660588240239974e-09
iteration 2, reconstruction error: 0.20876570414714882, decrease = 2.0635909647737094e-09
iteration 3, reconstruction error: 0.20876570208600184, decrease = 2.061146975318451e-09
iteration 4, reconstruction error: 0.20876570002729192, decrease = 2.058709924757096e-09
PARAFAC2 reconstruction error=0.8189081952763793, variation=9.077297802306816e-10.
Starting iteration 1928
reconstruction error=0.20876569741636464
iteration 1, reconstruction error: 0.20876569535165806, decrease = 2.064706572380004e-09
iteration 2, reconstruction error: 0.20876569328942632, decrease = 2.0622317464802364e-09
iteration 3, reconstruction error: 0.20876569122962776, decrease = 2.0597985539438923e-09
iteration 4, reconstruction error: 0.2087656891722639, decrease = 2.057363862606465e-09
PARAFAC2 reconstruction error=0.8189081943692468, variation=9.071324802434333e-10.
Starting iteration 1929
reconstruction error=0.20876568656306224
iteration 1, reconstruction error: 0.20876568449971644, decrease = 2.0633457997742966e-09
iteration 2, reconstruction error: 0.2087656824388385, decrease = 2.0608779405240085e-09
iteration 3, reconstruction error: 0.20876568038038604, decrease = 2.0584524640376856e-09
iteration 4, reconstruction error: 0.20876567832437212, decrease = 2.0560139146752476e-09
PARAFAC2 reconstruction error=0.8189081934627107, variation=9.065360684346047e-10.
Starting iteration 1930
reconstruction error=0.20876567571689908
iteration 1, reconstruction error: 0.2087656736549063, decrease = 2.061992770974186e-09
iteration 2, reconstruction error: 0.20876567159537676, decrease = 2.0595295469050257e-09
iteration 3, reconstruction error: 0.2087656695382758, decrease = 2.0571009617942337e-09
iteration 4, reconstruction error: 0.20876566748360414, decrease = 2.054671655038476e-09
PARAFAC2 reconstruction error=0.8189081925567708, variation=9.05939878670381e-10.
Starting iteration 1931
reconstruction error=0.20876566487786133
iteration 1, reconstruction error: 0.20876566281722622, decrease = 2.0606351069929474e-09
iteration 2, reconstruction error: 0.20876566075904357, decrease = 2.058182652087126e-09
iteration 3, reconstruction error: 0.20876565870329097, decrease = 2.0557525959308265e-09
iteration 4, reconstruction error: 0.2087656566499623, decrease = 2.053328673756738e-09
PARAFAC2 reconstruction error=0.8189081916514266, variation=9.053442440176696e-10.
Starting iteration 1932
reconstruction error=0.20876565404594596
iteration 1, reconstruction error: 0.2087656519866577, decrease = 2.059288267686199e-09
iteration 2, reconstruction error: 0.20876564992982807, decrease = 2.0568296232870154e-09
iteration 3, reconstruction error: 0.20876564787542162, decrease = 2.0544064505134685e-09
iteration 4, reconstruction error: 0.20876564582343596, decrease = 2.0519856647194246e-09
PARAFAC2 reconstruction error=0.8189081907466775, variation=9.04749053454168e-10.
Starting iteration 1933
reconstruction error=0.2087656432211413
iteration 1, reconstruction error: 0.20876564116320687, decrease = 2.0579344339743955e-09
iteration 2, reconstruction error: 0.2087656391077272, decrease = 2.055479675355798e-09
iteration 3, reconstruction error: 0.20876563705465986, decrease = 2.0530673272567412e-09
iteration 4, reconstruction error: 0.2087656350040172, decrease = 2.050642655682111e-09
PARAFAC2 reconstruction error=0.8189081898425228, variation=9.041547510690862e-10.
Starting iteration 1934
reconstruction error=0.2087656324034459
iteration 1, reconstruction error: 0.20876563034686063, decrease = 2.0565852631992954e-09
iteration 2, reconstruction error: 0.20876562829272552, decrease = 2.05413511200625e-09
iteration 3, reconstruction error: 0.20876562624100814, decrease = 2.051717379325524e-09
iteration 4, reconstruction error: 0.20876562419170774, decrease = 2.0493003960453393e-09
PARAFAC2 reconstruction error=0.8189081889389621, variation=9.035606707286092e-10.
Starting iteration 1935
reconstruction error=0.2087656215928544
iteration 1, reconstruction error: 0.20876561953761985, decrease = 2.0552345381119608e-09
iteration 2, reconstruction error: 0.20876561748483238, decrease = 2.052787467787809e-09
iteration 3, reconstruction error: 0.20876561543445568, decrease = 2.050376701756562e-09
iteration 4, reconstruction error: 0.20876561338648902, decrease = 2.0479666573702815e-09
PARAFAC2 reconstruction error=0.8189081880359952, variation=9.029669234550397e-10.
Starting iteration 1936
reconstruction error=0.20876561078935746
iteration 1, reconstruction error: 0.2087656087354698, decrease = 2.0538876710496368e-09
iteration 2, reconstruction error: 0.2087656066840307, decrease = 2.051439074168826e-09
iteration 3, reconstruction error: 0.2087656046349901, decrease = 2.049040603857577e-09
iteration 4, reconstruction error: 0.20876560258836568, decrease = 2.0466244254890853e-09
PARAFAC2 reconstruction error=0.8189081871336212, variation=9.023739533375874e-10.
Starting iteration 1937
reconstruction error=0.2087655999929513
iteration 1, reconstruction error: 0.20876559794041358, decrease = 2.0525377231184194e-09
iteration 2, reconstruction error: 0.20876559589031288, decrease = 2.0501007003126404e-09
iteration 3, reconstruction error: 0.20876559384261684, decrease = 2.047696040508029e-09
iteration 4, reconstruction error: 0.20876559179732693, decrease = 2.0452899096579102e-09
PARAFAC2 reconstruction error=0.8189081862318399, variation=9.017813162870425e-10.
Starting iteration 1938
reconstruction error=0.208765589203629
iteration 1, reconstruction error: 0.2087655871524366, decrease = 2.05119241036833e-09
iteration 2, reconstruction error: 0.20876558510367504, decrease = 2.0487615493003375e-09
iteration 3, reconstruction error: 0.20876558305732354, decrease = 2.046351504914057e-09
iteration 4, reconstruction error: 0.20876558101336892, decrease = 2.043954616670618e-09
PARAFAC2 reconstruction error=0.8189081853306504, variation=9.011895674149173e-10.
Starting iteration 1939
reconstruction error=0.20876557842138516
iteration 1, reconstruction error: 0.20876557637153728, decrease = 2.0498478747743576e-09
iteration 2, reconstruction error: 0.20876557432411877, decrease = 2.0474185125074484e-09
iteration 3, reconstruction error: 0.20876557227910097, decrease = 2.0450177939945746e-09
iteration 4, reconstruction error: 0.2087655702364848, decrease = 2.042616187303281e-09
PARAFAC2 reconstruction error=0.8189081844300525, variation=9.005978185427921e-10.
Starting iteration 1940
reconstruction error=0.20876556764621204
iteration 1, reconstruction error: 0.20876556559770568, decrease = 2.0485063645381274e-09
iteration 2, reconstruction error: 0.2087655635516309, decrease = 2.046074781825169e-09
iteration 3, reconstruction error: 0.20876556150794534, decrease = 2.0436855541206e-09
iteration 4, reconstruction error: 0.2087655594666629, decrease = 2.0412824486282233e-09
PARAFAC2 reconstruction error=0.8189081835300455, variation=9.00007068871389e-10.
Starting iteration 1941
reconstruction error=0.20876555687810433
iteration 1, reconstruction error: 0.20876555483094095, decrease = 2.0471633832563896e-09
iteration 2, reconstruction error: 0.20876555278620226, decrease = 2.044738683926184e-09
iteration 3, reconstruction error: 0.2087655507438582, decrease = 2.0423440716399455e-09
iteration 4, reconstruction error: 0.20876554870390482, decrease = 2.039953372889869e-09
PARAFAC2 reconstruction error=0.818908182630629, variation=8.994164302222885e-10.
Starting iteration 1942
reconstruction error=0.20876554611705658
iteration 1, reconstruction error: 0.20876554407123157, decrease = 2.045825009400204e-09
iteration 2, reconstruction error: 0.20876554202783126, decrease = 2.0434003100699982e-09
iteration 3, reconstruction error: 0.208765539986824, decrease = 2.0410072520959943e-09
iteration 4, reconstruction error: 0.20876553794820135, decrease = 2.038622659572553e-09
PARAFAC2 reconstruction error=0.8189081817318025, variation=8.988265687293051e-10.
Starting iteration 1943
reconstruction error=0.20876553536306422
iteration 1, reconstruction error: 0.20876553331857836, decrease = 2.044485858387901e-09
iteration 2, reconstruction error: 0.2087655312765126, decrease = 2.0420657664832476e-09
iteration 3, reconstruction error: 0.208765529236836, decrease = 2.03967659428983e-09
iteration 4, reconstruction error: 0.20876552719954478, decrease = 2.0372912246102715e-09
PARAFAC2 reconstruction error=0.8189081808335653, variation=8.982371513255316e-10.
Starting iteration 1944
reconstruction error=0.2087655246161141
iteration 1, reconstruction error: 0.20876552257296976, decrease = 2.043144348151671e-09
iteration 2, reconstruction error: 0.20876552053224, decrease = 2.0407297518509893e-09
iteration 3, reconstruction error: 0.20876551849389413, decrease = 2.038345880972514e-09
iteration 4, reconstruction error: 0.20876551645793354, decrease = 2.0359605945596826e-09
PARAFAC2 reconstruction error=0.8189081799359171, variation=8.97648178010968e-10.
Starting iteration 1945
reconstruction error=0.2087655138762078
iteration 1, reconstruction error: 0.20876551183440334, decrease = 2.0418044477388264e-09
iteration 2, reconstruction error: 0.20876550979500508, decrease = 2.0393982613775563e-09
iteration 3, reconstruction error: 0.2087655077579906, decrease = 2.037014473765808e-09
iteration 4, reconstruction error: 0.20876550572335606, decrease = 2.0346345441790703e-09
PARAFAC2 reconstruction error=0.8189081790388574, variation=8.970597598079166e-10.
Starting iteration 1946
reconstruction error=0.2087655031433392
iteration 1, reconstruction error: 0.20876550110286465, decrease = 2.0404745393332036e-09
iteration 2, reconstruction error: 0.2087654990648032, decrease = 2.038061441833605e-09
iteration 3, reconstruction error: 0.20876549702912095, decrease = 2.035682261647409e-09
iteration 4, reconstruction error: 0.20876549499580857, decrease = 2.033312379579044e-09
PARAFAC2 reconstruction error=0.8189081781423855, variation=8.964718967163776e-10.
Starting iteration 1947
reconstruction error=0.20876549241749434
iteration 1, reconstruction error: 0.20876549037835973, decrease = 2.0391346111647835e-09
iteration 2, reconstruction error: 0.2087654883416305, decrease = 2.036729229715206e-09
iteration 3, reconstruction error: 0.20876548630727274, decrease = 2.0343577655790313e-09
iteration 4, reconstruction error: 0.20876548427528874, decrease = 2.03198399773008e-09
PARAFAC2 reconstruction error=0.8189081772465009, variation=8.958845887363509e-10.
Starting iteration 1948
reconstruction error=0.20876548169867412
iteration 1, reconstruction error: 0.20876547966087095, decrease = 2.0378031762025017e-09
iteration 2, reconstruction error: 0.20876547762547162, decrease = 2.0353993213095833e-09
iteration 3, reconstruction error: 0.20876547559244296, decrease = 2.0330286620851012e-09
iteration 4, reconstruction error: 0.20876547356178346, decrease = 2.0306595016617024e-09
PARAFAC2 reconstruction error=0.8189081763512035, variation=8.952973917786267e-10.
Starting iteration 1949
reconstruction error=0.20876547098686846
iteration 1, reconstruction error: 0.20876546895039902, decrease = 2.036469437527444e-09
iteration 2, reconstruction error: 0.2087654669163311, decrease = 2.0340679141028772e-09
iteration 3, reconstruction error: 0.20876546488462852, decrease = 2.0317025839489133e-09
iteration 4, reconstruction error: 0.20876546285529352, decrease = 2.0293350055933246e-09
PARAFAC2 reconstruction error=0.818908175456492, variation=8.94711527088532e-10.
Starting iteration 1950
reconstruction error=0.2087654602820789
iteration 1, reconstruction error: 0.20876545824694168, decrease = 2.035137225409045e-09
iteration 2, reconstruction error: 0.2087654562141983, decrease = 2.032743390278924e-09
iteration 3, reconstruction error: 0.20876545418382325, decrease = 2.030375034767218e-09
iteration 4, reconstruction error: 0.2087654521558081, decrease = 2.0280151447060746e-09
PARAFAC2 reconstruction error=0.8189081745623668, variation=8.941252183092274e-10.
Starting iteration 1951
reconstruction error=0.2087654495842916
iteration 1, reconstruction error: 0.2087654475504843, decrease = 2.033807317003422e-09
iteration 2, reconstruction error: 0.20876544551906695, decrease = 2.0314173398983115e-09
iteration 3, reconstruction error: 0.20876544349001874, decrease = 2.0290482072304883e-09
iteration 4, reconstruction error: 0.20876544146332268, decrease = 2.026696060974942e-09
PARAFAC2 reconstruction error=0.8189081736688268, variation=8.93539908730645e-10.
Starting iteration 1952
reconstruction error=0.20876543889349963
iteration 1, reconstruction error: 0.2087654368610176, decrease = 2.032482043778927e-09
iteration 2, reconstruction error: 0.208765434830934, decrease = 2.0300836012232537e-09
iteration 3, reconstruction error: 0.20876543280320795, decrease = 2.027726042630462e-09
iteration 4, reconstruction error: 0.20876543077783252, decrease = 2.0253754229315746e-09
PARAFAC2 reconstruction error=0.8189081727758717, variation=8.92955154263575e-10.
Starting iteration 1953
reconstruction error=0.20876542820970065
iteration 1, reconstruction error: 0.20876542617855312, decrease = 2.031147527947752e-09
iteration 2, reconstruction error: 0.20876542414979246, decrease = 2.0287606594671104e-09
iteration 3, reconstruction error: 0.20876542212338245, decrease = 2.026410012012647e-09
iteration 4, reconstruction error: 0.20876542009933155, decrease = 2.024050899107621e-09
PARAFAC2 reconstruction error=0.818908171883501, variation=8.923707328634123e-10.
Starting iteration 1954
reconstruction error=0.20876541753289166
iteration 1, reconstruction error: 0.2087654155030717, decrease = 2.029819951010481e-09
iteration 2, reconstruction error: 0.2087654134756309, decrease = 2.0274407985798604e-09
iteration 3, reconstruction error: 0.2087654114505423, decrease = 2.0250885968131627e-09
iteration 4, reconstruction error: 0.2087654094278082, decrease = 2.0227341190892645e-09
PARAFAC2 reconstruction error=0.818908170991714, variation=8.917869775970644e-10.
Starting iteration 1955
reconstruction error=0.208765406863061
iteration 1, reconstruction error: 0.20876540483456707, decrease = 2.028493928385444e-09
iteration 2, reconstruction error: 0.20876540280845313, decrease = 2.0261139432875552e-09
iteration 3, reconstruction error: 0.20876540078468514, decrease = 2.023767986525371e-09
iteration 4, reconstruction error: 0.20876539876326086, decrease = 2.0214242779648117e-09
PARAFAC2 reconstruction error=0.8189081701005104, variation=8.912035553976239e-10.
Starting iteration 1956
reconstruction error=0.20876539620020418
iteration 1, reconstruction error: 0.2087653941730363, decrease = 2.027167878004832e-09
iteration 2, reconstruction error: 0.2087653921482391, decrease = 2.024797191024774e-09
iteration 3, reconstruction error: 0.20876539012579026, decrease = 2.022448847283087e-09
iteration 4, reconstruction error: 0.20876538810568274, decrease = 2.0201075257020307e-09
PARAFAC2 reconstruction error=0.8189081692098897, variation=8.906206883096957e-10.
Starting iteration 1957
reconstruction error=0.20876538554431726
iteration 1, reconstruction error: 0.20876538351846924, decrease = 2.025848017117582e-09
iteration 2, reconstruction error: 0.20876538149499346, decrease = 2.0234757758252897e-09
iteration 3, reconstruction error: 0.2087653794738629, decrease = 2.021130568463647e-09
iteration 4, reconstruction error: 0.2087653774550745, decrease = 2.0187883864597467e-09
PARAFAC2 reconstruction error=0.8189081683198512, variation=8.900384873555822e-10.
Starting iteration 1958
reconstruction error=0.20876537489539024
iteration 1, reconstruction error: 0.2087653728708675, decrease = 2.024522743893087e-09
iteration 2, reconstruction error: 0.20876537084871083, decrease = 2.0221566643385813e-09
iteration 3, reconstruction error: 0.20876536882889707, decrease = 2.019813760689715e-09
iteration 4, reconstruction error: 0.2087653668114216, decrease = 2.0174754644664006e-09
PARAFAC2 reconstruction error=0.8189081674303946, variation=8.894566194683762e-10.
Starting iteration 1959
reconstruction error=0.20876536425342318
iteration 1, reconstruction error: 0.20876536223021647, decrease = 2.023206713275272e-09
iteration 2, reconstruction error: 0.2087653602093812, decrease = 2.0208352768946725e-09
iteration 3, reconstruction error: 0.20876535819088268, decrease = 2.018498507228017e-09
iteration 4, reconstruction error: 0.20876535617471934, decrease = 2.0161633473847473e-09
PARAFAC2 reconstruction error=0.8189081665415193, variation=8.888753066926824e-10.
Starting iteration 1960
reconstruction error=0.20876535361840218
iteration 1, reconstruction error: 0.2087653515965184, decrease = 2.0218837715191285e-09
iteration 2, reconstruction error: 0.20876534957699916, decrease = 2.0195192462768574e-09
iteration 3, reconstruction error: 0.20876534755981588, decrease = 2.017183281521895e-09
iteration 4, reconstruction error: 0.2087653455449593, decrease = 2.014856587129188e-09
PARAFAC2 reconstruction error=0.8189081656532249, variation=8.882944380061986e-10.
Starting iteration 1961
reconstruction error=0.20876534299032648
iteration 1, reconstruction error: 0.20876534096976335, decrease = 2.0205631334757612e-09
iteration 2, reconstruction error: 0.20876533895156088, decrease = 2.0182024662585007e-09
iteration 3, reconstruction error: 0.20876533693568747, decrease = 2.0158734126418665e-09
iteration 4, reconstruction error: 0.2087653349221415, decrease = 2.013545968848618e-09
PARAFAC2 reconstruction error=0.8189081647655108, variation=8.87714124431227e-10.
Starting iteration 1962
reconstruction error=0.2087653323691891
iteration 1, reconstruction error: 0.20876533034994582, decrease = 2.0192432725885112e-09
iteration 2, reconstruction error: 0.20876532833305708, decrease = 2.016888739353462e-09
iteration 3, reconstruction error: 0.2087653263184973, decrease = 2.0145597690035544e-09
iteration 4, reconstruction error: 0.20876532430625505, decrease = 2.0122422617063762e-09
PARAFAC2 reconstruction error=0.8189081638783764, variation=8.871343659677677e-10.
Starting iteration 1963
reconstruction error=0.208765321754984
iteration 1, reconstruction error: 0.20876531973705598, decrease = 2.0179280191268134e-09
iteration 2, reconstruction error: 0.2087653177214809, decrease = 2.015575067959574e-09
iteration 3, reconstruction error: 0.20876531570822948, decrease = 2.013251426680185e-09
iteration 4, reconstruction error: 0.20876531369730472, decrease = 2.0109247600430535e-09
PARAFAC2 reconstruction error=0.8189081629918215, variation=8.865549405712159e-10.
Starting iteration 1964
reconstruction error=0.2087653111477088
iteration 1, reconstruction error: 0.2087653091310914, decrease = 2.0166174008462434e-09
iteration 2, reconstruction error: 0.20876530711683156, decrease = 2.014259842253452e-09
iteration 3, reconstruction error: 0.2087653051048892, decrease = 2.0119423627118493e-09
iteration 4, reconstruction error: 0.2087653030952681, decrease = 2.0096210806563874e-09
PARAFAC2 reconstruction error=0.8189081621058452, variation=8.859762923307812e-10.
Starting iteration 1965
reconstruction error=0.20876530054734882
iteration 1, reconstruction error: 0.20876529853204975, decrease = 2.0152990665156523e-09
iteration 2, reconstruction error: 0.20876529651909745, decrease = 2.0129523048417752e-09
iteration 3, reconstruction error: 0.20876529450846878, decrease = 2.010628663562386e-09
iteration 4, reconstruction error: 0.20876529250014675, decrease = 2.008322036450849e-09
PARAFAC2 reconstruction error=0.8189081612204474, variation=8.853977551126491e-10.
Starting iteration 1966
reconstruction error=0.2087652899539088
iteration 1, reconstruction error: 0.20876528793992344, decrease = 2.013985367366189e-09
iteration 2, reconstruction error: 0.20876528592827942, decrease = 2.011644018029557e-09
iteration 3, reconstruction error: 0.20876528391895519, decrease = 2.0093242347751783e-09
iteration 4, reconstruction error: 0.20876528191193916, decrease = 2.0070160255958314e-09
PARAFAC2 reconstruction error=0.8189081603356276, variation=8.848197730060292e-10.
Starting iteration 1967
reconstruction error=0.20876527936737252
iteration 1, reconstruction error: 0.20876527735469697, decrease = 2.012675553997312e-09
iteration 2, reconstruction error: 0.20876527534436434, decrease = 2.0103326225928697e-09
iteration 3, reconstruction error: 0.20876527333634534, decrease = 2.0080190010762777e-09
iteration 4, reconstruction error: 0.20876527133063605, decrease = 2.0057092930958476e-09
PARAFAC2 reconstruction error=0.8189081594513846, variation=8.842430121447364e-10.
Starting iteration 1968
reconstruction error=0.2087652687877376
iteration 1, reconstruction error: 0.20876526677637577, decrease = 2.011361827092273e-09
iteration 2, reconstruction error: 0.20876526476735147, decrease = 2.009024308025076e-09
iteration 3, reconstruction error: 0.20876526276063612, decrease = 2.0067153494451873e-09
iteration 4, reconstruction error: 0.20876526075622975, decrease = 2.004406363109723e-09
PARAFAC2 reconstruction error=0.8189081585677188, variation=8.836658071942338e-10.
Starting iteration 1969
reconstruction error=0.20876525821500183
iteration 1, reconstruction error: 0.20876525620494985, decrease = 2.01005198596782e-09
iteration 2, reconstruction error: 0.2087652541972292, decrease = 2.0077206563939853e-09
iteration 3, reconstruction error: 0.20876525219182138, decrease = 2.0054078120335106e-09
iteration 4, reconstruction error: 0.2087652501887125, decrease = 2.0031088732164193e-09
PARAFAC2 reconstruction error=0.8189081576846292, variation=8.830896014444534e-10.
Starting iteration 1970
reconstruction error=0.20876524764915522
iteration 1, reconstruction error: 0.20876524564041074, decrease = 2.008744476311719e-09
iteration 2, reconstruction error: 0.2087652436340015, decrease = 2.0064092332017225e-09
iteration 3, reconstruction error: 0.2087652416298904, decrease = 2.004111099296324e-09
iteration 4, reconstruction error: 0.2087652396280844, decrease = 2.001805998741446e-09
PARAFAC2 reconstruction error=0.8189081568021155, variation=8.825137287615803e-10.
Starting iteration 1971
reconstruction error=0.20876523709019382
iteration 1, reconstruction error: 0.20876523508275843, decrease = 2.007435384587808e-09
iteration 2, reconstruction error: 0.208765233077649, decrease = 2.0051094395956426e-09
iteration 3, reconstruction error: 0.20876523107484543, decrease = 2.0028035618846474e-09
iteration 4, reconstruction error: 0.20876522907433306, decrease = 2.000512366873153e-09
PARAFAC2 reconstruction error=0.818908155920177, variation=8.81938522212522e-10.
Starting iteration 1972
reconstruction error=0.20876522653811305
iteration 1, reconstruction error: 0.20876522453198135, decrease = 2.006131705201142e-09
iteration 2, reconstruction error: 0.20876522252817709, decrease = 2.0038042614078933e-09
iteration 3, reconstruction error: 0.20876522052667335, decrease = 2.001503740522992e-09
iteration 4, reconstruction error: 0.20876521852746005, decrease = 1.999213294912039e-09
PARAFAC2 reconstruction error=0.8189081550388134, variation=8.813635377080686e-10.
Starting iteration 1973
reconstruction error=0.20876521599290218
iteration 1, reconstruction error: 0.20876521398807565, decrease = 2.0048265270133925e-09
iteration 2, reconstruction error: 0.20876521198557588, decrease = 2.0024997771095343e-09
iteration 3, reconstruction error: 0.20876520998536577, decrease = 2.0002101086546986e-09
iteration 4, reconstruction error: 0.2087652079874546, decrease = 1.9979111698376073e-09
PARAFAC2 reconstruction error=0.818908154158024, variation=8.80789441382035e-10.
Starting iteration 1974
reconstruction error=0.20876520545455732
iteration 1, reconstruction error: 0.20876520345103602, decrease = 2.003521293314492e-09
iteration 2, reconstruction error: 0.20876520144983837, decrease = 2.0011976520351027e-09
iteration 3, reconstruction error: 0.20876519945092883, decrease = 1.9989095378925015e-09
iteration 4, reconstruction error: 0.2087651974543067, decrease = 1.9966221453948663e-09
PARAFAC2 reconstruction error=0.8189081532778085, variation=8.802154560783038e-10.
Starting iteration 1975
reconstruction error=0.20876519492307077
iteration 1, reconstruction error: 0.20876519292085932, decrease = 2.002211452190039e-09
iteration 2, reconstruction error: 0.20876519092095916, decrease = 1.999900162141799e-09
iteration 3, reconstruction error: 0.20876518892334714, decrease = 1.997612020243622e-09
iteration 4, reconstruction error: 0.20876518692801788, decrease = 1.9953292629271147e-09
PARAFAC2 reconstruction error=0.8189081523981665, variation=8.796420258860849e-10.
Starting iteration 1976
reconstruction error=0.20876518439844566
iteration 1, reconstruction error: 0.20876518239753247, decrease = 2.000913185140618e-09
iteration 2, reconstruction error: 0.2087651803989329, decrease = 1.998599563624026e-09
iteration 3, reconstruction error: 0.20876517840261452, decrease = 1.996318388375329e-09
iteration 4, reconstruction error: 0.2087651764085789, decrease = 1.9940356310588214e-09
PARAFAC2 reconstruction error=0.8189081515190973, variation=8.790691508053783e-10.
Starting iteration 1977
reconstruction error=0.20876517388066806
iteration 1, reconstruction error: 0.20876517188105626, decrease = 1.999611809466728e-09
iteration 2, reconstruction error: 0.20876516988375418, decrease = 1.9973020737307223e-09
iteration 3, reconstruction error: 0.20876516788873098, decrease = 1.995023202194801e-09
iteration 4, reconstruction error: 0.20876516589598748, decrease = 1.9927434979916114e-09
PARAFAC2 reconstruction error=0.8189081506406002, variation=8.784971639030914e-10.
Starting iteration 1978
reconstruction error=0.20876516336973264
iteration 1, reconstruction error: 0.2087651613714152, decrease = 1.9983174281978933e-09
iteration 2, reconstruction error: 0.20876515937541065, decrease = 1.996004556081843e-09
iteration 3, reconstruction error: 0.20876515738168727, decrease = 1.9937233808331456e-09
iteration 4, reconstruction error: 0.20876515539023044, decrease = 1.9914568327727977e-09
PARAFAC2 reconstruction error=0.8189081497626753, variation=8.779248439338971e-10.
Starting iteration 1979
reconstruction error=0.20876515286562936
iteration 1, reconstruction error: 0.20876515086862024, decrease = 1.9970091136300994e-09
iteration 2, reconstruction error: 0.20876514887390624, decrease = 1.994714005082443e-09
iteration 3, reconstruction error: 0.20876514688147266, decrease = 1.9924335792342873e-09
iteration 4, reconstruction error: 0.20876514489131331, decrease = 1.990159342879494e-09
PARAFAC2 reconstruction error=0.8189081488853215, variation=8.773538562323324e-10.
Starting iteration 1980
reconstruction error=0.20876514236836516
iteration 1, reconstruction error: 0.20876514037264737, decrease = 1.9957177854745822e-09
iteration 2, reconstruction error: 0.20876513837923705, decrease = 1.993410325695777e-09
iteration 3, reconstruction error: 0.2087651363880917, decrease = 1.991145359703239e-09
iteration 4, reconstruction error: 0.20876513439921754, decrease = 1.988874148706188e-09
PARAFAC2 reconstruction error=0.8189081480085388, variation=8.767826464861628e-10.
Starting iteration 1981
reconstruction error=0.20876513187792314
iteration 1, reconstruction error: 0.20876512988350132, decrease = 1.9944218221379373e-09
iteration 2, reconstruction error: 0.20876512789138232, decrease = 1.9921189975402598e-09
iteration 3, reconstruction error: 0.20876512590152907, decrease = 1.9898532543916048e-09
iteration 4, reconstruction error: 0.20876512391394084, decrease = 1.9875882328879158e-09
PARAFAC2 reconstruction error=0.8189081471323262, variation=8.762126579853202e-10.
Starting iteration 1982
reconstruction error=0.20876512139430015
iteration 1, reconstruction error: 0.20876511940117662, decrease = 1.9931235273329406e-09
iteration 2, reconstruction error: 0.20876511741034814, decrease = 1.9908284742964355e-09
iteration 3, reconstruction error: 0.2087651154217824, decrease = 1.9885657565055226e-09
iteration 4, reconstruction error: 0.2087651134354816, decrease = 1.986300790512985e-09
PARAFAC2 reconstruction error=0.8189081462566838, variation=8.756423364175703e-10.
Starting iteration 1983
reconstruction error=0.20876511091749242
iteration 1, reconstruction error: 0.20876510892565867, decrease = 1.991833753489658e-09
iteration 2, reconstruction error: 0.20876510693612382, decrease = 1.9895348424281423e-09
iteration 3, reconstruction error: 0.20876510494884787, decrease = 1.9872759549066643e-09
iteration 4, reconstruction error: 0.20876510296383147, decrease = 1.9850164012513716e-09
PARAFAC2 reconstruction error=0.8189081453816105, variation=8.750733471174499e-10.
Starting iteration 1984
reconstruction error=0.20876510044748833
iteration 1, reconstruction error: 0.20876509845695287, decrease = 1.9905354586846613e-09
iteration 2, reconstruction error: 0.2087650964687009, decrease = 1.988251979723188e-09
iteration 3, reconstruction error: 0.20876509448271702, decrease = 1.9859838773506056e-09
iteration 4, reconstruction error: 0.2087650924989827, decrease = 1.9837343157025344e-09
PARAFAC2 reconstruction error=0.8189081445071063, variation=8.74504246795027e-10.
Starting iteration 1985
reconstruction error=0.20876508998429102
iteration 1, reconstruction error: 0.208765087995043, decrease = 1.9892480163097304e-09
iteration 2, reconstruction error: 0.2087650860080847, decrease = 1.986958320099319e-09
iteration 3, reconstruction error: 0.2087650840233829, decrease = 1.9847017918017684e-09
iteration 4, reconstruction error: 0.20876508204093527, decrease = 1.982447622728145e-09
PARAFAC2 reconstruction error=0.8189081436331704, variation=8.73935812606419e-10.
Starting iteration 1986
reconstruction error=0.2087650795278866
iteration 1, reconstruction error: 0.20876507753992912, decrease = 1.9879574653103305e-09
iteration 2, reconstruction error: 0.2087650755542606, decrease = 1.9856685185004608e-09
iteration 3, reconstruction error: 0.20876507357084703, decrease = 1.9834135722707202e-09
iteration 4, reconstruction error: 0.2087650715896784, decrease = 1.9811686180482013e-09
PARAFAC2 reconstruction error=0.8189081427598025, variation=8.733679335293232e-10.
Starting iteration 1987
reconstruction error=0.20876506907827277
iteration 1, reconstruction error: 0.2087650670916082, decrease = 1.986664582842579e-09
iteration 2, reconstruction error: 0.20876506510722329, decrease = 1.9843849063949648e-09
iteration 3, reconstruction error: 0.20876506312509102, decrease = 1.9821322638780003e-09
iteration 4, reconstruction error: 0.20876506114520602, decrease = 1.9798850059427053e-09
PARAFAC2 reconstruction error=0.818908141887002, variation=8.728004985414373e-10.
Starting iteration 1988
reconstruction error=0.20876505863544415
iteration 1, reconstruction error: 0.2087650566500686, decrease = 1.985375558399838e-09
iteration 2, reconstruction error: 0.20876505466696882, decrease = 1.98309976773281e-09
iteration 3, reconstruction error: 0.2087650526861225, decrease = 1.9808463203041526e-09
iteration 4, reconstruction error: 0.20876505070751725, decrease = 1.97860525186222e-09
PARAFAC2 reconstruction error=0.8189081410147684, variation=8.722336186650637e-10.
Starting iteration 1989
reconstruction error=0.20876504819939376
iteration 1, reconstruction error: 0.20876504621530567, decrease = 1.9840880882693313e-09
iteration 2, reconstruction error: 0.20876504423349185, decrease = 1.9818138241589622e-09
iteration 3, reconstruction error: 0.20876504225392295, decrease = 1.979568897692019e-09
iteration 4, reconstruction error: 0.20876504027659748, decrease = 1.977325470026159e-09
PARAFAC2 reconstruction error=0.8189081401431014, variation=8.71666960833295e-10.
Starting iteration 1990
reconstruction error=0.2087650377701155
iteration 1, reconstruction error: 0.2087650357873149, decrease = 1.9828006181388247e-09
iteration 2, reconstruction error: 0.20876503380678238, decrease = 1.9805325157662423e-09
iteration 3, reconstruction error: 0.20876503182849557, decrease = 1.978286812143182e-09
iteration 4, reconstruction error: 0.20876502985244905, decrease = 1.9760465208573663e-09
PARAFAC2 reconstruction error=0.8189081392720001, variation=8.711013022022485e-10.
Starting iteration 1991
reconstruction error=0.2087650273476048
iteration 1, reconstruction error: 0.20876502536608627, decrease = 1.9815185325899876e-09
iteration 2, reconstruction error: 0.20876502338684352, decrease = 1.9792427419229597e-09
iteration 3, reconstruction error: 0.2087650214098326, decrease = 1.977010916087707e-09
iteration 4, reconstruction error: 0.20876501943506123, decrease = 1.974771374202433e-09
PARAFAC2 reconstruction error=0.8189081384014645, variation=8.705356435712019e-10.
Starting iteration 1992
reconstruction error=0.20876501693185465
iteration 1, reconstruction error: 0.20876501495162358, decrease = 1.980231062459481e-09
iteration 2, reconstruction error: 0.2087650129736552, decrease = 1.9779683724241437e-09
iteration 3, reconstruction error: 0.20876501099792483, decrease = 1.9757303848511043e-09
iteration 4, reconstruction error: 0.20876500902443243, decrease = 1.973492397278065e-09
PARAFAC2 reconstruction error=0.8189081375314939, variation=8.699705400516677e-10.
Starting iteration 1993
reconstruction error=0.20876500652286117
iteration 1, reconstruction error: 0.20876500454391222, decrease = 1.9789489491550682e-09
iteration 2, reconstruction error: 0.2087650025672259, decrease = 1.976686314630882e-09
iteration 3, reconstruction error: 0.20876500059277528, decrease = 1.974450630770619e-09
iteration 4, reconstruction error: 0.2087649986205534, decrease = 1.9722218858042595e-09
PARAFAC2 reconstruction error=0.8189081366620878, variation=8.694061026659483e-10.
Starting iteration 1994
reconstruction error=0.2087649961206145
iteration 1, reconstruction error: 0.20876499414294758, decrease = 1.9776669191173823e-09
iteration 2, reconstruction error: 0.20876499216754257, decrease = 1.9754050062381623e-09
iteration 3, reconstruction error: 0.208764990194364, decrease = 1.973178564984579e-09
iteration 4, reconstruction error: 0.2087649882234142, decrease = 1.9709498200182196e-09
PARAFAC2 reconstruction error=0.8189081357932455, variation=8.688423314140437e-10.
Starting iteration 1995
reconstruction error=0.2087649857251137
iteration 1, reconstruction error: 0.20876498374872884, decrease = 1.976384861324121e-09
iteration 2, reconstruction error: 0.20876498177460207, decrease = 1.9741267787143357e-09
iteration 3, reconstruction error: 0.2087649798026971, decrease = 1.9719049726418802e-09
iteration 4, reconstruction error: 0.2087649778330193, decrease = 1.9696777819877553e-09
PARAFAC2 reconstruction error=0.8189081349249671, variation=8.682784491398365e-10.
Starting iteration 1996
reconstruction error=0.20876497533635271
iteration 1, reconstruction error: 0.20876497336124455, decrease = 1.975108160356953e-09
iteration 2, reconstruction error: 0.2087649713883929, decrease = 1.972851659814978e-09
iteration 3, reconstruction error: 0.20876496941776534, decrease = 1.9706275500297465e-09
iteration 4, reconstruction error: 0.20876496744935885, decrease = 1.9684064933578327e-09
PARAFAC2 reconstruction error=0.8189081340572515, variation=8.677155660663516e-10.
Starting iteration 1997
reconstruction error=0.20876496495431765
iteration 1, reconstruction error: 0.20876496298049232, decrease = 1.9738253254075744e-09
iteration 2, reconstruction error: 0.20876496100891737, decrease = 1.9715749588478104e-09
iteration 3, reconstruction error: 0.20876495903955955, decrease = 1.9693578157120584e-09
iteration 4, reconstruction error: 0.20876495707241968, decrease = 1.9671398676646135e-09
PARAFAC2 reconstruction error=0.8189081331900985, variation=8.67153016059774e-10.
Starting iteration 1998
reconstruction error=0.20876495457901242
iteration 1, reconstruction error: 0.20876495260646377, decrease = 1.9725486521959823e-09
iteration 2, reconstruction error: 0.20876495063616549, decrease = 1.9702982856362183e-09
iteration 3, reconstruction error: 0.20876494866808123, decrease = 1.9680842511249352e-09
iteration 4, reconstruction error: 0.20876494670221266, decrease = 1.965868579034691e-09
PARAFAC2 reconstruction error=0.8189081323235078, variation=8.665906880978014e-10.
Starting iteration 1999
reconstruction error=0.20876494421042618
iteration 1, reconstruction error: 0.20876494223915498, decrease = 1.971271201828273e-09
iteration 2, reconstruction error: 0.20876494027012793, decrease = 1.969027052517447e-09
iteration 3, reconstruction error: 0.20876493830331347, decrease = 1.966814461296096e-09
iteration 4, reconstruction error: 0.20876493633871304, decrease = 1.9646004267848127e-09
PARAFAC2 reconstruction error=0.8189081314574784, variation=8.660293593365509e-10.
Starting iteration 2000
reconstruction error=0.20876493384855738
iteration 1, reconstruction error: 0.20876493187856207, decrease = 1.969995305772798e-09
iteration 2, reconstruction error: 0.20876492991080556, decrease = 1.967756513288066e-09
iteration 3, reconstruction error: 0.20876492794526233, decrease = 1.9655432281773244e-09
iteration 4, reconstruction error: 0.20876492598192703, decrease = 1.9633352998926767e-09
PARAFAC2 reconstruction error=0.8189081305920102, variation=8.654682526199053e-10.
Starting iteration 2001
reconstruction error=0.20876492349339684
iteration 1, reconstruction error: 0.20876492152467055, decrease = 1.968726293100076e-09
iteration 2, reconstruction error: 0.20876491955818913, decrease = 1.966481422144284e-09
iteration 3, reconstruction error: 0.20876491759391413, decrease = 1.9642749926607195e-09
iteration 4, reconstruction error: 0.20876491563184546, decrease = 1.9620686741994575e-09
PARAFAC2 reconstruction error=0.8189081297271027, variation=8.649074789701672e-10.
Starting iteration 2002
reconstruction error=0.20876491314493606
iteration 1, reconstruction error: 0.2087649111774864, decrease = 1.9674496476440595e-09
iteration 2, reconstruction error: 0.20876490921227397, decrease = 1.9652124372271373e-09
iteration 3, reconstruction error: 0.2087649072492687, decrease = 1.963005286098607e-09
iteration 4, reconstruction error: 0.20876490528846514, decrease = 1.9608035473073215e-09
PARAFAC2 reconstruction error=0.8189081288627554, variation=8.643472604319413e-10.
Starting iteration 2003
reconstruction error=0.2087649028031789
iteration 1, reconstruction error: 0.20876490083700355, decrease = 1.9661753336563947e-09
iteration 2, reconstruction error: 0.20876489887305547, decrease = 1.9639480874911186e-09
iteration 3, reconstruction error: 0.20876489691131683, decrease = 1.961738632649812e-09
iteration 4, reconstruction error: 0.20876489495177838, decrease = 1.959538448170761e-09
PARAFAC2 reconstruction error=0.818908127998968, variation=8.637874859829253e-10.
Starting iteration 2004
reconstruction error=0.20876489246820512
iteration 1, reconstruction error: 0.2087648905032965, decrease = 1.9649086246964487e-09
iteration 2, reconstruction error: 0.20876488854062505, decrease = 1.962671442035102e-09
iteration 3, reconstruction error: 0.20876488658015152, decrease = 1.9604735335132517e-09
iteration 4, reconstruction error: 0.20876488462187356, decrease = 1.958277956459753e-09
PARAFAC2 reconstruction error=0.8189081271357395, variation=8.632284886900266e-10.
Starting iteration 2005
reconstruction error=0.20876488213982053
iteration 1, reconstruction error: 0.20876488017618777, decrease = 1.9636327563965494e-09
iteration 2, reconstruction error: 0.20876487821477993, decrease = 1.961407841699625e-09
iteration 3, reconstruction error: 0.20876487625556608, decrease = 1.9592138467139364e-09
iteration 4, reconstruction error: 0.20876487429855475, decrease = 1.9570113307665338e-09
PARAFAC2 reconstruction error=0.81890812627307, variation=8.626694913971278e-10.
Starting iteration 2006
reconstruction error=0.20876487181811756
iteration 1, reconstruction error: 0.20876486985574913, decrease = 1.9623684344161063e-09
iteration 2, reconstruction error: 0.2087648678956095, decrease = 1.9601396339385957e-09
iteration 3, reconstruction error: 0.20876486593766075, decrease = 1.957948747577376e-09
iteration 4, reconstruction error: 0.20876486398190605, decrease = 1.955754697080536e-09
PARAFAC2 reconstruction error=0.8189081254109585, variation=8.621114933049512e-10.
Starting iteration 2007
reconstruction error=0.20876486150308649
iteration 1, reconstruction error: 0.20876485954198856, decrease = 1.961097922942301e-09
iteration 2, reconstruction error: 0.20876485758311478, decrease = 1.9588737854014937e-09
iteration 3, reconstruction error: 0.2087648556264227, decrease = 1.956692086135803e-09
iteration 4, reconstruction error: 0.2087648536719269, decrease = 1.954495787437338e-09
PARAFAC2 reconstruction error=0.8189081245494048, variation=8.615537172573795e-10.
Starting iteration 2008
reconstruction error=0.20876485119472812
iteration 1, reconstruction error: 0.2087648492348953, decrease = 1.9598328238057405e-09
iteration 2, reconstruction error: 0.2087648472772843, decrease = 1.9576109899777094e-09
iteration 3, reconstruction error: 0.2087648453218573, decrease = 1.955427014754818e-09
iteration 4, reconstruction error: 0.20876484336862047, decrease = 1.9532368222829888e-09
PARAFAC2 reconstruction error=0.8189081236884086, variation=8.609961632544127e-10.
Starting iteration 2009
reconstruction error=0.20876484089303332
iteration 1, reconstruction error: 0.2087648389344687, decrease = 1.9585646160447112e-09
iteration 2, reconstruction error: 0.20876483697811585, decrease = 1.9563528574906286e-09
iteration 3, reconstruction error: 0.20876483502395166, decrease = 1.954164191575458e-09
iteration 4, reconstruction error: 0.20876483307197066, decrease = 1.951980993508684e-09
PARAFAC2 reconstruction error=0.818908122827969, variation=8.604396084521682e-10.
Starting iteration 2010
reconstruction error=0.20876483059799822
iteration 1, reconstruction error: 0.20876482864069176, decrease = 1.9573064558020548e-09
iteration 2, reconstruction error: 0.20876482668560636, decrease = 1.955085399130141e-09
iteration 3, reconstruction error: 0.20876482473269953, decrease = 1.9529068362444946e-09
iteration 4, reconstruction error: 0.20876482278197284, decrease = 1.950726691291038e-09
PARAFAC2 reconstruction error=0.8189081219680858, variation=8.59883164672226e-10.
Starting iteration 2011
reconstruction error=0.20876482030961288
iteration 1, reconstruction error: 0.2087648183535731, decrease = 1.9560397745976843e-09
iteration 2, reconstruction error: 0.20876481639974429, decrease = 1.9538288209552945e-09
iteration 3, reconstruction error: 0.20876481444809486, decrease = 1.9516494254023797e-09
iteration 4, reconstruction error: 0.20876481249862636, decrease = 1.949468503292806e-09
PARAFAC2 reconstruction error=0.8189081211087584, variation=8.593273870260987e-10.
Starting iteration 2012
reconstruction error=0.2087648100278696
iteration 1, reconstruction error: 0.20876480807309564, decrease = 1.954773953816158e-09
iteration 2, reconstruction error: 0.20876480612052734, decrease = 1.9525683014887107e-09
iteration 3, reconstruction error: 0.20876480417013837, decrease = 1.950388961446947e-09
iteration 4, reconstruction error: 0.20876480222191798, decrease = 1.9482203905685225e-09
PARAFAC2 reconstruction error=0.8189081202499863, variation=8.587721644914836e-10.
Starting iteration 2013
reconstruction error=0.20876479975277215
iteration 1, reconstruction error: 0.20876479779925716, decrease = 1.9535149886618086e-09
iteration 2, reconstruction error: 0.2087647958479501, decrease = 1.951307060377161e-09
iteration 3, reconstruction error: 0.20876479389881158, decrease = 1.949138517254312e-09
iteration 4, reconstruction error: 0.20876479195184397, decrease = 1.9469676149075354e-09
PARAFAC2 reconstruction error=0.8189081193917691, variation=8.582171640014735e-10.
Starting iteration 2014
reconstruction error=0.20876478948430524
iteration 1, reconstruction error: 0.20876478753205305, decrease = 1.9522521932380243e-09
iteration 2, reconstruction error: 0.20876478558199643, decrease = 1.9500566161845256e-09
iteration 3, reconstruction error: 0.2087647836341184, decrease = 1.9478780255433037e-09
iteration 4, reconstruction error: 0.20876478168840432, decrease = 1.945714089846007e-09
PARAFAC2 reconstruction error=0.8189081185341063, variation=8.576628296452782e-10.
Starting iteration 2015
reconstruction error=0.20876477922246806
iteration 1, reconstruction error: 0.208764777271474, decrease = 1.9509940607509435e-09
iteration 2, reconstruction error: 0.20876477532267862, decrease = 1.948795375072976e-09
iteration 3, reconstruction error: 0.2087647733760526, decrease = 1.946626027038434e-09
iteration 4, reconstruction error: 0.2087647714315874, decrease = 1.944465199965606e-09
PARAFAC2 reconstruction error=0.8189081176769973, variation=8.571089393782927e-10.
Starting iteration 2016
reconstruction error=0.2087647689672529
iteration 1, reconstruction error: 0.20876476701751778, decrease = 1.94973512335217e-09
iteration 2, reconstruction error: 0.20876476506997674, decrease = 1.9475410450997543e-09
iteration 3, reconstruction error: 0.20876476312460113, decrease = 1.945375610601374e-09
iteration 4, reconstruction error: 0.20876476118138948, decrease = 1.9432116471485017e-09
PARAFAC2 reconstruction error=0.8189081168204421, variation=8.565552711559121e-10.
Starting iteration 2017
reconstruction error=0.20876475871865977
iteration 1, reconstruction error: 0.2087647567701813, decrease = 1.9484784619105966e-09
iteration 2, reconstruction error: 0.20876475482389223, decrease = 1.94628907435046e-09
iteration 3, reconstruction error: 0.20876475287976784, decrease = 1.9441243892526217e-09
iteration 4, reconstruction error: 0.20876475093780433, decrease = 1.9419635066686425e-09
PARAFAC2 reconstruction error=0.8189081159644397, variation=8.560023800896488e-10.
Starting iteration 2018
reconstruction error=0.20876474847667328
iteration 1, reconstruction error: 0.20876474652945526, decrease = 1.9472180257107397e-09
iteration 2, reconstruction error: 0.2087647445844174, decrease = 1.9450378530017076e-09
iteration 3, reconstruction error: 0.20876474264154116, decrease = 1.9428762487727624e-09
iteration 4, reconstruction error: 0.20876474070082657, decrease = 1.940714589032666e-09
PARAFAC2 reconstruction error=0.8189081151089898, variation=8.554499331125953e-10.
Starting iteration 2019
reconstruction error=0.2087647382412957
iteration 1, reconstruction error: 0.20876473629532585, decrease = 1.945969857475305e-09
iteration 2, reconstruction error: 0.20876473435154383, decrease = 1.943782024227403e-09
iteration 3, reconstruction error: 0.2087647324099196, decrease = 1.941624222512317e-09
iteration 4, reconstruction error: 0.20876473047045083, decrease = 1.9394687800211585e-09
PARAFAC2 reconstruction error=0.8189081142540918, variation=8.548979302247517e-10.
Starting iteration 2020
reconstruction error=0.20876472801251783
iteration 1, reconstruction error: 0.20876472606780305, decrease = 1.9447147781015417e-09
iteration 2, reconstruction error: 0.20876472412527225, decrease = 1.9425308028786503e-09
iteration 3, reconstruction error: 0.20876472218489692, decrease = 1.940375332631916e-09
iteration 4, reconstruction error: 0.20876472024666856, decrease = 1.9382283555913205e-09
PARAFAC2 reconstruction error=0.8189081133997456, variation=8.543462604038154e-10.
Starting iteration 2021
reconstruction error=0.20876471779033276
iteration 1, reconstruction error: 0.20876471584687306, decrease = 1.9434596987277786e-09
iteration 2, reconstruction error: 0.20876471390559195, decrease = 1.9412811080865566e-09
iteration 3, reconstruction error: 0.20876471196646165, decrease = 1.939130300776526e-09
iteration 4, reconstruction error: 0.20876471002948374, decrease = 1.936977911398685e-09
PARAFAC2 reconstruction error=0.8189081125459503, variation=8.53795256716694e-10.
Starting iteration 2022
reconstruction error=0.20876470757473972
iteration 1, reconstruction error: 0.208764705632532, decrease = 1.9422077279784844e-09
iteration 2, reconstruction error: 0.20876470369249903, decrease = 1.9400329676066974e-09
iteration 3, reconstruction error: 0.20876470175461456, decrease = 1.937884464009443e-09
iteration 4, reconstruction error: 0.20876469981887552, decrease = 1.9357390412810815e-09
PARAFAC2 reconstruction error=0.8189081116927055, variation=8.532448081410848e-10.
Starting iteration 2023
reconstruction error=0.20876469736573022
iteration 1, reconstruction error: 0.20876469542477064, decrease = 1.940959587498625e-09
iteration 2, reconstruction error: 0.20876469348598348, decrease = 1.93878715859519e-09
iteration 3, reconstruction error: 0.20876469154934638, decrease = 1.936637100685701e-09
iteration 4, reconstruction error: 0.208764689614847, decrease = 1.934499366251785e-09
PARAFAC2 reconstruction error=0.818908110840011, variation=8.526944705877781e-10.
Starting iteration 2024
reconstruction error=0.20876468716329194
iteration 1, reconstruction error: 0.2087646852235828, decrease = 1.93970914330599e-09
iteration 2, reconstruction error: 0.20876468328604608, decrease = 1.9375367144025546e-09
iteration 3, reconstruction error: 0.2087646813506525, decrease = 1.9353935953869694e-09
iteration 4, reconstruction error: 0.2087646794173943, decrease = 1.9332581924214054e-09
PARAFAC2 reconstruction error=0.8189081099878662, variation=8.521447991682862e-10.
Starting iteration 2025
reconstruction error=0.20876467696743028
iteration 1, reconstruction error: 0.20876467502897236, decrease = 1.9384579219572373e-09
iteration 2, reconstruction error: 0.20876467309267993, decrease = 1.936292431947706e-09
iteration 3, reconstruction error: 0.20876467115852987, decrease = 1.9341500623326624e-09
iteration 4, reconstruction error: 0.20876466922651132, decrease = 1.9320185451476846e-09
PARAFAC2 reconstruction error=0.8189081091362707, variation=8.515955718380042e-10.
Starting iteration 2026
reconstruction error=0.2087646667781383
iteration 1, reconstruction error: 0.2087646648409262, decrease = 1.937212085190154e-09
iteration 2, reconstruction error: 0.2087646629058765, decrease = 1.9350497038050918e-09
iteration 3, reconstruction error: 0.2087646609729684, decrease = 1.9329081113461655e-09
iteration 4, reconstruction error: 0.20876465904218872, decrease = 1.930779675030081e-09
PARAFAC2 reconstruction error=0.8189081082852236, variation=8.510470106415369e-10.
Starting iteration 2027
reconstruction error=0.2087646565954037
iteration 1, reconstruction error: 0.20876465465943744, decrease = 1.935966248423071e-09
iteration 2, reconstruction error: 0.20876465272563433, decrease = 1.933803117637467e-09
iteration 3, reconstruction error: 0.20876465079396125, decrease = 1.931673071497997e-09
iteration 4, reconstruction error: 0.20876464886442275, decrease = 1.9295385011997013e-09
PARAFAC2 reconstruction error=0.8189081074347251, variation=8.50498560467372e-10.
Starting iteration 2028
reconstruction error=0.2087646464192257
iteration 1, reconstruction error: 0.20876464448450138, decrease = 1.9347243251921498e-09
iteration 2, reconstruction error: 0.20876464255194027, decrease = 1.932561111139819e-09
iteration 3, reconstruction error: 0.20876464062150915, decrease = 1.9304311205115e-09
iteration 4, reconstruction error: 0.20876463869321188, decrease = 1.9282972718581703e-09
PARAFAC2 reconstruction error=0.8189081065847741, variation=8.499509984716269e-10.
Starting iteration 2029
reconstruction error=0.20876463624959737
iteration 1, reconstruction error: 0.2087646343161243, decrease = 1.9334730760878216e-09
iteration 2, reconstruction error: 0.20876463238479814, decrease = 1.931326154558377e-09
iteration 3, reconstruction error: 0.2087646304556067, decrease = 1.9291914454822034e-09
iteration 4, reconstruction error: 0.2087646285285421, decrease = 1.927064591233929e-09
PARAFAC2 reconstruction error=0.8189081057353707, variation=8.494034364758818e-10.
Starting iteration 2030
reconstruction error=0.20876462608650947
iteration 1, reconstruction error: 0.20876462415427452, decrease = 1.9322349553707596e-09
iteration 2, reconstruction error: 0.20876462222419884, decrease = 1.930075682610166e-09
iteration 3, reconstruction error: 0.20876462029624238, decrease = 1.927956461145186e-09
iteration 4, reconstruction error: 0.20876461837041052, decrease = 1.9258318550985365e-09
PARAFAC2 reconstruction error=0.8189081048865141, variation=8.488565406139514e-10.
Starting iteration 2031
reconstruction error=0.20876461592996584
iteration 1, reconstruction error: 0.20876461399897592, decrease = 1.9309899235153694e-09
iteration 2, reconstruction error: 0.20876461207013375, decrease = 1.9288421693186564e-09
iteration 3, reconstruction error: 0.20876461014341463, decrease = 1.9267191175842413e-09
iteration 4, reconstruction error: 0.20876460821882242, decrease = 1.9245922078248157e-09
PARAFAC2 reconstruction error=0.8189081040382036, variation=8.483105329304408e-10.
Starting iteration 2032
reconstruction error=0.2087646057799512
iteration 1, reconstruction error: 0.2087646038502017, decrease = 1.9297494990855313e-09
iteration 2, reconstruction error: 0.20876460192259685, decrease = 1.9276048535132873e-09
iteration 3, reconstruction error: 0.2087645999971166, decrease = 1.9254802474666377e-09
iteration 4, reconstruction error: 0.20876459807375092, decrease = 1.923365688938361e-09
PARAFAC2 reconstruction error=0.8189081031904392, variation=8.477644142246277e-10.
Starting iteration 2033
reconstruction error=0.20876459563646768
iteration 1, reconstruction error: 0.2087645937079532, decrease = 1.9285144869929383e-09
iteration 2, reconstruction error: 0.20876459178158724, decrease = 1.926365955640108e-09
iteration 3, reconstruction error: 0.20876458985733892, decrease = 1.924248316242938e-09
iteration 4, reconstruction error: 0.20876458793520905, decrease = 1.922129871934075e-09
PARAFAC2 reconstruction error=0.8189081023432201, variation=8.472190726749318e-10.
Starting iteration 2034
reconstruction error=0.20876458549950153
iteration 1, reconstruction error: 0.2087645835722275, decrease = 1.9272740348075246e-09
iteration 2, reconstruction error: 0.2087645816471004, decrease = 1.9251270855225044e-09
iteration 3, reconstruction error: 0.20876457972408402, decrease = 1.9230163850192383e-09
iteration 4, reconstruction error: 0.20876457780318147, decrease = 1.9209025481359276e-09
PARAFAC2 reconstruction error=0.8189081014965459, variation=8.466741752144458e-10.
Starting iteration 2035
reconstruction error=0.2087645753690551
iteration 1, reconstruction error: 0.2087645734430199, decrease = 1.9260351924454966e-09
iteration 2, reconstruction error: 0.20876457151912475, decrease = 1.9238951542988048e-09
iteration 3, reconstruction error: 0.20876456959734419, decrease = 1.9217805680149525e-09
iteration 4, reconstruction error: 0.20876456767766893, decrease = 1.9196752520933558e-09
PARAFAC2 reconstruction error=0.8189081006504165, variation=8.461293887762622e-10.
Starting iteration 2036
reconstruction error=0.2087645652451136
iteration 1, reconstruction error: 0.208764563320315, decrease = 1.9247985982850935e-09
iteration 2, reconstruction error: 0.20876456139765565, decrease = 1.9226593650500945e-09
iteration 3, reconstruction error: 0.20876455947710468, decrease = 1.9205509682596045e-09
iteration 4, reconstruction error: 0.20876455755866138, decrease = 1.9184432931140805e-09
PARAFAC2 reconstruction error=0.8189080998048311, variation=8.455853794941959e-10.
Starting iteration 2037
reconstruction error=0.20876455512767564
iteration 1, reconstruction error: 0.208764553204119, decrease = 1.9235566472985965e-09
iteration 2, reconstruction error: 0.20876455128269078, decrease = 1.921428210982512e-09
iteration 3, reconstruction error: 0.20876454936337177, decrease = 1.919319009280329e-09
iteration 4, reconstruction error: 0.20876454744615422, decrease = 1.917217551383743e-09
PARAFAC2 reconstruction error=0.8189080989597891, variation=8.450420363459443e-10.
Starting iteration 2038
reconstruction error=0.20876454501674893
iteration 1, reconstruction error: 0.2087645430944219, decrease = 1.922327019787673e-09
iteration 2, reconstruction error: 0.2087645411742241, decrease = 1.9201978063154712e-09
iteration 3, reconstruction error: 0.20876453925613395, decrease = 1.918090158925523e-09
iteration 4, reconstruction error: 0.20876453734014525, decrease = 1.9159887010289367e-09
PARAFAC2 reconstruction error=0.8189080981152904, variation=8.444986931976928e-10.
Starting iteration 2039
reconstruction error=0.20876453491230643
iteration 1, reconstruction error: 0.20876453299121134, decrease = 1.9210950885639733e-09
iteration 2, reconstruction error: 0.20876453107224857, decrease = 1.9189627664673026e-09
iteration 3, reconstruction error: 0.2087645291553857, decrease = 1.916862862882951e-09
iteration 4, reconstruction error: 0.20876452724062122, decrease = 1.914764485855258e-09
PARAFAC2 reconstruction error=0.8189080972713343, variation=8.439561272055585e-10.
Starting iteration 2040
reconstruction error=0.20876452481435584
iteration 1, reconstruction error: 0.20876452289449424, decrease = 1.919861603028039e-09
iteration 2, reconstruction error: 0.20876452097676185, decrease = 1.9177323895558374e-09
iteration 3, reconstruction error: 0.208764519061124, decrease = 1.9156378427975795e-09
iteration 4, reconstruction error: 0.20876451714757988, decrease = 1.91354412870659e-09
PARAFAC2 reconstruction error=0.8189080964279204, variation=8.434138942803315e-10.
Starting iteration 2041
reconstruction error=0.20876451472288876
iteration 1, reconstruction error: 0.20876451280425523, decrease = 1.91863352982935e-09
iteration 2, reconstruction error: 0.20876451088775094, decrease = 1.9165042886015726e-09
iteration 3, reconstruction error: 0.20876450897334192, decrease = 1.914409020198349e-09
iteration 4, reconstruction error: 0.20876450706102204, decrease = 1.912319885777336e-09
PARAFAC2 reconstruction error=0.8189080955850481, variation=8.428723274889194e-10.
Starting iteration 2042
reconstruction error=0.2087645046378944
iteration 1, reconstruction error: 0.20876450272049898, decrease = 1.917395409112288e-09
iteration 2, reconstruction error: 0.2087645008052197, decrease = 1.915279296271777e-09
iteration 3, reconstruction error: 0.20876449889203258, decrease = 1.9131871087374464e-09
iteration 4, reconstruction error: 0.2087644969809346, decrease = 1.9110979743164336e-09
PARAFAC2 reconstruction error=0.8189080947427172, variation=8.423308717198097e-10.
Starting iteration 2043
reconstruction error=0.20876449455937424
iteration 1, reconstruction error: 0.20876449264320768, decrease = 1.9161665587574817e-09
iteration 2, reconstruction error: 0.20876449072915493, decrease = 1.9140527496297466e-09
iteration 3, reconstruction error: 0.20876448881719203, decrease = 1.911962893563768e-09
iteration 4, reconstruction error: 0.20876448690731828, decrease = 1.909873759142755e-09
PARAFAC2 reconstruction error=0.8189080939009268, variation=8.417904151514222e-10.
Starting iteration 2044
reconstruction error=0.2087644844873207
iteration 1, reconstruction error: 0.20876448257238223, decrease = 1.9149384855587925e-09
iteration 2, reconstruction error: 0.20876448065955447, decrease = 1.912827757299951e-09
iteration 3, reconstruction error: 0.20876447874881582, decrease = 1.9107386506345136e-09
iteration 4, reconstruction error: 0.20876447684015856, decrease = 1.9086572600190976e-09
PARAFAC2 reconstruction error=0.8189080930596772, variation=8.412496255161273e-10.
Starting iteration 2045
reconstruction error=0.20876447442172832
iteration 1, reconstruction error: 0.20876447250801097, decrease = 1.9137173512540073e-09
iteration 2, reconstruction error: 0.2087644705964136, decrease = 1.9115973803884856e-09
iteration 3, reconstruction error: 0.2087644686868961, decrease = 1.909517488574153e-09
iteration 4, reconstruction error: 0.20876446677945537, decrease = 1.9074407331398646e-09
PARAFAC2 reconstruction error=0.8189080922189671, variation=8.407100571261594e-10.
Starting iteration 2046
reconstruction error=0.20876446436258936
iteration 1, reconstruction error: 0.2087644624501032, decrease = 1.9124861694308493e-09
iteration 2, reconstruction error: 0.20876446053972386, decrease = 1.9103793269525937e-09
iteration 3, reconstruction error: 0.20876445863142903, decrease = 1.9082948277127088e-09
iteration 4, reconstruction error: 0.2087644567252102, decrease = 1.906218821678962e-09
PARAFAC2 reconstruction error=0.8189080913787965, variation=8.401705997584941e-10.
Starting iteration 2047
reconstruction error=0.20876445430989773
iteration 1, reconstruction error: 0.20876445239863733, decrease = 1.9112603999449362e-09
iteration 2, reconstruction error: 0.20876445048948225, decrease = 1.9091550840233396e-09
iteration 3, reconstruction error: 0.20876444858240548, decrease = 1.907076774276817e-09
iteration 4, reconstruction error: 0.2087644466774062, decrease = 1.904999269441987e-09
PARAFAC2 reconstruction error=0.8189080905391648, variation=8.39631697502341e-10.
Starting iteration 2048
reconstruction error=0.2087644442636565
iteration 1, reconstruction error: 0.20876444235361877, decrease = 1.910037739083492e-09
iteration 2, reconstruction error: 0.2087644404456856, decrease = 1.907933172562437e-09
iteration 3, reconstruction error: 0.20876443853982687, decrease = 1.905858720840925e-09
iteration 4, reconstruction error: 0.2087644366360395, decrease = 1.903787377743882e-09
PARAFAC2 reconstruction error=0.8189080897000717, variation=8.390931283130953e-10.
Starting iteration 2049
reconstruction error=0.20876443422385021
iteration 1, reconstruction error: 0.20876443231503516, decrease = 1.9088150504664725e-09
iteration 2, reconstruction error: 0.20876443040832082, decrease = 1.906714341970428e-09
iteration 3, reconstruction error: 0.208764428503684, decrease = 1.9046368093800226e-09
iteration 4, reconstruction error: 0.20876442660111316, decrease = 1.902570850864649e-09
PARAFAC2 reconstruction error=0.8189080888615164, variation=8.385552252576645e-10.
Starting iteration 2050
reconstruction error=0.20876442419047825
iteration 1, reconstruction error: 0.2087644222828851, decrease = 1.90759313900557e-09
iteration 2, reconstruction error: 0.20876442037738957, decrease = 1.9054955391339945e-09
iteration 3, reconstruction error: 0.20876441847396465, decrease = 1.9034249176819173e-09
iteration 4, reconstruction error: 0.2087644165726103, decrease = 1.9013543517409914e-09
PARAFAC2 reconstruction error=0.818908088023499, variation=8.38017433224536e-10.
Starting iteration 2051
reconstruction error=0.20876441416353117
iteration 1, reconstruction error: 0.20876441225716075, decrease = 1.9063704226329747e-09
iteration 2, reconstruction error: 0.20876441035288326, decrease = 1.9042774856981026e-09
iteration 3, reconstruction error: 0.20876440845068023, decrease = 1.9022030339765905e-09
iteration 4, reconstruction error: 0.20876440655053313, decrease = 1.900147095224014e-09
PARAFAC2 reconstruction error=0.8189080871860185, variation=8.374805293698273e-10.
Starting iteration 2052
reconstruction error=0.20876440414300756
iteration 1, reconstruction error: 0.20876440223785822, decrease = 1.9051493438393408e-09
iteration 2, reconstruction error: 0.20876440033479496, decrease = 1.9030632625316457e-09
iteration 3, reconstruction error: 0.2087643984338046, decrease = 1.900990365122368e-09
iteration 4, reconstruction error: 0.20876439653487172, decrease = 1.898932872057557e-09
PARAFAC2 reconstruction error=0.8189080863490746, variation=8.369438475597235e-10.
Starting iteration 2053
reconstruction error=0.20876439412890357
iteration 1, reconstruction error: 0.20876439222497076, decrease = 1.9039328169601077e-09
iteration 2, reconstruction error: 0.2087643903231294, decrease = 1.9018413510707433e-09
iteration 3, reconstruction error: 0.2087643884233463, decrease = 1.8997831086053907e-09
iteration 4, reconstruction error: 0.20876438652562682, decrease = 1.8977194815583687e-09
PARAFAC2 reconstruction error=0.818908085512667, variation=8.364076098388296e-10.
Starting iteration 2054
reconstruction error=0.20876438412120607
iteration 1, reconstruction error: 0.2087643822184921, decrease = 1.902713958612523e-09
iteration 2, reconstruction error: 0.2087643803178634, decrease = 1.9006287099720964e-09
iteration 3, reconstruction error: 0.20876437841930143, decrease = 1.8985619743006055e-09
iteration 4, reconstruction error: 0.2087643765227846, decrease = 1.8965168324669435e-09
PARAFAC2 reconstruction error=0.8189080846767951, variation=8.358719272294479e-10.
Starting iteration 2055
reconstruction error=0.20876437411991514
iteration 1, reconstruction error: 0.20876437221841845, decrease = 1.9014966823327484e-09
iteration 2, reconstruction error: 0.20876437031900313, decrease = 1.899415319472908e-09
iteration 3, reconstruction error: 0.20876436842165308, decrease = 1.8973500548469246e-09
iteration 4, reconstruction error: 0.20876436652634967, decrease = 1.8953034142121794e-09
PARAFAC2 reconstruction error=0.8189080838414584, variation=8.353366887092761e-10.
Starting iteration 2056
reconstruction error=0.20876436412502528
iteration 1, reconstruction error: 0.20876436222474665, decrease = 1.9002786288968565e-09
iteration 2, reconstruction error: 0.20876436032654555, decrease = 1.898201096306451e-09
iteration 3, reconstruction error: 0.20876435843040192, decrease = 1.8961436309972157e-09
iteration 4, reconstruction error: 0.20876435653630732, decrease = 1.8940946033829675e-09
PARAFAC2 reconstruction error=0.8189080830066566, variation=8.348017832560117e-10.
Starting iteration 2057
reconstruction error=0.20876435413653116
iteration 1, reconstruction error: 0.20876435223746517, decrease = 1.8990659877982097e-09
iteration 2, reconstruction error: 0.20876435034047983, decrease = 1.8969853465833353e-09
iteration 3, reconstruction error: 0.20876434844553962, decrease = 1.8949402047496733e-09
iteration 4, reconstruction error: 0.20876434655265302, decrease = 1.8928865974654485e-09
PARAFAC2 reconstruction error=0.8189080821723892, variation=8.342674329142596e-10.
Starting iteration 2058
reconstruction error=0.20876434415442743
iteration 1, reconstruction error: 0.20876434225657256, decrease = 1.8978548732562217e-09
iteration 2, reconstruction error: 0.20876434036079522, decrease = 1.8957773406658163e-09
iteration 3, reconstruction error: 0.20876433846707, decrease = 1.8937252321826747e-09
iteration 4, reconstruction error: 0.2087643365753868, decrease = 1.8916831989734817e-09
PARAFAC2 reconstruction error=0.8189080813386558, variation=8.337334156394149e-10.
Starting iteration 2059
reconstruction error=0.20876433417870632
iteration 1, reconstruction error: 0.20876433228206487, decrease = 1.8966414550014576e-09
iteration 2, reconstruction error: 0.20876433038750172, decrease = 1.894563145254935e-09
iteration 3, reconstruction error: 0.20876432849497756, decrease = 1.8925241651590596e-09
iteration 4, reconstruction error: 0.2087643266045001, decrease = 1.890477469013163e-09
PARAFAC2 reconstruction error=0.8189080805054555, variation=8.332002865429899e-10.
Starting iteration 2060
reconstruction error=0.20876432420935861
iteration 1, reconstruction error: 0.2087643223139337, decrease = 1.8954249281222246e-09
iteration 2, reconstruction error: 0.20876432042057935, decrease = 1.893354334425723e-09
iteration 3, reconstruction error: 0.20876431852926247, decrease = 1.8913168808865066e-09
iteration 4, reconstruction error: 0.20876431663998682, decrease = 1.8892756525890064e-09
PARAFAC2 reconstruction error=0.8189080796727884, variation=8.326670464242625e-10.
Starting iteration 2061
reconstruction error=0.20876431424639286
iteration 1, reconstruction error: 0.20876431235217519, decrease = 1.8942176716052472e-09
iteration 2, reconstruction error: 0.20876431046002192, decrease = 1.892153267402108e-09
iteration 3, reconstruction error: 0.20876430856991612, decrease = 1.8901057941000943e-09
iteration 4, reconstruction error: 0.2087643066818439, decrease = 1.888072226341464e-09
PARAFAC2 reconstruction error=0.8189080788406538, variation=8.321346944839547e-10.
Starting iteration 2062
reconstruction error=0.2087643042897874
iteration 1, reconstruction error: 0.20876430239678007, decrease = 1.8930073342193765e-09
iteration 2, reconstruction error: 0.20876430050583947, decrease = 1.8909405985478855e-09
iteration 3, reconstruction error: 0.2087642986169332, decrease = 1.888906253633138e-09
iteration 4, reconstruction error: 0.20876429673006286, decrease = 1.886870354406156e-09
PARAFAC2 reconstruction error=0.8189080780090513, variation=8.316024535659494e-10.
Starting iteration 2063
reconstruction error=0.20876429433954918
iteration 1, reconstruction error: 0.20876429244774755, decrease = 1.8918016320146336e-09
iteration 2, reconstruction error: 0.2087642905580119, decrease = 1.8897356457436842e-09
iteration 3, reconstruction error: 0.2087642886703106, decrease = 1.8877013008289367e-09
iteration 4, reconstruction error: 0.2087642867846421, decrease = 1.8856685102264237e-09
PARAFAC2 reconstruction error=0.8189080771779805, variation=8.310707677594564e-10.
Starting iteration 2064
reconstruction error=0.20876428439566747
iteration 1, reconstruction error: 0.2087642825050754, decrease = 1.89059207178488e-09
iteration 2, reconstruction error: 0.20876428061654007, decrease = 1.8885353281206108e-09
iteration 3, reconstruction error: 0.20876427873004447, decrease = 1.886495598624194e-09
iteration 4, reconstruction error: 0.20876427684557317, decrease = 1.884471301227819e-09
PARAFAC2 reconstruction error=0.818908076347441, variation=8.305395260421733e-10.
Starting iteration 2065
reconstruction error=0.20876427445813453
iteration 1, reconstruction error: 0.2087642725687482, decrease = 1.8893863418245616e-09
iteration 2, reconstruction error: 0.20876427068142012, decrease = 1.8873280716036334e-09
iteration 3, reconstruction error: 0.20876426879612017, decrease = 1.8852999439378237e-09
iteration 4, reconstruction error: 0.20876426691285382, decrease = 1.883266348423618e-09
PARAFAC2 reconstruction error=0.8189080755174319, variation=8.300090614810074e-10.
Starting iteration 2066
reconstruction error=0.20876426452694655
iteration 1, reconstruction error: 0.20876426263876513, decrease = 1.888181416775936e-09
iteration 2, reconstruction error: 0.20876426075264046, decrease = 1.8861246731116665e-09
iteration 3, reconstruction error: 0.20876425886854316, decrease = 1.8840972948463985e-09
iteration 4, reconstruction error: 0.2087642569864702, decrease = 1.8820729696944483e-09
PARAFAC2 reconstruction error=0.8189080746879531, variation=8.294788189644464e-10.
Starting iteration 2067
reconstruction error=0.20876425460210116
iteration 1, reconstruction error: 0.20876425271512392, decrease = 1.886977241127852e-09
iteration 2, reconstruction error: 0.2087642508302011, decrease = 1.884922828931934e-09
iteration 3, reconstruction error: 0.20876424894730564, decrease = 1.882895450666666e-09
iteration 4, reconstruction error: 0.20876424706642527, decrease = 1.880880368121396e-09
PARAFAC2 reconstruction error=0.8189080738590043, variation=8.289487984924904e-10.
Starting iteration 2068
reconstruction error=0.2087642446835892
iteration 1, reconstruction error: 0.20876424279781772, decrease = 1.8857714834119577e-09
iteration 2, reconstruction error: 0.20876424091409596, decrease = 1.883721761908319e-09
iteration 3, reconstruction error: 0.2087642390323931, decrease = 1.881702849093614e-09
iteration 4, reconstruction error: 0.20876423715271303, decrease = 1.879680078253898e-09
PARAFAC2 reconstruction error=0.818908073030585, variation=8.284193331320466e-10.
Starting iteration 2069
reconstruction error=0.20876423477140751
iteration 1, reconstruction error: 0.2087642328868394, decrease = 1.8845681126755665e-09
iteration 2, reconstruction error: 0.20876423100431488, decrease = 1.882524525154139e-09
iteration 3, reconstruction error: 0.20876422912381237, decrease = 1.8805025037149647e-09
iteration 4, reconstruction error: 0.20876422724532567, decrease = 1.8784866995247285e-09
PARAFAC2 reconstruction error=0.8189080722026945, variation=8.278905339054177e-10.
Starting iteration 2070
reconstruction error=0.20876422486555238
iteration 1, reconstruction error: 0.2087642229821807, decrease = 1.883371680833079e-09
iteration 2, reconstruction error: 0.20876422110086265, decrease = 1.8813180457932788e-09
iteration 3, reconstruction error: 0.2087642192215512, decrease = 1.879311456454147e-09
iteration 4, reconstruction error: 0.20876421734426326, decrease = 1.8772879362138895e-09
PARAFAC2 reconstruction error=0.8189080713753322, variation=8.27362289790301e-10.
Starting iteration 2071
reconstruction error=0.20876421496601208
iteration 1, reconstruction error: 0.2087642130838446, decrease = 1.8821674774294195e-09
iteration 2, reconstruction error: 0.20876421120371838, decrease = 1.8801262213763437e-09
iteration 3, reconstruction error: 0.20876420932560724, decrease = 1.8781111388310734e-09
iteration 4, reconstruction error: 0.20876420744950652, decrease = 1.8761007192225065e-09
PARAFAC2 reconstruction error=0.8189080705484982, variation=8.268339346528819e-10.
Starting iteration 2072
reconstruction error=0.2087642050727852
iteration 1, reconstruction error: 0.20876420319181957, decrease = 1.880965633249687e-09
iteration 2, reconstruction error: 0.20876420131289058, decrease = 1.8789289846221635e-09
iteration 3, reconstruction error: 0.20876419943597432, decrease = 1.8769162613008206e-09
iteration 4, reconstruction error: 0.20876419756106387, decrease = 1.874910449117806e-09
PARAFAC2 reconstruction error=0.8189080697221917, variation=8.26306578716185e-10.
Starting iteration 2073
reconstruction error=0.2087641951858717
iteration 1, reconstruction error: 0.20876419330610327, decrease = 1.8797684242510826e-09
iteration 2, reconstruction error: 0.2087641914283684, decrease = 1.8777348564924523e-09
iteration 3, reconstruction error: 0.20876418955264633, decrease = 1.875722077659958e-09
iteration 4, reconstruction error: 0.2087641876789285, decrease = 1.8737178475447536e-09
PARAFAC2 reconstruction error=0.8189080688964122, variation=8.257794448240929e-10.
Starting iteration 2074
reconstruction error=0.20876418530526
iteration 1, reconstruction error: 0.20876418342669037, decrease = 1.878569633184668e-09
iteration 2, reconstruction error: 0.2087641815501458, decrease = 1.876544558632176e-09
iteration 3, reconstruction error: 0.20876417967561323, decrease = 1.8745325847113747e-09
iteration 4, reconstruction error: 0.20876417780308876, decrease = 1.872524468815584e-09
PARAFAC2 reconstruction error=0.8189080680711596, variation=8.252526439989083e-10.
Starting iteration 2075
reconstruction error=0.20876417543094247
iteration 1, reconstruction error: 0.20876417355356466, decrease = 1.877377808767733e-09
iteration 2, reconstruction error: 0.20876417167822275, decrease = 1.875341909540751e-09
iteration 3, reconstruction error: 0.208764169804882, decrease = 1.8733407602944396e-09
iteration 4, reconstruction error: 0.20876416793354008, decrease = 1.8713419147609045e-09
PARAFAC2 reconstruction error=0.8189080672464331, variation=8.247265093075384e-10.
Starting iteration 2076
reconstruction error=0.208764165562916
iteration 1, reconstruction error: 0.20876416368674006, decrease = 1.876175936832425e-09
iteration 2, reconstruction error: 0.20876416181258378, decrease = 1.874156274617178e-09
iteration 3, reconstruction error: 0.2087641599404364, decrease = 1.87214738156527e-09
iteration 4, reconstruction error: 0.2087641580702809, decrease = 1.8701555026812144e-09
PARAFAC2 reconstruction error=0.8189080664222322, variation=8.242008187053784e-10.
Starting iteration 2077
reconstruction error=0.20876415570118367
iteration 1, reconstruction error: 0.20876415382619723, decrease = 1.8749864438838415e-09
iteration 2, reconstruction error: 0.2087641519532351, decrease = 1.8729621187318912e-09
iteration 3, reconstruction error: 0.2087641500822726, decrease = 1.8709625237978145e-09
iteration 4, reconstruction error: 0.20876414821330663, decrease = 1.86896595422148e-09
PARAFAC2 reconstruction error=0.8189080655985569, variation=8.236753501478233e-10.
Starting iteration 2078
reconstruction error=0.2087641458457278
iteration 1, reconstruction error: 0.20876414397193319, decrease = 1.8737946194669064e-09
iteration 2, reconstruction error: 0.20876414210016442, decrease = 1.8717687677582973e-09
iteration 3, reconstruction error: 0.20876414023039297, decrease = 1.869771448781421e-09
iteration 4, reconstruction error: 0.2087641383626119, decrease = 1.8677810686984486e-09
PARAFAC2 reconstruction error=0.8189080647754065, variation=8.231504367017806e-10.
Starting iteration 2079
reconstruction error=0.20876413599654906
iteration 1, reconstruction error: 0.20876413412394937, decrease = 1.8725996864255023e-09
iteration 2, reconstruction error: 0.20876413225336551, decrease = 1.8705838544796904e-09
iteration 3, reconstruction error: 0.2087641303847774, decrease = 1.8685881175706243e-09
iteration 4, reconstruction error: 0.20876412851818119, decrease = 1.866596210930993e-09
PARAFAC2 reconstruction error=0.8189080639527803, variation=8.226261893895526e-10.
Starting iteration 2080
reconstruction error=0.20876412615363912
iteration 1, reconstruction error: 0.20876412428222896, decrease = 1.8714101657213433e-09
iteration 2, reconstruction error: 0.20876412241283535, decrease = 1.8693936121305654e-09
iteration 3, reconstruction error: 0.2087641205454329, decrease = 1.867402454891476e-09
iteration 4, reconstruction error: 0.20876411868002545, decrease = 1.8654074396273757e-09
PARAFAC2 reconstruction error=0.818908063130678, variation=8.22102275144232e-10.
Starting iteration 2081
reconstruction error=0.20876411631699407
iteration 1, reconstruction error: 0.20876411444677415, decrease = 1.8702199233722183e-09
iteration 2, reconstruction error: 0.20876411257857241, decrease = 1.868201732202479e-09
iteration 3, reconstruction error: 0.20876411071235718, decrease = 1.866215237900093e-09
iteration 4, reconstruction error: 0.20876410884812302, decrease = 1.8642341559349518e-09
PARAFAC2 reconstruction error=0.8189080623090995, variation=8.215784719212138e-10.
Starting iteration 2082
reconstruction error=0.20876410648660926
iteration 1, reconstruction error: 0.20876410461757886, decrease = 1.8690304026680593e-09
iteration 2, reconstruction error: 0.20876410275056662, decrease = 1.8670122392538957e-09
iteration 3, reconstruction error: 0.2087641008855324, decrease = 1.8650342104020723e-09
iteration 4, reconstruction error: 0.20876409902248316, decrease = 1.863049242656345e-09
PARAFAC2 reconstruction error=0.8189080614880441, variation=8.210554458543129e-10.
Starting iteration 2083
reconstruction error=0.2087640966624778
iteration 1, reconstruction error: 0.20876409479463925, decrease = 1.8678385504955486e-09
iteration 2, reconstruction error: 0.2087640929288096, decrease = 1.8658296574436406e-09
iteration 3, reconstruction error: 0.20876409106495794, decrease = 1.863851656347393e-09
iteration 4, reconstruction error: 0.20876408920309047, decrease = 1.8618674657577827e-09
PARAFAC2 reconstruction error=0.8189080606675113, variation=8.205327528543194e-10.
Starting iteration 2084
reconstruction error=0.20876408684460204
iteration 1, reconstruction error: 0.20876408497794913, decrease = 1.8666529155719758e-09
iteration 2, reconstruction error: 0.20876408311330358, decrease = 1.8646455490767266e-09
iteration 3, reconstruction error: 0.20876408125063758, decrease = 1.8626659936682444e-09
iteration 4, reconstruction error: 0.20876407938994498, decrease = 1.8606925999975488e-09
PARAFAC2 reconstruction error=0.8189080598475007, variation=8.200106149658382e-10.
Starting iteration 2085
reconstruction error=0.20876407703296726
iteration 1, reconstruction error: 0.20876407516749923, decrease = 1.8654680300489446e-09
iteration 2, reconstruction error: 0.2087640733040324, decrease = 1.863466825291482e-09
iteration 3, reconstruction error: 0.2087640714425513, decrease = 1.8614811081452132e-09
iteration 4, reconstruction error: 0.20876406958303972, decrease = 1.8595115724995281e-09
PARAFAC2 reconstruction error=0.818908059028012, variation=8.194886991219619e-10.
Starting iteration 2086
reconstruction error=0.208764067227572
iteration 1, reconstruction error: 0.20876406536328806, decrease = 1.8642839216820306e-09
iteration 2, reconstruction error: 0.2087640635010115, decrease = 1.8622765551867815e-09
iteration 3, reconstruction error: 0.20876406164070296, decrease = 1.8603085460977553e-09
iteration 4, reconstruction error: 0.20876405978237395, decrease = 1.8583290184448487e-09
PARAFAC2 reconstruction error=0.8189080582090444, variation=8.189675604342028e-10.
Starting iteration 2087
reconstruction error=0.20876405742841003
iteration 1, reconstruction error: 0.2087640555653118, decrease = 1.8630982312473066e-09
iteration 2, reconstruction error: 0.2087640537042132, decrease = 1.8610986085576542e-09
iteration 3, reconstruction error: 0.20876405184508487, decrease = 1.8591283235114275e-09
iteration 4, reconstruction error: 0.20876404998792922, decrease = 1.857155651485698e-09
PARAFAC2 reconstruction error=0.8189080573905979, variation=8.184465327687462e-10.
Starting iteration 2088
reconstruction error=0.20876404763547454
iteration 1, reconstruction error: 0.20876404577355961, decrease = 1.8619149277920855e-09
iteration 2, reconstruction error: 0.2087640439136436, decrease = 1.859916026747399e-09
iteration 3, reconstruction error: 0.20876404205569324, decrease = 1.8579503491267246e-09
iteration 4, reconstruction error: 0.20876404019971395, decrease = 1.8559792869243807e-09
PARAFAC2 reconstruction error=0.8189080565726715, variation=8.179263932817094e-10.
Starting iteration 2089
reconstruction error=0.20876403784876307
iteration 1, reconstruction error: 0.20876403598803156, decrease = 1.8607315133145619e-09
iteration 2, reconstruction error: 0.20876403412929267, decrease = 1.8587388850299646e-09
iteration 3, reconstruction error: 0.2087640322725218, decrease = 1.8567708759409385e-09
iteration 4, reconstruction error: 0.20876403041771738, decrease = 1.8548044211641468e-09
PARAFAC2 reconstruction error=0.8189080557552653, variation=8.174062537946725e-10.
Starting iteration 2090
reconstruction error=0.20876402806827038
iteration 1, reconstruction error: 0.20876402620871753, decrease = 1.8595528450404686e-09
iteration 2, reconstruction error: 0.2087640243511566, decrease = 1.8575609384008374e-09
iteration 3, reconstruction error: 0.20876402249556059, decrease = 1.8555960101807045e-09
iteration 4, reconstruction error: 0.20876402064192717, decrease = 1.8536334134289234e-09
PARAFAC2 reconstruction error=0.8189080549383787, variation=8.168865583968454e-10.
Starting iteration 2091
reconstruction error=0.20876401829399016
iteration 1, reconstruction error: 0.2087640164356199, decrease = 1.8583702632302135e-09
iteration 2, reconstruction error: 0.2087640145792346, decrease = 1.8563852954844862e-09
iteration 3, reconstruction error: 0.20876401272481424, decrease = 1.8544203672643533e-09
iteration 4, reconstruction error: 0.20876401087235644, decrease = 1.8524577982681478e-09
PARAFAC2 reconstruction error=0.8189080541220111, variation=8.163676401551356e-10.
Starting iteration 2092
reconstruction error=0.20876400852591484
iteration 1, reconstruction error: 0.20876400666871944, decrease = 1.8571953974699795e-09
iteration 2, reconstruction error: 0.20876400481351673, decrease = 1.855202713674231e-09
iteration 3, reconstruction error: 0.20876400296026965, decrease = 1.8532470835719295e-09
iteration 4, reconstruction error: 0.2087640011089821, decrease = 1.851287539933466e-09
PARAFAC2 reconstruction error=0.8189080533061622, variation=8.158488329357283e-10.
Starting iteration 2093
reconstruction error=0.20876399876404206
iteration 1, reconstruction error: 0.20876399690803155, decrease = 1.8560105119469483e-09
iteration 2, reconstruction error: 0.20876399505399829, decrease = 1.8540332602512422e-09
iteration 3, reconstruction error: 0.2087639932019276, decrease = 1.8520706912550366e-09
iteration 4, reconstruction error: 0.20876399135180873, decrease = 1.8501188636665944e-09
PARAFAC2 reconstruction error=0.8189080524908315, variation=8.153306918501357e-10.
Starting iteration 2094
reconstruction error=0.20876398900836413
iteration 1, reconstruction error: 0.20876398715352926, decrease = 1.8548348690305971e-09
iteration 2, reconstruction error: 0.2087639853006716, decrease = 1.8528576450904666e-09
iteration 3, reconstruction error: 0.20876398344977273, decrease = 1.8508988786081204e-09
iteration 4, reconstruction error: 0.20876398160082563, decrease = 1.8489471065308294e-09
PARAFAC2 reconstruction error=0.8189080516760188, variation=8.148127728091481e-10.
Starting iteration 2095
reconstruction error=0.20876397925888182
iteration 1, reconstruction error: 0.20876397740522257, decrease = 1.8536592538698216e-09
iteration 2, reconstruction error: 0.20876397555353904, decrease = 1.8516835287307742e-09
iteration 3, reconstruction error: 0.20876397370381114, decrease = 1.8497278986284726e-09
iteration 4, reconstruction error: 0.20876397185602963, decrease = 1.847781511132851e-09
PARAFAC2 reconstruction error=0.8189080508617231, variation=8.142956309242777e-10.
Starting iteration 2096
reconstruction error=0.20876396951558593
iteration 1, reconstruction error: 0.2087639676630992, decrease = 1.8524867195779393e-09
iteration 2, reconstruction error: 0.20876396581259052, decrease = 1.850508690726116e-09
iteration 3, reconstruction error: 0.20876396396403055, decrease = 1.8485599717621426e-09
iteration 4, reconstruction error: 0.20876396211742157, decrease = 1.8466089768409688e-09
PARAFAC2 reconstruction error=0.8189080500479444, variation=8.137787110840122e-10.
Starting iteration 2097
reconstruction error=0.20876395977846865
iteration 1, reconstruction error: 0.2087639579271568, decrease = 1.8513118538177054e-09
iteration 2, reconstruction error: 0.2087639560778168, decrease = 1.8493399867036686e-09
iteration 3, reconstruction error: 0.2087639542304309, decrease = 1.8473859109136015e-09
iteration 4, reconstruction error: 0.2087639523849829, decrease = 1.8454479888685427e-09
PARAFAC2 reconstruction error=0.8189080492346824, variation=8.132620132883517e-10.
Starting iteration 2098
reconstruction error=0.2087639500475247
iteration 1, reconstruction error: 0.2087639481973854, decrease = 1.8501393195258231e-09
iteration 2, reconstruction error: 0.20876394634922105, decrease = 1.8481643437873174e-09
iteration 3, reconstruction error: 0.20876394450299998, decrease = 1.8462210649161648e-09
iteration 4, reconstruction error: 0.20876394265871992, decrease = 1.8442800620022126e-09
PARAFAC2 reconstruction error=0.8189080484219363, variation=8.127460926488084e-10.
Starting iteration 2099
reconstruction error=0.2087639403227548
iteration 1, reconstruction error: 0.20876393847379113, decrease = 1.848963676609472e-09
iteration 2, reconstruction error: 0.20876393662679235, decrease = 1.8469987761449147e-09
iteration 3, reconstruction error: 0.20876393478173613, decrease = 1.845056218918728e-09
iteration 4, reconstruction error: 0.2087639329386209, decrease = 1.8431152437603515e-09
PARAFAC2 reconstruction error=0.8189080476097059, variation=8.1223039405387e-10.
Starting iteration 2100
reconstruction error=0.20876393060415133
iteration 1, reconstruction error: 0.20876392875635558, decrease = 1.8477957497431419e-09
iteration 2, reconstruction error: 0.2087639269105255, decrease = 1.8458300721224674e-09
iteration 3, reconstruction error: 0.20876392506663874, decrease = 1.8438867654957392e-09
iteration 4, reconstruction error: 0.20876392322468523, decrease = 1.8419535063873838e-09
PARAFAC2 reconstruction error=0.8189080467979905, variation=8.117154726150488e-10.
Starting iteration 2101
reconstruction error=0.20876392089170412
iteration 1, reconstruction error: 0.20876391904507785, decrease = 1.8466262685645773e-09
iteration 2, reconstruction error: 0.20876391720042184, decrease = 1.8446560112739263e-09
iteration 3, reconstruction error: 0.2087639153576968, decrease = 1.8427250281227714e-09
iteration 4, reconstruction error: 0.20876391351690354, decrease = 1.8407932678154992e-09
PARAFAC2 reconstruction error=0.8189080459867899, variation=8.112005511762277e-10.
Starting iteration 2102
reconstruction error=0.20876391118541032
iteration 1, reconstruction error: 0.208763909339955, decrease = 1.8454553163405052e-09
iteration 2, reconstruction error: 0.20876390749646306, decrease = 1.8434919424326068e-09
iteration 3, reconstruction error: 0.2087639056549044, decrease = 1.8415586555686758e-09
iteration 4, reconstruction error: 0.20876390381527596, decrease = 1.8396284495736381e-09
PARAFAC2 reconstruction error=0.8189080451761035, variation=8.106864068935238e-10.
Starting iteration 2103
reconstruction error=0.20876390148526738
iteration 1, reconstruction error: 0.2087638996409831, decrease = 1.8442842808497062e-09
iteration 2, reconstruction error: 0.20876389779865367, decrease = 1.8423294279035218e-09
iteration 3, reconstruction error: 0.20876389595825987, decrease = 1.840393809571239e-09
iteration 4, reconstruction error: 0.20876389411979163, decrease = 1.8384682387573292e-09
PARAFAC2 reconstruction error=0.8189080443659309, variation=8.101725956777273e-10.
Starting iteration 2104
reconstruction error=0.20876389179127317
iteration 1, reconstruction error: 0.20876388994815523, decrease = 1.8431179360511862e-09
iteration 2, reconstruction error: 0.20876388810698912, decrease = 1.841166108462744e-09
iteration 3, reconstruction error: 0.20876388626775397, decrease = 1.8392351530671647e-09
iteration 4, reconstruction error: 0.20876388443045132, decrease = 1.8373026433593509e-09
PARAFAC2 reconstruction error=0.8189080435562719, variation=8.096590065065357e-10.
Starting iteration 2105
reconstruction error=0.20876388210341376
iteration 1, reconstruction error: 0.20876388026146375, decrease = 1.8419500091848562e-09
iteration 2, reconstruction error: 0.20876387842146246, decrease = 1.8400012902208829e-09
iteration 3, reconstruction error: 0.20876387658338905, decrease = 1.838073415694197e-09
iteration 4, reconstruction error: 0.20876387474724195, decrease = 1.8361470954797454e-09
PARAFAC2 reconstruction error=0.818908042747126, variation=8.091458614245539e-10.
Starting iteration 2106
reconstruction error=0.20876387242168915
iteration 1, reconstruction error: 0.20876387058090398, decrease = 1.8407851631874195e-09
iteration 2, reconstruction error: 0.20876386874206365, decrease = 1.8388403300040324e-09
iteration 3, reconstruction error: 0.20876386690515275, decrease = 1.836910901165112e-09
iteration 4, reconstruction error: 0.20876386507016356, decrease = 1.8349891883762126e-09
PARAFAC2 reconstruction error=0.8189080419384923, variation=8.086337155432943e-10.
Starting iteration 2107
reconstruction error=0.208763862746094
iteration 1, reconstruction error: 0.2087638609064721, decrease = 1.8396218992577928e-09
iteration 2, reconstruction error: 0.2087638590687966, decrease = 1.8376754840065956e-09
iteration 3, reconstruction error: 0.2087638572330405, decrease = 1.835756102686048e-09
iteration 4, reconstruction error: 0.20876385539921075, decrease = 1.833829754716021e-09
PARAFAC2 reconstruction error=0.8189080411303709, variation=8.081214586397323e-10.
Starting iteration 2108
reconstruction error=0.20876385307662126
iteration 1, reconstruction error: 0.20876385123816343, decrease = 1.8384578304164734e-09
iteration 2, reconstruction error: 0.20876384940164816, decrease = 1.8365152731902867e-09
iteration 3, reconstruction error: 0.20876384756705227, decrease = 1.8345958918697391e-09
iteration 4, reconstruction error: 0.2087638457343781, decrease = 1.8326741790808398e-09
PARAFAC2 reconstruction error=0.8189080403227611, variation=8.076097568476825e-10.
Starting iteration 2109
reconstruction error=0.20876384341326804
iteration 1, reconstruction error: 0.20876384157596808, decrease = 1.8372999510685162e-09
iteration 2, reconstruction error: 0.20876383974061685, decrease = 1.8353512321045429e-09
iteration 3, reconstruction error: 0.20876383790717964, decrease = 1.8334372076100891e-09
iteration 4, reconstruction error: 0.20876383607565407, decrease = 1.8315255700951383e-09
PARAFAC2 reconstruction error=0.8189080395156625, variation=8.070986101671451e-10.
Starting iteration 2110
reconstruction error=0.20876383375602958
iteration 1, reconstruction error: 0.20876383191988984, decrease = 1.8361397402522073e-09
iteration 2, reconstruction error: 0.2087638300856934, decrease = 1.834196433625479e-09
iteration 3, reconstruction error: 0.2087638282534164, decrease = 1.8322769967937802e-09
iteration 4, reconstruction error: 0.20876382642304564, decrease = 1.8303707716160744e-09
PARAFAC2 reconstruction error=0.8189080387090748, variation=8.065876855312126e-10.
Starting iteration 2111
reconstruction error=0.20876382410489205
iteration 1, reconstruction error: 0.2087638222699187, decrease = 1.8349733676981117e-09
iteration 2, reconstruction error: 0.2087638204368832, decrease = 1.8330354734086285e-09
iteration 3, reconstruction error: 0.20876381860575713, decrease = 1.8311260840953025e-09
iteration 4, reconstruction error: 0.20876381677653966, decrease = 1.8292174719380938e-09
PARAFAC2 reconstruction error=0.8189080379029973, variation=8.060775380513974e-10.
Starting iteration 2112
reconstruction error=0.20876381445986242
iteration 1, reconstruction error: 0.2087638126260477, decrease = 1.8338147111940373e-09
iteration 2, reconstruction error: 0.20876381079416936, decrease = 1.831878343461213e-09
iteration 3, reconstruction error: 0.20876380896419655, decrease = 1.8299728121728975e-09
iteration 4, reconstruction error: 0.20876380713613232, decrease = 1.8280642277712644e-09
PARAFAC2 reconstruction error=0.81890803709743, variation=8.055672795492796e-10.
Starting iteration 2113
reconstruction error=0.20876380482093215
iteration 1, reconstruction error: 0.20876380298827457, decrease = 1.8326575812466217e-09
iteration 2, reconstruction error: 0.20876380115754717, decrease = 1.8307274030071596e-09
iteration 3, reconstruction error: 0.2087637993287338, decrease = 1.8288133785127059e-09
iteration 4, reconstruction error: 0.20876379750182283, decrease = 1.8269109558488594e-09
PARAFAC2 reconstruction error=0.8189080362923722, variation=8.050577982032792e-10.
Starting iteration 2114
reconstruction error=0.2087637951880921
iteration 1, reconstruction error: 0.20876379335659165, decrease = 1.8315004512992061e-09
iteration 2, reconstruction error: 0.208763791527026, decrease = 1.8295656378786163e-09
iteration 3, reconstruction error: 0.20876378969935971, decrease = 1.8276662960836632e-09
iteration 4, reconstruction error: 0.20876378787359431, decrease = 1.8257653999764756e-09
PARAFAC2 reconstruction error=0.8189080354878233, variation=8.04548871968791e-10.
Starting iteration 2115
reconstruction error=0.2087637855613422
iteration 1, reconstruction error: 0.20876378373099652, decrease = 1.8303456805757179e-09
iteration 2, reconstruction error: 0.2087637819025826, decrease = 1.8284139202684457e-09
iteration 3, reconstruction error: 0.20876378007607033, decrease = 1.8265122747607165e-09
iteration 4, reconstruction error: 0.20876377825145587, decrease = 1.8246144595224223e-09
PARAFAC2 reconstruction error=0.8189080346837831, variation=8.040401677789077e-10.
Starting iteration 2116
reconstruction error=0.20876377594066936
iteration 1, reconstruction error: 0.20876377411148392, decrease = 1.8291854420038334e-09
iteration 2, reconstruction error: 0.20876377228421863, decrease = 1.8272652835271685e-09
iteration 3, reconstruction error: 0.20876377045885652, decrease = 1.8253621114627805e-09
iteration 4, reconstruction error: 0.2087637686353907, decrease = 1.8234658227811451e-09
PARAFAC2 reconstruction error=0.8189080338802512, variation=8.035319076782343e-10.
Starting iteration 2117
reconstruction error=0.208763766326076
iteration 1, reconstruction error: 0.20876376449804535, decrease = 1.8280306435247695e-09
iteration 2, reconstruction error: 0.20876376267193175, decrease = 1.8261135936725736e-09
iteration 3, reconstruction error: 0.2087637608477206, decrease = 1.8242111432531516e-09
iteration 4, reconstruction error: 0.20876375902540342, decrease = 1.822317186039868e-09
PARAFAC2 reconstruction error=0.8189080330772271, variation=8.030240916667708e-10.
Starting iteration 2118
reconstruction error=0.20876375671755734
iteration 1, reconstruction error: 0.20876375489067917, decrease = 1.8268781765140574e-09
iteration 2, reconstruction error: 0.20876375306571654, decrease = 1.8249626254629447e-09
iteration 3, reconstruction error: 0.20876375124265403, decrease = 1.8230625065118744e-09
iteration 4, reconstruction error: 0.20876374942148312, decrease = 1.821170908522518e-09
PARAFAC2 reconstruction error=0.8189080322747103, variation=8.025168307668196e-10.
Starting iteration 2119
reconstruction error=0.20876374711510265
iteration 1, reconstruction error: 0.2087637452893739, decrease = 1.825728762616663e-09
iteration 2, reconstruction error: 0.2087637434655661, decrease = 1.8238077992283053e-09
iteration 3, reconstruction error: 0.2087637416436514, decrease = 1.82191467468229e-09
iteration 4, reconstruction error: 0.20876373982362298, decrease = 1.8200284335190275e-09
PARAFAC2 reconstruction error=0.8189080314727006, variation=8.020096808891708e-10.
Starting iteration 2120
reconstruction error=0.2087637375187105
iteration 1, reconstruction error: 0.2087637356941342, decrease = 1.8245762956059508e-09
iteration 2, reconstruction error: 0.20876373387147504, decrease = 1.822659162487028e-09
iteration 3, reconstruction error: 0.20876373205070592, decrease = 1.8207691188099062e-09
iteration 4, reconstruction error: 0.20876373023182382, decrease = 1.8188821004905265e-09
PARAFAC2 reconstruction error=0.8189080306711972, variation=8.015034191899417e-10.
Starting iteration 2121
reconstruction error=0.2087637279283715
iteration 1, reconstruction error: 0.20876372610494617, decrease = 1.823425327396322e-09
iteration 2, reconstruction error: 0.20876372428343873, decrease = 1.8215074448768576e-09
iteration 3, reconstruction error: 0.20876372246381283, decrease = 1.819625894405874e-09
iteration 4, reconstruction error: 0.20876372064607476, decrease = 1.8177380711748015e-09
PARAFAC2 reconstruction error=0.8189080298702, variation=8.009972685130151e-10.
Starting iteration 2122
reconstruction error=0.20876371834408805
iteration 1, reconstruction error: 0.2087637165218183, decrease = 1.8222697517611408e-09
iteration 2, reconstruction error: 0.2087637147014471, decrease = 1.820371187122305e-09
iteration 3, reconstruction error: 0.2087637128829722, decrease = 1.8184748984406696e-09
iteration 4, reconstruction error: 0.20876371106637118, decrease = 1.8166010362641316e-09
PARAFAC2 reconstruction error=0.8189080290697083, variation=8.004916729476008e-10.
Starting iteration 2123
reconstruction error=0.20876370876585248
iteration 1, reconstruction error: 0.2087637069447252, decrease = 1.8211272767576503e-09
iteration 2, reconstruction error: 0.20876370512550496, decrease = 1.8192202466682517e-09
iteration 3, reconstruction error: 0.20876370330816862, decrease = 1.8173363369733408e-09
iteration 4, reconstruction error: 0.2087637014927147, decrease = 1.8154539260795133e-09
PARAFAC2 reconstruction error=0.8189080282697219, variation=7.999864104490939e-10.
Starting iteration 2124
reconstruction error=0.20876369919365162
iteration 1, reconstruction error: 0.2087636973736722, decrease = 1.8199794171724903e-09
iteration 2, reconstruction error: 0.20876369555560137, decrease = 1.8180708327708572e-09
iteration 3, reconstruction error: 0.20876369373941062, decrease = 1.8161907533453814e-09
iteration 4, reconstruction error: 0.20876369192509603, decrease = 1.8143145874560673e-09
PARAFAC2 reconstruction error=0.8189080274702402, variation=7.994817030620993e-10.
Starting iteration 2125
reconstruction error=0.2087636896274948
iteration 1, reconstruction error: 0.20876368780866014, decrease = 1.8188346662117993e-09
iteration 2, reconstruction error: 0.20876368599173178, decrease = 1.8169283577673667e-09
iteration 3, reconstruction error: 0.20876368417668273, decrease = 1.815049055498008e-09
iteration 4, reconstruction error: 0.20876368236350676, decrease = 1.8131759704775874e-09
PARAFAC2 reconstruction error=0.8189080266712632, variation=7.989769956751047e-10.
Starting iteration 2126
reconstruction error=0.20876368006736498
iteration 1, reconstruction error: 0.20876367824967668, decrease = 1.8176883054277226e-09
iteration 2, reconstruction error: 0.20876367643389077, decrease = 1.8157859105194518e-09
iteration 3, reconstruction error: 0.2087636746199826, decrease = 1.8139081625623277e-09
iteration 4, reconstruction error: 0.208763672807946, decrease = 1.8120366040985658e-09
PARAFAC2 reconstruction error=0.8189080258727898, variation=7.984733985111347e-10.
Starting iteration 2127
reconstruction error=0.20876367051325992
iteration 1, reconstruction error: 0.20876366869671792, decrease = 1.8165420001547972e-09
iteration 2, reconstruction error: 0.20876366688207448, decrease = 1.8146434355159613e-09
iteration 3, reconstruction error: 0.20876366506930646, decrease = 1.8127680190271889e-09
iteration 4, reconstruction error: 0.20876366325840695, decrease = 1.8108995136767447e-09
PARAFAC2 reconstruction error=0.8189080250748201, variation=7.979696903248623e-10.
Starting iteration 2128
reconstruction error=0.20876366096517732
iteration 1, reconstruction error: 0.20876365914978087, decrease = 1.8153964442824133e-09
iteration 2, reconstruction error: 0.20876365733627836, decrease = 1.8135025148247053e-09
iteration 3, reconstruction error: 0.20876365552464737, decrease = 1.811630984116519e-09
iteration 4, reconstruction error: 0.20876365371488415, decrease = 1.8097632281666165e-09
PARAFAC2 reconstruction error=0.8189080242773534, variation=7.974666482724047e-10.
Starting iteration 2129
reconstruction error=0.20876365142310635
iteration 1, reconstruction error: 0.2087636496088562, decrease = 1.8142501390094878e-09
iteration 2, reconstruction error: 0.20876364779649462, decrease = 1.8123615941334492e-09
iteration 3, reconstruction error: 0.2087636459860015, decrease = 1.8104931165385807e-09
iteration 4, reconstruction error: 0.20876364417737686, decrease = 1.8086246389437122e-09
PARAFAC2 reconstruction error=0.8189080234803892, variation=7.969642723537618e-10.
Starting iteration 2130
reconstruction error=0.2087636418870532
iteration 1, reconstruction error: 0.20876364007394166, decrease = 1.8131115497865835e-09
iteration 2, reconstruction error: 0.20876363826271946, decrease = 1.811222199998852e-09
iteration 3, reconstruction error: 0.20876363645336263, decrease = 1.8093568310284525e-09
iteration 4, reconstruction error: 0.20876363464587275, decrease = 1.8074898799902428e-09
PARAFAC2 reconstruction error=0.8189080226839273, variation=7.964618964351189e-10.
Starting iteration 2131
reconstruction error=0.20876363235700404
iteration 1, reconstruction error: 0.20876363054503186, decrease = 1.811972183407562e-09
iteration 2, reconstruction error: 0.20876362873494517, decrease = 1.810086691644841e-09
iteration 3, reconstruction error: 0.20876362692672618, decrease = 1.8082189912060898e-09
iteration 4, reconstruction error: 0.2087636251203718, decrease = 1.8063543716362318e-09
PARAFAC2 reconstruction error=0.8189080218879674, variation=7.959598535833834e-10.
Starting iteration 2132
reconstruction error=0.20876362283295422
iteration 1, reconstruction error: 0.20876362102212218, decrease = 1.8108320398724231e-09
iteration 2, reconstruction error: 0.2087636192131741, decrease = 1.808948074666361e-09
iteration 3, reconstruction error: 0.20876361740609062, decrease = 1.8070834828520788e-09
iteration 4, reconstruction error: 0.20876361560086407, decrease = 1.8052265515766663e-09
PARAFAC2 reconstruction error=0.8189080210925089, variation=7.954584768654627e-10.
Starting iteration 2133
reconstruction error=0.2087636133148983
iteration 1, reconstruction error: 0.2087636115052026, decrease = 1.8096956988511437e-09
iteration 2, reconstruction error: 0.20876360969739619, decrease = 1.8078064045745634e-09
iteration 3, reconstruction error: 0.20876360789144438, decrease = 1.8059518047675027e-09
iteration 4, reconstruction error: 0.2087636060873518, decrease = 1.8040925697793142e-09
PARAFAC2 reconstruction error=0.8189080202975514, variation=7.949575442367518e-10.
Starting iteration 2134
reconstruction error=0.20876360380283332
iteration 1, reconstruction error: 0.20876360199427546, decrease = 1.808557859028781e-09
iteration 2, reconstruction error: 0.20876360018760612, decrease = 1.806669341908318e-09
iteration 3, reconstruction error: 0.20876359838278752, decrease = 1.8048186001262678e-09
iteration 4, reconstruction error: 0.20876359657982735, decrease = 1.8029601700497722e-09
PARAFAC2 reconstruction error=0.8189080195030943, variation=7.944570556972508e-10.
Starting iteration 2135
reconstruction error=0.20876359429675154
iteration 1, reconstruction error: 0.20876359248933224, decrease = 1.8074192975614523e-09
iteration 2, reconstruction error: 0.20876359068379843, decrease = 1.8055338057987314e-09
iteration 3, reconstruction error: 0.20876358888011226, decrease = 1.8036861726411502e-09
iteration 4, reconstruction error: 0.20876358707828377, decrease = 1.8018284919651961e-09
PARAFAC2 reconstruction error=0.8189080187091372, variation=7.939571222692621e-10.
Starting iteration 2136
reconstruction error=0.20876358479665288
iteration 1, reconstruction error: 0.20876358299037376, decrease = 1.8062791262707378e-09
iteration 2, reconstruction error: 0.2087635811859716, decrease = 1.804402155469731e-09
iteration 3, reconstruction error: 0.20876357938341245, decrease = 1.8025591574932776e-09
iteration 4, reconstruction error: 0.20876357758271488, decrease = 1.8006975632811617e-09
PARAFAC2 reconstruction error=0.81890801791568, variation=7.934571888412734e-10.
Starting iteration 2137
reconstruction error=0.2087635753025305
iteration 1, reconstruction error: 0.2087635734973861, decrease = 1.805144395072844e-09
iteration 2, reconstruction error: 0.20876357169411408, decrease = 1.8032720316973894e-09
iteration 3, reconstruction error: 0.2087635698926905, decrease = 1.8014235936281153e-09
iteration 4, reconstruction error: 0.20876356809311453, decrease = 1.7995759604705341e-09
PARAFAC2 reconstruction error=0.818908017122722, variation=7.929580325694019e-10.
Starting iteration 2138
reconstruction error=0.2087635658143805
iteration 1, reconstruction error: 0.20876356401036777, decrease = 1.804012716988268e-09
iteration 2, reconstruction error: 0.20876356220822817, decrease = 1.8021396042122717e-09
iteration 3, reconstruction error: 0.20876356040793392, decrease = 1.800294247011891e-09
iteration 4, reconstruction error: 0.2087635586094881, decrease = 1.7984458366981926e-09
PARAFAC2 reconstruction error=0.8189080163302631, variation=7.924588762975304e-10.
Starting iteration 2139
reconstruction error=0.2087635563321914
iteration 1, reconstruction error: 0.20876355452931575, decrease = 1.8028756543220226e-09
iteration 2, reconstruction error: 0.2087635527283032, decrease = 1.8010125613088235e-09
iteration 3, reconstruction error: 0.2087635509291367, decrease = 1.7991664824634768e-09
iteration 4, reconstruction error: 0.20876354913181716, decrease = 1.797319543195286e-09
PARAFAC2 reconstruction error=0.8189080155383023, variation=7.919608302486836e-10.
Starting iteration 2140
reconstruction error=0.20876354685596624
iteration 1, reconstruction error: 0.2087635450542153, decrease = 1.801750942886926e-09
iteration 2, reconstruction error: 0.2087635432543421, decrease = 1.799873194929802e-09
iteration 3, reconstruction error: 0.20876354145630346, decrease = 1.7980386346483357e-09
iteration 4, reconstruction error: 0.20876353966010167, decrease = 1.796201798409669e-09
PARAFAC2 reconstruction error=0.8189080147468396, variation=7.914626731775343e-10.
Starting iteration 2141
reconstruction error=0.20876353738568806
iteration 1, reconstruction error: 0.20876353558507652, decrease = 1.8006115487523289e-09
iteration 2, reconstruction error: 0.2087635337863288, decrease = 1.7987477063385882e-09
iteration 3, reconstruction error: 0.20876353198941566, decrease = 1.796913146057122e-09
iteration 4, reconstruction error: 0.20876353019434318, decrease = 1.7950724795490203e-09
PARAFAC2 reconstruction error=0.8189080139558748, variation=7.909648491732924e-10.
Starting iteration 2142
reconstruction error=0.2087635279213723
iteration 1, reconstruction error: 0.20876352612188545, decrease = 1.7994868373172324e-09
iteration 2, reconstruction error: 0.20876352432426326, decrease = 1.7976221899917988e-09
iteration 3, reconstruction error: 0.20876352252847946, decrease = 1.7957837994408976e-09
iteration 4, reconstruction error: 0.20876352073452864, decrease = 1.7939508212272415e-09
PARAFAC2 reconstruction error=0.8189080131654067, variation=7.904680243697726e-10.
Starting iteration 2143
reconstruction error=0.20876351846298963
iteration 1, reconstruction error: 0.20876351666463525, decrease = 1.798354382076539e-09
iteration 2, reconstruction error: 0.20876351486814393, decrease = 1.7964913168189156e-09
iteration 3, reconstruction error: 0.20876351307348562, decrease = 1.7946583108496839e-09
iteration 4, reconstruction error: 0.20876351128065643, decrease = 1.7928291906610383e-09
PARAFAC2 reconstruction error=0.8189080123754356, variation=7.899710885439504e-10.
Starting iteration 2144
reconstruction error=0.20876350901055635
iteration 1, reconstruction error: 0.20876350721333053, decrease = 1.797225812616432e-09
iteration 2, reconstruction error: 0.20876350541796238, decrease = 1.7953681596960536e-09
iteration 3, reconstruction error: 0.20876350362442725, decrease = 1.7935351259712462e-09
iteration 4, reconstruction error: 0.20876350183271894, decrease = 1.7917083094953767e-09
PARAFAC2 reconstruction error=0.8189080115859608, variation=7.894748188519429e-10.
Starting iteration 2145
reconstruction error=0.2087634995640516
iteration 1, reconstruction error: 0.2087634977679559, decrease = 1.7960956888440904e-09
iteration 2, reconstruction error: 0.2087634959737148, decrease = 1.7942411167926053e-09
iteration 3, reconstruction error: 0.208763494181299, decrease = 1.7924157991178191e-09
iteration 4, reconstruction error: 0.20876349239071462, decrease = 1.7905843752163975e-09
PARAFAC2 reconstruction error=0.8189080107969822, variation=7.889786601822379e-10.
Starting iteration 2146
reconstruction error=0.2087634901234838
iteration 1, reconstruction error: 0.20876348832851438, decrease = 1.7949694230967594e-09
iteration 2, reconstruction error: 0.2087634865353926, decrease = 1.7931217899391783e-09
iteration 3, reconstruction error: 0.20876348474410306, decrease = 1.7912895333704881e-09
iteration 4, reconstruction error: 0.20876348295463878, decrease = 1.7894642712068531e-09
PARAFAC2 reconstruction error=0.8189080100084989, variation=7.884832786686502e-10.
Starting iteration 2147
reconstruction error=0.2087634806888338
iteration 1, reconstruction error: 0.20876347889498986, decrease = 1.7938439345055457e-09
iteration 2, reconstruction error: 0.2087634771029959, decrease = 1.7919939698796128e-09
iteration 3, reconstruction error: 0.20876347531282488, decrease = 1.790171011428754e-09
iteration 4, reconstruction error: 0.2087634735244776, decrease = 1.7883472758217778e-09
PARAFAC2 reconstruction error=0.8189080092205104, variation=7.879884522665748e-10.
Starting iteration 2148
reconstruction error=0.20876347126011152
iteration 1, reconstruction error: 0.20876346946739077, decrease = 1.792720749627108e-09
iteration 2, reconstruction error: 0.2087634676765184, decrease = 1.7908723670689852e-09
iteration 3, reconstruction error: 0.20876346588746672, decrease = 1.7890516845753268e-09
iteration 4, reconstruction error: 0.20876346410023494, decrease = 1.7872317792377856e-09
PARAFAC2 reconstruction error=0.818908008433017, variation=7.874934038198944e-10.
Starting iteration 2149
reconstruction error=0.20876346183730088
iteration 1, reconstruction error: 0.20876346004570254, decrease = 1.7915983419047876e-09
iteration 2, reconstruction error: 0.20876345825594797, decrease = 1.789754566772217e-09
iteration 3, reconstruction error: 0.20876345646802102, decrease = 1.7879269453846547e-09
iteration 4, reconstruction error: 0.20876345468191007, decrease = 1.7861109535832753e-09
PARAFAC2 reconstruction error=0.8189080076460175, variation=7.869995766185411e-10.
Starting iteration 2150
reconstruction error=0.20876345242039646
iteration 1, reconstruction error: 0.20876345062992516, decrease = 1.7904712990013394e-09
iteration 2, reconstruction error: 0.208763448841293, decrease = 1.7886321590498966e-09
iteration 3, reconstruction error: 0.20876344705447997, decrease = 1.7868130308684727e-09
iteration 4, reconstruction error: 0.2087634452694845, decrease = 1.7849954569992832e-09
PARAFAC2 reconstruction error=0.8189080068595119, variation=7.865055273725829e-10.
Starting iteration 2151
reconstruction error=0.20876344300940358
iteration 1, reconstruction error: 0.20876344122005314, decrease = 1.7893504455912534e-09
iteration 2, reconstruction error: 0.20876343943254186, decrease = 1.787511277884235e-09
iteration 3, reconstruction error: 0.20876343764684427, decrease = 1.7856975897956318e-09
iteration 4, reconstruction error: 0.20876343586296506, decrease = 1.7838792110147494e-09
PARAFAC2 reconstruction error=0.8189080060735001, variation=7.860118111935321e-10.
Starting iteration 2152
reconstruction error=0.2087634336043077
iteration 1, reconstruction error: 0.20876343181607734, decrease = 1.7882303693372847e-09
iteration 2, reconstruction error: 0.20876343002968614, decrease = 1.7863912016302663e-09
iteration 3, reconstruction error: 0.20876342824510943, decrease = 1.7845767086299702e-09
iteration 4, reconstruction error: 0.20876342646233798, decrease = 1.782771458236354e-09
PARAFAC2 reconstruction error=0.818908005287981, variation=7.855190942152035e-10.
Starting iteration 2153
reconstruction error=0.20876342420511423
iteration 1, reconstruction error: 0.20876342241799778, decrease = 1.7871164548211027e-09
iteration 2, reconstruction error: 0.2087634206327267, decrease = 1.7852710698651464e-09
iteration 3, reconstruction error: 0.20876341884925698, decrease = 1.783469733007692e-09
iteration 4, reconstruction error: 0.20876341706760637, decrease = 1.7816506048262681e-09
PARAFAC2 reconstruction error=0.8189080045029546, variation=7.850263772368749e-10.
Starting iteration 2154
reconstruction error=0.2087634148118008
iteration 1, reconstruction error: 0.20876341302580678, decrease = 1.7859940193432067e-09
iteration 2, reconstruction error: 0.2087634112416496, decrease = 1.78415718310454e-09
iteration 3, reconstruction error: 0.20876340945930227, decrease = 1.7823473252853717e-09
iteration 4, reconstruction error: 0.20876340767875864, decrease = 1.78054362920399e-09
PARAFAC2 reconstruction error=0.8189080037184204, variation=7.845342153700585e-10.
Starting iteration 2155
reconstruction error=0.20876340542437816
iteration 1, reconstruction error: 0.2087634036395027, decrease = 1.7848754696458968e-09
iteration 2, reconstruction error: 0.20876340185646097, decrease = 1.7830417142761235e-09
iteration 3, reconstruction error: 0.20876340007522604, decrease = 1.7812349373258485e-09
iteration 4, reconstruction error: 0.20876339829579324, decrease = 1.7794327955567013e-09
PARAFAC2 reconstruction error=0.8189080029343779, variation=7.84042497592452e-10.
Starting iteration 2156
reconstruction error=0.20876339604283245
iteration 1, reconstruction error: 0.2087633942590794, decrease = 1.7837530619235764e-09
iteration 2, reconstruction error: 0.20876339247715003, decrease = 1.781929354072176e-09
iteration 3, reconstruction error: 0.20876339069702596, decrease = 1.7801240759229842e-09
iteration 4, reconstruction error: 0.20876338891870705, decrease = 1.7783189087960949e-09
PARAFAC2 reconstruction error=0.8189080021508267, variation=7.835512239040554e-10.
Starting iteration 2157
reconstruction error=0.20876338666716526
iteration 1, reconstruction error: 0.2087633848845246, decrease = 1.7826406739640532e-09
iteration 2, reconstruction error: 0.20876338310371303, decrease = 1.7808115537754077e-09
iteration 3, reconstruction error: 0.20876338132470054, decrease = 1.7790124928751538e-09
iteration 4, reconstruction error: 0.2087633795474894, decrease = 1.777211128262124e-09
PARAFAC2 reconstruction error=0.8189080013677665, variation=7.830601722602637e-10.
Starting iteration 2158
reconstruction error=0.20876337729736968
iteration 1, reconstruction error: 0.20876337551584448, decrease = 1.7815252051356367e-09
iteration 2, reconstruction error: 0.20876337373614068, decrease = 1.7797038009970123e-09
iteration 3, reconstruction error: 0.2087633719582421, decrease = 1.7778985783589718e-09
iteration 4, reconstruction error: 0.20876337018214103, decrease = 1.7761010717709524e-09
PARAFAC2 reconstruction error=0.818908000585197, variation=7.825695647056818e-10.
Starting iteration 2159
reconstruction error=0.20876336793343953
iteration 1, reconstruction error: 0.20876336615302513, decrease = 1.7804143992439236e-09
iteration 2, reconstruction error: 0.20876336437443835, decrease = 1.7785867778563613e-09
iteration 3, reconstruction error: 0.20876336259764905, decrease = 1.7767892990239176e-09
iteration 4, reconstruction error: 0.20876336082265035, decrease = 1.7749987035742265e-09
PARAFAC2 reconstruction error=0.8189079998031173, variation=7.820796232849148e-10.
Starting iteration 2160
reconstruction error=0.20876335857536782
iteration 1, reconstruction error: 0.2087633567960689, decrease = 1.7792989304155071e-09
iteration 2, reconstruction error: 0.20876335501859525, decrease = 1.7774736404962965e-09
iteration 3, reconstruction error: 0.2087633532429091, decrease = 1.7756861536710744e-09
iteration 4, reconstruction error: 0.20876335146902122, decrease = 1.7738878699269378e-09
PARAFAC2 reconstruction error=0.8189079990215273, variation=7.815900149310551e-10.
Starting iteration 2161
reconstruction error=0.20876334922314918
iteration 1, reconstruction error: 0.20876334744496883, decrease = 1.7781803529626217e-09
iteration 2, reconstruction error: 0.20876334566860524, decrease = 1.776363584005125e-09
iteration 3, reconstruction error: 0.20876334389402684, decrease = 1.774578400892679e-09
iteration 4, reconstruction error: 0.20876334212124673, decrease = 1.7727801171485424e-09
PARAFAC2 reconstruction error=0.8189079982404269, variation=7.811004065771954e-10.
Starting iteration 2162
reconstruction error=0.20876333987679063
iteration 1, reconstruction error: 0.20876333809971573, decrease = 1.7770749038970024e-09
iteration 2, reconstruction error: 0.2087633363244622, decrease = 1.7752535275139536e-09
iteration 3, reconstruction error: 0.20876333455099, decrease = 1.7734722024265182e-09
iteration 4, reconstruction error: 0.20876333277931455, decrease = 1.7716754452390404e-09
PARAFAC2 reconstruction error=0.8189079974598152, variation=7.806116864017554e-10.
Starting iteration 2163
reconstruction error=0.20876333053627058
iteration 1, reconstruction error: 0.2087633287603111, decrease = 1.7759594905797371e-09
iteration 2, reconstruction error: 0.20876332698615918, decrease = 1.7741519087177693e-09
iteration 3, reconstruction error: 0.2087633252137986, decrease = 1.7723605916231122e-09
iteration 4, reconstruction error: 0.2087633234432247, decrease = 1.7705738819540073e-09
PARAFAC2 reconstruction error=0.8189079966796919, variation=7.801232992932228e-10.
Starting iteration 2164
reconstruction error=0.20876332120159588
iteration 1, reconstruction error: 0.20876331942674417, decrease = 1.7748517100457661e-09
iteration 2, reconstruction error: 0.20876331765370076, decrease = 1.7730434065388323e-09
iteration 3, reconstruction error: 0.20876331588244484, decrease = 1.7712559197136102e-09
iteration 4, reconstruction error: 0.20876331411297178, decrease = 1.7694730680695159e-09
PARAFAC2 reconstruction error=0.8189079959000568, variation=7.796351342292951e-10.
Starting iteration 2165
reconstruction error=0.2087633118727535
iteration 1, reconstruction error: 0.20876331009901491, decrease = 1.7737385726857013e-09
iteration 2, reconstruction error: 0.2087633083270754, decrease = 1.7719395117854475e-09
iteration 3, reconstruction error: 0.20876330655692804, decrease = 1.770147362023522e-09
iteration 4, reconstruction error: 0.20876330478855576, decrease = 1.7683722819406e-09
PARAFAC2 reconstruction error=0.8189079951209093, variation=7.791475242768797e-10.
Starting iteration 2166
reconstruction error=0.20876330254974737
iteration 1, reconstruction error: 0.20876330077710883, decrease = 1.7726385359573271e-09
iteration 2, reconstruction error: 0.20876329900628093, decrease = 1.7708279009820416e-09
iteration 3, reconstruction error: 0.2087632972372305, decrease = 1.7690504339196167e-09
iteration 4, reconstruction error: 0.20876329546996444, decrease = 1.7672660557188635e-09
PARAFAC2 reconstruction error=0.818907994342249, variation=7.786602473913717e-10.
Starting iteration 2167
reconstruction error=0.20876329323256343
iteration 1, reconstruction error: 0.20876329146103578, decrease = 1.7715276467988872e-09
iteration 2, reconstruction error: 0.2087632896913079, decrease = 1.769727892009243e-09
iteration 3, reconstruction error: 0.20876328792336288, decrease = 1.767945012609573e-09
iteration 4, reconstruction error: 0.20876328615719533, decrease = 1.7661675455471482e-09
PARAFAC2 reconstruction error=0.8189079935640755, variation=7.781735256173761e-10.
Starting iteration 2168
reconstruction error=0.20876328392120036
iteration 1, reconstruction error: 0.20876328215077963, decrease = 1.7704207266877603e-09
iteration 2, reconstruction error: 0.20876328038215644, decrease = 1.7686231923441653e-09
iteration 3, reconstruction error: 0.20876327861531227, decrease = 1.766844170969506e-09
iteration 4, reconstruction error: 0.20876327685024706, decrease = 1.7650652051059978e-09
PARAFAC2 reconstruction error=0.8189079927863886, variation=7.776869148656829e-10.
Starting iteration 2169
reconstruction error=0.20876327461565572
iteration 1, reconstruction error: 0.2087632728463381, decrease = 1.7693176090904927e-09
iteration 2, reconstruction error: 0.20876327107882037, decrease = 1.767517743278546e-09
iteration 3, reconstruction error: 0.20876326931307776, decrease = 1.7657426076844729e-09
iteration 4, reconstruction error: 0.2087632675491095, decrease = 1.763968249246517e-09
PARAFAC2 reconstruction error=0.8189079920091874, variation=7.772011922924094e-10.
Starting iteration 2170
reconstruction error=0.20876326531592726
iteration 1, reconstruction error: 0.20876326354770972, decrease = 1.768217544606543e-09
iteration 2, reconstruction error: 0.2087632617812889, decrease = 1.7664208151746408e-09
iteration 3, reconstruction error: 0.2087632600166494, decrease = 1.7646394900872053e-09
iteration 4, reconstruction error: 0.20876325825377656, decrease = 1.7628728476992706e-09
PARAFAC2 reconstruction error=0.8189079912324719, variation=7.767154697191359e-10.
Starting iteration 2171
reconstruction error=0.20876325602199877
iteration 1, reconstruction error: 0.20876325425488973, decrease = 1.767109042427606e-09
iteration 2, reconstruction error: 0.20876325248957128, decrease = 1.7653184469779148e-09
iteration 3, reconstruction error: 0.20876325072602567, decrease = 1.7635456150966178e-09
iteration 4, reconstruction error: 0.208763248964249, decrease = 1.761776668995907e-09
PARAFAC2 reconstruction error=0.8189079904562417, variation=7.762301912350722e-10.
Starting iteration 2172
reconstruction error=0.2087632467338741
iteration 1, reconstruction error: 0.20876324496786977, decrease = 1.7660043427625283e-09
iteration 2, reconstruction error: 0.20876324320365522, decrease = 1.76421455222453e-09
iteration 3, reconstruction error: 0.20876324144120498, decrease = 1.762450241304947e-09
iteration 4, reconstruction error: 0.20876323968052296, decrease = 1.7606820168492021e-09
PARAFAC2 reconstruction error=0.8189079896804963, variation=7.757454678625209e-10.
Starting iteration 2173
reconstruction error=0.20876323745154715
iteration 1, reconstruction error: 0.2087632356866413, decrease = 1.7649058603463885e-09
iteration 2, reconstruction error: 0.20876323392352522, decrease = 1.7631160698083903e-09
iteration 3, reconstruction error: 0.20876323216217504, decrease = 1.7613501768209971e-09
iteration 4, reconstruction error: 0.2087632304025869, decrease = 1.7595881418586146e-09
PARAFAC2 reconstruction error=0.8189079889052354, variation=7.75260855512272e-10.
Starting iteration 2174
reconstruction error=0.2087632281750133
iteration 1, reconstruction error: 0.20876322641120593, decrease = 1.7638073779302488e-09
iteration 2, reconstruction error: 0.2087632246491899, decrease = 1.762016033080016e-09
iteration 3, reconstruction error: 0.20876322288893437, decrease = 1.7602555246742924e-09
iteration 4, reconstruction error: 0.20876322113043855, decrease = 1.7584958211802615e-09
PARAFAC2 reconstruction error=0.8189079881304583, variation=7.747771313404428e-10.
Starting iteration 2175
reconstruction error=0.2087632189042678
iteration 1, reconstruction error: 0.20876321714156357, decrease = 1.7627042325774056e-09
iteration 2, reconstruction error: 0.20876321538063908, decrease = 1.7609244895577802e-09
iteration 3, reconstruction error: 0.20876321362147973, decrease = 1.7591593459709287e-09
iteration 4, reconstruction error: 0.20876321186407779, decrease = 1.757401946189674e-09
PARAFAC2 reconstruction error=0.8189079873561647, variation=7.742936292132185e-10.
Starting iteration 2176
reconstruction error=0.20876320963930622
iteration 1, reconstruction error: 0.2087632078776943, decrease = 1.7616119118990525e-09
iteration 2, reconstruction error: 0.2087632061178722, decrease = 1.7598221213610543e-09
iteration 3, reconstruction error: 0.20876320435980594, decrease = 1.7580662481364584e-09
iteration 4, reconstruction error: 0.2087632026034955, decrease = 1.7563104304230137e-09
PARAFAC2 reconstruction error=0.8189079865823545, variation=7.738101270859943e-10.
Starting iteration 2177
reconstruction error=0.20876320038011612
iteration 1, reconstruction error: 0.2087631986196058, decrease = 1.7605103208584438e-09
iteration 2, reconstruction error: 0.20876319686087522, decrease = 1.7587305778388185e-09
iteration 3, reconstruction error: 0.2087631951039067, decrease = 1.7569685151208603e-09
iteration 4, reconstruction error: 0.2087631933486886, decrease = 1.7552181097446606e-09
PARAFAC2 reconstruction error=0.8189079858090269, variation=7.733276241594922e-10.
Starting iteration 2178
reconstruction error=0.2087631911267021
iteration 1, reconstruction error: 0.2087631893672872, decrease = 1.7594149193111974e-09
iteration 2, reconstruction error: 0.20876318760965434, decrease = 1.7576328448232204e-09
iteration 3, reconstruction error: 0.20876318585377351, decrease = 1.755880829623635e-09
iteration 4, reconstruction error: 0.20876318409964467, decrease = 1.7541288421796253e-09
PARAFAC2 reconstruction error=0.8189079850361815, variation=7.728454542998975e-10.
Starting iteration 2179
reconstruction error=0.20876318187905737
iteration 1, reconstruction error: 0.2087631801207402, decrease = 1.7583171862955993e-09
iteration 2, reconstruction error: 0.20876317836419966, decrease = 1.7565405241448673e-09
iteration 3, reconstruction error: 0.2087631766094119, decrease = 1.7547877595447403e-09
iteration 4, reconstruction error: 0.20876317485637616, decrease = 1.753035744345155e-09
PARAFAC2 reconstruction error=0.8189079842638183, variation=7.723631734180003e-10.
Starting iteration 2180
reconstruction error=0.20876317263717256
iteration 1, reconstruction error: 0.20876317087995233, decrease = 1.7572202304361184e-09
iteration 2, reconstruction error: 0.20876316912450568, decrease = 1.7554466491542797e-09
iteration 3, reconstruction error: 0.20876316737080716, decrease = 1.7536985197352806e-09
iteration 4, reconstruction error: 0.20876316561885988, decrease = 1.7519472816918125e-09
PARAFAC2 reconstruction error=0.8189079834919367, variation=7.718815586699179e-10.
Starting iteration 2181
reconstruction error=0.20876316340105083
iteration 1, reconstruction error: 0.2087631616449237, decrease = 1.756127132601648e-09
iteration 2, reconstruction error: 0.20876315989056554, decrease = 1.7543581587453616e-09
iteration 3, reconstruction error: 0.20876315813795626, decrease = 1.7526092799258208e-09
iteration 4, reconstruction error: 0.20876315638709358, decrease = 1.7508626770634805e-09
PARAFAC2 reconstruction error=0.8189079827205361, variation=7.714006100556503e-10.
Starting iteration 2182
reconstruction error=0.2087631541706798
iteration 1, reconstruction error: 0.20876315241564578, decrease = 1.7550340347671778e-09
iteration 2, reconstruction error: 0.2087631506623776, decrease = 1.7532681695353602e-09
iteration 3, reconstruction error: 0.20876314891086065, decrease = 1.7515169592474678e-09
iteration 4, reconstruction error: 0.20876314716108724, decrease = 1.7497734094984452e-09
PARAFAC2 reconstruction error=0.8189079819496161, variation=7.709199945082901e-10.
Starting iteration 2183
reconstruction error=0.20876314494606338
iteration 1, reconstruction error: 0.20876314319211625, decrease = 1.7539471264260698e-09
iteration 2, reconstruction error: 0.2087631414399404, decrease = 1.7521758488570072e-09
iteration 3, reconstruction error: 0.20876313968950808, decrease = 1.7504323268635602e-09
iteration 4, reconstruction error: 0.20876313794082002, decrease = 1.7486880554695716e-09
PARAFAC2 reconstruction error=0.8189079811791767, variation=7.704393789609298e-10.
Starting iteration 2184
reconstruction error=0.20876313572718305
iteration 1, reconstruction error: 0.2087631339743298, decrease = 1.7528532514354822e-09
iteration 2, reconstruction error: 0.20876313222324397, decrease = 1.7510858318914302e-09
iteration 3, reconstruction error: 0.20876313047390244, decrease = 1.749341532741866e-09
iteration 4, reconstruction error: 0.2087631287262928, decrease = 1.747609640334602e-09
PARAFAC2 reconstruction error=0.8189079804092172, variation=7.699595405696869e-10.
Starting iteration 2185
reconstruction error=0.20876312651404347
iteration 1, reconstruction error: 0.208763124762281, decrease = 1.751762457313788e-09
iteration 2, reconstruction error: 0.20876312301228286, decrease = 1.749998146394205e-09
iteration 3, reconstruction error: 0.20876312126402516, decrease = 1.7482577052696513e-09
iteration 4, reconstruction error: 0.20876311951750404, decrease = 1.7465211221701082e-09
PARAFAC2 reconstruction error=0.818907979639737, variation=7.694801462676537e-10.
Starting iteration 2186
reconstruction error=0.20876311730664
iteration 1, reconstruction error: 0.20876311555596908, decrease = 1.7506709137915522e-09
iteration 2, reconstruction error: 0.2087631138070594, decrease = 1.7489096837408624e-09
iteration 3, reconstruction error: 0.2087631120598832, decrease = 1.7471761815102127e-09
iteration 4, reconstruction error: 0.20876311031444283, decrease = 1.7454403755667869e-09
PARAFAC2 reconstruction error=0.8189079788707361, variation=7.690009740102255e-10.
Starting iteration 2187
reconstruction error=0.20876310810496565
iteration 1, reconstruction error: 0.20876310635538167, decrease = 1.7495839776948685e-09
iteration 2, reconstruction error: 0.208763104607562, decrease = 1.7478196667752854e-09
iteration 3, reconstruction error: 0.20876310286147043, decrease = 1.7460915768818808e-09
iteration 4, reconstruction error: 0.20876310111711077, decrease = 1.7443596567190411e-09
PARAFAC2 reconstruction error=0.818907978102214, variation=7.685220237974022e-10.
Starting iteration 2188
reconstruction error=0.20876309890901745
iteration 1, reconstruction error: 0.2087630971605196, decrease = 1.7484978465098777e-09
iteration 2, reconstruction error: 0.2087630954137792, decrease = 1.7467404189730473e-09
iteration 3, reconstruction error: 0.20876309366877452, decrease = 1.7450046685407727e-09
iteration 4, reconstruction error: 0.2087630919254964, decrease = 1.743278105204027e-09
PARAFAC2 reconstruction error=0.8189079773341702, variation=7.680438507406961e-10.
Starting iteration 2189
reconstruction error=0.20876308971878538
iteration 1, reconstruction error: 0.2087630879713783, decrease = 1.7474070801437591e-09
iteration 2, reconstruction error: 0.20876308622572326, decrease = 1.7456550371885982e-09
iteration 3, reconstruction error: 0.20876308448179626, decrease = 1.7439270028063447e-09
iteration 4, reconstruction error: 0.2087630827396043, decrease = 1.7421919462634605e-09
PARAFAC2 reconstruction error=0.8189079765666044, variation=7.675657887062926e-10.
Starting iteration 2190
reconstruction error=0.20876308053426934
iteration 1, reconstruction error: 0.20876307878794764, decrease = 1.74632169835931e-09
iteration 2, reconstruction error: 0.208763077043378, decrease = 1.744569655404149e-09
iteration 3, reconstruction error: 0.20876307530053637, decrease = 1.7428416210218955e-09
iteration 4, reconstruction error: 0.20876307355941826, decrease = 1.7411181107984675e-09
PARAFAC2 reconstruction error=0.8189079757995161, variation=7.670882817834013e-10.
Starting iteration 2191
reconstruction error=0.20876307135546865
iteration 1, reconstruction error: 0.20876306961023236, decrease = 1.7452362888192852e-09
iteration 2, reconstruction error: 0.20876306786674112, decrease = 1.7434912402691793e-09
iteration 3, reconstruction error: 0.20876306612498027, decrease = 1.7417608466629986e-09
iteration 4, reconstruction error: 0.20876306438493977, decrease = 1.7400405005751907e-09
PARAFAC2 reconstruction error=0.8189079750329047, variation=7.666114409943248e-10.
Starting iteration 2192
reconstruction error=0.20876306218236942
iteration 1, reconstruction error: 0.2087630604382131, decrease = 1.744156319372081e-09
iteration 2, reconstruction error: 0.20876305869580958, decrease = 1.7424035270163785e-09
iteration 3, reconstruction error: 0.20876305695513026, decrease = 1.74067932290356e-09
iteration 4, reconstruction error: 0.2087630552161636, decrease = 1.7389666651101976e-09
PARAFAC2 reconstruction error=0.8189079742667703, variation=7.661343781606433e-10.
Starting iteration 2193
reconstruction error=0.20876305301497552
iteration 1, reconstruction error: 0.20876305127190228, decrease = 1.743073241300408e-09
iteration 2, reconstruction error: 0.20876304953057717, decrease = 1.7413251118814088e-09
iteration 3, reconstruction error: 0.2087630477909763, decrease = 1.7396008800130147e-09
iteration 4, reconstruction error: 0.20876304605308962, decrease = 1.7378866679074179e-09
PARAFAC2 reconstruction error=0.8189079735011121, variation=7.656582035053816e-10.
Starting iteration 2194
reconstruction error=0.20876304385327077
iteration 1, reconstruction error: 0.20876304211127983, decrease = 1.7419909403848521e-09
iteration 2, reconstruction error: 0.2087630403710378, decrease = 1.7402420338097357e-09
iteration 3, reconstruction error: 0.20876303863251228, decrease = 1.7385255179913628e-09
iteration 4, reconstruction error: 0.20876303689570172, decrease = 1.7368105564852243e-09
PARAFAC2 reconstruction error=0.8189079727359299, variation=7.651822508947248e-10.
Starting iteration 2195
reconstruction error=0.20876303469726054
iteration 1, reconstruction error: 0.20876303295635346, decrease = 1.7409070851570618e-09
iteration 2, reconstruction error: 0.20876303121718753, decrease = 1.7391659223875422e-09
iteration 3, reconstruction error: 0.20876302947973893, decrease = 1.7374486016574764e-09
iteration 4, reconstruction error: 0.2087630277440068, decrease = 1.7357321413502547e-09
PARAFAC2 reconstruction error=0.818907971971223, variation=7.647068533955803e-10.
Starting iteration 2196
reconstruction error=0.208763025546938
iteration 1, reconstruction error: 0.20876302380711087, decrease = 1.7398271434654333e-09
iteration 2, reconstruction error: 0.2087630220690242, decrease = 1.738086674585304e-09
iteration 3, reconstruction error: 0.20876302033264862, decrease = 1.7363755711041762e-09
iteration 4, reconstruction error: 0.20876301859798876, decrease = 1.734659860197496e-09
PARAFAC2 reconstruction error=0.8189079712069915, variation=7.642314558964358e-10.
Starting iteration 2197
reconstruction error=0.20876301640229614
iteration 1, reconstruction error: 0.20876301466354746, decrease = 1.7387486728193124e-09
iteration 2, reconstruction error: 0.20876301292654073, decrease = 1.7370067328936756e-09
iteration 3, reconstruction error: 0.20876301119124435, decrease = 1.7352963788130893e-09
iteration 4, reconstruction error: 0.20876300945765447, decrease = 1.7335898827575136e-09
PARAFAC2 reconstruction error=0.8189079704432346, variation=7.63756946575711e-10.
Starting iteration 2198
reconstruction error=0.20876300726333183
iteration 1, reconstruction error: 0.20876300552566388, decrease = 1.7376679539715667e-09
iteration 2, reconstruction error: 0.20876300378973098, decrease = 1.7359328974286825e-09
iteration 3, reconstruction error: 0.20876300205550766, decrease = 1.7342233205042135e-09
iteration 4, reconstruction error: 0.20876300032299314, decrease = 1.7325145207358617e-09
PARAFAC2 reconstruction error=0.818907969679952, variation=7.632825482772887e-10.
Starting iteration 2199
reconstruction error=0.20876299813004207
iteration 1, reconstruction error: 0.20876299639344872, decrease = 1.7365933413504564e-09
iteration 2, reconstruction error: 0.20876299465859272, decrease = 1.7348560088503717e-09
iteration 3, reconstruction error: 0.2087629929254409, decrease = 1.7331518165075721e-09
iteration 4, reconstruction error: 0.20876299119399708, decrease = 1.7314438216509132e-09
PARAFAC2 reconstruction error=0.8189079689171436, variation=7.628084830457738e-10.
Starting iteration 2200
reconstruction error=0.20876298900241455
iteration 1, reconstruction error: 0.2087629872669035, decrease = 1.7355110404349006e-09
iteration 2, reconstruction error: 0.20876298553311748, decrease = 1.7337860314103892e-09
iteration 3, reconstruction error: 0.20876298380104252, decrease = 1.732074955684837e-09
iteration 4, reconstruction error: 0.20876298207066943, decrease = 1.730373094810389e-09
PARAFAC2 reconstruction error=0.8189079681548087, variation=7.623348619034687e-10.
Starting iteration 2201
reconstruction error=0.20876297988045464
iteration 1, reconstruction error: 0.20876297814601974, decrease = 1.7344349012571314e-09
iteration 2, reconstruction error: 0.2087629764133083, decrease = 1.7327114465448545e-09
iteration 3, reconstruction error: 0.2087629746823002, decrease = 1.7310080868693234e-09
iteration 4, reconstruction error: 0.20876297295300017, decrease = 1.7293000365015132e-09
PARAFAC2 reconstruction error=0.8189079673929469, variation=7.618617958726759e-10.
Starting iteration 2202
reconstruction error=0.20876297076415073
iteration 1, reconstruction error: 0.20876296903079195, decrease = 1.7333587898349379e-09
iteration 2, reconstruction error: 0.20876296729915353, decrease = 1.7316384159915543e-09
iteration 3, reconstruction error: 0.20876296556921464, decrease = 1.7299388865854581e-09
iteration 4, reconstruction error: 0.2087629638409838, decrease = 1.728230836217648e-09
PARAFAC2 reconstruction error=0.8189079666315578, variation=7.613890629087905e-10.
Starting iteration 2203
reconstruction error=0.2087629616535022
iteration 1, reconstruction error: 0.20876295992121335, decrease = 1.732288840150531e-09
iteration 2, reconstruction error: 0.20876295819064875, decrease = 1.7305646082821369e-09
iteration 3, reconstruction error: 0.20876295646178444, decrease = 1.7288643017199234e-09
iteration 4, reconstruction error: 0.20876295473461814, decrease = 1.7271662988704861e-09
PARAFAC2 reconstruction error=0.8189079658706411, variation=7.60916774034115e-10.
Starting iteration 2204
reconstruction error=0.2087629525485043
iteration 1, reconstruction error: 0.2087629508172885, decrease = 1.7312158095972308e-09
iteration 2, reconstruction error: 0.20876294908779075, decrease = 1.7294977394666233e-09
iteration 3, reconstruction error: 0.20876294735999718, decrease = 1.7277935748793993e-09
iteration 4, reconstruction error: 0.2087629456338931, decrease = 1.7261040652361004e-09
PARAFAC2 reconstruction error=0.8189079651101963, variation=7.604448182263468e-10.
Starting iteration 2205
reconstruction error=0.20876294344914706
iteration 1, reconstruction error: 0.20876294171900509, decrease = 1.7301419741322377e-09
iteration 2, reconstruction error: 0.2087629399905773, decrease = 1.7284277897822165e-09
iteration 3, reconstruction error: 0.2087629382638498, decrease = 1.726727483220003e-09
iteration 4, reconstruction error: 0.20876293653881417, decrease = 1.7250356421083524e-09
PARAFAC2 reconstruction error=0.8189079643502234, variation=7.599728624185786e-10.
Starting iteration 2206
reconstruction error=0.20876293435542814
iteration 1, reconstruction error: 0.20876293262635917, decrease = 1.729068971334513e-09
iteration 2, reconstruction error: 0.20876293089900447, decrease = 1.727354703717765e-09
iteration 3, reconstruction error: 0.20876292917334308, decrease = 1.7256613915606067e-09
iteration 4, reconstruction error: 0.2087629274493743, decrease = 1.7239687732928388e-09
PARAFAC2 reconstruction error=0.8189079635907214, variation=7.595020168338351e-10.
Starting iteration 2207
reconstruction error=0.20876292526734766
iteration 1, reconstruction error: 0.20876292353934559, decrease = 1.728002074763424e-09
iteration 2, reconstruction error: 0.20876292181306003, decrease = 1.726285558945051e-09
iteration 3, reconstruction error: 0.20876292008846242, decrease = 1.7245976036139865e-09
iteration 4, reconstruction error: 0.20876291836555744, decrease = 1.7229049853462186e-09
PARAFAC2 reconstruction error=0.8189079628316904, variation=7.590309492044867e-10.
Starting iteration 2208
reconstruction error=0.20876291618489237
iteration 1, reconstruction error: 0.20876291445796488, decrease = 1.7269274898978892e-09
iteration 2, reconstruction error: 0.20876291273274308, decrease = 1.7252217987540064e-09
iteration 3, reconstruction error: 0.20876291100921468, decrease = 1.7235284033301213e-09
iteration 4, reconstruction error: 0.20876290928737196, decrease = 1.7218427239562573e-09
PARAFAC2 reconstruction error=0.8189079620731295, variation=7.585608807758604e-10.
Starting iteration 2209
reconstruction error=0.20876290710806317
iteration 1, reconstruction error: 0.20876290538220102, decrease = 1.7258621476390346e-09
iteration 2, reconstruction error: 0.20876290365804998, decrease = 1.7241510441579067e-09
iteration 3, reconstruction error: 0.20876290193558458, decrease = 1.7224653925396183e-09
iteration 4, reconstruction error: 0.20876290021480484, decrease = 1.72077974092133e-09
PARAFAC2 reconstruction error=0.8189079613150386, variation=7.580909233695365e-10.
Starting iteration 2210
reconstruction error=0.20876289803685688
iteration 1, reconstruction error: 0.2087628963120647, decrease = 1.724792170199052e-09
iteration 2, reconstruction error: 0.20876289458897976, decrease = 1.7230849524985103e-09
iteration 3, reconstruction error: 0.20876289286757585, decrease = 1.7214039083057742e-09
iteration 4, reconstruction error: 0.20876289114785834, decrease = 1.7197175072869442e-09
PARAFAC2 reconstruction error=0.8189079605574174, variation=7.576211880078176e-10.
Starting iteration 2211
reconstruction error=0.2087628889712667
iteration 1, reconstruction error: 0.20876288724754136, decrease = 1.7237253568946898e-09
iteration 2, reconstruction error: 0.20876288552552022, decrease = 1.7220211367963145e-09
iteration 3, reconstruction error: 0.2087628838051816, decrease = 1.7203386215580707e-09
iteration 4, reconstruction error: 0.20876288208652094, decrease = 1.7186606582342279e-09
PARAFAC2 reconstruction error=0.8189079598002657, variation=7.571517857130061e-10.
Starting iteration 2212
reconstruction error=0.2087628799112871
iteration 1, reconstruction error: 0.20876287818862788, decrease = 1.7226592374797178e-09
iteration 2, reconstruction error: 0.20876287646766895, decrease = 1.7209589309175044e-09
iteration 3, reconstruction error: 0.20876287474839184, decrease = 1.719277109568651e-09
iteration 4, reconstruction error: 0.20876287303079497, decrease = 1.7175968702876077e-09
PARAFAC2 reconstruction error=0.8189079590435826, variation=7.566830495520094e-10.
Starting iteration 2213
reconstruction error=0.20876287085691042
iteration 1, reconstruction error: 0.20876286913531733, decrease = 1.7215930903091703e-09
iteration 2, reconstruction error: 0.20876286741542063, decrease = 1.7198966972831187e-09
iteration 3, reconstruction error: 0.2087628656972104, decrease = 1.7182102407531374e-09
iteration 4, reconstruction error: 0.20876286398066649, decrease = 1.7165439070154775e-09
PARAFAC2 reconstruction error=0.8189079582873681, variation=7.562145354356176e-10.
Starting iteration 2214
reconstruction error=0.20876286180814224
iteration 1, reconstruction error: 0.2087628600876098, decrease = 1.7205324387425946e-09
iteration 2, reconstruction error: 0.20876285836878, decrease = 1.7188298007120295e-09
iteration 3, reconstruction error: 0.2087628566516235, decrease = 1.71715650032489e-09
iteration 4, reconstruction error: 0.20876285493613803, decrease = 1.7154854758949512e-09
PARAFAC2 reconstruction error=0.8189079575316215, variation=7.557465764307381e-10.
Starting iteration 2215
reconstruction error=0.2087628527649669
iteration 1, reconstruction error: 0.20876285104549824, decrease = 1.7194686507959744e-09
iteration 2, reconstruction error: 0.20876284932772834, decrease = 1.7177698985459955e-09
iteration 3, reconstruction error: 0.20876284761163025, decrease = 1.7160980969599393e-09
iteration 4, reconstruction error: 0.20876284589720542, decrease = 1.7144248243283755e-09
PARAFAC2 reconstruction error=0.8189079567763425, variation=7.552789504927659e-10.
Starting iteration 2216
reconstruction error=0.2087628437273852
iteration 1, reconstruction error: 0.20876284200898268, decrease = 1.7184025313810025e-09
iteration 2, reconstruction error: 0.20876284029227193, decrease = 1.716710745780503e-09
iteration 3, reconstruction error: 0.20876283857723144, decrease = 1.7150404985066814e-09
iteration 4, reconstruction error: 0.20876283686386657, decrease = 1.7133648666511903e-09
PARAFAC2 reconstruction error=0.818907956021531, variation=7.548115465993988e-10.
Starting iteration 2217
reconstruction error=0.20876283469539114
iteration 1, reconstruction error: 0.2087628329780439, decrease = 1.7173472366405207e-09
iteration 2, reconstruction error: 0.20876283126239775, decrease = 1.71564615292219e-09
iteration 3, reconstruction error: 0.2087628295484141, decrease = 1.713983649453965e-09
iteration 4, reconstruction error: 0.20876282783610298, decrease = 1.712311126222943e-09
PARAFAC2 reconstruction error=0.8189079552671862, variation=7.543448088398463e-10.
Starting iteration 2218
reconstruction error=0.20876282566898155
iteration 1, reconstruction error: 0.20876282395270196, decrease = 1.71627959066889e-09
iteration 2, reconstruction error: 0.20876282223810416, decrease = 1.7145977970756121e-09
iteration 3, reconstruction error: 0.20876282052518197, decrease = 1.7129221929756966e-09
iteration 4, reconstruction error: 0.2087628188139246, decrease = 1.71125735803912e-09
PARAFAC2 reconstruction error=0.8189079545133078, variation=7.538784041472013e-10.
Starting iteration 2219
reconstruction error=0.20876281664815105
iteration 1, reconstruction error: 0.20876281493292445, decrease = 1.7152265996411842e-09
iteration 2, reconstruction error: 0.20876281321939197, decrease = 1.713532482572333e-09
iteration 3, reconstruction error: 0.20876281150752662, decrease = 1.7118653439229803e-09
iteration 4, reconstruction error: 0.20876280979731685, decrease = 1.7102097793486593e-09
PARAFAC2 reconstruction error=0.8189079537598956, variation=7.534122214991612e-10.
Starting iteration 2220
reconstruction error=0.2087628076328904
iteration 1, reconstruction error: 0.20876280591872756, decrease = 1.7141628394501396e-09
iteration 2, reconstruction error: 0.20876280420624807, decrease = 1.7124794915446273e-09
iteration 3, reconstruction error: 0.20876280249543802, decrease = 1.7108100491824985e-09
iteration 4, reconstruction error: 0.20876280078628356, decrease = 1.7091544568526018e-09
PARAFAC2 reconstruction error=0.8189079530069492, variation=7.529463719180285e-10.
Starting iteration 2221
reconstruction error=0.20876279862320113
iteration 1, reconstruction error: 0.20876279691009592, decrease = 1.713105213241306e-09
iteration 2, reconstruction error: 0.20876279519867402, decrease = 1.7114218930913694e-09
iteration 3, reconstruction error: 0.20876279348891544, decrease = 1.7097585847114516e-09
iteration 4, reconstruction error: 0.20876279178081703, decrease = 1.7080984127115784e-09
PARAFAC2 reconstruction error=0.818907952254468, variation=7.524811884707105e-10.
Starting iteration 2222
reconstruction error=0.2087627896190771
iteration 1, reconstruction error: 0.20876278790702946, decrease = 1.7120476425436237e-09
iteration 2, reconstruction error: 0.2087627861966621, decrease = 1.7103673477514292e-09
iteration 3, reconstruction error: 0.20876278448795882, decrease = 1.7087032899709698e-09
iteration 4, reconstruction error: 0.2087627827809065, decrease = 1.707052332822201e-09
PARAFAC2 reconstruction error=0.8189079515024517, variation=7.520163380903e-10.
Starting iteration 2223
reconstruction error=0.20876278062051218
iteration 1, reconstruction error: 0.2087627789095214, decrease = 1.7109907657353318e-09
iteration 2, reconstruction error: 0.20876277720020628, decrease = 1.7093151338798407e-09
iteration 3, reconstruction error: 0.20876277549255287, decrease = 1.707653407567733e-09
iteration 4, reconstruction error: 0.20876277378655736, decrease = 1.7059955115250602e-09
PARAFAC2 reconstruction error=0.8189079507509002, variation=7.515514877098894e-10.
Starting iteration 2224
reconstruction error=0.20876277162750706
iteration 1, reconstruction error: 0.20876276991756465, decrease = 1.709942409888754e-09
iteration 2, reconstruction error: 0.20876276820931253, decrease = 1.7082521230893377e-09
iteration 3, reconstruction error: 0.20876276650270673, decrease = 1.7066058011216967e-09
iteration 4, reconstruction error: 0.20876276479775568, decrease = 1.7049510414590685e-09
PARAFAC2 reconstruction error=0.8189079499998128, variation=7.510874144855961e-10.
Starting iteration 2225
reconstruction error=0.2087627626400472
iteration 1, reconstruction error: 0.20876276093116242, decrease = 1.7088847836799204e-09
iteration 2, reconstruction error: 0.20876275922395557, decrease = 1.7072068481116531e-09
iteration 3, reconstruction error: 0.2087627575184066, decrease = 1.705548979824556e-09
iteration 4, reconstruction error: 0.2087627558145024, decrease = 1.7039041844135738e-09
PARAFAC2 reconstruction error=0.8189079492491889, variation=7.506238963728151e-10.
Starting iteration 2226
reconstruction error=0.20876275365813404
iteration 1, reconstruction error: 0.20876275195030536, decrease = 1.7078286840277457e-09
iteration 2, reconstruction error: 0.20876275024414992, decrease = 1.7061554391517575e-09
iteration 3, reconstruction error: 0.20876274853965088, decrease = 1.704499041910168e-09
iteration 4, reconstruction error: 0.20876274683679502, decrease = 1.7028558563225715e-09
PARAFAC2 reconstruction error=0.8189079484990288, variation=7.501600451931267e-10.
Starting iteration 2227
reconstruction error=0.20876274468176542
iteration 1, reconstruction error: 0.20876274297498582, decrease = 1.7067796065362018e-09
iteration 2, reconstruction error: 0.20876274126988495, decrease = 1.7051008660562417e-09
iteration 3, reconstruction error: 0.20876273956643115, decrease = 1.703453794688059e-09
iteration 4, reconstruction error: 0.20876273786462443, decrease = 1.7018067233198764e-09
PARAFAC2 reconstruction error=0.8189079477493315, variation=7.49697304236463e-10.
Starting iteration 2228
reconstruction error=0.20876273571092963
iteration 1, reconstruction error: 0.20876273400520765, decrease = 1.7057219803273682e-09
iteration 2, reconstruction error: 0.20876273230115283, decrease = 1.7040548139224398e-09
iteration 3, reconstruction error: 0.2087627305987474, decrease = 1.702405438841481e-09
iteration 4, reconstruction error: 0.2087627288979836, decrease = 1.7007637798105435e-09
PARAFAC2 reconstruction error=0.8189079470000968, variation=7.492346743021017e-10.
Starting iteration 2229
reconstruction error=0.20876272674562754
iteration 1, reconstruction error: 0.20876272504095547, decrease = 1.7046720701685558e-09
iteration 2, reconstruction error: 0.2087627233379513, decrease = 1.7030041821186614e-09
iteration 3, reconstruction error: 0.20876272163659423, decrease = 1.7013570552393276e-09
iteration 4, reconstruction error: 0.20876271993687573, decrease = 1.699718504832859e-09
PARAFAC2 reconstruction error=0.8189079462513245, variation=7.487723774346478e-10.
Starting iteration 2230
reconstruction error=0.20876271778585842
iteration 1, reconstruction error: 0.20876271608223623, decrease = 1.703622187765319e-09
iteration 2, reconstruction error: 0.20876271438028043, decrease = 1.701955798516508e-09
iteration 3, reconstruction error: 0.208762712679964, decrease = 1.7003164431983464e-09
iteration 4, reconstruction error: 0.20876271098129, decrease = 1.698673979255716e-09
PARAFAC2 reconstruction error=0.8189079455030138, variation=7.483106356787061e-10.
Starting iteration 2231
reconstruction error=0.20876270883160666
iteration 1, reconstruction error: 0.2087627071290321, decrease = 1.7025745535637071e-09
iteration 2, reconstruction error: 0.20876270542812697, decrease = 1.7009051389571539e-09
iteration 3, reconstruction error: 0.20876270372885966, decrease = 1.6992673101956512e-09
iteration 4, reconstruction error: 0.20876270203123093, decrease = 1.697628732033607e-09
PARAFAC2 reconstruction error=0.8189079447551647, variation=7.478491159673695e-10.
Starting iteration 2232
reconstruction error=0.2087626998828764
iteration 1, reconstruction error: 0.20876269818134943, decrease = 1.7015269748732464e-09
iteration 2, reconstruction error: 0.20876269648148957, decrease = 1.6998598639794693e-09
iteration 3, reconstruction error: 0.2087626947832629, decrease = 1.6982266703990945e-09
iteration 4, reconstruction error: 0.20876269308668025, decrease = 1.6965826521442295e-09
PARAFAC2 reconstruction error=0.8189079440077769, variation=7.473878183006377e-10.
Starting iteration 2233
reconstruction error=0.20876269093965438
iteration 1, reconstruction error: 0.20876268923918037, decrease = 1.7004740116011163e-09
iteration 2, reconstruction error: 0.20876268754036426, decrease = 1.6988161155584436e-09
iteration 3, reconstruction error: 0.20876268584318286, decrease = 1.6971813954214099e-09
iteration 4, reconstruction error: 0.20876268414764237, decrease = 1.695540485791014e-09
PARAFAC2 reconstruction error=0.8189079432608496, variation=7.469272977900232e-10.
Starting iteration 2234
reconstruction error=0.2087626820019499
iteration 1, reconstruction error: 0.20876268030251882, decrease = 1.6994310680917835e-09
iteration 2, reconstruction error: 0.20876267860474643, decrease = 1.6977723948929935e-09
iteration 3, reconstruction error: 0.208762676908608, decrease = 1.6961384241565014e-09
iteration 4, reconstruction error: 0.20876267521410585, decrease = 1.6945021497072332e-09
PARAFAC2 reconstruction error=0.8189079425143825, variation=7.464671103463161e-10.
Starting iteration 2235
reconstruction error=0.20876267306974516
iteration 1, reconstruction error: 0.2087626713713617, decrease = 1.6983834616457472e-09
iteration 2, reconstruction error: 0.20876266967463225, decrease = 1.6967294513836606e-09
iteration 3, reconstruction error: 0.20876266797953832, decrease = 1.695093926334934e-09
iteration 4, reconstruction error: 0.20876266628607143, decrease = 1.6934668944923459e-09
PARAFAC2 reconstruction error=0.8189079417683754, variation=7.460070339249114e-10.
Starting iteration 2236
reconstruction error=0.20876266414303948
iteration 1, reconstruction error: 0.20876266244570052, decrease = 1.6973389638241798e-09
iteration 2, reconstruction error: 0.2087626607500156, decrease = 1.6956849258065176e-09
iteration 3, reconstruction error: 0.2087626590559623, decrease = 1.6940532865383773e-09
iteration 4, reconstruction error: 0.20876265736353605, decrease = 1.6924262546957891e-09
PARAFAC2 reconstruction error=0.8189079410228278, variation=7.455476236373215e-10.
Starting iteration 2237
reconstruction error=0.20876265522183285
iteration 1, reconstruction error: 0.20876265352553608, decrease = 1.6962967697153886e-09
iteration 2, reconstruction error: 0.20876265183090026, decrease = 1.694635820559398e-09
iteration 3, reconstruction error: 0.20876265013788298, decrease = 1.6930172819229483e-09
iteration 4, reconstruction error: 0.20876264844649506, decrease = 1.6913879186120084e-09
PARAFAC2 reconstruction error=0.8189079402777396, variation=7.450882133497316e-10.
Starting iteration 2238
reconstruction error=0.20876264630611527
iteration 1, reconstruction error: 0.20876264461086608, decrease = 1.6952491910249279e-09
iteration 2, reconstruction error: 0.20876264291726396, decrease = 1.6936021196567452e-09
iteration 3, reconstruction error: 0.20876264122528965, decrease = 1.6919743106580398e-09
iteration 4, reconstruction error: 0.20876263953493773, decrease = 1.6903519139965795e-09
PARAFAC2 reconstruction error=0.8189079395331103, variation=7.446293581736541e-10.
Starting iteration 2239
reconstruction error=0.20876263739588827
iteration 1, reconstruction error: 0.20876263570167738, decrease = 1.6942108826967228e-09
iteration 2, reconstruction error: 0.20876263400912135, decrease = 1.6925560397673678e-09
iteration 3, reconstruction error: 0.20876263231818457, decrease = 1.690936779485952e-09
iteration 4, reconstruction error: 0.2087626306288702, decrease = 1.689314355068916e-09
PARAFAC2 reconstruction error=0.8189079387889389, variation=7.441713911759962e-10.
Starting iteration 2240
reconstruction error=0.20876262849113797
iteration 1, reconstruction error: 0.2087626267979724, decrease = 1.6931655799634626e-09
iteration 2, reconstruction error: 0.20876262510644925, decrease = 1.6915231437764078e-09
iteration 3, reconstruction error: 0.20876262341655158, decrease = 1.689897666246054e-09
iteration 4, reconstruction error: 0.2087626217282717, decrease = 1.688279877010146e-09
PARAFAC2 reconstruction error=0.8189079380452259, variation=7.437129800891285e-10.
Starting iteration 2241
reconstruction error=0.20876261959187134
iteration 1, reconstruction error: 0.20876261789974332, decrease = 1.6921280210357992e-09
iteration 2, reconstruction error: 0.20876261620926007, decrease = 1.6904832533803926e-09
iteration 3, reconstruction error: 0.20876261452039765, decrease = 1.6888624110311667e-09
iteration 4, reconstruction error: 0.20876261283315609, decrease = 1.6872415686819409e-09
PARAFAC2 reconstruction error=0.8189079373019704, variation=7.432554571806804e-10.
Starting iteration 2242
reconstruction error=0.2087626106980714
iteration 1, reconstruction error: 0.20876260900698324, decrease = 1.6910881583953596e-09
iteration 2, reconstruction error: 0.20876260731754062, decrease = 1.6894426135838359e-09
iteration 3, reconstruction error: 0.20876260562971577, decrease = 1.6878248521035033e-09
iteration 4, reconstruction error: 0.20876260394350482, decrease = 1.6862109486481813e-09
PARAFAC2 reconstruction error=0.8189079365591723, variation=7.427981563168373e-10.
Starting iteration 2243
reconstruction error=0.20876260180974435
iteration 1, reconstruction error: 0.20876260011969142, decrease = 1.690052930936048e-09
iteration 2, reconstruction error: 0.20876259843128947, decrease = 1.6884019460317035e-09
iteration 3, reconstruction error: 0.2087625967444991, decrease = 1.6867903740447332e-09
iteration 4, reconstruction error: 0.20876259505932263, decrease = 1.6851764705894112e-09
PARAFAC2 reconstruction error=0.8189079358168311, variation=7.423411885199016e-10.
Starting iteration 2244
reconstruction error=0.20876259292687857
iteration 1, reconstruction error: 0.20876259123786864, decrease = 1.6890099319155638e-09
iteration 2, reconstruction error: 0.20876258955049806, decrease = 1.6873705765974023e-09
iteration 3, reconstruction error: 0.20876258786473906, decrease = 1.685759004610432e-09
iteration 4, reconstruction error: 0.20876258618059704, decrease = 1.6841420202862167e-09
PARAFAC2 reconstruction error=0.8189079350749463, variation=7.418847758344782e-10.
Starting iteration 2245
reconstruction error=0.20876258404947265
iteration 1, reconstruction error: 0.2087625823614995, decrease = 1.6879731501440176e-09
iteration 2, reconstruction error: 0.20876258067516648, decrease = 1.6863330176697389e-09
iteration 3, reconstruction error: 0.20876257899044118, decrease = 1.6847253037077792e-09
iteration 4, reconstruction error: 0.20876257730732672, decrease = 1.683114453365775e-09
PARAFAC2 reconstruction error=0.8189079343335178, variation=7.414284741713573e-10.
Starting iteration 2246
reconstruction error=0.20876257517752336
iteration 1, reconstruction error: 0.20876257349058777, decrease = 1.6869355912163542e-09
iteration 2, reconstruction error: 0.20876257180528304, decrease = 1.685304729104331e-09
iteration 3, reconstruction error: 0.2087625701215953, decrease = 1.6836877447801157e-09
iteration 4, reconstruction error: 0.2087625684395076, decrease = 1.682087691357026e-09
PARAFAC2 reconstruction error=0.818907933592545, variation=7.409728386420511e-10.
Starting iteration 2247
reconstruction error=0.2087625663110239
iteration 1, reconstruction error: 0.2087625646251228, decrease = 1.685901113157584e-09
iteration 2, reconstruction error: 0.20876256294085255, decrease = 1.684270251045561e-09
iteration 3, reconstruction error: 0.2087625612581939, decrease = 1.682658651303015e-09
iteration 4, reconstruction error: 0.20876255957713835, decrease = 1.6810555447666076e-09
PARAFAC2 reconstruction error=0.8189079328520272, variation=7.405177582242572e-10.
Starting iteration 2248
reconstruction error=0.20876255744996652
iteration 1, reconstruction error: 0.20876255576509833, decrease = 1.6848681894110484e-09
iteration 2, reconstruction error: 0.208762554081861, decrease = 1.6832373272990253e-09
iteration 3, reconstruction error: 0.20876255240023375, decrease = 1.6816272541131383e-09
iteration 4, reconstruction error: 0.20876255072020958, decrease = 1.6800241753323064e-09
PARAFAC2 reconstruction error=0.8189079321119649, variation=7.40062344739556e-10.
Starting iteration 2249
reconstruction error=0.20876254859435353
iteration 1, reconstruction error: 0.2087625469105206, decrease = 1.683832934196161e-09
iteration 2, reconstruction error: 0.20876254522831544, decrease = 1.6822051529530313e-09
iteration 3, reconstruction error: 0.2087625435477203, decrease = 1.6805951352782955e-09
iteration 4, reconstruction error: 0.2087625418687206, decrease = 1.6789997170363335e-09
PARAFAC2 reconstruction error=0.8189079313723572, variation=7.39607708410972e-10.
Starting iteration 2250
reconstruction error=0.2087625397441734
iteration 1, reconstruction error: 0.20876253806137723, decrease = 1.6827961524246149e-09
iteration 2, reconstruction error: 0.2087625363802042, decrease = 1.6811730341181885e-09
iteration 3, reconstruction error: 0.20876253470063355, decrease = 1.679570649226747e-09
iteration 4, reconstruction error: 0.20876253302265982, decrease = 1.6779737321837018e-09
PARAFAC2 reconstruction error=0.8189079306332036, variation=7.391536271939003e-10.
Starting iteration 2251
reconstruction error=0.2087625308994322
iteration 1, reconstruction error: 0.20876252921766278, decrease = 1.6817694181714415e-09
iteration 2, reconstruction error: 0.2087625275375212, decrease = 1.6801415814171605e-09
iteration 3, reconstruction error: 0.20876252585898036, decrease = 1.6785408341046804e-09
iteration 4, reconstruction error: 0.2087625241820334, decrease = 1.6769469701749529e-09
PARAFAC2 reconstruction error=0.8189079298945038, variation=7.386997680214336e-10.
Starting iteration 2252
reconstruction error=0.20876252206011314
iteration 1, reconstruction error: 0.20876252037938128, decrease = 1.6807318592437781e-09
iteration 2, reconstruction error: 0.20876251870026566, decrease = 1.6791156243201044e-09
iteration 3, reconstruction error: 0.20876251702274698, decrease = 1.6775186795214836e-09
iteration 4, reconstruction error: 0.20876251534683063, decrease = 1.6759163501411933e-09
PARAFAC2 reconstruction error=0.8189079291562575, variation=7.382462419158742e-10.
Starting iteration 2253
reconstruction error=0.20876251322621997
iteration 1, reconstruction error: 0.20876251154651565, decrease = 1.679704320078912e-09
iteration 2, reconstruction error: 0.20876250986843142, decrease = 1.6780842271302276e-09
iteration 3, reconstruction error: 0.2087625081919449, decrease = 1.6764865329310652e-09
iteration 4, reconstruction error: 0.20876250651704836, decrease = 1.6748965270263483e-09
PARAFAC2 reconstruction error=0.8189079284184644, variation=7.377931598995247e-10.
Starting iteration 2254
reconstruction error=0.20876250439774427
iteration 1, reconstruction error: 0.20876250271907135, decrease = 1.6786729228890351e-09
iteration 2, reconstruction error: 0.2087625010420162, decrease = 1.677055133653127e-09
iteration 3, reconstruction error: 0.20876249936655028, decrease = 1.675465932660103e-09
iteration 4, reconstruction error: 0.20876249769267893, decrease = 1.6738713470854094e-09
PARAFAC2 reconstruction error=0.818907927681124, variation=7.373404109500825e-10.
Starting iteration 2255
reconstruction error=0.20876249557468524
iteration 1, reconstruction error: 0.20876249389704063, decrease = 1.6776446065680517e-09
iteration 2, reconstruction error: 0.20876249222100682, decrease = 1.6760338117371987e-09
iteration 3, reconstruction error: 0.20876249054656917, decrease = 1.674437644094695e-09
iteration 4, reconstruction error: 0.20876248887371845, decrease = 1.6728507190588715e-09
PARAFAC2 reconstruction error=0.8189079269442359, variation=7.368881060898502e-10.
Starting iteration 2256
reconstruction error=0.20876248675703213
iteration 1, reconstruction error: 0.2087624850804158, decrease = 1.6766163180026439e-09
iteration 2, reconstruction error: 0.20876248340541181, decrease = 1.675003996615132e-09
iteration 3, reconstruction error: 0.20876248173199788, decrease = 1.6734139351992638e-09
iteration 4, reconstruction error: 0.20876248006017314, decrease = 1.6718247342062398e-09
PARAFAC2 reconstruction error=0.8189079262078001, variation=7.364358012296179e-10.
Starting iteration 2257
reconstruction error=0.20876247794478953
iteration 1, reconstruction error: 0.20876247626919842, decrease = 1.6755911103061294e-09
iteration 2, reconstruction error: 0.20876247459521816, decrease = 1.6739802599641251e-09
iteration 3, reconstruction error: 0.20876247292282787, decrease = 1.6723902818149838e-09
iteration 4, reconstruction error: 0.20876247125202138, decrease = 1.6708064931592048e-09
PARAFAC2 reconstruction error=0.8189079254718157, variation=7.359843845478053e-10.
Starting iteration 2258
reconstruction error=0.2087624691379436
iteration 1, reconstruction error: 0.2087624674633793, decrease = 1.6745643205418048e-09
iteration 2, reconstruction error: 0.2087624657904273, decrease = 1.672951999154293e-09
iteration 3, reconstruction error: 0.20876246411905527, decrease = 1.6713720130123733e-09
iteration 4, reconstruction error: 0.20876246244926708, decrease = 1.6697881966010186e-09
PARAFAC2 reconstruction error=0.8189079247362825, variation=7.355331899105977e-10.
Starting iteration 2259
reconstruction error=0.20876246033649512
iteration 1, reconstruction error: 0.20876245866295523, decrease = 1.6735398900014076e-09
iteration 2, reconstruction error: 0.20876245699102847, decrease = 1.6719267637022028e-09
iteration 3, reconstruction error: 0.20876245532067472, decrease = 1.6703537442097627e-09
iteration 4, reconstruction error: 0.20876245365190943, decrease = 1.6687652926172802e-09
PARAFAC2 reconstruction error=0.8189079240012002, variation=7.350823283402974e-10.
Starting iteration 2260
reconstruction error=0.20876245154043943
iteration 1, reconstruction error: 0.20876244986792167, decrease = 1.6725177631737864e-09
iteration 2, reconstruction error: 0.20876244819701395, decrease = 1.670907717743475e-09
iteration 3, reconstruction error: 0.2087624465276839, decrease = 1.669330063069907e-09
iteration 4, reconstruction error: 0.2087624448599369, decrease = 1.667746996059094e-09
PARAFAC2 reconstruction error=0.8189079232665682, variation=7.34631910859207e-10.
Starting iteration 2261
reconstruction error=0.2087624427497743
iteration 1, reconstruction error: 0.20876244107827635, decrease = 1.6714979400589414e-09
iteration 2, reconstruction error: 0.20876243940838998, decrease = 1.6698863680719711e-09
iteration 3, reconstruction error: 0.20876243774008438, decrease = 1.6683056047739342e-09
iteration 4, reconstruction error: 0.20876243607335176, decrease = 1.6667326130370697e-09
PARAFAC2 reconstruction error=0.8189079225323868, variation=7.341814933781166e-10.
Starting iteration 2262
reconstruction error=0.20876243396448657
iteration 1, reconstruction error: 0.20876243229401767, decrease = 1.670468902092992e-09
iteration 2, reconstruction error: 0.20876243062514885, decrease = 1.6688688209143265e-09
iteration 3, reconstruction error: 0.20876242895786074, decrease = 1.6672881131274409e-09
iteration 4, reconstruction error: 0.20876242729214642, decrease = 1.6657143164788835e-09
PARAFAC2 reconstruction error=0.8189079217986549, variation=7.337318530531434e-10.
Starting iteration 2263
reconstruction error=0.20876242518457774
iteration 1, reconstruction error: 0.2087624235151318, decrease = 1.6694459425981023e-09
iteration 2, reconstruction error: 0.20876242184728738, decrease = 1.667844418129505e-09
iteration 3, reconstruction error: 0.20876242018101446, decrease = 1.6662729251937236e-09
iteration 4, reconstruction error: 0.20876241851631763, decrease = 1.6646968248323901e-09
PARAFAC2 reconstruction error=0.8189079210653724, variation=7.332825457950776e-10.
Starting iteration 2264
reconstruction error=0.20876241641004492
iteration 1, reconstruction error: 0.20876241474161955, decrease = 1.6684253700827156e-09
iteration 2, reconstruction error: 0.2087624130747942, decrease = 1.6668253444152015e-09
iteration 3, reconstruction error: 0.20876241140953802, decrease = 1.6652561829477719e-09
iteration 4, reconstruction error: 0.20876240974585253, decrease = 1.6636854949236834e-09
PARAFAC2 reconstruction error=0.8189079203325387, variation=7.328336826262216e-10.
Starting iteration 2265
reconstruction error=0.20876240764088408
iteration 1, reconstruction error: 0.2087624059734793, decrease = 1.6674047698117533e-09
iteration 2, reconstruction error: 0.20876240430766757, decrease = 1.6658117385492943e-09
iteration 3, reconstruction error: 0.2087624026434312, decrease = 1.6642363598329268e-09
iteration 4, reconstruction error: 0.20876240098076632, decrease = 1.6626648946527212e-09
PARAFAC2 reconstruction error=0.818907919600154, variation=7.323847084350632e-10.
Starting iteration 2266
reconstruction error=0.20876239887708528
iteration 1, reconstruction error: 0.20876239721069723, decrease = 1.6663880553213772e-09
iteration 2, reconstruction error: 0.20876239554590767, decrease = 1.664789556210522e-09
iteration 3, reconstruction error: 0.20876239388267953, decrease = 1.6632281385486891e-09
iteration 4, reconstruction error: 0.2087623922210298, decrease = 1.6616497344745795e-09
PARAFAC2 reconstruction error=0.8189079188682172, variation=7.31936733444627e-10.
Starting iteration 2267
reconstruction error=0.20876239011864775
iteration 1, reconstruction error: 0.20876238845327952, decrease = 1.6653682322065322e-09
iteration 2, reconstruction error: 0.20876238678950051, decrease = 1.6637790034579325e-09
iteration 3, reconstruction error: 0.20876238512729606, decrease = 1.6622044574088335e-09
iteration 4, reconstruction error: 0.2087623834666546, decrease = 1.6606414576791906e-09
PARAFAC2 reconstruction error=0.8189079181367285, variation=7.314887584541907e-10.
Starting iteration 2268
reconstruction error=0.20876238136556147
iteration 1, reconstruction error: 0.20876237970121303, decrease = 1.6643484368472627e-09
iteration 2, reconstruction error: 0.20876237803845768, decrease = 1.6627553500736525e-09
iteration 3, reconstruction error: 0.20876237637726303, decrease = 1.6611946540567857e-09
iteration 4, reconstruction error: 0.2087623747176329, decrease = 1.659630127770484e-09
PARAFAC2 reconstruction error=0.8189079174056875, variation=7.310410055083594e-10.
Starting iteration 2269
reconstruction error=0.20876237261783873
iteration 1, reconstruction error: 0.2087623709545055, decrease = 1.6633332211579699e-09
iteration 2, reconstruction error: 0.20876236929275765, decrease = 1.6617478504343808e-09
iteration 3, reconstruction error: 0.20876236763257894, decrease = 1.6601787167225268e-09
iteration 4, reconstruction error: 0.2087623659739617, decrease = 1.6586172435495428e-09
PARAFAC2 reconstruction error=0.8189079166750933, variation=7.305941407409478e-10.
Starting iteration 2270
reconstruction error=0.20876236387545577
iteration 1, reconstruction error: 0.20876236221313849, decrease = 1.662317283823711e-09
iteration 2, reconstruction error: 0.20876236055240582, decrease = 1.6607326625006635e-09
iteration 3, reconstruction error: 0.2087623588932377, decrease = 1.6591681362143618e-09
iteration 4, reconstruction error: 0.20876235723563177, decrease = 1.657605913640836e-09
PARAFAC2 reconstruction error=0.8189079159449458, variation=7.30147498018141e-10.
Starting iteration 2271
reconstruction error=0.2087623551384171
iteration 1, reconstruction error: 0.20876235347711344, decrease = 1.6613036502022283e-09
iteration 2, reconstruction error: 0.20876235181739441, decrease = 1.6597190288791808e-09
iteration 3, reconstruction error: 0.20876235015923916, decrease = 1.6581552519934206e-09
iteration 4, reconstruction error: 0.20876234850264305, decrease = 1.6565961102887883e-09
PARAFAC2 reconstruction error=0.8189079152152451, variation=7.297007442730319e-10.
Starting iteration 2272
reconstruction error=0.20876234640671965
iteration 1, reconstruction error: 0.20876234474643046, decrease = 1.660289183913477e-09
iteration 2, reconstruction error: 0.2087623430877297, decrease = 1.6587007600765702e-09
iteration 3, reconstruction error: 0.2087623414305796, decrease = 1.6571501115780762e-09
iteration 4, reconstruction error: 0.20876233977498707, decrease = 1.6555925241856784e-09
PARAFAC2 reconstruction error=0.8189079144859904, variation=7.292546566617375e-10.
Starting iteration 2273
reconstruction error=0.20876233768035274
iteration 1, reconstruction error: 0.20876233602107874, decrease = 1.6592739959797598e-09
iteration 2, reconstruction error: 0.20876233436338312, decrease = 1.6576956196612258e-09
iteration 3, reconstruction error: 0.20876233270724898, decrease = 1.6561341464882418e-09
iteration 4, reconstruction error: 0.20876233105266703, decrease = 1.6545819436775133e-09
PARAFAC2 reconstruction error=0.8189079137571815, variation=7.288089021173505e-10.
Starting iteration 2274
reconstruction error=0.20876232895931704
iteration 1, reconstruction error: 0.20876232730105512, decrease = 1.6582619166705115e-09
iteration 2, reconstruction error: 0.2087623256443732, decrease = 1.6566819305285918e-09
iteration 3, reconstruction error: 0.20876232398924496, decrease = 1.6551282289167801e-09
iteration 4, reconstruction error: 0.20876232233567127, decrease = 1.6535736946377e-09
PARAFAC2 reconstruction error=0.8189079130288177, variation=7.283638137067783e-10.
Starting iteration 2275
reconstruction error=0.20876232024360333
iteration 1, reconstruction error: 0.20876231858635738, decrease = 1.657245951580677e-09
iteration 2, reconstruction error: 0.20876231693068448, decrease = 1.6556729043326612e-09
iteration 3, reconstruction error: 0.20876231527656294, decrease = 1.6541215341892013e-09
iteration 4, reconstruction error: 0.20876231362399672, decrease = 1.6525662227540039e-09
PARAFAC2 reconstruction error=0.8189079123008987, variation=7.279190583631134e-10.
Starting iteration 2276
reconstruction error=0.2087623115332186
iteration 1, reconstruction error: 0.20876230987697858, decrease = 1.6562400062536398e-09
iteration 2, reconstruction error: 0.2087623082223162, decrease = 1.6546623793356474e-09
iteration 3, reconstruction error: 0.20876230656920372, decrease = 1.653112480237695e-09
iteration 4, reconstruction error: 0.2087623049176388, decrease = 1.6515649126080945e-09
PARAFAC2 reconstruction error=0.8189079115734244, variation=7.274743030194486e-10.
Starting iteration 2277
reconstruction error=0.20876230282814504
iteration 1, reconstruction error: 0.2087623011729179, decrease = 1.6552271220326986e-09
iteration 2, reconstruction error: 0.2087622995192607, decrease = 1.6536572111647274e-09
iteration 3, reconstruction error: 0.2087622978671588, decrease = 1.65210189972953e-09
iteration 4, reconstruction error: 0.20876229621659825, decrease = 1.6505605493488673e-09
PARAFAC2 reconstruction error=0.8189079108463945, variation=7.270298807426911e-10.
Starting iteration 2278
reconstruction error=0.2087622941283851
iteration 1, reconstruction error: 0.2087622924741685, decrease = 1.6542165970356848e-09
iteration 2, reconstruction error: 0.208762290821518, decrease = 1.652650488681573e-09
iteration 3, reconstruction error: 0.20876228917041817, decrease = 1.651099840183079e-09
iteration 4, reconstruction error: 0.20876228752086126, decrease = 1.6495569077346062e-09
PARAFAC2 reconstruction error=0.8189079101198082, variation=7.265862356220509e-10.
Starting iteration 2279
reconstruction error=0.20876228543393324
iteration 1, reconstruction error: 0.20876228378072262, decrease = 1.653210623953072e-09
iteration 2, reconstruction error: 0.20876228212908268, decrease = 1.6516399359289835e-09
iteration 3, reconstruction error: 0.20876228047898723, decrease = 1.6500954491682762e-09
iteration 4, reconstruction error: 0.20876227883043547, decrease = 1.6485517673192618e-09
PARAFAC2 reconstruction error=0.8189079093936654, variation=7.261428125460156e-10.
Starting iteration 2280
reconstruction error=0.20876227674478498
iteration 1, reconstruction error: 0.20876227509258333, decrease = 1.6522016532682926e-09
iteration 2, reconstruction error: 0.20876227344194626, decrease = 1.6506370714708396e-09
iteration 3, reconstruction error: 0.20876227179285675, decrease = 1.649089503841239e-09
iteration 4, reconstruction error: 0.20876227014530474, decrease = 1.6475520114855868e-09
PARAFAC2 reconstruction error=0.8189079086679658, variation=7.256996115145853e-10.
Starting iteration 2281
reconstruction error=0.20876226806093637
iteration 1, reconstruction error: 0.20876226640974221, decrease = 1.6511941536290209e-09
iteration 2, reconstruction error: 0.2087622647601141, decrease = 1.6496281007860603e-09
iteration 3, reconstruction error: 0.20876226311201973, decrease = 1.6480943831886918e-09
iteration 4, reconstruction error: 0.20876226146547677, decrease = 1.6465429575340806e-09
PARAFAC2 reconstruction error=0.8189079079427091, variation=7.252567435500623e-10.
Starting iteration 2282
reconstruction error=0.2087622593823813
iteration 1, reconstruction error: 0.20876225773219076, decrease = 1.6501905397703354e-09
iteration 2, reconstruction error: 0.20876225608356633, decrease = 1.6486244314162235e-09
iteration 3, reconstruction error: 0.20876225443647864, decrease = 1.647087688461113e-09
iteration 4, reconstruction error: 0.20876225279092542, decrease = 1.645553221463203e-09
PARAFAC2 reconstruction error=0.8189079072178944, variation=7.248146527416566e-10.
Starting iteration 2283
reconstruction error=0.20876225070911744
iteration 1, reconstruction error: 0.20876224905993285, decrease = 1.6491845944432981e-09
iteration 2, reconstruction error: 0.208762247412312, decrease = 1.6476208453131136e-09
iteration 3, reconstruction error: 0.2087622457662264, decrease = 1.6460856011590863e-09
iteration 4, reconstruction error: 0.20876224412167446, decrease = 1.6445519390728691e-09
PARAFAC2 reconstruction error=0.818907906493522, variation=7.243724509109484e-10.
Starting iteration 2284
reconstruction error=0.20876224204113944
iteration 1, reconstruction error: 0.20876224039296076, decrease = 1.6481786768718365e-09
iteration 2, reconstruction error: 0.20876223874633895, decrease = 1.6466218111244046e-09
iteration 3, reconstruction error: 0.20876223710125463, decrease = 1.6450843187687525e-09
iteration 4, reconstruction error: 0.20876223545770245, decrease = 1.6435521832391942e-09
PARAFAC2 reconstruction error=0.8189079057695913, variation=7.2393069316945e-10.
Starting iteration 2285
reconstruction error=0.2087622333784426
iteration 1, reconstruction error: 0.20876223173126987, decrease = 1.6471727315447993e-09
iteration 2, reconstruction error: 0.20876223008565087, decrease = 1.645619002177412e-09
iteration 3, reconstruction error: 0.2087622284415671, decrease = 1.6440837580233847e-09
iteration 4, reconstruction error: 0.20876222679901393, decrease = 1.6425531768060608e-09
PARAFAC2 reconstruction error=0.8189079050461016, variation=7.234897125840689e-10.
Starting iteration 2286
reconstruction error=0.2087622247210247
iteration 1, reconstruction error: 0.20876222307484943, decrease = 1.6461752794239004e-09
iteration 2, reconstruction error: 0.20876222143023407, decrease = 1.6446153605631508e-09
iteration 3, reconstruction error: 0.20876221978714926, decrease = 1.6430848071014026e-09
iteration 4, reconstruction error: 0.208762218145592, decrease = 1.6415572512418208e-09
PARAFAC2 reconstruction error=0.8189079043230529, variation=7.230486209763853e-10.
Starting iteration 2287
reconstruction error=0.20876221606887954
iteration 1, reconstruction error: 0.2087622144237102, decrease = 1.6451693340968632e-09
iteration 2, reconstruction error: 0.2087622127800892, decrease = 1.643621017066721e-09
iteration 3, reconstruction error: 0.20876221113800494, decrease = 1.6420842463560348e-09
iteration 4, reconstruction error: 0.20876220949744204, decrease = 1.640562907745391e-09
PARAFAC2 reconstruction error=0.8189079036004449, variation=7.226080844802141e-10.
Starting iteration 2288
reconstruction error=0.20876220742200252
iteration 1, reconstruction error: 0.20876220577783602, decrease = 1.6441664973942949e-09
iteration 2, reconstruction error: 0.208762204135214, decrease = 1.6426220106335876e-09
iteration 3, reconstruction error: 0.2087622024941241, decrease = 1.6410899028596049e-09
iteration 4, reconstruction error: 0.208762200854561, decrease = 1.6395631241561404e-09
PARAFAC2 reconstruction error=0.818907902878277, variation=7.221678810509502e-10.
Starting iteration 2289
reconstruction error=0.20876219878039054
iteration 1, reconstruction error: 0.20876219713722075, decrease = 1.6431697946739376e-09
iteration 2, reconstruction error: 0.20876219549560002, decrease = 1.6416207282432538e-09
iteration 3, reconstruction error: 0.20876219385550837, decrease = 1.6400916458270132e-09
iteration 4, reconstruction error: 0.20876219221693648, decrease = 1.6385718892841794e-09
PARAFAC2 reconstruction error=0.8189079021565491, variation=7.217278996662913e-10.
Starting iteration 2290
reconstruction error=0.2087621901440367
iteration 1, reconstruction error: 0.2087621885018682, decrease = 1.6421685122836038e-09
iteration 2, reconstruction error: 0.20876218686124648, decrease = 1.6406217218101204e-09
iteration 3, reconstruction error: 0.20876218522214532, decrease = 1.6391011603555938e-09
iteration 4, reconstruction error: 0.20876218358457166, decrease = 1.6375736600071633e-09
PARAFAC2 reconstruction error=0.8189079014352607, variation=7.212883623708422e-10.
Starting iteration 2291
reconstruction error=0.20876218151294326
iteration 1, reconstruction error: 0.20876217987177376, decrease = 1.6411695058504705e-09
iteration 2, reconstruction error: 0.20876217823214252, decrease = 1.6396312363387011e-09
iteration 3, reconstruction error: 0.20876217659404037, decrease = 1.6381021539224605e-09
iteration 4, reconstruction error: 0.20876217495745955, decrease = 1.6365808153118167e-09
PARAFAC2 reconstruction error=0.8189079007144111, variation=7.208496022315103e-10.
Starting iteration 2292
reconstruction error=0.2087621728870949
iteration 1, reconstruction error: 0.20876217124692284, decrease = 1.6401720537295716e-09
iteration 2, reconstruction error: 0.2087621696082929, decrease = 1.6386299261927917e-09
iteration 3, reconstruction error: 0.20876216797118202, decrease = 1.637110891294924e-09
iteration 4, reconstruction error: 0.20876216633559247, decrease = 1.63558955268428e-09
PARAFAC2 reconstruction error=0.8189078999940005, variation=7.204106200475735e-10.
Starting iteration 2293
reconstruction error=0.20876216426649924
iteration 1, reconstruction error: 0.20876216262732383, decrease = 1.6391754065203656e-09
iteration 2, reconstruction error: 0.20876216098968828, decrease = 1.6376355549407862e-09
iteration 3, reconstruction error: 0.2087621593535725, decrease = 1.6361157706423768e-09
iteration 4, reconstruction error: 0.20876215771897347, decrease = 1.6345990394572851e-09
PARAFAC2 reconstruction error=0.818907899274028, variation=7.199725260420564e-10.
Starting iteration 2294
reconstruction error=0.2087621556511432
iteration 1, reconstruction error: 0.2087621540129645, decrease = 1.6381787038000084e-09
iteration 2, reconstruction error: 0.20876215237632717, decrease = 1.63663732566377e-09
iteration 3, reconstruction error: 0.20876215074120347, decrease = 1.6351237031031474e-09
iteration 4, reconstruction error: 0.20876214910758872, decrease = 1.633614743479228e-09
PARAFAC2 reconstruction error=0.8189078985544939, variation=7.195340989696319e-10.
Starting iteration 2295
reconstruction error=0.20876214704102689
iteration 1, reconstruction error: 0.20876214540384253, decrease = 1.6371843603035785e-09
iteration 2, reconstruction error: 0.20876214376819263, decrease = 1.6356498933056685e-09
iteration 3, reconstruction error: 0.20876214213406405, decrease = 1.6341285824506002e-09
iteration 4, reconstruction error: 0.20876214050144137, decrease = 1.6326226759399987e-09
PARAFAC2 reconstruction error=0.8189078978353972, variation=7.190966710979296e-10.
Starting iteration 2296
reconstruction error=0.20876213843614866
iteration 1, reconstruction error: 0.20876213679995634, decrease = 1.6361923205199247e-09
iteration 2, reconstruction error: 0.20876213516530157, decrease = 1.6346547726531213e-09
iteration 3, reconstruction error: 0.2087621335321589, decrease = 1.6331426766491575e-09
iteration 4, reconstruction error: 0.20876213190052748, decrease = 1.631631413312462e-09
PARAFAC2 reconstruction error=0.818907897116738, variation=7.186592432262273e-10.
Starting iteration 2297
reconstruction error=0.2087621298364908
iteration 1, reconstruction error: 0.2087621282012975, decrease = 1.6351933140867914e-09
iteration 2, reconstruction error: 0.20876212656763246, decrease = 1.6336650365822436e-09
iteration 3, reconstruction error: 0.2087621249354772, decrease = 1.6321552720466315e-09
iteration 4, reconstruction error: 0.20876212330483787, decrease = 1.630639318017657e-09
PARAFAC2 reconstruction error=0.8189078963985155, variation=7.182224814883398e-10.
Starting iteration 2298
reconstruction error=0.20876212124206725
iteration 1, reconstruction error: 0.20876211960786215, decrease = 1.6342051045725725e-09
iteration 2, reconstruction error: 0.2087621179751907, decrease = 1.6326714424863553e-09
iteration 3, reconstruction error: 0.20876211634402592, decrease = 1.6311647865752121e-09
iteration 4, reconstruction error: 0.20876211471436937, decrease = 1.6296565485962589e-09
PARAFAC2 reconstruction error=0.8189078956807297, variation=7.177857197504522e-10.
Starting iteration 2299
reconstruction error=0.20876211265285716
iteration 1, reconstruction error: 0.20876211101964948, decrease = 1.6332076802072493e-09
iteration 2, reconstruction error: 0.2087621093879647, decrease = 1.631684787284371e-09
iteration 3, reconstruction error: 0.20876210775778967, decrease = 1.6301750227487588e-09
iteration 4, reconstruction error: 0.2087621061291236, decrease = 1.6286660631248395e-09
PARAFAC2 reconstruction error=0.8189078949633801, variation=7.173496241463795e-10.
Starting iteration 2300
reconstruction error=0.2087621040688698
iteration 1, reconstruction error: 0.20876210243665033, decrease = 1.6322194706930304e-09
iteration 2, reconstruction error: 0.20876210080595525, decrease = 1.6306950789690688e-09
iteration 3, reconstruction error: 0.20876209917676997, decrease = 1.629185286677881e-09
iteration 4, reconstruction error: 0.20876209754908365, decrease = 1.6276863190611834e-09
PARAFAC2 reconstruction error=0.8189078942464667, variation=7.169134175200043e-10.
Starting iteration 2301
reconstruction error=0.20876209549009359
iteration 1, reconstruction error: 0.20876209385886307, decrease = 1.63123051177827e-09
iteration 2, reconstruction error: 0.20876209222915698, decrease = 1.6297060922987328e-09
iteration 3, reconstruction error: 0.20876209060095602, decrease = 1.6282009629442484e-09
iteration 4, reconstruction error: 0.2087620889742594, decrease = 1.6266966107458813e-09
PARAFAC2 reconstruction error=0.8189078935299882, variation=7.164785431612586e-10.
Starting iteration 2302
reconstruction error=0.20876208691651932
iteration 1, reconstruction error: 0.20876208528628468, decrease = 1.6302346417251812e-09
iteration 2, reconstruction error: 0.20876208365756757, decrease = 1.6287171056283967e-09
iteration 3, reconstruction error: 0.20876208203035246, decrease = 1.627215112653957e-09
iteration 4, reconstruction error: 0.20876208040464175, decrease = 1.6257107049444386e-09
PARAFAC2 reconstruction error=0.8189078928139456, variation=7.160425585794883e-10.
Starting iteration 2303
reconstruction error=0.20876207834816082
iteration 1, reconstruction error: 0.20876207671891212, decrease = 1.6292487081681628e-09
iteration 2, reconstruction error: 0.20876207509117778, decrease = 1.6277343362069985e-09
iteration 3, reconstruction error: 0.20876207346494932, decrease = 1.6262284574519725e-09
iteration 4, reconstruction error: 0.20876207184022139, decrease = 1.6247279355230404e-09
PARAFAC2 reconstruction error=0.818907892098337, variation=7.156085723991623e-10.
Starting iteration 2304
reconstruction error=0.20876206978499584
iteration 1, reconstruction error: 0.20876206815672912, decrease = 1.6282667159028819e-09
iteration 2, reconstruction error: 0.20876206652998913, decrease = 1.6267399927105686e-09
iteration 3, reconstruction error: 0.2087620649047458, decrease = 1.625243328806647e-09
iteration 4, reconstruction error: 0.2087620632809945, decrease = 1.6237513000838533e-09
PARAFAC2 reconstruction error=0.8189078913831634, variation=7.151735870181142e-10.
Starting iteration 2305
reconstruction error=0.20876206122702967
iteration 1, reconstruction error: 0.2087620595997496, decrease = 1.6272800607008975e-09
iteration 2, reconstruction error: 0.2087620579739986, decrease = 1.6257510060402325e-09
iteration 3, reconstruction error: 0.20876205634973266, decrease = 1.6242659439669183e-09
iteration 4, reconstruction error: 0.2087620547269649, decrease = 1.6227677535063378e-09
PARAFAC2 reconstruction error=0.8189078906684235, variation=7.147399339046956e-10.
Starting iteration 2306
reconstruction error=0.20876205267425157
iteration 1, reconstruction error: 0.20876205104796125, decrease = 1.6262903246300198e-09
iteration 2, reconstruction error: 0.20876204942318916, decrease = 1.6247720946438449e-09
iteration 3, reconstruction error: 0.20876204779990987, decrease = 1.6232792887649339e-09
iteration 4, reconstruction error: 0.20876204617812646, decrease = 1.6217834020171296e-09
PARAFAC2 reconstruction error=0.8189078899541177, variation=7.143058367020672e-10.
Starting iteration 2307
reconstruction error=0.2087620441266593
iteration 1, reconstruction error: 0.20876204250135638, decrease = 1.6253029200274938e-09
iteration 2, reconstruction error: 0.2087620408775679, decrease = 1.6237884925551782e-09
iteration 3, reconstruction error: 0.20876203925527137, decrease = 1.6222965193435357e-09
iteration 4, reconstruction error: 0.20876203763446383, decrease = 1.6208075437340597e-09
PARAFAC2 reconstruction error=0.8189078892402452, variation=7.13872516655556e-10.
Starting iteration 2308
reconstruction error=0.20876203558425047
iteration 1, reconstruction error: 0.20876203395993112, decrease = 1.6243193456944027e-09
iteration 2, reconstruction error: 0.20876203233712773, decrease = 1.6228033916654283e-09
iteration 3, reconstruction error: 0.208762030715814, decrease = 1.6213137221665619e-09
iteration 4, reconstruction error: 0.2087620290959846, decrease = 1.6198294094937893e-09
PARAFAC2 reconstruction error=0.8189078885268054, variation=7.134397517205571e-10.
Starting iteration 2309
reconstruction error=0.2087620270470243
iteration 1, reconstruction error: 0.2087620254236885, decrease = 1.6233357991168873e-09
iteration 2, reconstruction error: 0.20876202380186482, decrease = 1.6218236753573478e-09
iteration 3, reconstruction error: 0.20876202218153234, decrease = 1.6203324793018226e-09
iteration 4, reconstruction error: 0.20876202056267956, decrease = 1.6188527740546022e-09
PARAFAC2 reconstruction error=0.8189078878137985, variation=7.130068757632557e-10.
Starting iteration 2310
reconstruction error=0.20876201851497084
iteration 1, reconstruction error: 0.20876201689261786, decrease = 1.6223529741843379e-09
iteration 2, reconstruction error: 0.2087620152717731, decrease = 1.6208447639609602e-09
iteration 3, reconstruction error: 0.20876201365241648, decrease = 1.6193566210187527e-09
iteration 4, reconstruction error: 0.20876201203454728, decrease = 1.6178691997215111e-09
PARAFAC2 reconstruction error=0.8189078871012239, variation=7.125746659397691e-10.
Starting iteration 2311
reconstruction error=0.2087620099880885
iteration 1, reconstruction error: 0.20876200836671602, decrease = 1.6213724807201402e-09
iteration 2, reconstruction error: 0.20876200674685094, decrease = 1.6198650754084554e-09
iteration 3, reconstruction error: 0.20876200512847481, decrease = 1.618376127554555e-09
iteration 4, reconstruction error: 0.20876200351158222, decrease = 1.6168925920378996e-09
PARAFAC2 reconstruction error=0.8189078863890813, variation=7.12142567138585e-10.
Starting iteration 2312
reconstruction error=0.2087620014663658
iteration 1, reconstruction error: 0.20876199984597762, decrease = 1.6203881847420831e-09
iteration 2, reconstruction error: 0.20876199822709382, decrease = 1.6188838047881404e-09
iteration 3, reconstruction error: 0.20876199660969663, decrease = 1.6173971884025917e-09
iteration 4, reconstruction error: 0.20876199499377987, decrease = 1.6159167615104053e-09
PARAFAC2 reconstruction error=0.8189078856773702, variation=7.117111344712157e-10.
Starting iteration 2313
reconstruction error=0.20876199294980805
iteration 1, reconstruction error: 0.20876199133039958, decrease = 1.6194084684340027e-09
iteration 2, reconstruction error: 0.20876198971250165, decrease = 1.6178979267422733e-09
iteration 3, reconstruction error: 0.2087619880960749, decrease = 1.6164267424567669e-09
iteration 4, reconstruction error: 0.208761986481134, decrease = 1.6149409032273354e-09
PARAFAC2 reconstruction error=0.8189078849660902, variation=7.112799238484513e-10.
Starting iteration 2314
reconstruction error=0.20876198443840452
iteration 1, reconstruction error: 0.2087619828199773, decrease = 1.6184272255692633e-09
iteration 2, reconstruction error: 0.208761981203056, decrease = 1.6169212913030862e-09
iteration 3, reconstruction error: 0.20876197958760973, decrease = 1.6154462767481448e-09
iteration 4, reconstruction error: 0.2087619779736416, decrease = 1.6139681258131588e-09
PARAFAC2 reconstruction error=0.8189078842552412, variation=7.108490462925943e-10.
Starting iteration 2315
reconstruction error=0.20876197593216142
iteration 1, reconstruction error: 0.2087619743147139, decrease = 1.6174475092611829e-09
iteration 2, reconstruction error: 0.20876197269876692, decrease = 1.6159469873322507e-09
iteration 3, reconstruction error: 0.20876197108429498, decrease = 1.6144719450217337e-09
iteration 4, reconstruction error: 0.20876196947129882, decrease = 1.6129961533106751e-09
PARAFAC2 reconstruction error=0.8189078835448228, variation=7.104183907813422e-10.
Starting iteration 2316
reconstruction error=0.20876196743106631
iteration 1, reconstruction error: 0.20876196581459386, decrease = 1.6164724558898058e-09
iteration 2, reconstruction error: 0.20876196419962195, decrease = 1.614971906205298e-09
iteration 3, reconstruction error: 0.2087619625861297, decrease = 1.6134922564692289e-09
iteration 4, reconstruction error: 0.20876196097411173, decrease = 1.6120179635592535e-09
PARAFAC2 reconstruction error=0.8189078828348348, variation=7.09987957314695e-10.
Starting iteration 2317
reconstruction error=0.2087619589352082
iteration 1, reconstruction error: 0.2087619573197193, decrease = 1.6154888815567148e-09
iteration 2, reconstruction error: 0.20876195570572245, decrease = 1.613996852833921e-09
iteration 3, reconstruction error: 0.20876195409320378, decrease = 1.6125186741433595e-09
iteration 4, reconstruction error: 0.20876195248215315, decrease = 1.6110506262378976e-09
PARAFAC2 reconstruction error=0.8189078821252767, variation=7.095581899818626e-10.
Starting iteration 2318
reconstruction error=0.2087619504444014
iteration 1, reconstruction error: 0.2087619488298876, decrease = 1.6145138004297621e-09
iteration 2, reconstruction error: 0.20876194721686817, decrease = 1.6130194402386167e-09
iteration 3, reconstruction error: 0.2087619456053176, decrease = 1.6115505596658863e-09
iteration 4, reconstruction error: 0.20876194399524128, decrease = 1.6100763222670622e-09
PARAFAC2 reconstruction error=0.8189078814161476, variation=7.09129088782845e-10.
Starting iteration 2319
reconstruction error=0.20876194195872377
iteration 1, reconstruction error: 0.20876194034517964, decrease = 1.6135441316400545e-09
iteration 2, reconstruction error: 0.2087619387331376, decrease = 1.6120420553988879e-09
iteration 3, reconstruction error: 0.2087619371225621, decrease = 1.6105754785389337e-09
iteration 4, reconstruction error: 0.2087619355134578, decrease = 1.6091042942534273e-09
PARAFAC2 reconstruction error=0.8189078807074479, variation=7.0869965451692e-10.
Starting iteration 2320
reconstruction error=0.2087619334781779
iteration 1, reconstruction error: 0.2087619318656143, decrease = 1.6125636104202812e-09
iteration 2, reconstruction error: 0.20876193025454345, decrease = 1.6110708322969458e-09
iteration 3, reconstruction error: 0.20876192864493762, decrease = 1.6096058375048017e-09
iteration 4, reconstruction error: 0.20876192703680146, decrease = 1.6081361520203785e-09
PARAFAC2 reconstruction error=0.8189078799991771, variation=7.082707753625073e-10.
Starting iteration 2321
reconstruction error=0.20876192500276305
iteration 1, reconstruction error: 0.2087619233911722, decrease = 1.6115908607616802e-09
iteration 2, reconstruction error: 0.208761921781078, decrease = 1.6100941968577587e-09
iteration 3, reconstruction error: 0.20876192017244033, decrease = 1.6086376675161773e-09
iteration 4, reconstruction error: 0.20876191856527077, decrease = 1.6071695640995642e-09
PARAFAC2 reconstruction error=0.8189078792913347, variation=7.078424513196069e-10.
Starting iteration 2322
reconstruction error=0.20876191653247167
iteration 1, reconstruction error: 0.20876191492185509, decrease = 1.6106165845464204e-09
iteration 2, reconstruction error: 0.20876191331272748, decrease = 1.6091276089369444e-09
iteration 3, reconstruction error: 0.20876191170506334, decrease = 1.6076641407014591e-09
iteration 4, reconstruction error: 0.20876191009886266, decrease = 1.6062006724659739e-09
PARAFAC2 reconstruction error=0.8189078785839202, variation=7.074144603436139e-10.
Starting iteration 2323
reconstruction error=0.20876190806729977
iteration 1, reconstruction error: 0.20876190645765905, decrease = 1.6096407262633505e-09
iteration 2, reconstruction error: 0.20876190484949958, decrease = 1.6081594667038956e-09
iteration 3, reconstruction error: 0.20876190324280666, decrease = 1.606692917599517e-09
iteration 4, reconstruction error: 0.2087619016375718, decrease = 1.6052348617012768e-09
PARAFAC2 reconstruction error=0.8189078778769335, variation=7.069866914122258e-10.
Starting iteration 2324
reconstruction error=0.2087618996072467
iteration 1, reconstruction error: 0.20876189799857334, decrease = 1.608673361186419e-09
iteration 2, reconstruction error: 0.20876189639138587, decrease = 1.6071874664458363e-09
iteration 3, reconstruction error: 0.2087618947856603, decrease = 1.6057255802781611e-09
iteration 4, reconstruction error: 0.20876189318139898, decrease = 1.604261307130983e-09
PARAFAC2 reconstruction error=0.8189078771703743, variation=7.065592555477451e-10.
Starting iteration 2325
reconstruction error=0.20876189115229934
iteration 1, reconstruction error: 0.20876188954459954, decrease = 1.6076998066161252e-09
iteration 2, reconstruction error: 0.2087618879383817, decrease = 1.6062178254117043e-09
iteration 3, reconstruction error: 0.20876188633362433, decrease = 1.6047573825339612e-09
iteration 4, reconstruction error: 0.20876188473032264, decrease = 1.6033016858596483e-09
PARAFAC2 reconstruction error=0.8189078764642419, variation=7.061323747947768e-10.
Starting iteration 2326
reconstruction error=0.20876188270246157
iteration 1, reconstruction error: 0.20876188109573224, decrease = 1.6067293329147248e-09
iteration 2, reconstruction error: 0.20876187949048103, decrease = 1.6052512097353144e-09
iteration 3, reconstruction error: 0.2087618778866925, decrease = 1.6037885186559464e-09
iteration 4, reconstruction error: 0.2087618762843559, decrease = 1.6023365967399172e-09
PARAFAC2 reconstruction error=0.8189078757585363, variation=7.057056050641108e-10.
Starting iteration 2327
reconstruction error=0.20876187425772647
iteration 1, reconstruction error: 0.2087618726519637, decrease = 1.605762772749486e-09
iteration 2, reconstruction error: 0.20876187104768604, decrease = 1.6042776551650206e-09
iteration 3, reconstruction error: 0.2087618694448572, decrease = 1.6028288418734604e-09
iteration 4, reconstruction error: 0.2087618678434887, decrease = 1.6013684822624441e-09
PARAFAC2 reconstruction error=0.8189078750532569, variation=7.052793904449572e-10.
Starting iteration 2328
reconstruction error=0.20876186581809011
iteration 1, reconstruction error: 0.2087618642132955, decrease = 1.6047946027608617e-09
iteration 2, reconstruction error: 0.2087618626099821, decrease = 1.603313398712558e-09
iteration 3, reconstruction error: 0.208761861008126, decrease = 1.601856119970435e-09
iteration 4, reconstruction error: 0.20876185940771563, decrease = 1.6004103597921926e-09
PARAFAC2 reconstruction error=0.8189078743484033, variation=7.048536199150135e-10.
Starting iteration 2329
reconstruction error=0.20876185738354483
iteration 1, reconstruction error: 0.20876185577972067, decrease = 1.6038241568150369e-09
iteration 2, reconstruction error: 0.20876185417737464, decrease = 1.6023460336356266e-09
iteration 3, reconstruction error: 0.20876185257647512, decrease = 1.6008995240568424e-09
iteration 4, reconstruction error: 0.20876185097703365, decrease = 1.5994414681586022e-09
PARAFAC2 reconstruction error=0.8189078736439757, variation=7.044276273404648e-10.
Starting iteration 2330
reconstruction error=0.20876184895409688
iteration 1, reconstruction error: 0.20876184735124007, decrease = 1.602856819493681e-09
iteration 2, reconstruction error: 0.208761845749856, decrease = 1.6013840531403645e-09
iteration 3, reconstruction error: 0.2087618441499246, decrease = 1.5999314095793693e-09
iteration 4, reconstruction error: 0.20876184255144126, decrease = 1.5984833456883507e-09
PARAFAC2 reconstruction error=0.8189078729399731, variation=7.040025229443359e-10.
Starting iteration 2331
reconstruction error=0.2087618405297284
iteration 1, reconstruction error: 0.2087618389278382, decrease = 1.601890203817291e-09
iteration 2, reconstruction error: 0.20876183732742304, decrease = 1.600415161506774e-09
iteration 3, reconstruction error: 0.2087618357284544, decrease = 1.59896865192799e-09
iteration 4, reconstruction error: 0.20876183413092916, decrease = 1.5975252232180992e-09
PARAFAC2 reconstruction error=0.8189078722363956, variation=7.035775295705093e-10.
Starting iteration 2332
reconstruction error=0.20876183211044416
iteration 1, reconstruction error: 0.20876183050952132, decrease = 1.6009228387403596e-09
iteration 2, reconstruction error: 0.2087618289100666, decrease = 1.5994547353237465e-09
iteration 3, reconstruction error: 0.20876182731205606, decrease = 1.5980105294577385e-09
iteration 4, reconstruction error: 0.20876182571549817, decrease = 1.5965578858967433e-09
PARAFAC2 reconstruction error=0.8189078715332427, variation=7.031528692635902e-10.
Starting iteration 2333
reconstruction error=0.20876182369623406
iteration 1, reconstruction error: 0.20876182209627625, decrease = 1.5999578051317798e-09
iteration 2, reconstruction error: 0.2087618204977858, decrease = 1.5984904511157083e-09
iteration 3, reconstruction error: 0.20876181890074338, decrease = 1.5970424149802653e-09
iteration 4, reconstruction error: 0.20876181730513899, decrease = 1.5956043986076196e-09
PARAFAC2 reconstruction error=0.818907870830514, variation=7.027287640681834e-10.
Starting iteration 2334
reconstruction error=0.20876181528710197
iteration 1, reconstruction error: 0.20876181368810925, decrease = 1.5989927160120487e-09
iteration 2, reconstruction error: 0.20876181209057534, decrease = 1.5975339107132669e-09
iteration 3, reconstruction error: 0.20876181049449183, decrease = 1.5960835153538966e-09
iteration 4, reconstruction error: 0.20876180889985327, decrease = 1.594638560087347e-09
PARAFAC2 reconstruction error=0.818907870128209, variation=7.02304991939684e-10.
Starting iteration 2335
reconstruction error=0.20876180688304094
iteration 1, reconstruction error: 0.20876180528500865, decrease = 1.5980322898290211e-09
iteration 2, reconstruction error: 0.2087618036884421, decrease = 1.5965665456363354e-09
iteration 3, reconstruction error: 0.20876180209331746, decrease = 1.5951246434831035e-09
iteration 4, reconstruction error: 0.20876180049962853, decrease = 1.5936889308232338e-09
PARAFAC2 reconstruction error=0.8189078694263277, variation=7.01881330833487e-10.
Starting iteration 2336
reconstruction error=0.20876179848404175
iteration 1, reconstruction error: 0.2087617968869722, decrease = 1.5970695599332174e-09
iteration 2, reconstruction error: 0.20876179529136532, decrease = 1.5956068688538494e-09
iteration 3, reconstruction error: 0.20876179369719725, decrease = 1.5941680753250864e-09
iteration 4, reconstruction error: 0.20876179210447182, decrease = 1.5927254237713129e-09
PARAFAC2 reconstruction error=0.8189078687248694, variation=7.014582248388024e-10.
Starting iteration 2337
reconstruction error=0.20876179009010143
iteration 1, reconstruction error: 0.20876178849399535, decrease = 1.596106080636872e-09
iteration 2, reconstruction error: 0.20876178689934657, decrease = 1.5946487741391735e-09
iteration 3, reconstruction error: 0.20876178530614048, decrease = 1.5932060948298243e-09
iteration 4, reconstruction error: 0.20876178371436774, decrease = 1.591772741393882e-09
PARAFAC2 reconstruction error=0.818907868023834, variation=7.010354519110251e-10.
Starting iteration 2338
reconstruction error=0.20876178170121976
iteration 1, reconstruction error: 0.20876178010607566, decrease = 1.59514410014161e-09
iteration 2, reconstruction error: 0.20876177851238809, decrease = 1.5936875708000287e-09
iteration 3, reconstruction error: 0.20876177692013853, decrease = 1.592249554427383e-09
iteration 4, reconstruction error: 0.20876177532932086, decrease = 1.5908176720369482e-09
PARAFAC2 reconstruction error=0.8189078673232212, variation=7.006127900055503e-10.
Starting iteration 2339
reconstruction error=0.20876177331739615
iteration 1, reconstruction error: 0.2087617717232094, decrease = 1.5941867548274757e-09
iteration 2, reconstruction error: 0.20876177013047917, decrease = 1.5927302254858944e-09
iteration 3, reconstruction error: 0.20876176853918618, decrease = 1.5912929862693659e-09
iteration 4, reconstruction error: 0.20876176694932194, decrease = 1.5898642402589758e-09
PARAFAC2 reconstruction error=0.8189078666230306, variation=7.001905721892854e-10.
Starting iteration 2340
reconstruction error=0.2087617649386167
iteration 1, reconstruction error: 0.20876176334539112, decrease = 1.5932255792439065e-09
iteration 2, reconstruction error: 0.20876176175361666, decrease = 1.5917744622395702e-09
iteration 3, reconstruction error: 0.20876176016327563, decrease = 1.590341025536901e-09
iteration 4, reconstruction error: 0.20876175857437182, decrease = 1.5889038140759482e-09
PARAFAC2 reconstruction error=0.8189078659232616, variation=6.997690205068352e-10.
Starting iteration 2341
reconstruction error=0.20876175656488133
iteration 1, reconstruction error: 0.20876175497261387, decrease = 1.592267456773655e-09
iteration 2, reconstruction error: 0.20876175338179678, decrease = 1.5908170891698603e-09
iteration 3, reconstruction error: 0.20876175179241463, decrease = 1.589382153666108e-09
iteration 4, reconstruction error: 0.20876175020445661, decrease = 1.58795801508127e-09
PARAFAC2 reconstruction error=0.8189078652239146, variation=6.993470247351752e-10.
Starting iteration 2342
reconstruction error=0.20876174819619012
iteration 1, reconstruction error: 0.20876174660487926, decrease = 1.5913108608600623e-09
iteration 2, reconstruction error: 0.20876174501501793, decrease = 1.5898613259235361e-09
iteration 3, reconstruction error: 0.2087617434265885, decrease = 1.5884294435331014e-09
iteration 4, reconstruction error: 0.20876174183958934, decrease = 1.5869991432104769e-09
PARAFAC2 reconstruction error=0.8189078645249881, variation=6.989264722534472e-10.
Starting iteration 2343
reconstruction error=0.20876173983252846
iteration 1, reconstruction error: 0.20876173824217722, decrease = 1.5903512395887276e-09
iteration 2, reconstruction error: 0.20876173665327172, decrease = 1.5889055071660607e-09
iteration 3, reconstruction error: 0.2087617350657973, decrease = 1.5874744296873189e-09
iteration 4, reconstruction error: 0.2087617334797501, decrease = 1.586047182478012e-09
PARAFAC2 reconstruction error=0.8189078638264823, variation=6.985058087494167e-10.
Starting iteration 2344
reconstruction error=0.20876173147390478
iteration 1, reconstruction error: 0.20876172988450625, decrease = 1.5893985294557211e-09
iteration 2, reconstruction error: 0.20876172829655887, decrease = 1.5879473846958092e-09
iteration 3, reconstruction error: 0.20876172671003634, decrease = 1.5865225244660053e-09
iteration 4, reconstruction error: 0.20876172512493954, decrease = 1.5850968038133573e-09
PARAFAC2 reconstruction error=0.8189078631283974, variation=6.980849232007813e-10.
Starting iteration 2345
reconstruction error=0.20876172312031063
iteration 1, reconstruction error: 0.20876172153186714, decrease = 1.588443487854363e-09
iteration 2, reconstruction error: 0.20876171994487092, decrease = 1.5869962288750372e-09
iteration 3, reconstruction error: 0.20876171835929958, decrease = 1.5855713408896577e-09
iteration 4, reconstruction error: 0.2087617167751493, decrease = 1.584150283173713e-09
PARAFAC2 reconstruction error=0.8189078624307323, variation=6.976650368528681e-10.
Starting iteration 2346
reconstruction error=0.208761714771736
iteration 1, reconstruction error: 0.20876171318424827, decrease = 1.5874877246080388e-09
iteration 2, reconstruction error: 0.20876171159820553, decrease = 1.5860427415859135e-09
iteration 3, reconstruction error: 0.20876171001358768, decrease = 1.584617853600534e-09
iteration 4, reconstruction error: 0.208761708430387, decrease = 1.5832006816651756e-09
PARAFAC2 reconstruction error=0.8189078617334868, variation=6.972454835718622e-10.
Starting iteration 2347
reconstruction error=0.20876170642818007
iteration 1, reconstruction error: 0.20876170484165124, decrease = 1.58652882498167e-09
iteration 2, reconstruction error: 0.2087617032565558, decrease = 1.585095443790152e-09
iteration 3, reconstruction error: 0.20876170167288602, decrease = 1.5836697786486553e-09
iteration 4, reconstruction error: 0.20876170009063885, decrease = 1.5822471666204763e-09
PARAFAC2 reconstruction error=0.818907861036661, variation=6.968258192685539e-10.
Starting iteration 2348
reconstruction error=0.20876169808964523
iteration 1, reconstruction error: 0.208761696504066, decrease = 1.5855792234731325e-09
iteration 2, reconstruction error: 0.20876169491992483, decrease = 1.5841411793449112e-09
iteration 3, reconstruction error: 0.2087616933372047, decrease = 1.5827201216289666e-09
iteration 4, reconstruction error: 0.20876169175590328, decrease = 1.5813014231369493e-09
PARAFAC2 reconstruction error=0.8189078603402543, variation=6.964067100767579e-10.
Starting iteration 2349
reconstruction error=0.20876168975611525
iteration 1, reconstruction error: 0.20876168817149263, decrease = 1.5846226275595399e-09
iteration 2, reconstruction error: 0.20876168658830568, decrease = 1.5831869426552458e-09
iteration 3, reconstruction error: 0.2087616850065321, decrease = 1.5817735732337468e-09
iteration 4, reconstruction error: 0.20876168342617646, decrease = 1.5803556518978468e-09
PARAFAC2 reconstruction error=0.8189078596442662, variation=6.959881559964742e-10.
Starting iteration 2350
reconstruction error=0.20876168142759866
iteration 1, reconstruction error: 0.20876167984392793, decrease = 1.5836707223382263e-09
iteration 2, reconstruction error: 0.20876167826168832, decrease = 1.5822396171039088e-09
iteration 3, reconstruction error: 0.20876167668086665, decrease = 1.5808216680124332e-09
iteration 4, reconstruction error: 0.20876167510145757, decrease = 1.5794090757470514e-09
PARAFAC2 reconstruction error=0.8189078589486964, variation=6.95569712938493e-10.
Starting iteration 2351
reconstruction error=0.20876167310408852
iteration 1, reconstruction error: 0.20876167152135974, decrease = 1.5827287813685587e-09
iteration 2, reconstruction error: 0.2087616699400682, decrease = 1.5812915421520302e-09
iteration 3, reconstruction error: 0.20876166836019616, decrease = 1.57987203874832e-09
iteration 4, reconstruction error: 0.20876166678173358, decrease = 1.5784625828629828e-09
PARAFAC2 reconstruction error=0.8189078582535447, variation=6.951517139697216e-10.
Starting iteration 2352
reconstruction error=0.20876166478557398
iteration 1, reconstruction error: 0.20876166320379635, decrease = 1.5817776255477867e-09
iteration 2, reconstruction error: 0.20876166162345675, decrease = 1.580339609175141e-09
iteration 3, reconstruction error: 0.20876166004452817, decrease = 1.5789285712219936e-09
iteration 4, reconstruction error: 0.20876165846700984, decrease = 1.5775183381805391e-09
PARAFAC2 reconstruction error=0.8189078575588107, variation=6.947340480678577e-10.
Starting iteration 2353
reconstruction error=0.2087616564720528
iteration 1, reconstruction error: 0.20876165489123022, decrease = 1.5808225839464285e-09
iteration 2, reconstruction error: 0.20876165331183405, decrease = 1.57939616940439e-09
iteration 3, reconstruction error: 0.20876165173384814, decrease = 1.57798590860736e-09
iteration 4, reconstruction error: 0.20876165015727635, decrease = 1.5765717897853193e-09
PARAFAC2 reconstruction error=0.818907856864494, variation=6.943167152329011e-10.
Starting iteration 2354
reconstruction error=0.2087616481635273
iteration 1, reconstruction error: 0.20876164658364738, decrease = 1.5798799213317949e-09
iteration 2, reconstruction error: 0.20876164500520084, decrease = 1.578446540140277e-09
iteration 3, reconstruction error: 0.20876164342816222, decrease = 1.5770386108115986e-09
iteration 4, reconstruction error: 0.20876164185253238, decrease = 1.5756298488156517e-09
PARAFAC2 reconstruction error=0.8189078561705943, variation=6.938997154648519e-10.
Starting iteration 2355
reconstruction error=0.20876163985998353
iteration 1, reconstruction error: 0.20876163828105632, decrease = 1.5789272111987884e-09
iteration 2, reconstruction error: 0.20876163670355247, decrease = 1.5775038497700677e-09
iteration 3, reconstruction error: 0.20876163512745502, decrease = 1.5760974469980482e-09
iteration 4, reconstruction error: 0.2087616335527717, decrease = 1.5746833281760075e-09
PARAFAC2 reconstruction error=0.8189078554771114, variation=6.934828267191051e-10.
Starting iteration 2356
reconstruction error=0.20876163156142935
iteration 1, reconstruction error: 0.20876162998344328, decrease = 1.5779860751408137e-09
iteration 2, reconstruction error: 0.20876162840688753, decrease = 1.5765557470626135e-09
iteration 3, reconstruction error: 0.20876162683174046, decrease = 1.5751470683333935e-09
iteration 4, reconstruction error: 0.20876162525799283, decrease = 1.5737476322108535e-09
PARAFAC2 reconstruction error=0.8189078547840446, variation=6.930668261517781e-10.
Starting iteration 2357
reconstruction error=0.20876162326785228
iteration 1, reconstruction error: 0.20876162169081197, decrease = 1.5770403039017111e-09
iteration 2, reconstruction error: 0.2087616201152012, decrease = 1.5756107807352038e-09
iteration 3, reconstruction error: 0.2087616185409945, decrease = 1.5742066816759603e-09
iteration 4, reconstruction error: 0.20876161696818726, decrease = 1.5728072455534203e-09
PARAFAC2 reconstruction error=0.818907854091394, variation=6.926506035398461e-10.
Starting iteration 2358
reconstruction error=0.2087616149792501
iteration 1, reconstruction error: 0.2087616134031525, decrease = 1.576097613531502e-09
iteration 2, reconstruction error: 0.20876161182848904, decrease = 1.5746634551838667e-09
iteration 3, reconstruction error: 0.2087616102552196, decrease = 1.5732694313985718e-09
iteration 4, reconstruction error: 0.20876160868335583, decrease = 1.5718637780270939e-09
PARAFAC2 reconstruction error=0.818907853399159, variation=6.922350470617289e-10.
Starting iteration 2359
reconstruction error=0.2087616066956151
iteration 1, reconstruction error: 0.20876160512046557, decrease = 1.5751495385796233e-09
iteration 2, reconstruction error: 0.20876160354674173, decrease = 1.5737238456825509e-09
iteration 3, reconstruction error: 0.20876160197442117, decrease = 1.5723205515350003e-09
iteration 4, reconstruction error: 0.20876160040349542, decrease = 1.570925750593588e-09
PARAFAC2 reconstruction error=0.8189078527073392, variation=6.918197126282166e-10.
Starting iteration 2360
reconstruction error=0.2087615984169488
iteration 1, reconstruction error: 0.20876159684274812, decrease = 1.5742006864716274e-09
iteration 2, reconstruction error: 0.2087615952699654, decrease = 1.5727827096245761e-09
iteration 3, reconstruction error: 0.20876159369858213, decrease = 1.5713832735020361e-09
iteration 4, reconstruction error: 0.20876159212859058, decrease = 1.5699915534295172e-09
PARAFAC2 reconstruction error=0.8189078520159346, variation=6.914046002393093e-10.
Starting iteration 2361
reconstruction error=0.2087615901432489
iteration 1, reconstruction error: 0.20876158856998706, decrease = 1.5732618541264287e-09
iteration 2, reconstruction error: 0.20876158699814623, decrease = 1.5718408241660597e-09
iteration 3, reconstruction error: 0.20876158542769713, decrease = 1.5704491040935409e-09
iteration 4, reconstruction error: 0.20876158385865137, decrease = 1.569045754434839e-09
PARAFAC2 reconstruction error=0.8189078513249445, variation=6.909901539842167e-10.
Starting iteration 2362
reconstruction error=0.2087615818745039
iteration 1, reconstruction error: 0.2087615803021855, decrease = 1.5723183866001023e-09
iteration 2, reconstruction error: 0.2087615787312843, decrease = 1.5709012146647439e-09
iteration 3, reconstruction error: 0.20876157716177943, decrease = 1.5695048594110972e-09
iteration 4, reconstruction error: 0.20876157559367248, decrease = 1.568106949845216e-09
PARAFAC2 reconstruction error=0.8189078506343688, variation=6.905757077291241e-10.
Starting iteration 2363
reconstruction error=0.20876157361071526
iteration 1, reconstruction error: 0.208761572039338, decrease = 1.5713772505421275e-09
iteration 2, reconstruction error: 0.20876157046938099, decrease = 1.5699570254934514e-09
iteration 3, reconstruction error: 0.20876156890081188, decrease = 1.5685691079347919e-09
iteration 4, reconstruction error: 0.20876156733363604, decrease = 1.5671758335500385e-09
PARAFAC2 reconstruction error=0.8189078499442067, variation=6.901620386301488e-10.
Starting iteration 2364
reconstruction error=0.20876156535188076
iteration 1, reconstruction error: 0.2087615637814454, decrease = 1.5704353650836111e-09
iteration 2, reconstruction error: 0.20876156221242104, decrease = 1.5690243548860394e-09
iteration 3, reconstruction error: 0.2087615606447892, decrease = 1.5676318299018277e-09
iteration 4, reconstruction error: 0.20876155907855065, decrease = 1.5662385555170744e-09
PARAFAC2 reconstruction error=0.8189078492544587, variation=6.897480364642661e-10.
Starting iteration 2365
reconstruction error=0.20876155709798871
iteration 1, reconstruction error: 0.2087615555284945, decrease = 1.5694942012700608e-09
iteration 2, reconstruction error: 0.208761553960409, decrease = 1.5680855225408408e-09
iteration 3, reconstruction error: 0.20876155239371752, decrease = 1.5666914709999702e-09
iteration 4, reconstruction error: 0.2087615508284116, decrease = 1.565305912665238e-09
PARAFAC2 reconstruction error=0.8189078485651237, variation=6.893350334991055e-10.
Starting iteration 2366
reconstruction error=0.20876154884904158
iteration 1, reconstruction error: 0.20876154728048618, decrease = 1.5685553966804378e-09
iteration 2, reconstruction error: 0.2087615457133395, decrease = 1.5671466901956421e-09
iteration 3, reconstruction error: 0.2087615441475799, decrease = 1.5657595775486755e-09
iteration 4, reconstruction error: 0.2087615425832105, decrease = 1.564369411788391e-09
PARAFAC2 reconstruction error=0.8189078478762016, variation=6.88922030533945e-10.
Starting iteration 2367
reconstruction error=0.20876154060503005
iteration 1, reconstruction error: 0.20876153903741657, decrease = 1.5676134834663458e-09
iteration 2, reconstruction error: 0.20876153747120563, decrease = 1.5662109387193368e-09
iteration 3, reconstruction error: 0.20876153590638025, decrease = 1.5648253803846046e-09
iteration 4, reconstruction error: 0.2087615343429481, decrease = 1.5634321337554269e-09
PARAFAC2 reconstruction error=0.8189078471876924, variation=6.885092496133893e-10.
Starting iteration 2368
reconstruction error=0.20876153236596257
iteration 1, reconstruction error: 0.20876153079927942, decrease = 1.5666831443272855e-09
iteration 2, reconstruction error: 0.20876152923400576, decrease = 1.5652736606863726e-09
iteration 3, reconstruction error: 0.20876152767011918, decrease = 1.5638865757949816e-09
iteration 4, reconstruction error: 0.2087615261076159, decrease = 1.5625032934174499e-09
PARAFAC2 reconstruction error=0.8189078464995954, variation=6.88097023804346e-10.
Starting iteration 2369
reconstruction error=0.2087615241318169
iteration 1, reconstruction error: 0.20876152256607644, decrease = 1.5657404539570763e-09
iteration 2, reconstruction error: 0.20876152100173312, decrease = 1.5643433215473124e-09
iteration 3, reconstruction error: 0.20876151943877844, decrease = 1.5629546823436868e-09
iteration 4, reconstruction error: 0.20876151787720856, decrease = 1.5615698734094963e-09
PARAFAC2 reconstruction error=0.8189078458119103, variation=6.876850200399076e-10.
Starting iteration 2370
reconstruction error=0.20876151590259837
iteration 1, reconstruction error: 0.2087615143377952, decrease = 1.5648031759241121e-09
iteration 2, reconstruction error: 0.20876151277438915, decrease = 1.5634060435143482e-09
iteration 3, reconstruction error: 0.20876151121236788, decrease = 1.5620212623357332e-09
iteration 4, reconstruction error: 0.20876150965172835, decrease = 1.560639534270436e-09
PARAFAC2 reconstruction error=0.8189078451246365, variation=6.872737934315865e-10.
Starting iteration 2371
reconstruction error=0.20876150767830776
iteration 1, reconstruction error: 0.20876150611443414, decrease = 1.563873613941169e-09
iteration 2, reconstruction error: 0.20876150455196307, decrease = 1.5624710691941601e-09
iteration 3, reconstruction error: 0.20876150299087293, decrease = 1.5610901460405557e-09
iteration 4, reconstruction error: 0.20876150143116295, decrease = 1.559709972287493e-09
PARAFAC2 reconstruction error=0.8189078444377744, variation=6.868621227340554e-10.
Starting iteration 2372
reconstruction error=0.2087614994589312
iteration 1, reconstruction error: 0.2087614978959964, decrease = 1.5629347815959704e-09
iteration 2, reconstruction error: 0.2087614963344595, decrease = 1.561536899785665e-09
iteration 3, reconstruction error: 0.20876149477430203, decrease = 1.5601574754331438e-09
iteration 4, reconstruction error: 0.20876149321551776, decrease = 1.5587842683295605e-09
PARAFAC2 reconstruction error=0.8189078437513233, variation=6.864511181703392e-10.
Starting iteration 2373
reconstruction error=0.2087614912444733
iteration 1, reconstruction error: 0.2087614896824704, decrease = 1.5620028881446757e-09
iteration 2, reconstruction error: 0.20876148812186307, decrease = 1.5606073378027219e-09
iteration 3, reconstruction error: 0.20876148656263516, decrease = 1.5592279134502007e-09
iteration 4, reconstruction error: 0.20876148500478509, decrease = 1.5578500711654897e-09
PARAFAC2 reconstruction error=0.8189078430652825, variation=6.860407797404378e-10.
Starting iteration 2374
reconstruction error=0.20876148303492104
iteration 1, reconstruction error: 0.20876148147385465, decrease = 1.5610663872678288e-09
iteration 2, reconstruction error: 0.20876147991418, decrease = 1.5596746394397343e-09
iteration 3, reconstruction error: 0.20876147835588627, decrease = 1.5582937440417055e-09
iteration 4, reconstruction error: 0.20876147679895574, decrease = 1.5569305289453439e-09
PARAFAC2 reconstruction error=0.818907842379652, variation=6.856305523328388e-10.
Starting iteration 2375
reconstruction error=0.20876147483028054
iteration 1, reconstruction error: 0.20876147327014294, decrease = 1.560137602441003e-09
iteration 2, reconstruction error: 0.2087614717114017, decrease = 1.5587412471873563e-09
iteration 3, reconstruction error: 0.20876147015403063, decrease = 1.5573710654415152e-09
iteration 4, reconstruction error: 0.20876146859803427, decrease = 1.5559963595368487e-09
PARAFAC2 reconstruction error=0.8189078416944313, variation=6.852206579921472e-10.
Starting iteration 2376
reconstruction error=0.208761466630541
iteration 1, reconstruction error: 0.20876146507133603, decrease = 1.5592049595891666e-09
iteration 2, reconstruction error: 0.20876146351352284, decrease = 1.5578131840054965e-09
iteration 3, reconstruction error: 0.2087614619570782, decrease = 1.5564446398386167e-09
iteration 4, reconstruction error: 0.2087614604020138, decrease = 1.5550644105744027e-09
PARAFAC2 reconstruction error=0.8189078410096207, variation=6.848106526291531e-10.
Starting iteration 2377
reconstruction error=0.20876145843569782
iteration 1, reconstruction error: 0.20876145687742553, decrease = 1.5582722889817546e-09
iteration 2, reconstruction error: 0.20876145532054421, decrease = 1.5568813183097774e-09
iteration 3, reconstruction error: 0.2087614537650307, decrease = 1.5555135235434392e-09
iteration 4, reconstruction error: 0.20876145221088657, decrease = 1.5541441189537153e-09
PARAFAC2 reconstruction error=0.8189078403252191, variation=6.844015354445787e-10.
Starting iteration 2378
reconstruction error=0.20876145024575715
iteration 1, reconstruction error: 0.20876144868840907, decrease = 1.5573480838249054e-09
iteration 2, reconstruction error: 0.2087614471324573, decrease = 1.5559517563268344e-09
iteration 3, reconstruction error: 0.20876144557787027, decrease = 1.5545870424293895e-09
iteration 4, reconstruction error: 0.20876144402465108, decrease = 1.5532191921519e-09
PARAFAC2 reconstruction error=0.8189078396412263, variation=6.839928623492142e-10.
Starting iteration 2379
reconstruction error=0.20876144206069897
iteration 1, reconstruction error: 0.20876144050428583, decrease = 1.556413137260293e-09
iteration 2, reconstruction error: 0.20876143894925747, decrease = 1.555028356081678e-09
iteration 3, reconstruction error: 0.20876143739559772, decrease = 1.553659756403647e-09
iteration 4, reconstruction error: 0.2087614358433019, decrease = 1.5522958196623193e-09
PARAFAC2 reconstruction error=0.8189078389576423, variation=6.835839672092447e-10.
Starting iteration 2380
reconstruction error=0.20876143388053028
iteration 1, reconstruction error: 0.208761432325049, decrease = 1.5554812715645738e-09
iteration 2, reconstruction error: 0.20876143077094406, decrease = 1.5541049558365216e-09
iteration 3, reconstruction error: 0.20876142921821153, decrease = 1.5527325258890556e-09
iteration 4, reconstruction error: 0.20876142766683992, decrease = 1.5513716145054701e-09
PARAFAC2 reconstruction error=0.8189078382744666, variation=6.831757382030901e-10.
Starting iteration 2381
reconstruction error=0.20876142570524714
iteration 1, reconstruction error: 0.20876142415069004, decrease = 1.5545570941633002e-09
iteration 2, reconstruction error: 0.20876142259751546, decrease = 1.5531745889418858e-09
iteration 3, reconstruction error: 0.2087614210457071, decrease = 1.551808348487782e-09
iteration 4, reconstruction error: 0.208761419495255, decrease = 1.5504521000409e-09
PARAFAC2 reconstruction error=0.8189078375916987, variation=6.827678422638428e-10.
Starting iteration 2382
reconstruction error=0.2087614175348419
iteration 1, reconstruction error: 0.20876141598120976, decrease = 1.5536321396059094e-09
iteration 2, reconstruction error: 0.20876141442896007, decrease = 1.5522496898956462e-09
iteration 3, reconstruction error: 0.20876141287807357, decrease = 1.5508865025548602e-09
iteration 4, reconstruction error: 0.2087614113285472, decrease = 1.5495263683273919e-09
PARAFAC2 reconstruction error=0.8189078369093385, variation=6.823601683692004e-10.
Starting iteration 2383
reconstruction error=0.2087614093693122
iteration 1, reconstruction error: 0.20876140781660577, decrease = 1.552706435647977e-09
iteration 2, reconstruction error: 0.20876140626528178, decrease = 1.5513239859377137e-09
iteration 3, reconstruction error: 0.20876140471532023, decrease = 1.5499615479974693e-09
iteration 4, reconstruction error: 0.20876140316671649, decrease = 1.5486037452383528e-09
PARAFAC2 reconstruction error=0.8189078362273854, variation=6.819531606083729e-10.
Starting iteration 2384
reconstruction error=0.2087614012086512
iteration 1, reconstruction error: 0.20876139965687046, decrease = 1.5517807316900445e-09
iteration 2, reconstruction error: 0.20876139810647296, decrease = 1.550397504823664e-09
iteration 3, reconstruction error: 0.2087613965574302, decrease = 1.5490427551778652e-09
iteration 4, reconstruction error: 0.20876139500974752, decrease = 1.5476826764615481e-09
PARAFAC2 reconstruction error=0.8189078355458397, variation=6.815457087583354e-10.
Starting iteration 2385
reconstruction error=0.2087613930528565
iteration 1, reconstruction error: 0.208761391502003, decrease = 1.5508534734198776e-09
iteration 2, reconstruction error: 0.20876138995252583, decrease = 1.549477185447401e-09
iteration 3, reconstruction error: 0.20876138840440878, decrease = 1.5481170512199327e-09
iteration 4, reconstruction error: 0.20876138685764797, decrease = 1.5467608027730506e-09
PARAFAC2 reconstruction error=0.8189078348647003, variation=6.811393671313226e-10.
Starting iteration 2386
reconstruction error=0.20876138490192972
iteration 1, reconstruction error: 0.20876138335199654, decrease = 1.5499331817991902e-09
iteration 2, reconstruction error: 0.20876138180344433, decrease = 1.5485522031344345e-09
iteration 3, reconstruction error: 0.20876138025624602, decrease = 1.5471983139114798e-09
iteration 4, reconstruction error: 0.2087613787104001, decrease = 1.5458459234896083e-09
PARAFAC2 reconstruction error=0.8189078341839671, variation=6.807332475489147e-10.
Starting iteration 2387
reconstruction error=0.20876137675585696
iteration 1, reconstruction error: 0.2087613752068526, decrease = 1.5490043692167887e-09
iteration 2, reconstruction error: 0.2087613736592199, decrease = 1.5476326886698644e-09
iteration 3, reconstruction error: 0.20876137211294038, decrease = 1.5462795210918756e-09
iteration 4, reconstruction error: 0.2087613705680171, decrease = 1.5449232726449935e-09
PARAFAC2 reconstruction error=0.8189078335036402, variation=6.803269059219019e-10.
Starting iteration 2388
reconstruction error=0.20876136861464517
iteration 1, reconstruction error: 0.20876136706655957, decrease = 1.5480856041527602e-09
iteration 2, reconstruction error: 0.2087613655198472, decrease = 1.5467123692936013e-09
iteration 3, reconstruction error: 0.20876136397448875, decrease = 1.545358452315071e-09
iteration 4, reconstruction error: 0.20876136243048116, decrease = 1.5440075884498583e-09
PARAFAC2 reconstruction error=0.8189078328237187, variation=6.799214524733088e-10.
Starting iteration 2389
reconstruction error=0.20876136047828195
iteration 1, reconstruction error: 0.20876135893111974, decrease = 1.5471622039076038e-09
iteration 2, reconstruction error: 0.20876135738532692, decrease = 1.5457928270734556e-09
iteration 3, reconstruction error: 0.20876135584088493, decrease = 1.5444419909638185e-09
iteration 4, reconstruction error: 0.2087613542977961, decrease = 1.5430888233858298e-09
PARAFAC2 reconstruction error=0.8189078321442026, variation=6.795161100470182e-10.
Starting iteration 2390
reconstruction error=0.2087613523467651
iteration 1, reconstruction error: 0.20876135080052247, decrease = 1.5462426339318824e-09
iteration 2, reconstruction error: 0.20876134925565223, decrease = 1.544870231739992e-09
iteration 3, reconstruction error: 0.20876134771212979, decrease = 1.5435224487436727e-09
iteration 4, reconstruction error: 0.20876134616995512, decrease = 1.5421746657473534e-09
PARAFAC2 reconstruction error=0.8189078314650916, variation=6.791109896653325e-10.
Starting iteration 2391
reconstruction error=0.20876134422009227
iteration 1, reconstruction error: 0.20876134267476992, decrease = 1.545322342311195e-09
iteration 2, reconstruction error: 0.20876134113081773, decrease = 1.5439521883209295e-09
iteration 3, reconstruction error: 0.20876133958821327, decrease = 1.5426044608357614e-09
iteration 4, reconstruction error: 0.20876133804695352, decrease = 1.5412597587083354e-09
PARAFAC2 reconstruction error=0.818907830786385, variation=6.78706646439764e-10.
Starting iteration 2392
reconstruction error=0.20876133609826036
iteration 1, reconstruction error: 0.20876133455385912, decrease = 1.5444012457788148e-09
iteration 2, reconstruction error: 0.2087613330108218, decrease = 1.5430373090374871e-09
iteration 3, reconstruction error: 0.2087613314691346, decrease = 1.5416872223283917e-09
iteration 4, reconstruction error: 0.20876132992878893, decrease = 1.5403456565810103e-09
PARAFAC2 reconstruction error=0.8189078301080828, variation=6.78302192191893e-10.
Starting iteration 2393
reconstruction error=0.20876132798126176
iteration 1, reconstruction error: 0.2087613264377785, decrease = 1.5434832578709035e-09
iteration 2, reconstruction error: 0.20876132489566074, decrease = 1.5421177668173414e-09
iteration 3, reconstruction error: 0.20876132335488998, decrease = 1.5407707609771393e-09
iteration 4, reconstruction error: 0.20876132181545692, decrease = 1.5394330532547684e-09
PARAFAC2 reconstruction error=0.8189078294301846, variation=6.778981820332319e-10.
Starting iteration 2394
reconstruction error=0.20876131986909638
iteration 1, reconstruction error: 0.2087613183265319, decrease = 1.542564492806875e-09
iteration 2, reconstruction error: 0.20876131678533444, decrease = 1.5411974474410783e-09
iteration 3, reconstruction error: 0.2087613152454724, decrease = 1.5398620434314836e-09
iteration 4, reconstruction error: 0.20876131370695353, decrease = 1.5385188678607165e-09
PARAFAC2 reconstruction error=0.81890782875269, variation=6.774946159637807e-10.
Starting iteration 2395
reconstruction error=0.20876131176175727
iteration 1, reconstruction error: 0.20876131022011385, decrease = 1.5416434240300703e-09
iteration 2, reconstruction error: 0.20876130867982903, decrease = 1.5402848163592608e-09
iteration 3, reconstruction error: 0.2087613071408842, decrease = 1.5389448326796895e-09
iteration 4, reconstruction error: 0.20876130560328024, decrease = 1.5376039608216985e-09
PARAFAC2 reconstruction error=0.8189078280755988, variation=6.770911609166319e-10.
Starting iteration 2396
reconstruction error=0.20876130365924375
iteration 1, reconstruction error: 0.2087613021185137, decrease = 1.5407300435477111e-09
iteration 2, reconstruction error: 0.20876130057914533, decrease = 1.539368382763584e-09
iteration 3, reconstruction error: 0.20876129904111543, decrease = 1.538029897885096e-09
iteration 4, reconstruction error: 0.20876129750442252, decrease = 1.536692911807691e-09
PARAFAC2 reconstruction error=0.8189078273989107, variation=6.76688149958693e-10.
Starting iteration 2397
reconstruction error=0.20876129556155346
iteration 1, reconstruction error: 0.20876129402173987, decrease = 1.5398135821964587e-09
iteration 2, reconstruction error: 0.20876129248328176, decrease = 1.5384581109056938e-09
iteration 3, reconstruction error: 0.20876129094616294, decrease = 1.537118821115513e-09
iteration 4, reconstruction error: 0.20876128941038105, decrease = 1.5357818905492593e-09
PARAFAC2 reconstruction error=0.8189078267226252, variation=6.762854720676614e-10.
Starting iteration 2398
reconstruction error=0.20876128746867564
iteration 1, reconstruction error: 0.2087612859297739, decrease = 1.538901756026334e-09
iteration 2, reconstruction error: 0.20876128439223146, decrease = 1.5375424267105586e-09
iteration 3, reconstruction error: 0.20876128285602755, decrease = 1.536203914076495e-09
iteration 4, reconstruction error: 0.20876128132115596, decrease = 1.5348715909357935e-09
PARAFAC2 reconstruction error=0.8189078260467421, variation=6.758831272435373e-10.
Starting iteration 2399
reconstruction error=0.208761279380611
iteration 1, reconstruction error: 0.20876127784262266, decrease = 1.5379883477883993e-09
iteration 2, reconstruction error: 0.20876127630599206, decrease = 1.536630600540434e-09
iteration 3, reconstruction error: 0.20876127477070383, decrease = 1.5352882298813597e-09
iteration 4, reconstruction error: 0.20876127323673943, decrease = 1.5339643999467967e-09
PARAFAC2 reconstruction error=0.8189078253712611, variation=6.75481004464018e-10.
Starting iteration 2400
reconstruction error=0.2087612712973581
iteration 1, reconstruction error: 0.20876126976028386, decrease = 1.5370742456610742e-09
iteration 2, reconstruction error: 0.20876126822456667, decrease = 1.5357171923024993e-09
iteration 3, reconstruction error: 0.20876126669017944, decrease = 1.5343872283857252e-09
iteration 4, reconstruction error: 0.20876126515712842, decrease = 1.5330510194644376e-09
PARAFAC2 reconstruction error=0.8189078246961815, variation=6.750795478183136e-10.
Starting iteration 2401
reconstruction error=0.20876126321889765
iteration 1, reconstruction error: 0.20876126168274295, decrease = 1.5361547034409284e-09
iteration 2, reconstruction error: 0.20876126014793986, decrease = 1.5348030901751741e-09
iteration 3, reconstruction error: 0.20876125861446063, decrease = 1.5334792324850355e-09
iteration 4, reconstruction error: 0.20876125708231758, decrease = 1.5321430513193235e-09
PARAFAC2 reconstruction error=0.8189078240215037, variation=6.746777581057017e-10.
Starting iteration 2402
reconstruction error=0.2087612551452512
iteration 1, reconstruction error: 0.2087612536100014, decrease = 1.5352498161647077e-09
iteration 2, reconstruction error: 0.20876125207610938, decrease = 1.5338920134055911e-09
iteration 3, reconstruction error: 0.20876125054354353, decrease = 1.5325658520026764e-09
iteration 4, reconstruction error: 0.20876124901230533, decrease = 1.5312381917986784e-09
PARAFAC2 reconstruction error=0.8189078233472269, variation=6.742768565715096e-10.
Starting iteration 2403
reconstruction error=0.20876124707639487
iteration 1, reconstruction error: 0.20876124554205922, decrease = 1.5343356585262313e-09
iteration 2, reconstruction error: 0.20876124400907825, decrease = 1.5329809643915837e-09
iteration 3, reconstruction error: 0.20876124247741648, decrease = 1.5316617696381485e-09
iteration 4, reconstruction error: 0.20876124094708784, decrease = 1.5303286415857542e-09
PARAFAC2 reconstruction error=0.8189078226733506, variation=6.738762881042248e-10.
Starting iteration 2404
reconstruction error=0.20876123901233412
iteration 1, reconstruction error: 0.20876123747890798, decrease = 1.5334261360688828e-09
iteration 2, reconstruction error: 0.20876123594683266, decrease = 1.5320753277148214e-09
iteration 3, reconstruction error: 0.20876123441608427, decrease = 1.5307483891557894e-09
iteration 4, reconstruction error: 0.20876123288665818, decrease = 1.5294260857778852e-09
PARAFAC2 reconstruction error=0.8189078219998749, variation=6.734757196369401e-10.
Starting iteration 2405
reconstruction error=0.20876123095305887
iteration 1, reconstruction error: 0.2087612294205484, decrease = 1.5325104796293232e-09
iteration 2, reconstruction error: 0.20876122788937873, decrease = 1.5311696632824834e-09
iteration 3, reconstruction error: 0.20876122635953756, decrease = 1.529841170411217e-09
iteration 4, reconstruction error: 0.20876122483101558, decrease = 1.5285219756577817e-09
PARAFAC2 reconstruction error=0.8189078213267992, variation=6.730757062811676e-10.
Starting iteration 2406
reconstruction error=0.20876122289857527
iteration 1, reconstruction error: 0.20876122136697048, decrease = 1.5316047874414096e-09
iteration 2, reconstruction error: 0.20876121983671034, decrease = 1.5302601408251348e-09
iteration 3, reconstruction error: 0.20876121830777017, decrease = 1.5289401689155824e-09
iteration 4, reconstruction error: 0.20876121678015463, decrease = 1.5276155340693265e-09
PARAFAC2 reconstruction error=0.8189078206541232, variation=6.726760259923026e-10.
Starting iteration 2407
reconstruction error=0.20876121484886717
iteration 1, reconstruction error: 0.20876121331816955, decrease = 1.5306976242079884e-09
iteration 2, reconstruction error: 0.20876121178881663, decrease = 1.5293529220805624e-09
iteration 3, reconstruction error: 0.20876121026078906, decrease = 1.5280275655893405e-09
iteration 4, reconstruction error: 0.20876120873407378, decrease = 1.5267152819742336e-09
PARAFAC2 reconstruction error=0.8189078199818468, variation=6.722763457034375e-10.
Starting iteration 2408
reconstruction error=0.2087612068039339
iteration 1, reconstruction error: 0.20876120527415118, decrease = 1.5297827171689704e-09
iteration 2, reconstruction error: 0.20876120374570006, decrease = 1.528451115673235e-09
iteration 3, reconstruction error: 0.20876120221857197, decrease = 1.5271280906503648e-09
iteration 4, reconstruction error: 0.2087612006927716, decrease = 1.5258003749352156e-09
PARAFAC2 reconstruction error=0.8189078193099693, variation=6.718775535929922e-10.
Starting iteration 2409
reconstruction error=0.20876119876378224
iteration 1, reconstruction error: 0.20876119723490363, decrease = 1.528878607048867e-09
iteration 2, reconstruction error: 0.20876119570736046, decrease = 1.5275431752836965e-09
iteration 3, reconstruction error: 0.20876119418113806, decrease = 1.5262223984624512e-09
iteration 4, reconstruction error: 0.20876119265623175, decrease = 1.524906312333485e-09
PARAFAC2 reconstruction error=0.8189078186384908, variation=6.714784284156394e-10.
Starting iteration 2410
reconstruction error=0.20876119072839458
iteration 1, reconstruction error: 0.20876118920041856, decrease = 1.5279760234854223e-09
iteration 2, reconstruction error: 0.20876118767378335, decrease = 1.5266352071385825e-09
iteration 3, reconstruction error: 0.20876118614846428, decrease = 1.525319065498465e-09
iteration 4, reconstruction error: 0.20876118462446133, decrease = 1.524002951613923e-09
PARAFAC2 reconstruction error=0.8189078179674107, variation=6.710800803944039e-10.
Starting iteration 2411
reconstruction error=0.20876118269777472
iteration 1, reconstruction error: 0.20876118117070436, decrease = 1.5270703590530843e-09
iteration 2, reconstruction error: 0.20876117964497407, decrease = 1.5257302921067861e-09
iteration 3, reconstruction error: 0.20876117812055522, decrease = 1.5244188411589477e-09
iteration 4, reconstruction error: 0.20876117659745638, decrease = 1.5230988414938196e-09
PARAFAC2 reconstruction error=0.8189078172967288, variation=6.706819544177733e-10.
Starting iteration 2412
reconstruction error=0.20876117467191496
iteration 1, reconstruction error: 0.2087611731457549, decrease = 1.5261600594396185e-09
iteration 2, reconstruction error: 0.20876117162092483, decrease = 1.5248300677672688e-09
iteration 3, reconstruction error: 0.20876117009740935, decrease = 1.5235154804393858e-09
iteration 4, reconstruction error: 0.20876116857520538, decrease = 1.522203973980396e-09
PARAFAC2 reconstruction error=0.8189078166264446, variation=6.702841615080501e-10.
Starting iteration 2413
reconstruction error=0.20876116665081537
iteration 1, reconstruction error: 0.20876116512555631, decrease = 1.525259057943984e-09
iteration 2, reconstruction error: 0.2087611636016273, decrease = 1.523929010760483e-09
iteration 3, reconstruction error: 0.2087611620790167, decrease = 1.522610593163165e-09
iteration 4, reconstruction error: 0.20876116055771068, decrease = 1.5213060255980793e-09
PARAFAC2 reconstruction error=0.818907815956558, variation=6.698865906429319e-10.
Starting iteration 2414
reconstruction error=0.2087611586344697
iteration 1, reconstruction error: 0.20876115711011783, decrease = 1.5243518669549871e-09
iteration 2, reconstruction error: 0.20876115558709138, decrease = 1.523026454952614e-09
iteration 3, reconstruction error: 0.2087611540653741, decrease = 1.521717279961976e-09
iteration 4, reconstruction error: 0.20876115254497143, decrease = 1.5204026648785174e-09
PARAFAC2 reconstruction error=0.8189078152870688, variation=6.694892418224185e-10.
Starting iteration 2415
reconstruction error=0.2087611506228742
iteration 1, reconstruction error: 0.20876114909942028, decrease = 1.5234539185726703e-09
iteration 2, reconstruction error: 0.2087611475772964, decrease = 1.5221238713891694e-09
iteration 3, reconstruction error: 0.2087611460564825, decrease = 1.5208139192424142e-09
iteration 4, reconstruction error: 0.2087611445369808, decrease = 1.5195016911384585e-09
PARAFAC2 reconstruction error=0.8189078146179763, variation=6.690924481134175e-10.
Starting iteration 2416
reconstruction error=0.20876114261602802
iteration 1, reconstruction error: 0.20876114109347357, decrease = 1.5225544436336946e-09
iteration 2, reconstruction error: 0.20876113957224995, decrease = 1.5212236192940765e-09
iteration 3, reconstruction error: 0.2087611380523363, decrease = 1.5199136671473212e-09
iteration 4, reconstruction error: 0.2087611365337256, decrease = 1.5186106816500455e-09
PARAFAC2 reconstruction error=0.8189078139492802, variation=6.686960984936263e-10.
Starting iteration 2417
reconstruction error=0.2087611346139219
iteration 1, reconstruction error: 0.2087611330922716, decrease = 1.5216503057580155e-09
iteration 2, reconstruction error: 0.2087611315719482, decrease = 1.5203233949545591e-09
iteration 3, reconstruction error: 0.2087611300529294, decrease = 1.5190187996338977e-09
iteration 4, reconstruction error: 0.20876112853521359, decrease = 1.517715814136622e-09
PARAFAC2 reconstruction error=0.8189078132809805, variation=6.682997488738351e-10.
Starting iteration 2418
reconstruction error=0.20876112661655444
iteration 1, reconstruction error: 0.2087611250958067, decrease = 1.5207477499501465e-09
iteration 2, reconstruction error: 0.20876112357637971, decrease = 1.5194269731289012e-09
iteration 3, reconstruction error: 0.20876112205825959, decrease = 1.518120129606615e-09
iteration 4, reconstruction error: 0.20876112054144405, decrease = 1.5168155342859535e-09
PARAFAC2 reconstruction error=0.8189078126130768, variation=6.679037323209513e-10.
Starting iteration 2419
reconstruction error=0.20876111862392244
iteration 1, reconstruction error: 0.20876111710407264, decrease = 1.5198498015678297e-09
iteration 2, reconstruction error: 0.20876111558554822, decrease = 1.5185244173210322e-09
iteration 3, reconstruction error: 0.20876111406832065, decrease = 1.5172275658059675e-09
iteration 4, reconstruction error: 0.20876111255239999, decrease = 1.51592066677253e-09
PARAFAC2 reconstruction error=0.8189078119455684, variation=6.675083819018823e-10.
Starting iteration 2420
reconstruction error=0.20876111063602126
iteration 1, reconstruction error: 0.20876110911707327, decrease = 1.5189479951605023e-09
iteration 2, reconstruction error: 0.20876110759944452, decrease = 1.5176287448959158e-09
iteration 3, reconstruction error: 0.2087611060831118, decrease = 1.5163327260481196e-09
iteration 4, reconstruction error: 0.2087611045680898, decrease = 1.5150219967452472e-09
PARAFAC2 reconstruction error=0.8189078112784555, variation=6.671129204605108e-10.
Starting iteration 2421
reconstruction error=0.20876110265284945
iteration 1, reconstruction error: 0.20876110113479707, decrease = 1.5180523782465372e-09
iteration 2, reconstruction error: 0.20876109961806702, decrease = 1.5167300471130574e-09
iteration 3, reconstruction error: 0.20876109810263224, decrease = 1.5154347776658028e-09
iteration 4, reconstruction error: 0.20876109658849665, decrease = 1.5141355946823865e-09
PARAFAC2 reconstruction error=0.8189078106117376, variation=6.667179031083492e-10.
Starting iteration 2422
reconstruction error=0.2087610946743993
iteration 1, reconstruction error: 0.20876109315724564, decrease = 1.517153652708103e-09
iteration 2, reconstruction error: 0.2087610916414112, decrease = 1.5158344301990923e-09
iteration 3, reconstruction error: 0.20876109012686897, decrease = 1.514542241620731e-09
iteration 4, reconstruction error: 0.20876108861363132, decrease = 1.5132376463000696e-09
PARAFAC2 reconstruction error=0.818907809945414, variation=6.663235518900024e-10.
Starting iteration 2423
reconstruction error=0.2087610867006669
iteration 1, reconstruction error: 0.20876108518441275, decrease = 1.5162541500135518e-09
iteration 2, reconstruction error: 0.2087610836694693, decrease = 1.514943448466255e-09
iteration 3, reconstruction error: 0.20876108215582737, decrease = 1.5136419340144869e-09
iteration 4, reconstruction error: 0.2087610806434776, decrease = 1.5123497731917013e-09
PARAFAC2 reconstruction error=0.818907809279485, variation=6.659289786270506e-10.
Starting iteration 2424
reconstruction error=0.2087610787316554
iteration 1, reconstruction error: 0.20876107721629533, decrease = 1.5153600596562455e-09
iteration 2, reconstruction error: 0.20876107570224983, decrease = 1.5140455000839381e-09
iteration 3, reconstruction error: 0.2087610741894981, decrease = 1.5127517294377668e-09
iteration 4, reconstruction error: 0.20876107267804167, decrease = 1.5114564322349366e-09
PARAFAC2 reconstruction error=0.81890780861395, variation=6.655350714979136e-10.
Starting iteration 2425
reconstruction error=0.2087610707673563
iteration 1, reconstruction error: 0.20876106925289106, decrease = 1.5144652476539733e-09
iteration 2, reconstruction error: 0.20876106773973732, decrease = 1.5131537411949836e-09
iteration 3, reconstruction error: 0.20876106622788124, decrease = 1.511856084768226e-09
iteration 4, reconstruction error: 0.20876106471731504, decrease = 1.510566199902641e-09
PARAFAC2 reconstruction error=0.8189078079488087, variation=6.65141275391079e-10.
Starting iteration 2426
reconstruction error=0.20876106280775955
iteration 1, reconstruction error: 0.20876106129419228, decrease = 1.5135672715160808e-09
iteration 2, reconstruction error: 0.20876105978193496, decrease = 1.5122573193693256e-09
iteration 3, reconstruction error: 0.208761058270966, decrease = 1.5109689610603994e-09
iteration 4, reconstruction error: 0.20876105676129078, decrease = 1.5096752181698037e-09
PARAFAC2 reconstruction error=0.8189078072840605, variation=6.647481454180593e-10.
Starting iteration 2427
reconstruction error=0.20876105485287524
iteration 1, reconstruction error: 0.20876105334019818, decrease = 1.5126770669393608e-09
iteration 2, reconstruction error: 0.20876105182882956, decrease = 1.5113686135936888e-09
iteration 3, reconstruction error: 0.20876105031875392, decrease = 1.5100756478592103e-09
iteration 4, reconstruction error: 0.20876104880996818, decrease = 1.5087857352380496e-09
PARAFAC2 reconstruction error=0.8189078066197056, variation=6.64354904422737e-10.
Starting iteration 2428
reconstruction error=0.20876104690268948
iteration 1, reconstruction error: 0.20876104539090573, decrease = 1.5117837537381718e-09
iteration 2, reconstruction error: 0.20876104388043043, decrease = 1.5104753003924998e-09
iteration 3, reconstruction error: 0.20876104237124654, decrease = 1.5091838889702558e-09
iteration 4, reconstruction error: 0.20876104086335026, decrease = 1.5078962800618712e-09
PARAFAC2 reconstruction error=0.8189078059557433, variation=6.639623295612296e-10.
Starting iteration 2429
reconstruction error=0.2087610389572007
iteration 1, reconstruction error: 0.20876103744630564, decrease = 1.510895047962535e-09
iteration 2, reconstruction error: 0.2087610359367221, decrease = 1.5095835415035452e-09
iteration 3, reconstruction error: 0.20876103442842922, decrease = 1.5082928794818429e-09
iteration 4, reconstruction error: 0.20876103292142162, decrease = 1.50700760204181e-09
PARAFAC2 reconstruction error=0.8189078052921736, variation=6.635697546997221e-10.
Starting iteration 2430
reconstruction error=0.20876103101640126
iteration 1, reconstruction error: 0.2087610295064003, decrease = 1.5100009576052287e-09
iteration 2, reconstruction error: 0.20876102799771004, decrease = 1.5086902560579318e-09
iteration 3, reconstruction error: 0.20876102649030123, decrease = 1.5074088088873339e-09
iteration 4, reconstruction error: 0.20876102498418306, decrease = 1.5061181746212071e-09
PARAFAC2 reconstruction error=0.8189078046289957, variation=6.631778459720294e-10.
Starting iteration 2431
reconstruction error=0.20876102308029337
iteration 1, reconstruction error: 0.20876102157118728, decrease = 1.5091060900918052e-09
iteration 2, reconstruction error: 0.2087610200633865, decrease = 1.5078007731261778e-09
iteration 3, reconstruction error: 0.2087610185568656, decrease = 1.5065209080233899e-09
iteration 4, reconstruction error: 0.20876101705162997, decrease = 1.505235630583357e-09
PARAFAC2 reconstruction error=0.8189078039662095, variation=6.627861592889417e-10.
Starting iteration 2432
reconstruction error=0.20876101514887482
iteration 1, reconstruction error: 0.20876101364066205, decrease = 1.5082127768906162e-09
iteration 2, reconstruction error: 0.20876101213374532, decrease = 1.5069167302872444e-09
iteration 3, reconstruction error: 0.20876101062811234, decrease = 1.5056329794038703e-09
iteration 4, reconstruction error: 0.20876100912376153, decrease = 1.5043508105883063e-09
PARAFAC2 reconstruction error=0.8189078033038153, variation=6.62394250561249e-10.
Starting iteration 2433
reconstruction error=0.20876100722213486
iteration 1, reconstruction error: 0.2087610057148061, decrease = 1.5073287618072584e-09
iteration 2, reconstruction error: 0.20876100420878194, decrease = 1.506024166486597e-09
iteration 3, reconstruction error: 0.20876100270404072, decrease = 1.5047412205149158e-09
iteration 4, reconstruction error: 0.20876100120057167, decrease = 1.5034690437065734e-09
PARAFAC2 reconstruction error=0.818907802641812, variation=6.620033410342785e-10.
Starting iteration 2434
reconstruction error=0.20876099930007805
iteration 1, reconstruction error: 0.20876099779363952, decrease = 1.5064385294749627e-09
iteration 2, reconstruction error: 0.20876099628850017, decrease = 1.5051393464915463e-09
iteration 3, reconstruction error: 0.2087609947846376, decrease = 1.5038625622576518e-09
iteration 4, reconstruction error: 0.20876099328205724, decrease = 1.5025803656865122e-09
PARAFAC2 reconstruction error=0.8189078019801994, variation=6.616125425296104e-10.
Starting iteration 2435
reconstruction error=0.20876099138268972
iteration 1, reconstruction error: 0.20876098987713912, decrease = 1.5055506008554431e-09
iteration 2, reconstruction error: 0.20876098837288462, decrease = 1.50425449874092e-09
iteration 3, reconstruction error: 0.20876098686991537, decrease = 1.5029692490564628e-09
iteration 4, reconstruction error: 0.20876098536821597, decrease = 1.5016994037164721e-09
PARAFAC2 reconstruction error=0.8189078013189773, variation=6.612220770918498e-10.
Starting iteration 2436
reconstruction error=0.20876098346997451
iteration 1, reconstruction error: 0.2087609819653134, decrease = 1.504661117923689e-09
iteration 2, reconstruction error: 0.20876098046194755, decrease = 1.5033658484764345e-09
iteration 3, reconstruction error: 0.20876097895985618, decrease = 1.502091367955316e-09
iteration 4, reconstruction error: 0.20876097745904393, decrease = 1.5008122522530698e-09
PARAFAC2 reconstruction error=0.8189078006581457, variation=6.608316116540891e-10.
Starting iteration 2437
reconstruction error=0.20876097556192863
iteration 1, reconstruction error: 0.20876097405815078, decrease = 1.503777852240873e-09
iteration 2, reconstruction error: 0.20876097255566822, decrease = 1.5024825550380427e-09
iteration 3, reconstruction error: 0.20876097105446634, decrease = 1.501201885023562e-09
iteration 4, reconstruction error: 0.20876096955453352, decrease = 1.4999328168396886e-09
PARAFAC2 reconstruction error=0.8189077999977039, variation=6.604418123501432e-10.
Starting iteration 2438
reconstruction error=0.2087609676585428
iteration 1, reconstruction error: 0.20876096615565287, decrease = 1.5028899236213533e-09
iteration 2, reconstruction error: 0.20876096465405902, decrease = 1.501593849262406e-09
iteration 3, reconstruction error: 0.20876096315373655, decrease = 1.5003224773657564e-09
iteration 4, reconstruction error: 0.20876096165468777, decrease = 1.4990487740007552e-09
PARAFAC2 reconstruction error=0.8189077993376515, variation=6.600524571354072e-10.
Starting iteration 2439
reconstruction error=0.2087609597598163
iteration 1, reconstruction error: 0.20876095825781196, decrease = 1.5020043264701854e-09
iteration 2, reconstruction error: 0.2087609567571006, decrease = 1.500711360735707e-09
iteration 3, reconstruction error: 0.2087609552576622, decrease = 1.4994384067712474e-09
iteration 4, reconstruction error: 0.20876095375948978, decrease = 1.4981724194562673e-09
PARAFAC2 reconstruction error=0.8189077986779884, variation=6.596631019206711e-10.
Starting iteration 2440
reconstruction error=0.20876095186574747
iteration 1, reconstruction error: 0.20876095036463105, decrease = 1.5011164256062415e-09
iteration 2, reconstruction error: 0.20876094886479993, decrease = 1.499831120410633e-09
iteration 3, reconstruction error: 0.2087609473662394, decrease = 1.4985605256701007e-09
iteration 4, reconstruction error: 0.20876094586895258, decrease = 1.4972868223050995e-09
PARAFAC2 reconstruction error=0.8189077980187144, variation=6.5927396875054e-10.
Starting iteration 2441
reconstruction error=0.20876094397632958
iteration 1, reconstruction error: 0.20876094247609334, decrease = 1.5002362407923187e-09
iteration 2, reconstruction error: 0.20876094097714937, decrease = 1.4989439689472306e-09
iteration 3, reconstruction error: 0.20876093947947288, decrease = 1.4976764828311673e-09
iteration 4, reconstruction error: 0.2087609379830616, decrease = 1.4964112726723044e-09
PARAFAC2 reconstruction error=0.8189077973598289, variation=6.588855017142237e-10.
Starting iteration 2442
reconstruction error=0.20876093609156163
iteration 1, reconstruction error: 0.20876093459220718, decrease = 1.4993544461550101e-09
iteration 2, reconstruction error: 0.20876093309414645, decrease = 1.49806073101999e-09
iteration 3, reconstruction error: 0.2087609315973494, decrease = 1.496797047417786e-09
iteration 4, reconstruction error: 0.20876093010181912, decrease = 1.4955302829466888e-09
PARAFAC2 reconstruction error=0.8189077967013316, variation=6.584972567225122e-10.
Starting iteration 2443
reconstruction error=0.2087609282114361
iteration 1, reconstruction error: 0.20876092671296645, decrease = 1.4984696539155351e-09
iteration 2, reconstruction error: 0.20876092521578518, decrease = 1.4971812678510332e-09
iteration 3, reconstruction error: 0.20876092371986446, decrease = 1.4959207206288738e-09
iteration 4, reconstruction error: 0.2087609222252144, decrease = 1.4946500703771903e-09
PARAFAC2 reconstruction error=0.8189077960432226, variation=6.581090117308008e-10.
Starting iteration 2444
reconstruction error=0.20876092033595675
iteration 1, reconstruction error: 0.20876091883836653, decrease = 1.497590218502154e-09
iteration 2, reconstruction error: 0.20876091734206315, decrease = 1.4963033867498865e-09
iteration 3, reconstruction error: 0.20876091584702727, decrease = 1.4950358728782476e-09
iteration 4, reconstruction error: 0.20876091435325123, decrease = 1.4937760473010542e-09
PARAFAC2 reconstruction error=0.8189077953855014, variation=6.577212108282993e-10.
Starting iteration 2445
reconstruction error=0.20876091246510514
iteration 1, reconstruction error: 0.20876091096839977, decrease = 1.4967053707515277e-09
iteration 2, reconstruction error: 0.20876090947297657, decrease = 1.4954232019359637e-09
iteration 3, reconstruction error: 0.20876090797881627, decrease = 1.494160295489877e-09
iteration 4, reconstruction error: 0.20876090648591733, decrease = 1.4928989433560247e-09
PARAFAC2 reconstruction error=0.8189077947281674, variation=6.5733396503731e-10.
Starting iteration 2446
reconstruction error=0.20876090459889435
iteration 1, reconstruction error: 0.20876090310306838, decrease = 1.495825963093722e-09
iteration 2, reconstruction error: 0.20876090160852617, decrease = 1.494542212210348e-09
iteration 3, reconstruction error: 0.20876090011523912, decrease = 1.493287049569858e-09
iteration 4, reconstruction error: 0.2087608986232173, decrease = 1.4920218116554196e-09
PARAFAC2 reconstruction error=0.8189077940712204, variation=6.569470523132281e-10.
Starting iteration 2447
reconstruction error=0.20876089673731052
iteration 1, reconstruction error: 0.20876089524236324, decrease = 1.4949472770808825e-09
iteration 2, reconstruction error: 0.20876089374869888, decrease = 1.4936643588647769e-09
iteration 3, reconstruction error: 0.20876089225629052, decrease = 1.4924083635570184e-09
iteration 4, reconstruction error: 0.20876089076514426, decrease = 1.4911462620226246e-09
PARAFAC2 reconstruction error=0.8189077934146604, variation=6.565600285668438e-10.
Starting iteration 2448
reconstruction error=0.2087608888803567
iteration 1, reconstruction error: 0.20876088738628423, decrease = 1.494072476848629e-09
iteration 2, reconstruction error: 0.20876088589349776, decrease = 1.4927864777636302e-09
iteration 3, reconstruction error: 0.20876088440196575, decrease = 1.4915320090125306e-09
iteration 4, reconstruction error: 0.20876088291169737, decrease = 1.4902683809214778e-09
PARAFAC2 reconstruction error=0.8189077927584867, variation=6.561736709542743e-10.
Starting iteration 2449
reconstruction error=0.2087608810280168
iteration 1, reconstruction error: 0.20876087953483144, decrease = 1.4931853531408024e-09
iteration 2, reconstruction error: 0.2087608780429167, decrease = 1.4919147306446945e-09
iteration 3, reconstruction error: 0.20876087655226255, decrease = 1.4906541556669595e-09
iteration 4, reconstruction error: 0.20876087506286592, decrease = 1.4893966338025422e-09
PARAFAC2 reconstruction error=0.8189077921026993, variation=6.557874243640072e-10.
Starting iteration 2450
reconstruction error=0.20876087318030231
iteration 1, reconstruction error: 0.20876087168798943, decrease = 1.4923128843769007e-09
iteration 2, reconstruction error: 0.2087608701969557, decrease = 1.4910337409190788e-09
iteration 3, reconstruction error: 0.20876086870717636, decrease = 1.4897793276791305e-09
iteration 4, reconstruction error: 0.20876086721864834, decrease = 1.488528023063651e-09
PARAFAC2 reconstruction error=0.8189077914472975, variation=6.554017328852524e-10.
Starting iteration 2451
reconstruction error=0.20876086533719784
iteration 1, reconstruction error: 0.2087608638457644, decrease = 1.4914334489635195e-09
iteration 2, reconstruction error: 0.20876086235560698, decrease = 1.4901574141301666e-09
iteration 3, reconstruction error: 0.20876086086670012, decrease = 1.4889068589152288e-09
iteration 4, reconstruction error: 0.20876085937904537, decrease = 1.4876547493880565e-09
PARAFAC2 reconstruction error=0.8189077907922814, variation=6.550161524288001e-10.
Starting iteration 2452
reconstruction error=0.20876085749870185
iteration 1, reconstruction error: 0.20876085600814787, decrease = 1.4905539857945627e-09
iteration 2, reconstruction error: 0.20876085451886603, decrease = 1.489281836741796e-09
iteration 3, reconstruction error: 0.20876085303083167, decrease = 1.4880343623957515e-09
iteration 4, reconstruction error: 0.2087608515440494, decrease = 1.4867822806241549e-09
PARAFAC2 reconstruction error=0.8189077901376505, variation=6.546309050392551e-10.
Starting iteration 2453
reconstruction error=0.20876084966482747
iteration 1, reconstruction error: 0.20876084817514443, decrease = 1.4896830435873198e-09
iteration 2, reconstruction error: 0.2087608466867289, decrease = 1.488415529715681e-09
iteration 3, reconstruction error: 0.20876084519956778, decrease = 1.4871611164757326e-09
iteration 4, reconstruction error: 0.2087608437136634, decrease = 1.4859043717674325e-09
PARAFAC2 reconstruction error=0.8189077894834045, variation=6.542459907166176e-10.
Starting iteration 2454
reconstruction error=0.20876084183554616
iteration 1, reconstruction error: 0.20876084034674022, decrease = 1.4888059396422904e-09
iteration 2, reconstruction error: 0.2087608388591972, decrease = 1.4875430331962036e-09
iteration 3, reconstruction error: 0.2087608373729101, decrease = 1.4862870933995964e-09
iteration 4, reconstruction error: 0.20876083588787203, decrease = 1.4850380647413175e-09
PARAFAC2 reconstruction error=0.8189077888295428, variation=6.538616315054924e-10.
Starting iteration 2455
reconstruction error=0.20876083401086487
iteration 1, reconstruction error: 0.2087608325229345, decrease = 1.4879303622539197e-09
iteration 2, reconstruction error: 0.20876083103626472, decrease = 1.4866697872761847e-09
iteration 3, reconstruction error: 0.2087608295508486, decrease = 1.485416123436778e-09
iteration 4, reconstruction error: 0.20876082806667992, decrease = 1.4841686768463092e-09
PARAFAC2 reconstruction error=0.8189077881760659, variation=6.534769392274598e-10.
Starting iteration 2456
reconstruction error=0.20876082619078054
iteration 1, reconstruction error: 0.20876082470372034, decrease = 1.4870601972027941e-09
iteration 2, reconstruction error: 0.20876082321792921, decrease = 1.4857911290189207e-09
iteration 3, reconstruction error: 0.20876082173338095, decrease = 1.4845482620984285e-09
iteration 4, reconstruction error: 0.20876082025008014, decrease = 1.4833008155079597e-09
PARAFAC2 reconstruction error=0.8189077875229728, variation=6.530931351278468e-10.
Starting iteration 2457
reconstruction error=0.2087608183752908
iteration 1, reconstruction error: 0.20876081688910234, decrease = 1.486188477839434e-09
iteration 2, reconstruction error: 0.20876081540418143, decrease = 1.484920908456644e-09
iteration 3, reconstruction error: 0.20876081392050638, decrease = 1.4836750439339852e-09
iteration 4, reconstruction error: 0.2087608124380719, decrease = 1.482434480726269e-09
PARAFAC2 reconstruction error=0.8189077868702632, variation=6.527095530728388e-10.
Starting iteration 2458
reconstruction error=0.20876081056439036
iteration 1, reconstruction error: 0.20876080907907282, decrease = 1.4853175356321913e-09
iteration 2, reconstruction error: 0.20876080759502205, decrease = 1.484050771161094e-09
iteration 3, reconstruction error: 0.20876080611221565, decrease = 1.4828064054395185e-09
iteration 4, reconstruction error: 0.20876080463065289, decrease = 1.481562761362909e-09
PARAFAC2 reconstruction error=0.8189077862179373, variation=6.523259710178309e-10.
Starting iteration 2459
reconstruction error=0.20876080275807532
iteration 1, reconstruction error: 0.20876080127362792, decrease = 1.4844473983366413e-09
iteration 2, reconstruction error: 0.2087607997904489, decrease = 1.4831790240421583e-09
iteration 3, reconstruction error: 0.20876079830851035, decrease = 1.481938544101169e-09
iteration 4, reconstruction error: 0.20876079682781234, decrease = 1.4806980086490285e-09
PARAFAC2 reconstruction error=0.8189077855659944, variation=6.519428330520327e-10.
Starting iteration 2460
reconstruction error=0.2087607949563364
iteration 1, reconstruction error: 0.20876079347276463, decrease = 1.4835717654371194e-09
iteration 2, reconstruction error: 0.20876079199045033, decrease = 1.4823142990838534e-09
iteration 3, reconstruction error: 0.20876079050938276, decrease = 1.4810675741383506e-09
iteration 4, reconstruction error: 0.20876078902955186, decrease = 1.4798308967112206e-09
PARAFAC2 reconstruction error=0.8189077849144342, variation=6.515602501977469e-10.
Starting iteration 2461
reconstruction error=0.20876078715918753
iteration 1, reconstruction error: 0.20876078567648207, decrease = 1.4827054584110044e-09
iteration 2, reconstruction error: 0.20876078419503566, decrease = 1.4814464099899283e-09
iteration 3, reconstruction error: 0.20876078271482898, decrease = 1.4802066794494806e-09
iteration 4, reconstruction error: 0.20876078123586747, decrease = 1.4789615088162122e-09
PARAFAC2 reconstruction error=0.8189077842632562, variation=6.511780004103684e-10.
Starting iteration 2462
reconstruction error=0.2087607793665994
iteration 1, reconstruction error: 0.20876077788476796, decrease = 1.4818314353348683e-09
iteration 2, reconstruction error: 0.20876077640419247, decrease = 1.480575495538261e-09
iteration 3, reconstruction error: 0.2087607749248552, decrease = 1.4793372637988966e-09
iteration 4, reconstruction error: 0.2087607734467523, decrease = 1.4781028900845428e-09
PARAFAC2 reconstruction error=0.8189077836124605, variation=6.507956396006875e-10.
Starting iteration 2463
reconstruction error=0.20876077157858897
iteration 1, reconstruction error: 0.20876077009762614, decrease = 1.4809628245959772e-09
iteration 2, reconstruction error: 0.20876076861791854, decrease = 1.479707606444336e-09
iteration 3, reconstruction error: 0.20876076713944142, decrease = 1.4784771185105683e-09
iteration 4, reconstruction error: 0.2087607656622056, decrease = 1.4772358059023105e-09
PARAFAC2 reconstruction error=0.8189077829620468, variation=6.504137228802165e-10.
Starting iteration 2464
reconstruction error=0.20876076379514008
iteration 1, reconstruction error: 0.2087607623150459, decrease = 1.4800941861015104e-09
iteration 2, reconstruction error: 0.2087607608362046, decrease = 1.478841299418221e-09
iteration 3, reconstruction error: 0.20876075935859842, decrease = 1.4776061763033255e-09
iteration 4, reconstruction error: 0.20876075788222506, decrease = 1.476373356901206e-09
PARAFAC2 reconstruction error=0.8189077823120146, variation=6.500322502489553e-10.
Starting iteration 2465
reconstruction error=0.2087607560162628
iteration 1, reconstruction error: 0.20876075453703416, decrease = 1.479228628475937e-09
iteration 2, reconstruction error: 0.2087607530590553, decrease = 1.4779788504171165e-09
iteration 3, reconstruction error: 0.20876075158231314, decrease = 1.4767421729899866e-09
iteration 4, reconstruction error: 0.208760750106803, decrease = 1.4755101307439844e-09
PARAFAC2 reconstruction error=0.8189077816623636, variation=6.49650999662299e-10.
Starting iteration 2466
reconstruction error=0.20876074824194313
iteration 1, reconstruction error: 0.20876074676358003, decrease = 1.4783630986059393e-09
iteration 2, reconstruction error: 0.20876074528646751, decrease = 1.4771125156354259e-09
iteration 3, reconstruction error: 0.2087607438105878, decrease = 1.4758797239888821e-09
iteration 4, reconstruction error: 0.20876074233593936, decrease = 1.4746484311434216e-09
PARAFAC2 reconstruction error=0.8189077810130934, variation=6.492701931648526e-10.
Starting iteration 2467
reconstruction error=0.20876074047217422
iteration 1, reconstruction error: 0.2087607389946813, decrease = 1.477492905799238e-09
iteration 2, reconstruction error: 0.2087607375184328, decrease = 1.476248512322087e-09
iteration 3, reconstruction error: 0.20876073604341708, decrease = 1.4750157206755432e-09
iteration 4, reconstruction error: 0.20876073456962568, decrease = 1.4737913944795622e-09
PARAFAC2 reconstruction error=0.818907780364204, variation=6.488893866674061e-10.
Starting iteration 2468
reconstruction error=0.20876073270696224
iteration 1, reconstruction error: 0.20876073123033334, decrease = 1.4766289024858992e-09
iteration 2, reconstruction error: 0.20876072975494803, decrease = 1.475385313920441e-09
iteration 3, reconstruction error: 0.2087607282807971, decrease = 1.474150940206087e-09
iteration 4, reconstruction error: 0.2087607268078643, decrease = 1.4729327757478927e-09
PARAFAC2 reconstruction error=0.8189077797156948, variation=6.48509135281472e-10.
Starting iteration 2469
reconstruction error=0.20876072494629797
iteration 1, reconstruction error: 0.20876072347053615, decrease = 1.475761818303667e-09
iteration 2, reconstruction error: 0.20876072199600945, decrease = 1.4745266951887714e-09
iteration 3, reconstruction error: 0.20876072052271943, decrease = 1.4732900177616415e-09
iteration 4, reconstruction error: 0.20876071905065144, decrease = 1.4720679952784366e-09
PARAFAC2 reconstruction error=0.8189077790675657, variation=6.481291059401428e-10.
Starting iteration 2470
reconstruction error=0.20876071719017678
iteration 1, reconstruction error: 0.2087607157152774, decrease = 1.4748993693025625e-09
iteration 2, reconstruction error: 0.20876071424161935, decrease = 1.4736580566943047e-09
iteration 3, reconstruction error: 0.20876071276918637, decrease = 1.472432981097782e-09
iteration 4, reconstruction error: 0.20876071129797544, decrease = 1.4712109308590016e-09
PARAFAC2 reconstruction error=0.8189077784198162, variation=6.477495206880235e-10.
Starting iteration 2471
reconstruction error=0.2087607094386032
iteration 1, reconstruction error: 0.20876070796456242, decrease = 1.4740407783264686e-09
iteration 2, reconstruction error: 0.20876070649176529, decrease = 1.4727971342498591e-09
iteration 3, reconstruction error: 0.20876070502019556, decrease = 1.4715697271849848e-09
iteration 4, reconstruction error: 0.2087607035498486, decrease = 1.4703469553012383e-09
PARAFAC2 reconstruction error=0.8189077777724462, variation=6.473700464582066e-10.
Starting iteration 2472
reconstruction error=0.20876070169156197
iteration 1, reconstruction error: 0.2087607002183829, decrease = 1.4731790787259058e-09
iteration 2, reconstruction error: 0.20876069874645128, decrease = 1.4719316043798614e-09
iteration 3, reconstruction error: 0.2087606972757371, decrease = 1.4707141893222087e-09
iteration 4, reconstruction error: 0.20876069580624643, decrease = 1.4694906680379205e-09
PARAFAC2 reconstruction error=0.8189077771254551, variation=6.469910163175996e-10.
Starting iteration 2473
reconstruction error=0.20876069394905836
iteration 1, reconstruction error: 0.2087606924767402, decrease = 1.4723181562814602e-09
iteration 2, reconstruction error: 0.2087606910056657, decrease = 1.4710745122048507e-09
iteration 3, reconstruction error: 0.208760689535807, decrease = 1.4698586792150081e-09
iteration 4, reconstruction error: 0.208760688067178, decrease = 1.4686289961929333e-09
PARAFAC2 reconstruction error=0.818907776478843, variation=6.46612097199295e-10.
Starting iteration 2474
reconstruction error=0.20876068621108168
iteration 1, reconstruction error: 0.20876068473962675, decrease = 1.4714549301242386e-09
iteration 2, reconstruction error: 0.20876068326941388, decrease = 1.4702128681154392e-09
iteration 3, reconstruction error: 0.20876068180041843, decrease = 1.4689954530577864e-09
iteration 4, reconstruction error: 0.2087606803326419, decrease = 1.4677765391990505e-09
PARAFAC2 reconstruction error=0.8189077758326094, variation=6.462336221702003e-10.
Starting iteration 2475
reconstruction error=0.20876067847763805
iteration 1, reconstruction error: 0.20876067700704173, decrease = 1.470596311392569e-09
iteration 2, reconstruction error: 0.2087606755376867, decrease = 1.469355026539887e-09
iteration 3, reconstruction error: 0.20876067406954754, decrease = 1.4681391657944687e-09
iteration 4, reconstruction error: 0.20876067260262726, decrease = 1.4669202796913083e-09
PARAFAC2 reconstruction error=0.8189077751867541, variation=6.458553691857105e-10.
Starting iteration 2476
reconstruction error=0.2087606707487144
iteration 1, reconstruction error: 0.2087606692789759, decrease = 1.4697384975725925e-09
iteration 2, reconstruction error: 0.20876066781048025, decrease = 1.4684956584076758e-09
iteration 3, reconstruction error: 0.2087606663431966, decrease = 1.4672836556872682e-09
iteration 4, reconstruction error: 0.20876066487712877, decrease = 1.4660678226974255e-09
PARAFAC2 reconstruction error=0.8189077745412763, variation=6.454777823350355e-10.
Starting iteration 2477
reconstruction error=0.2087606630243069
iteration 1, reconstruction error: 0.20876066155543163, decrease = 1.4688752714153708e-09
iteration 2, reconstruction error: 0.2087606600877892, decrease = 1.4676424242576758e-09
iteration 3, reconstruction error: 0.20876065862136722, decrease = 1.466421983842281e-09
iteration 4, reconstruction error: 0.20876065715615572, decrease = 1.4652115076785321e-09
PARAFAC2 reconstruction error=0.8189077738961765, variation=6.450997513951506e-10.
Starting iteration 2478
reconstruction error=0.20876065530442242
iteration 1, reconstruction error: 0.20876065383640116, decrease = 1.4680212601092535e-09
iteration 2, reconstruction error: 0.20876065236961266, decrease = 1.4667884962182853e-09
iteration 3, reconstruction error: 0.20876065090404622, decrease = 1.4655664459795048e-09
iteration 4, reconstruction error: 0.20876064943969022, decrease = 1.4643559975713316e-09
PARAFAC2 reconstruction error=0.8189077732514536, variation=6.447229417005929e-10.
Starting iteration 2479
reconstruction error=0.2087606475890425
iteration 1, reconstruction error: 0.20876064612188444, decrease = 1.4671580617076074e-09
iteration 2, reconstruction error: 0.20876064465595384, decrease = 1.4659305991315819e-09
iteration 3, reconstruction error: 0.2087606431912398, decrease = 1.4647140444967732e-09
iteration 4, reconstruction error: 0.20876064172773237, decrease = 1.463507426358035e-09
PARAFAC2 reconstruction error=0.8189077726071078, variation=6.443457989391277e-10.
Starting iteration 2480
reconstruction error=0.20876063987817875
iteration 1, reconstruction error: 0.20876063841187234, decrease = 1.4663064096254175e-09
iteration 2, reconstruction error: 0.20876063694680264, decrease = 1.4650697044427119e-09
iteration 3, reconstruction error: 0.20876063548293872, decrease = 1.4638639189712421e-09
iteration 4, reconstruction error: 0.20876063402028527, decrease = 1.4626534428074933e-09
PARAFAC2 reconstruction error=0.8189077719631391, variation=6.439686561776625e-10.
Starting iteration 2481
reconstruction error=0.20876063217181645
iteration 1, reconstruction error: 0.20876063070637021, decrease = 1.4654462365815135e-09
iteration 2, reconstruction error: 0.20876062924215294, decrease = 1.4642172752044047e-09
iteration 3, reconstruction error: 0.20876062777914456, decrease = 1.463008381108466e-09
iteration 4, reconstruction error: 0.20876062631734196, decrease = 1.4618025956369962e-09
PARAFAC2 reconstruction error=0.8189077713195462, variation=6.435929567061294e-10.
Starting iteration 2482
reconstruction error=0.2087606244699557
iteration 1, reconstruction error: 0.20876062300536266, decrease = 1.464593030187089e-09
iteration 2, reconstruction error: 0.20876062154199782, decrease = 1.4633648459660975e-09
iteration 3, reconstruction error: 0.2087606200798434, decrease = 1.4621544253135e-09
iteration 4, reconstruction error: 0.208760618618894, decrease = 1.4609493892425718e-09
PARAFAC2 reconstruction error=0.8189077706763297, variation=6.43216480078479e-10.
Starting iteration 2483
reconstruction error=0.20876061677259794
iteration 1, reconstruction error: 0.20876061530885734, decrease = 1.4637406009487819e-09
iteration 2, reconstruction error: 0.2087606138463449, decrease = 1.462512444483366e-09
iteration 3, reconstruction error: 0.20876061238504293, decrease = 1.4613019683196171e-09
iteration 4, reconstruction error: 0.20876061092494677, decrease = 1.4600961550925717e-09
PARAFAC2 reconstruction error=0.8189077700334889, variation=6.428407806069458e-10.
Starting iteration 2484
reconstruction error=0.20876060907973018
iteration 1, reconstruction error: 0.2087606076168443, decrease = 1.4628858679976986e-09
iteration 2, reconstruction error: 0.20876060615518663, decrease = 1.461657683776707e-09
iteration 3, reconstruction error: 0.2087606046947394, decrease = 1.4604472353685338e-09
iteration 4, reconstruction error: 0.2087606032354895, decrease = 1.4592498875920512e-09
PARAFAC2 reconstruction error=0.8189077693910236, variation=6.424653031800176e-10.
Starting iteration 2485
reconstruction error=0.20876060139135155
iteration 1, reconstruction error: 0.2087605999293235, decrease = 1.462028054177722e-09
iteration 2, reconstruction error: 0.2087605984685198, decrease = 1.4608037002261653e-09
iteration 3, reconstruction error: 0.20876059700891342, decrease = 1.4596063802052583e-09
iteration 4, reconstruction error: 0.20876059555051596, decrease = 1.458397458353744e-09
PARAFAC2 reconstruction error=0.8189077687489335, variation=6.420901588199968e-10.
Starting iteration 2486
reconstruction error=0.20876059370746522
iteration 1, reconstruction error: 0.20876059224628576, decrease = 1.4611794552088497e-09
iteration 2, reconstruction error: 0.2087605907863345, decrease = 1.4599512709878582e-09
iteration 3, reconstruction error: 0.20876058932758362, decrease = 1.4587508700980578e-09
iteration 4, reconstruction error: 0.20876058787003243, decrease = 1.4575511908532235e-09
PARAFAC2 reconstruction error=0.8189077681072182, variation=6.417152365045808e-10.
Starting iteration 2487
reconstruction error=0.20876058602806422
iteration 1, reconstruction error: 0.20876058456773489, decrease = 1.4603293296833186e-09
iteration 2, reconstruction error: 0.2087605831086314, decrease = 1.4591034769306788e-09
iteration 3, reconstruction error: 0.20876058165073375, decrease = 1.4578976637036334e-09
iteration 4, reconstruction error: 0.2087605801940265, decrease = 1.4567072548210547e-09
PARAFAC2 reconstruction error=0.8189077674658776, variation=6.413406472560723e-10.
Starting iteration 2488
reconstruction error=0.20876057835313624
iteration 1, reconstruction error: 0.2087605768936601, decrease = 1.4594761510444698e-09
iteration 2, reconstruction error: 0.20876057543540677, decrease = 1.458253323649572e-09
iteration 3, reconstruction error: 0.20876057397835615, decrease = 1.4570506190469956e-09
iteration 4, reconstruction error: 0.20876057252250052, decrease = 1.4558556304944403e-09
PARAFAC2 reconstruction error=0.8189077668249111, variation=6.409665020967736e-10.
Starting iteration 2489
reconstruction error=0.208760570682689
iteration 1, reconstruction error: 0.20876056922406605, decrease = 1.4586229446500454e-09
iteration 2, reconstruction error: 0.20876056776665664, decrease = 1.4574094153729789e-09
iteration 3, reconstruction error: 0.20876056631045536, decrease = 1.4562012706775818e-09
iteration 4, reconstruction error: 0.20876056485544525, decrease = 1.4550101123944614e-09
PARAFAC2 reconstruction error=0.8189077661843187, variation=6.40592356937475e-10.
Starting iteration 2490
reconstruction error=0.20876056301671778
iteration 1, reconstruction error: 0.2087605615589434, decrease = 1.4577743734367488e-09
iteration 2, reconstruction error: 0.20876056010238953, decrease = 1.4565538775102027e-09
iteration 3, reconstruction error: 0.2087605586470299, decrease = 1.455359638358189e-09
iteration 4, reconstruction error: 0.2087605571928645, decrease = 1.4541653992061754e-09
PARAFAC2 reconstruction error=0.8189077655441003, variation=6.402184338227812e-10.
Starting iteration 2491
reconstruction error=0.2087605553552104
iteration 1, reconstruction error: 0.20876055389828924, decrease = 1.4569211670423243e-09
iteration 2, reconstruction error: 0.20876055244257932, decrease = 1.4557099137224583e-09
iteration 3, reconstruction error: 0.20876055098806826, decrease = 1.4545110671448924e-09
iteration 4, reconstruction error: 0.20876054953475143, decrease = 1.4533168279928788e-09
PARAFAC2 reconstruction error=0.8189077649042548, variation=6.398455099088096e-10.
Starting iteration 2492
reconstruction error=0.20876054769817373
iteration 1, reconstruction error: 0.2087605462421004, decrease = 1.4560733452295693e-09
iteration 2, reconstruction error: 0.20876054478723519, decrease = 1.4548652005341722e-09
iteration 3, reconstruction error: 0.20876054333356883, decrease = 1.4536663539566064e-09
iteration 4, reconstruction error: 0.2087605418810975, decrease = 1.4524713376484755e-09
PARAFAC2 reconstruction error=0.8189077642647826, variation=6.394721419056282e-10.
Starting iteration 2493
reconstruction error=0.20876054004559777
iteration 1, reconstruction error: 0.20876053859037222, decrease = 1.45522555117239e-09
iteration 2, reconstruction error: 0.20876053713635478, decrease = 1.4540174342325685e-09
iteration 3, reconstruction error: 0.20876053568353392, decrease = 1.452820863612203e-09
iteration 4, reconstruction error: 0.20876053423190424, decrease = 1.4516296775735071e-09
PARAFAC2 reconstruction error=0.8189077636256834, variation=6.390992179916566e-10.
Starting iteration 2494
reconstruction error=0.20876053239748094
iteration 1, reconstruction error: 0.20876053094310087, decrease = 1.4543800608279867e-09
iteration 2, reconstruction error: 0.20876052948993126, decrease = 1.4531696124198135e-09
iteration 3, reconstruction error: 0.20876052803795514, decrease = 1.4519761226683414e-09
iteration 4, reconstruction error: 0.20876052658716782, decrease = 1.4507873236091484e-09
PARAFAC2 reconstruction error=0.8189077629869562, variation=6.387271822561047e-10.
Starting iteration 2495
reconstruction error=0.20876052475381945
iteration 1, reconstruction error: 0.20876052330028333, decrease = 1.4535361247958178e-09
iteration 2, reconstruction error: 0.20876052184796307, decrease = 1.4523202640503996e-09
iteration 3, reconstruction error: 0.2087605203968278, decrease = 1.451135267505066e-09
iteration 4, reconstruction error: 0.2087605189468829, decrease = 1.4499448863780628e-09
PARAFAC2 reconstruction error=0.8189077623486016, variation=6.383545914090405e-10.
Starting iteration 2496
reconstruction error=0.20876051711460944
iteration 1, reconstruction error: 0.2087605156619219, decrease = 1.4526875258269456e-09
iteration 2, reconstruction error: 0.20876051421044559, decrease = 1.4514763280182308e-09
iteration 3, reconstruction error: 0.2087605127601535, decrease = 1.4502920808734387e-09
iteration 4, reconstruction error: 0.20876051131105486, decrease = 1.449098646633118e-09
PARAFAC2 reconstruction error=0.8189077617106189, variation=6.379827777180935e-10.
Starting iteration 2497
reconstruction error=0.2087605094798455
iteration 1, reconstruction error: 0.20876050802800653, decrease = 1.4518389823692246e-09
iteration 2, reconstruction error: 0.20876050657736875, decrease = 1.4506377765677314e-09
iteration 3, reconstruction error: 0.2087605051279229, decrease = 1.4494458411284938e-09
iteration 4, reconstruction error: 0.20876050367966206, decrease = 1.4482608445831602e-09
PARAFAC2 reconstruction error=0.8189077610730077, variation=6.376111860717515e-10.
Starting iteration 2498
reconstruction error=0.20876050184952685
iteration 1, reconstruction error: 0.2087605003985303, decrease = 1.450996545138139e-09
iteration 2, reconstruction error: 0.2087604989487442, decrease = 1.4497860967299658e-09
iteration 3, reconstruction error: 0.20876049750013845, decrease = 1.4486057631213356e-09
iteration 4, reconstruction error: 0.20876049605271768, decrease = 1.447420766576002e-09
PARAFAC2 reconstruction error=0.8189077604357677, variation=6.372399274923168e-10.
Starting iteration 2499
reconstruction error=0.2087604942236512
iteration 1, reconstruction error: 0.20876049277349937, decrease = 1.450151831949853e-09
iteration 2, reconstruction error: 0.2087604913245526, decrease = 1.4489467681233492e-09
iteration 3, reconstruction error: 0.20876048987678691, decrease = 1.4477656851141774e-09
iteration 4, reconstruction error: 0.2087604884302093, decrease = 1.4465776076999504e-09
PARAFAC2 reconstruction error=0.818907759798899, variation=6.368687799351846e-10.
Starting iteration 2500
reconstruction error=0.2087604866022209
iteration 1, reconstruction error: 0.20876048515290607, decrease = 1.449314834811588e-09
iteration 2, reconstruction error: 0.20876048370480244, decrease = 1.4481036370028733e-09
iteration 3, reconstruction error: 0.20876048225787688, decrease = 1.4469255515958679e-09
iteration 4, reconstruction error: 0.20876048081213627, decrease = 1.4457406105616855e-09
PARAFAC2 reconstruction error=0.8189077591624007, variation=6.364982985118672e-10.
Starting iteration 2501
reconstruction error=0.20876047898521125
iteration 1, reconstruction error: 0.20876047753674654, decrease = 1.448464709286057e-09
iteration 2, reconstruction error: 0.20876047608947915, decrease = 1.44726738926515e-09
iteration 3, reconstruction error: 0.20876047464339598, decrease = 1.4460831698759335e-09
iteration 4, reconstruction error: 0.20876047319849547, decrease = 1.4449005047989516e-09
PARAFAC2 reconstruction error=0.8189077585262731, variation=6.361275950439449e-10.
Starting iteration 2502
reconstruction error=0.20876047137263692
iteration 1, reconstruction error: 0.20876046992501307, decrease = 1.4476238541227815e-09
iteration 2, reconstruction error: 0.20876046847859195, decrease = 1.4464211217646294e-09
iteration 3, reconstruction error: 0.20876046703334733, decrease = 1.4452446184254342e-09
iteration 4, reconstruction error: 0.20876046558928074, decrease = 1.44406658852958e-09
PARAFAC2 reconstruction error=0.8189077578905156, variation=6.357574466875349e-10.
Starting iteration 2503
reconstruction error=0.2087604637644925
iteration 1, reconstruction error: 0.20876046231770873, decrease = 1.4467837761156233e-09
iteration 2, reconstruction error: 0.2087604608721254, decrease = 1.4455833197146717e-09
iteration 3, reconstruction error: 0.208760459427717, decrease = 1.4444083984432865e-09
iteration 4, reconstruction error: 0.2087604579844928, decrease = 1.4432242068096457e-09
PARAFAC2 reconstruction error=0.8189077572551279, variation=6.353877424203347e-10.
Starting iteration 2504
reconstruction error=0.20876045616077027
iteration 1, reconstruction error: 0.20876045471482352, decrease = 1.4459467512217827e-09
iteration 2, reconstruction error: 0.2087604532700818, decrease = 1.4447417151508546e-09
iteration 3, reconstruction error: 0.2087604518265166, decrease = 1.4435652118116593e-09
iteration 4, reconstruction error: 0.20876045038412555, decrease = 1.4423910399408157e-09
PARAFAC2 reconstruction error=0.8189077566201096, variation=6.350182601977394e-10.
Starting iteration 2505
reconstruction error=0.208760448561468
iteration 1, reconstruction error: 0.20876044711636058, decrease = 1.4451074226151661e-09
iteration 2, reconstruction error: 0.20876044567245816, decrease = 1.4439024142998136e-09
iteration 3, reconstruction error: 0.2087604442297284, decrease = 1.4427297689856289e-09
iteration 4, reconstruction error: 0.2087604427881759, decrease = 1.4415524884903164e-09
PARAFAC2 reconstruction error=0.8189077559854605, variation=6.346491110420516e-10.
Starting iteration 2506
reconstruction error=0.20876044096658405
iteration 1, reconstruction error: 0.20876043952232057, decrease = 1.4442634865829973e-09
iteration 2, reconstruction error: 0.208760438079249, decrease = 1.4430715788993353e-09
iteration 3, reconstruction error: 0.2087604366373539, decrease = 1.44189507556014e-09
iteration 4, reconstruction error: 0.20876043519663767, decrease = 1.440716240752593e-09
PARAFAC2 reconstruction error=0.8189077553511805, variation=6.342799618863637e-10.
Starting iteration 2507
reconstruction error=0.20876043337610925
iteration 1, reconstruction error: 0.20876043193268587, decrease = 1.4434233808202634e-09
iteration 2, reconstruction error: 0.20876043049045362, decrease = 1.4422322502927187e-09
iteration 3, reconstruction error: 0.20876042904939554, decrease = 1.4410580784218752e-09
iteration 4, reconstruction error: 0.20876042760951166, decrease = 1.439883878795456e-09
PARAFAC2 reconstruction error=0.8189077547172694, variation=6.339111457975832e-10.
Starting iteration 2508
reconstruction error=0.20876042579004436
iteration 1, reconstruction error: 0.20876042434746106, decrease = 1.4425833028131052e-09
iteration 2, reconstruction error: 0.20876042290606506, decrease = 1.4413960025549954e-09
iteration 3, reconstruction error: 0.20876042146584167, decrease = 1.4402233849963864e-09
iteration 4, reconstruction error: 0.20876042002679096, decrease = 1.439050711926626e-09
PARAFAC2 reconstruction error=0.8189077540837264, variation=6.335429958426175e-10.
Starting iteration 2509
reconstruction error=0.20876041820839095
iteration 1, reconstruction error: 0.20876041676663615, decrease = 1.4417547988809787e-09
iteration 2, reconstruction error: 0.208760415326081, decrease = 1.44055514739172e-09
iteration 3, reconstruction error: 0.20876041388669386, decrease = 1.439387137258663e-09
iteration 4, reconstruction error: 0.20876041244847782, decrease = 1.4382160462567128e-09
PARAFAC2 reconstruction error=0.8189077534505516, variation=6.331748458876518e-10.
Starting iteration 2510
reconstruction error=0.20876041063113507
iteration 1, reconstruction error: 0.20876040919022115, decrease = 1.4409139159621276e-09
iteration 2, reconstruction error: 0.20876040775049837, decrease = 1.4397227854345829e-09
iteration 3, reconstruction error: 0.20876040631194437, decrease = 1.4385539981454087e-09
iteration 4, reconstruction error: 0.20876040487455838, decrease = 1.4373859880123518e-09
PARAFAC2 reconstruction error=0.8189077528177446, variation=6.32806917977291e-10.
Starting iteration 2511
reconstruction error=0.2087604030582784
iteration 1, reconstruction error: 0.20876040161820067, decrease = 1.4400777237355555e-09
iteration 2, reconstruction error: 0.20876040017931335, decrease = 1.4388873148529768e-09
iteration 3, reconstruction error: 0.2087603987415956, decrease = 1.4377177504076855e-09
iteration 4, reconstruction error: 0.20876039730503892, decrease = 1.4365566791685325e-09
PARAFAC2 reconstruction error=0.818907752185305, variation=6.32439656200745e-10.
Starting iteration 2512
reconstruction error=0.20876039548982153
iteration 1, reconstruction error: 0.20876039405057775, decrease = 1.4392437797106084e-09
iteration 2, reconstruction error: 0.20876039261252127, decrease = 1.4380564794524986e-09
iteration 3, reconstruction error: 0.2087603911756351, decrease = 1.4368861656066656e-09
iteration 4, reconstruction error: 0.2087603897399131, decrease = 1.4357220134986193e-09
PARAFAC2 reconstruction error=0.8189077515532326, variation=6.32072394424199e-10.
Starting iteration 2513
reconstruction error=0.20876038792575302
iteration 1, reconstruction error: 0.20876038648734316, decrease = 1.4384098634412368e-09
iteration 2, reconstruction error: 0.20876038505012368, decrease = 1.4372194823142337e-09
iteration 3, reconstruction error: 0.20876038361406912, decrease = 1.4360545530500701e-09
iteration 4, reconstruction error: 0.2087603821791718, decrease = 1.434897312080352e-09
PARAFAC2 reconstruction error=0.8189077509215271, variation=6.317054657145604e-10.
Starting iteration 2514
reconstruction error=0.20876038036607136
iteration 1, reconstruction error: 0.20876037892849927, decrease = 1.4375720891468546e-09
iteration 2, reconstruction error: 0.20876037749210677, decrease = 1.436392504938766e-09
iteration 3, reconstruction error: 0.20876037605688613, decrease = 1.4352206367806986e-09
iteration 4, reconstruction error: 0.20876037462282196, decrease = 1.4340641729670978e-09
PARAFAC2 reconstruction error=0.8189077502901881, variation=6.313389810941317e-10.
Starting iteration 2515
reconstruction error=0.20876037281077728
iteration 1, reconstruction error: 0.20876037137404063, decrease = 1.4367366463208242e-09
iteration 2, reconstruction error: 0.208760369938479, decrease = 1.4355616417827122e-09
iteration 3, reconstruction error: 0.20876036850408686, decrease = 1.434392132848572e-09
iteration 4, reconstruction error: 0.20876036707085271, decrease = 1.4332341424783124e-09
PARAFAC2 reconstruction error=0.8189077496592159, variation=6.30972274429098e-10.
Starting iteration 2516
reconstruction error=0.20876036525986458
iteration 1, reconstruction error: 0.20876036382396032, decrease = 1.4359042566081115e-09
iteration 2, reconstruction error: 0.2087603623892349, decrease = 1.4347254218005645e-09
iteration 3, reconstruction error: 0.20876036095566897, decrease = 1.4335659326292216e-09
iteration 4, reconstruction error: 0.20876035952326336, decrease = 1.4324056107906102e-09
PARAFAC2 reconstruction error=0.8189077490286093, variation=6.306065669647865e-10.
Starting iteration 2517
reconstruction error=0.20876035771332951
iteration 1, reconstruction error: 0.20876035627825765, decrease = 1.4350718668953988e-09
iteration 2, reconstruction error: 0.20876035484436303, decrease = 1.4338946141556619e-09
iteration 3, reconstruction error: 0.20876035341162258, decrease = 1.4327404540548372e-09
iteration 4, reconstruction error: 0.20876035198004933, decrease = 1.4315732488334731e-09
PARAFAC2 reconstruction error=0.8189077483983686, variation=6.302407484781725e-10.
Starting iteration 2518
reconstruction error=0.20876035017116737
iteration 1, reconstruction error: 0.20876034873692556, decrease = 1.4342418086510378e-09
iteration 2, reconstruction error: 0.20876034730386334, decrease = 1.4330622244429492e-09
iteration 3, reconstruction error: 0.20876034587195524, decrease = 1.4319080920977e-09
iteration 4, reconstruction error: 0.208760344441209, decrease = 1.4307462437024299e-09
PARAFAC2 reconstruction error=0.8189077477684932, variation=6.298753740807683e-10.
Starting iteration 2519
reconstruction error=0.208760342633382
iteration 1, reconstruction error: 0.2087603411999664, decrease = 1.4334156084316874e-09
iteration 2, reconstruction error: 0.208760339767735, decrease = 1.432231389042471e-09
iteration 3, reconstruction error: 0.2087603383366562, decrease = 1.4310788110094563e-09
iteration 4, reconstruction error: 0.20876033690673693, decrease = 1.4299192663269622e-09
PARAFAC2 reconstruction error=0.8189077471389831, variation=6.295101107056666e-10.
Starting iteration 2520
reconstruction error=0.20876033509996042
iteration 1, reconstruction error: 0.20876033366737487, decrease = 1.4325855501873264e-09
iteration 2, reconstruction error: 0.20876033223596968, decrease = 1.4314051888231205e-09
iteration 3, reconstruction error: 0.20876033080572018, decrease = 1.430249502165637e-09
iteration 4, reconstruction error: 0.20876032937662323, decrease = 1.429096951888198e-09
PARAFAC2 reconstruction error=0.818907746509838, variation=6.291450693751699e-10.
Starting iteration 2521
reconstruction error=0.20876032757090024
iteration 1, reconstruction error: 0.20876032613914863, decrease = 1.4317516061623792e-09
iteration 2, reconstruction error: 0.2087603247085735, decrease = 1.4305751305787595e-09
iteration 3, reconstruction error: 0.20876032327915098, decrease = 1.4294225247901693e-09
iteration 4, reconstruction error: 0.20876032185087948, decrease = 1.4282715010693892e-09
PARAFAC2 reconstruction error=0.8189077458810574, variation=6.287805831561855e-10.
Starting iteration 2522
reconstruction error=0.20876032004620912
iteration 1, reconstruction error: 0.2087603186152829, decrease = 1.4309262108547216e-09
iteration 2, reconstruction error: 0.208760317185534, decrease = 1.4297489026038335e-09
iteration 3, reconstruction error: 0.20876031575693382, decrease = 1.4286001825958294e-09
iteration 4, reconstruction error: 0.20876031432948852, decrease = 1.4274453008500387e-09
PARAFAC2 reconstruction error=0.8189077452526409, variation=6.284165410264109e-10.
Starting iteration 2523
reconstruction error=0.20876031252586788
iteration 1, reconstruction error: 0.20876031109577253, decrease = 1.4300953476986678e-09
iteration 2, reconstruction error: 0.20876030966684905, decrease = 1.4289234795406003e-09
iteration 3, reconstruction error: 0.20876030823907352, decrease = 1.4277755366887135e-09
iteration 4, reconstruction error: 0.2087603068124521, decrease = 1.4266214043434644e-09
PARAFAC2 reconstruction error=0.8189077446245885, variation=6.280523878743338e-10.
Starting iteration 2524
reconstruction error=0.208760305009885
iteration 1, reconstruction error: 0.20876030358061815, decrease = 1.4292668437665412e-09
iteration 2, reconstruction error: 0.20876030215251545, decrease = 1.428102691658495e-09
iteration 3, reconstruction error: 0.2087603007255723, decrease = 1.4269431469760008e-09
iteration 4, reconstruction error: 0.20876029929976864, decrease = 1.4258036695746767e-09
PARAFAC2 reconstruction error=0.8189077439969, variation=6.276884567668617e-10.
Starting iteration 2525
reconstruction error=0.20876029749825048
iteration 1, reconstruction error: 0.2087602960698106, decrease = 1.4284398663910736e-09
iteration 2, reconstruction error: 0.20876029464252951, decrease = 1.4272810988646967e-09
iteration 3, reconstruction error: 0.20876029321641257, decrease = 1.4261169467566503e-09
iteration 4, reconstruction error: 0.20876029179143277, decrease = 1.424979800823678e-09
PARAFAC2 reconstruction error=0.8189077433695747, variation=6.273253028155068e-10.
Starting iteration 2526
reconstruction error=0.2087602899909634
iteration 1, reconstruction error: 0.20876028856334589, decrease = 1.4276175241967337e-09
iteration 2, reconstruction error: 0.20876028713690103, decrease = 1.4264448511269734e-09
iteration 3, reconstruction error: 0.2087602857116026, decrease = 1.4252984348317455e-09
iteration 4, reconstruction error: 0.20876028428744436, decrease = 1.4241582357854554e-09
PARAFAC2 reconstruction error=0.8189077427426128, variation=6.26961926819547e-10.
Starting iteration 2527
reconstruction error=0.20876028248802012
iteration 1, reconstruction error: 0.20876028106123115, decrease = 1.426788964753456e-09
iteration 2, reconstruction error: 0.2087602796356032, decrease = 1.4256279490254542e-09
iteration 3, reconstruction error: 0.20876027821112864, decrease = 1.4244745660807467e-09
iteration 4, reconstruction error: 0.20876027678779588, decrease = 1.423332757211071e-09
PARAFAC2 reconstruction error=0.8189077421160137, variation=6.265991059350995e-10.
Starting iteration 2528
reconstruction error=0.2087602749894159
iteration 1, reconstruction error: 0.20876027356345234, decrease = 1.4259635694457984e-09
iteration 2, reconstruction error: 0.2087602721386483, decrease = 1.4248040247633043e-09
iteration 3, reconstruction error: 0.20876027071499453, decrease = 1.4236537781986414e-09
iteration 4, reconstruction error: 0.20876026929248334, decrease = 1.4225111921728484e-09
PARAFAC2 reconstruction error=0.818907741489777, variation=6.262367291398618e-10.
Starting iteration 2529
reconstruction error=0.2087602674951477
iteration 1, reconstruction error: 0.20876026607001114, decrease = 1.4251365643147551e-09
iteration 2, reconstruction error: 0.2087602646460364, decrease = 1.4239747436750605e-09
iteration 3, reconstruction error: 0.2087602632232011, decrease = 1.422835294029312e-09
iteration 4, reconstruction error: 0.20876026180150378, decrease = 1.4216973154290713e-09
PARAFAC2 reconstruction error=0.8189077408639026, variation=6.258743523446242e-10.
Starting iteration 2530
reconstruction error=0.2087602600052155
iteration 1, reconstruction error: 0.20876025858089894, decrease = 1.424316553588767e-09
iteration 2, reconstruction error: 0.2087602571577427, decrease = 1.4231562317501556e-09
iteration 3, reconstruction error: 0.20876025573573131, decrease = 1.4220113975227378e-09
iteration 4, reconstruction error: 0.20876025431485865, decrease = 1.4208726695219553e-09
PARAFAC2 reconstruction error=0.8189077402383903, variation=6.255123086162939e-10.
Starting iteration 2531
reconstruction error=0.20876025251961625
iteration 1, reconstruction error: 0.20876025109611743, decrease = 1.4234988188199793e-09
iteration 2, reconstruction error: 0.2087602496737866, decrease = 1.422330836442498e-09
iteration 3, reconstruction error: 0.20876024825259062, decrease = 1.4211959664667262e-09
iteration 4, reconstruction error: 0.2087602468325403, decrease = 1.4200503273276155e-09
PARAFAC2 reconstruction error=0.8189077396132397, variation=6.25150597954871e-10.
Starting iteration 2532
reconstruction error=0.20876024503833762
iteration 1, reconstruction error: 0.20876024361566653, decrease = 1.42267109204397e-09
iteration 2, reconstruction error: 0.20876024219415037, decrease = 1.421516154787028e-09
iteration 3, reconstruction error: 0.2087602407737775, decrease = 1.4203728748718447e-09
iteration 4, reconstruction error: 0.20876023935454258, decrease = 1.4192349240271795e-09
PARAFAC2 reconstruction error=0.8189077389884506, variation=6.247891093380531e-10.
Starting iteration 2533
reconstruction error=0.20876023756137882
iteration 1, reconstruction error: 0.20876023613953085, decrease = 1.421847972693513e-09
iteration 2, reconstruction error: 0.2087602347188409, decrease = 1.4206899545676777e-09
iteration 3, reconstruction error: 0.20876023329928498, decrease = 1.4195559172591743e-09
iteration 4, reconstruction error: 0.20876023188086468, decrease = 1.4184202978828608e-09
PARAFAC2 reconstruction error=0.8189077383640224, variation=6.244281758327475e-10.
Starting iteration 2534
reconstruction error=0.2087602300887491
iteration 1, reconstruction error: 0.20876022866772118, decrease = 1.4210279342119492e-09
iteration 2, reconstruction error: 0.2087602272478404, decrease = 1.4198807685161796e-09
iteration 3, reconstruction error: 0.20876022582910686, decrease = 1.4187335473092588e-09
iteration 4, reconstruction error: 0.20876022441150893, decrease = 1.4175979279329454e-09
PARAFAC2 reconstruction error=0.8189077377399553, variation=6.240671313051394e-10.
Starting iteration 2535
reconstruction error=0.2087602226204308
iteration 1, reconstruction error: 0.20876022120022367, decrease = 1.4202071463298438e-09
iteration 2, reconstruction error: 0.20876021978116605, decrease = 1.419057621410147e-09
iteration 3, reconstruction error: 0.20876021836324715, decrease = 1.4179188934093645e-09
iteration 4, reconstruction error: 0.20876021694646613, decrease = 1.4167810258314262e-09
PARAFAC2 reconstruction error=0.8189077371162486, variation=6.237066418890436e-10.
Starting iteration 2536
reconstruction error=0.20876021515642607
iteration 1, reconstruction error: 0.20876021373703746, decrease = 1.4193886066493633e-09
iteration 2, reconstruction error: 0.20876021231879602, decrease = 1.4182414409535937e-09
iteration 3, reconstruction error: 0.20876021090169944, decrease = 1.4170965789706003e-09
iteration 4, reconstruction error: 0.20876020948572924, decrease = 1.4159702022009668e-09
PARAFAC2 reconstruction error=0.8189077364929024, variation=6.233462634952502e-10.
Starting iteration 2537
reconstruction error=0.2087602076967267
iteration 1, reconstruction error: 0.2087602062781581, decrease = 1.4185685959233751e-09
iteration 2, reconstruction error: 0.2087602048607367, decrease = 1.41742140247203e-09
iteration 3, reconstruction error: 0.20876020344445168, decrease = 1.4162850336951749e-09
iteration 4, reconstruction error: 0.2087602020293007, decrease = 1.415150968631096e-09
PARAFAC2 reconstruction error=0.8189077358699159, variation=6.229864402129692e-10.
Starting iteration 2538
reconstruction error=0.20876020024133868
iteration 1, reconstruction error: 0.20876019882358315, decrease = 1.417755524091291e-09
iteration 2, reconstruction error: 0.2087601974069818, decrease = 1.4166013639904662e-09
iteration 3, reconstruction error: 0.20876019599151296, decrease = 1.415468825483046e-09
iteration 4, reconstruction error: 0.20876019457717276, decrease = 1.4143402005117878e-09
PARAFAC2 reconstruction error=0.8189077352472893, variation=6.226266169306882e-10.
Starting iteration 2539
reconstruction error=0.20876019279024968
iteration 1, reconstruction error: 0.20876019137331497, decrease = 1.41693470845361e-09
iteration 2, reconstruction error: 0.20876018995752824, decrease = 1.4157867378461475e-09
iteration 3, reconstruction error: 0.20876018854287326, decrease = 1.4146549764948446e-09
iteration 4, reconstruction error: 0.20876018712935232, decrease = 1.4135209391863413e-09
PARAFAC2 reconstruction error=0.8189077346250221, variation=6.22267237737617e-10.
Starting iteration 2540
reconstruction error=0.20876018534346052
iteration 1, reconstruction error: 0.20876018392733892, decrease = 1.41612160886595e-09
iteration 2, reconstruction error: 0.2087601825123753, decrease = 1.4149636184956904e-09
iteration 3, reconstruction error: 0.20876018109853495, decrease = 1.413840350350526e-09
iteration 4, reconstruction error: 0.20876017968582247, decrease = 1.4127124747798092e-09
PARAFAC2 reconstruction error=0.818907734003114, variation=6.219080805891508e-10.
Starting iteration 2541
reconstruction error=0.20876017790096968
iteration 1, reconstruction error: 0.20876017648566733, decrease = 1.4153023475405035e-09
iteration 2, reconstruction error: 0.20876017507151526, decrease = 1.414152073220265e-09
iteration 3, reconstruction error: 0.208760173658488, decrease = 1.413027250762866e-09
iteration 4, reconstruction error: 0.2087601722465894, decrease = 1.4118985980360321e-09
PARAFAC2 reconstruction error=0.8189077333815648, variation=6.21549256507592e-10.
Starting iteration 2542
reconstruction error=0.20876017046276713
iteration 1, reconstruction error: 0.20876016904828248, decrease = 1.4144846405272915e-09
iteration 2, reconstruction error: 0.2087601676349435, decrease = 1.4133389736326052e-09
iteration 3, reconstruction error: 0.2087601662227247, decrease = 1.4122188141119096e-09
iteration 4, reconstruction error: 0.20876016481164383, decrease = 1.4110808632672445e-09
PARAFAC2 reconstruction error=0.8189077327603742, variation=6.211905434483356e-10.
Starting iteration 2543
reconstruction error=0.20876016302885747
iteration 1, reconstruction error: 0.20876016161518515, decrease = 1.4136723180957489e-09
iteration 2, reconstruction error: 0.20876016020265464, decrease = 1.4125305092260731e-09
iteration 3, reconstruction error: 0.20876015879126283, decrease = 1.4113918089808664e-09
iteration 4, reconstruction error: 0.20876015738098191, decrease = 1.4102809198224264e-09
PARAFAC2 reconstruction error=0.8189077321395419, variation=6.20832274478289e-10.
Starting iteration 2544
reconstruction error=0.208760155599233
iteration 1, reconstruction error: 0.20876015418637456, decrease = 1.4128584413519718e-09
iteration 2, reconstruction error: 0.20876015277466178, decrease = 1.4117127744572855e-09
iteration 3, reconstruction error: 0.20876015136407688, decrease = 1.4105848988865688e-09
iteration 4, reconstruction error: 0.20876014995460673, decrease = 1.4094701517031183e-09
PARAFAC2 reconstruction error=0.8189077315190675, variation=6.204744495974523e-10.
Starting iteration 2545
reconstruction error=0.2087601481738868
iteration 1, reconstruction error: 0.2087601467618438, decrease = 1.4120430102959602e-09
iteration 2, reconstruction error: 0.20876014535094253, decrease = 1.4109012569374357e-09
iteration 3, reconstruction error: 0.20876014394116302, decrease = 1.40977951534893e-09
iteration 4, reconstruction error: 0.2087601425325083, decrease = 1.4086547206471067e-09
PARAFAC2 reconstruction error=0.8189077308989509, variation=6.201166247166157e-10.
Starting iteration 2546
reconstruction error=0.20876014075282434
iteration 1, reconstruction error: 0.20876013934159365, decrease = 1.4112306878644176e-09
iteration 2, reconstruction error: 0.20876013793150316, decrease = 1.4100904888181276e-09
iteration 3, reconstruction error: 0.2087601365225352, decrease = 1.4089679700735047e-09
iteration 4, reconstruction error: 0.20876013511469124, decrease = 1.4078439525277986e-09
PARAFAC2 reconstruction error=0.8189077302791917, variation=6.197591329026864e-10.
Starting iteration 2547
reconstruction error=0.208760133336034
iteration 1, reconstruction error: 0.20876013192561635, decrease = 1.410417643787909e-09
iteration 2, reconstruction error: 0.20876013051633666, decrease = 1.4092796929432438e-09
iteration 3, reconstruction error: 0.20876012910818026, decrease = 1.4081563970425037e-09
iteration 4, reconstruction error: 0.2087601277011417, decrease = 1.4070385689901599e-09
PARAFAC2 reconstruction error=0.8189077296597898, variation=6.194019741556644e-10.
Starting iteration 2548
reconstruction error=0.20876012592351417
iteration 1, reconstruction error: 0.20876012451391196, decrease = 1.4096022127318975e-09
iteration 2, reconstruction error: 0.20876012310544304, decrease = 1.4084689248239357e-09
iteration 3, reconstruction error: 0.208760121698092, decrease = 1.4073510412604406e-09
iteration 4, reconstruction error: 0.20876012029186808, decrease = 1.4062239150902656e-09
PARAFAC2 reconstruction error=0.8189077290407446, variation=6.190451484755499e-10.
Starting iteration 2549
reconstruction error=0.2087601185152673
iteration 1, reconstruction error: 0.20876011710647277, decrease = 1.4087945254814827e-09
iteration 2, reconstruction error: 0.2087601156988154, decrease = 1.4076573795485103e-09
iteration 3, reconstruction error: 0.20876011429227823, decrease = 1.4065371645166636e-09
iteration 4, reconstruction error: 0.2087601128868535, decrease = 1.4054247210459891e-09
PARAFAC2 reconstruction error=0.8189077284220561, variation=6.186885448400403e-10.
Starting iteration 2550
reconstruction error=0.20876011111128326
iteration 1, reconstruction error: 0.208760109703298, decrease = 1.4079852561632578e-09
iteration 2, reconstruction error: 0.20876010829645064, decrease = 1.4068473608297438e-09
iteration 3, reconstruction error: 0.20876010689071883, decrease = 1.4057318087346005e-09
iteration 4, reconstruction error: 0.20876010548610643, decrease = 1.4046123986144465e-09
PARAFAC2 reconstruction error=0.8189077278037238, variation=6.183322742714381e-10.
Starting iteration 2551
reconstruction error=0.20876010371156062
iteration 1, reconstruction error: 0.20876010230438766, decrease = 1.4071729614872908e-09
iteration 2, reconstruction error: 0.20876010089834954, decrease = 1.4060381192670945e-09
iteration 3, reconstruction error: 0.20876009949342467, decrease = 1.4049248708847273e-09
iteration 4, reconstruction error: 0.20876009808961454, decrease = 1.4038101237012768e-09
PARAFAC2 reconstruction error=0.8189077271857477, variation=6.179761147251384e-10.
Starting iteration 2552
reconstruction error=0.2087600963161024
iteration 1, reconstruction error: 0.20876009490973557, decrease = 1.4063668285491104e-09
iteration 2, reconstruction error: 0.2087600935045036, decrease = 1.4052319585733386e-09
iteration 3, reconstruction error: 0.20876009210038562, decrease = 1.4041179885460053e-09
iteration 4, reconstruction error: 0.2087600906973817, decrease = 1.4030039352519452e-09
PARAFAC2 reconstruction error=0.8189077265681272, variation=6.176205102903509e-10.
Starting iteration 2553
reconstruction error=0.20876008892489012
iteration 1, reconstruction error: 0.20876008751933642, decrease = 1.405553701205875e-09
iteration 2, reconstruction error: 0.20876008611491056, decrease = 1.4044258533907339e-09
iteration 3, reconstruction error: 0.208760084711598, decrease = 1.403312577252791e-09
iteration 4, reconstruction error: 0.20876008330940404, decrease = 1.4021939442887543e-09
PARAFAC2 reconstruction error=0.8189077259508624, variation=6.17264794833261e-10.
Starting iteration 2554
reconstruction error=0.2087600815379361
iteration 1, reconstruction error: 0.208760080133187, decrease = 1.4047490948243535e-09
iteration 2, reconstruction error: 0.20876007872957195, decrease = 1.4036150575158501e-09
iteration 3, reconstruction error: 0.20876007732706706, decrease = 1.4025048900023762e-09
iteration 4, reconstruction error: 0.2087600759256723, decrease = 1.401394750244478e-09
PARAFAC2 reconstruction error=0.8189077253339526, variation=6.169097455099859e-10.
Starting iteration 2555
reconstruction error=0.20876007415522418
iteration 1, reconstruction error: 0.20876007275128738, decrease = 1.4039368001483865e-09
iteration 2, reconstruction error: 0.20876007134848004, decrease = 1.4028073425098597e-09
iteration 3, reconstruction error: 0.20876006994677357, decrease = 1.401706473114217e-09
iteration 4, reconstruction error: 0.20876006854618653, decrease = 1.4005870352384875e-09
PARAFAC2 reconstruction error=0.8189077247173978, variation=6.165548072090132e-10.
Starting iteration 2556
reconstruction error=0.20876006677676595
iteration 1, reconstruction error: 0.20876006537363223, decrease = 1.403133720323524e-09
iteration 2, reconstruction error: 0.20876006397162947, decrease = 1.4020027638839139e-09
iteration 3, reconstruction error: 0.20876006257072838, decrease = 1.4009010895765783e-09
iteration 4, reconstruction error: 0.20876006117093976, decrease = 1.3997886183503283e-09
PARAFAC2 reconstruction error=0.8189077241011975, variation=6.162003129972504e-10.
Starting iteration 2557
reconstruction error=0.20876005940254827
iteration 1, reconstruction error: 0.20876005800021838, decrease = 1.4023298910981197e-09
iteration 2, reconstruction error: 0.20876005659902022, decrease = 1.4011981575023924e-09
iteration 3, reconstruction error: 0.20876005519892452, decrease = 1.4000957060389396e-09
iteration 4, reconstruction error: 0.20876005379993665, decrease = 1.3989878699938174e-09
PARAFAC2 reconstruction error=0.8189077234853519, variation=6.158455967408827e-10.
Starting iteration 2558
reconstruction error=0.20876005203256345
iteration 1, reconstruction error: 0.20876005063104358, decrease = 1.4015198723793532e-09
iteration 2, reconstruction error: 0.20876004923064231, decrease = 1.400401267170892e-09
iteration 3, reconstruction error: 0.20876004783135663, decrease = 1.3992856873201731e-09
iteration 4, reconstruction error: 0.20876004643317103, decrease = 1.3981855950806477e-09
PARAFAC2 reconstruction error=0.8189077228698598, variation=6.15492101729842e-10.
Starting iteration 2559
reconstruction error=0.20876004466682
iteration 1, reconstruction error: 0.20876004326609932, decrease = 1.4007206783350767e-09
iteration 2, reconstruction error: 0.20876004186650884, decrease = 1.3995904712960083e-09
iteration 3, reconstruction error: 0.20876004046802002, decrease = 1.3984888247442484e-09
iteration 4, reconstruction error: 0.20876003907063675, decrease = 1.3973832646563267e-09
PARAFAC2 reconstruction error=0.8189077222547219, variation=6.151379405849866e-10.
Starting iteration 2560
reconstruction error=0.20876003730529707
iteration 1, reconstruction error: 0.2087600359053887, decrease = 1.3999083836591097e-09
iteration 2, reconstruction error: 0.20876003450659972, decrease = 1.3987889735389558e-09
iteration 3, reconstruction error: 0.208760033108914, decrease = 1.3976857171638102e-09
iteration 4, reconstruction error: 0.20876003171232993, decrease = 1.3965840706120503e-09
PARAFAC2 reconstruction error=0.8189077216399375, variation=6.147843345516435e-10.
Starting iteration 2561
reconstruction error=0.20876002994801623
iteration 1, reconstruction error: 0.20876002854891015, decrease = 1.3991060809903644e-09
iteration 2, reconstruction error: 0.20876002715092193, decrease = 1.397988225182445e-09
iteration 3, reconstruction error: 0.2087600257540354, decrease = 1.3968865231195338e-09
iteration 4, reconstruction error: 0.20876002435825516, decrease = 1.395780241386646e-09
PARAFAC2 reconstruction error=0.8189077210255062, variation=6.144312836298127e-10.
Starting iteration 2562
reconstruction error=0.2087600225949544
iteration 1, reconstruction error: 0.20876002119664985, decrease = 1.3983045554777362e-09
iteration 2, reconstruction error: 0.2087600197994655, decrease = 1.3971843404458895e-09
iteration 3, reconstruction error: 0.20876001840337816, decrease = 1.396087356830833e-09
iteration 4, reconstruction error: 0.2087600170083956, decrease = 1.3949825461434529e-09
PARAFAC2 reconstruction error=0.8189077204114281, variation=6.140781216856794e-10.
Starting iteration 2563
reconstruction error=0.20876001524611387
iteration 1, reconstruction error: 0.20876001384861317, decrease = 1.3975006984967564e-09
iteration 2, reconstruction error: 0.20876001245222955, decrease = 1.3963836198449542e-09
iteration 3, reconstruction error: 0.20876001105694839, decrease = 1.3952811683815014e-09
iteration 4, reconstruction error: 0.20876000966275884, decrease = 1.3941895415925387e-09
PARAFAC2 reconstruction error=0.8189077197977025, variation=6.137256258753609e-10.
Starting iteration 2564
reconstruction error=0.20876000790149862
iteration 1, reconstruction error: 0.20876000650479404, decrease = 1.3967045853213733e-09
iteration 2, reconstruction error: 0.20876000510921347, decrease = 1.3955805677756672e-09
iteration 3, reconstruction error: 0.2087600037147261, decrease = 1.3944873589188944e-09
iteration 4, reconstruction error: 0.208760002321335, decrease = 1.3933911247043795e-09
PARAFAC2 reconstruction error=0.8189077191843294, variation=6.133731300650425e-10.
Starting iteration 2565
reconstruction error=0.20876000056108845
iteration 1, reconstruction error: 0.20875999916519386, decrease = 1.3958945943581824e-09
iteration 2, reconstruction error: 0.20875999777040866, decrease = 1.3947852040008257e-09
iteration 3, reconstruction error: 0.2087599963767182, decrease = 1.393690468587394e-09
iteration 4, reconstruction error: 0.20875999498412937, decrease = 1.3925888220356342e-09
PARAFAC2 reconstruction error=0.8189077185713083, variation=6.130210783439338e-10.
Starting iteration 2566
reconstruction error=0.20875999322489808
iteration 1, reconstruction error: 0.20875999182979577, decrease = 1.3951023114522343e-09
iteration 2, reconstruction error: 0.2087599904358113, decrease = 1.3939844556443148e-09
iteration 3, reconstruction error: 0.2087599890429239, decrease = 1.392887416518107e-09
iteration 4, reconstruction error: 0.2087599876511258, decrease = 1.3917980934419205e-09
PARAFAC2 reconstruction error=0.8189077179586393, variation=6.126690266228252e-10.
Starting iteration 2567
reconstruction error=0.20875998589290898
iteration 1, reconstruction error: 0.20875998449861205, decrease = 1.3942969279145956e-09
iteration 2, reconstruction error: 0.20875998310542757, decrease = 1.3931844844439212e-09
iteration 3, reconstruction error: 0.20875998171333474, decrease = 1.3920928298993829e-09
iteration 4, reconstruction error: 0.20875998032233353, decrease = 1.3910012031104202e-09
PARAFAC2 reconstruction error=0.8189077173463214, variation=6.123178630801362e-10.
Starting iteration 2568
reconstruction error=0.2087599785651328
iteration 1, reconstruction error: 0.20875997717162967, decrease = 1.3935031184519886e-09
iteration 2, reconstruction error: 0.20875997577923977, decrease = 1.392389897825197e-09
iteration 3, reconstruction error: 0.2087599743879415, decrease = 1.3912982710362343e-09
iteration 4, reconstruction error: 0.20875997299774568, decrease = 1.3901958195727815e-09
PARAFAC2 reconstruction error=0.8189077167343551, variation=6.119662554482375e-10.
Starting iteration 2569
reconstruction error=0.20875997124155485
iteration 1, reconstruction error: 0.20875996984885323, decrease = 1.392701620694936e-09
iteration 2, reconstruction error: 0.20875996845726177, decrease = 1.3915914531814622e-09
iteration 3, reconstruction error: 0.20875996706676195, decrease = 1.3904998263924995e-09
iteration 4, reconstruction error: 0.2087599656773553, decrease = 1.3894066452913023e-09
PARAFAC2 reconstruction error=0.8189077161227398, variation=6.116153139501534e-10.
Starting iteration 2570
reconstruction error=0.20875996392217586
iteration 1, reconstruction error: 0.20875996253027113, decrease = 1.3919047303634358e-09
iteration 2, reconstruction error: 0.20875996113947579, decrease = 1.390795340006079e-09
iteration 3, reconstruction error: 0.2087599597497713, decrease = 1.3897044903732336e-09
iteration 4, reconstruction error: 0.20875995836115693, decrease = 1.3886143623853542e-09
PARAFAC2 reconstruction error=0.8189077155114751, variation=6.112647055189768e-10.
Starting iteration 2571
reconstruction error=0.20875995660699204
iteration 1, reconstruction error: 0.20875995521588345, decrease = 1.391108589432477e-09
iteration 2, reconstruction error: 0.20875995382588577, decrease = 1.3899976725184615e-09
iteration 3, reconstruction error: 0.20875995243697434, decrease = 1.3889114303111683e-09
iteration 4, reconstruction error: 0.20875995104915684, decrease = 1.3878174998094295e-09
PARAFAC2 reconstruction error=0.8189077149005611, variation=6.109139860654977e-10.
Starting iteration 2572
reconstruction error=0.20875994929599798
iteration 1, reconstruction error: 0.20875994790569166, decrease = 1.3903063145193073e-09
iteration 2, reconstruction error: 0.20875994651648855, decrease = 1.389203113655313e-09
iteration 3, reconstruction error: 0.2087599451283717, decrease = 1.388116843692444e-09
iteration 4, reconstruction error: 0.20875994374134801, decrease = 1.3870236903468225e-09
PARAFAC2 reconstruction error=0.8189077142899973, variation=6.10563821723531e-10.
Starting iteration 2573
reconstruction error=0.20875994198919523
iteration 1, reconstruction error: 0.2087599405996812, decrease = 1.3895140316133592e-09
iteration 2, reconstruction error: 0.20875993921127423, decrease = 1.3884069727243542e-09
iteration 3, reconstruction error: 0.2087599378239535, decrease = 1.387320730517061e-09
iteration 4, reconstruction error: 0.20875993643772206, decrease = 1.38623143519645e-09
PARAFAC2 reconstruction error=0.8189077136797835, variation=6.102137684038667e-10.
Starting iteration 2574
reconstruction error=0.20875993468657605
iteration 1, reconstruction error: 0.2087599332978597, decrease = 1.3887163641257416e-09
iteration 2, reconstruction error: 0.20875993191024653, decrease = 1.3876131632617472e-09
iteration 3, reconstruction error: 0.20875993052371883, decrease = 1.3865276982105712e-09
iteration 4, reconstruction error: 0.20875992913827657, decrease = 1.3854422609149708e-09
PARAFAC2 reconstruction error=0.818907713069919, variation=6.098644922403196e-10.
Starting iteration 2575
reconstruction error=0.20875992738814597
iteration 1, reconstruction error: 0.20875992600022186, decrease = 1.3879241089753691e-09
iteration 2, reconstruction error: 0.20875992461340018, decrease = 1.386821685267492e-09
iteration 3, reconstruction error: 0.2087599232276632, decrease = 1.3857369696168576e-09
iteration 4, reconstruction error: 0.20875992184301478, decrease = 1.3846484236967882e-09
PARAFAC2 reconstruction error=0.818907712460404, variation=6.0951510505447e-10.
Starting iteration 2576
reconstruction error=0.2087599200938863
iteration 1, reconstruction error: 0.20875991870675753, decrease = 1.3871287729561033e-09
iteration 2, reconstruction error: 0.2087599173207312, decrease = 1.3860263214926505e-09
iteration 3, reconstruction error: 0.2087599159357842, decrease = 1.3849470181792611e-09
iteration 4, reconstruction error: 0.2087599145519234, decrease = 1.3838608037275435e-09
PARAFAC2 reconstruction error=0.8189077118512382, variation=6.091657178686205e-10.
Starting iteration 2577
reconstruction error=0.20875991280380873
iteration 1, reconstruction error: 0.20875991141747222, decrease = 1.3863365178057308e-09
iteration 2, reconstruction error: 0.2087599100322343, decrease = 1.3852379243672885e-09
iteration 3, reconstruction error: 0.20875990864808108, decrease = 1.3841532087166541e-09
iteration 4, reconstruction error: 0.20875990726500945, decrease = 1.3830716294460643e-09
PARAFAC2 reconstruction error=0.818907711242421, variation=6.088172188611907e-10.
Starting iteration 2578
reconstruction error=0.20875990551789939
iteration 1, reconstruction error: 0.2087599041323567, decrease = 1.3855426805875481e-09
iteration 2, reconstruction error: 0.20875990274791337, decrease = 1.3844433377485643e-09
iteration 3, reconstruction error: 0.20875990136454853, decrease = 1.3833648393468678e-09
iteration 4, reconstruction error: 0.20875989998226535, decrease = 1.3822831768095512e-09
PARAFAC2 reconstruction error=0.8189077106339527, variation=6.08468275764551e-10.
Starting iteration 2579
reconstruction error=0.20875989823616134
iteration 1, reconstruction error: 0.20875989685140858, decrease = 1.3847527569055273e-09
iteration 2, reconstruction error: 0.20875989546775597, decrease = 1.3836526091548507e-09
iteration 3, reconstruction error: 0.20875989408518342, decrease = 1.3825725564409197e-09
iteration 4, reconstruction error: 0.20875989270369016, decrease = 1.3814932531275304e-09
PARAFAC2 reconstruction error=0.8189077100258322, variation=6.081205539132384e-10.
Starting iteration 2580
reconstruction error=0.20875989095858608
iteration 1, reconstruction error: 0.2087598895746287, decrease = 1.3839573653751103e-09
iteration 2, reconstruction error: 0.20875988819176372, decrease = 1.382864989185606e-09
iteration 3, reconstruction error: 0.20875988680997956, decrease = 1.3817841593155578e-09
iteration 4, reconstruction error: 0.20875988542927704, decrease = 1.3807025245338167e-09
PARAFAC2 reconstruction error=0.8189077094180602, variation=6.077719438835061e-10.
Starting iteration 2581
reconstruction error=0.20875988368517295
iteration 1, reconstruction error: 0.20875988230200856, decrease = 1.3831643885797718e-09
iteration 2, reconstruction error: 0.20875988091993816, decrease = 1.3820704025668817e-09
iteration 3, reconstruction error: 0.20875987953894012, decrease = 1.3809980381473963e-09
iteration 4, reconstruction error: 0.20875987815902214, decrease = 1.3799179854334653e-09
PARAFAC2 reconstruction error=0.8189077088106358, variation=6.074244440767984e-10.
Starting iteration 2582
reconstruction error=0.20875987641592408
iteration 1, reconstruction error: 0.2087598750335489, decrease = 1.382375186542717e-09
iteration 2, reconstruction error: 0.20875987365226306, decrease = 1.3812858357109548e-09
iteration 3, reconstruction error: 0.2087598722720565, decrease = 1.380206560153141e-09
iteration 4, reconstruction error: 0.20875987089292228, decrease = 1.3791342234892312e-09
PARAFAC2 reconstruction error=0.8189077082035585, variation=6.070772773369981e-10.
Starting iteration 2583
reconstruction error=0.20875986915082737
iteration 1, reconstruction error: 0.20875986776924213, decrease = 1.3815852351051205e-09
iteration 2, reconstruction error: 0.20875986638874544, decrease = 1.3804966891850512e-09
iteration 3, reconstruction error: 0.2087598650093273, decrease = 1.3794181352722035e-09
iteration 4, reconstruction error: 0.20875986363098073, decrease = 1.3783465757644109e-09
PARAFAC2 reconstruction error=0.8189077075968288, variation=6.06729666507988e-10.
Starting iteration 2584
reconstruction error=0.20875986188989035
iteration 1, reconstruction error: 0.2087598605090866, decrease = 1.380803749118087e-09
iteration 2, reconstruction error: 0.20875985912938527, decrease = 1.3797013254102097e-09
iteration 3, reconstruction error: 0.20875985775074857, decrease = 1.378636704796321e-09
iteration 4, reconstruction error: 0.20875985637318578, decrease = 1.3775627860646011e-09
PARAFAC2 reconstruction error=0.8189077069904459, variation=6.063829438573975e-10.
Starting iteration 2585
reconstruction error=0.2087598546330915
iteration 1, reconstruction error: 0.2087598532530854, decrease = 1.3800060816304693e-09
iteration 2, reconstruction error: 0.20875985187416632, decrease = 1.3789190900226345e-09
iteration 3, reconstruction error: 0.20875985049631726, decrease = 1.3778490570715007e-09
iteration 4, reconstruction error: 0.20875984911954135, decrease = 1.376775915495898e-09
PARAFAC2 reconstruction error=0.8189077063844095, variation=6.06036443251412e-10.
Starting iteration 2586
reconstruction error=0.20875984738044315
iteration 1, reconstruction error: 0.20875984600122316, decrease = 1.3792199882178835e-09
iteration 2, reconstruction error: 0.20875984462309247, decrease = 1.3781306928972725e-09
iteration 3, reconstruction error: 0.20875984324602875, decrease = 1.3770637130594565e-09
iteration 4, reconstruction error: 0.20875984187003738, decrease = 1.3759913763955467e-09
PARAFAC2 reconstruction error=0.8189077057787195, variation=6.056899426454265e-10.
Starting iteration 2587
reconstruction error=0.2087598401319407
iteration 1, reconstruction error: 0.20875983875350676, decrease = 1.3784339503164489e-09
iteration 2, reconstruction error: 0.2087598373761622, decrease = 1.377344571729111e-09
iteration 3, reconstruction error: 0.20875983599988687, decrease = 1.3762753159340946e-09
iteration 4, reconstruction error: 0.20875983462467695, decrease = 1.3752099181640887e-09
PARAFAC2 reconstruction error=0.8189077051733756, variation=6.053438861286509e-10.
Starting iteration 2588
reconstruction error=0.20875983288757344
iteration 1, reconstruction error: 0.208759831509931, decrease = 1.377642444566618e-09
iteration 2, reconstruction error: 0.20875983013337096, decrease = 1.3765600326287597e-09
iteration 3, reconstruction error: 0.2087598287578794, decrease = 1.3754915539898604e-09
iteration 4, reconstruction error: 0.20875982738345097, decrease = 1.374428432177055e-09
PARAFAC2 reconstruction error=0.8189077045683775, variation=6.049981626787826e-10.
Starting iteration 2589
reconstruction error=0.2087598256473551
iteration 1, reconstruction error: 0.20875982427048798, decrease = 1.376867120317371e-09
iteration 2, reconstruction error: 0.20875982289471326, decrease = 1.375774716372291e-09
iteration 3, reconstruction error: 0.20875982152000475, decrease = 1.3747085136905923e-09
iteration 4, reconstruction error: 0.20875982014636238, decrease = 1.3736423665200448e-09
PARAFAC2 reconstruction error=0.818907703963725, variation=6.046524392289143e-10.
Starting iteration 2590
reconstruction error=0.20875981841125263
iteration 1, reconstruction error: 0.20875981703517854, decrease = 1.3760740880108813e-09
iteration 2, reconstruction error: 0.20875981566018761, decrease = 1.3749909266724814e-09
iteration 3, reconstruction error: 0.2087598142862613, decrease = 1.3739263060585927e-09
iteration 4, reconstruction error: 0.20875981291340195, decrease = 1.3728593539763523e-09
PARAFAC2 reconstruction error=0.8189077033594179, variation=6.043071598682559e-10.
Starting iteration 2591
reconstruction error=0.20875981117928835
iteration 1, reconstruction error: 0.2087598098039988, decrease = 1.37528954891053e-09
iteration 2, reconstruction error: 0.2087598084297932, decrease = 1.3742056104160127e-09
iteration 3, reconstruction error: 0.20875980705665223, decrease = 1.3731409620465485e-09
iteration 4, reconstruction error: 0.20875980568457048, decrease = 1.3720817537699048e-09
PARAFAC2 reconstruction error=0.8189077027554558, variation=6.039621025522024e-10.
Starting iteration 2592
reconstruction error=0.2087598039514507
iteration 1, reconstruction error: 0.208759802576948, decrease = 1.3745026783418268e-09
iteration 2, reconstruction error: 0.20875980120351922, decrease = 1.3734287873656825e-09
iteration 3, reconstruction error: 0.20875979983116127, decrease = 1.372357949502856e-09
iteration 4, reconstruction error: 0.20875979845986023, decrease = 1.3713010449389884e-09
PARAFAC2 reconstruction error=0.8189077021518383, variation=6.036174893253587e-10.
Starting iteration 2593
reconstruction error=0.2087597967277382
iteration 1, reconstruction error: 0.20875979535401468, decrease = 1.3737235238231449e-09
iteration 2, reconstruction error: 0.20875979398137354, decrease = 1.3726411396408622e-09
iteration 3, reconstruction error: 0.20875979260979474, decrease = 1.371578794984174e-09
iteration 4, reconstruction error: 0.20875979123927282, decrease = 1.370521918175882e-09
PARAFAC2 reconstruction error=0.8189077015485651, variation=6.032732091654225e-10.
Starting iteration 2594
reconstruction error=0.2087597895081454
iteration 1, reconstruction error: 0.20875978813520413, decrease = 1.372941260679994e-09
iteration 2, reconstruction error: 0.208759786763346, decrease = 1.3718581270971697e-09
iteration 3, reconstruction error: 0.20875978539254478, decrease = 1.3708012225333022e-09
iteration 4, reconstruction error: 0.20875978402280665, decrease = 1.3697381284760723e-09
PARAFAC2 reconstruction error=0.8189077009456365, variation=6.029285959385788e-10.
Starting iteration 2595
reconstruction error=0.20875978229266842
iteration 1, reconstruction error: 0.20875978092051478, decrease = 1.3721536407107493e-09
iteration 2, reconstruction error: 0.20875977954943503, decrease = 1.371079749734605e-09
iteration 3, reconstruction error: 0.20875977817940988, decrease = 1.3700251488835136e-09
iteration 4, reconstruction error: 0.20875977681045094, decrease = 1.3689589462018148e-09
PARAFAC2 reconstruction error=0.8189077003430515, variation=6.025849819124574e-10.
Starting iteration 2596
reconstruction error=0.20875977508130278
iteration 1, reconstruction error: 0.20875977370993137, decrease = 1.371371405323174e-09
iteration 2, reconstruction error: 0.20875977233962845, decrease = 1.3703029266842748e-09
iteration 3, reconstruction error: 0.20875977097039325, decrease = 1.3692351974459172e-09
iteration 4, reconstruction error: 0.2087597696022096, decrease = 1.3681836497081434e-09
PARAFAC2 reconstruction error=0.8189076997408103, variation=6.022411458417309e-10.
Starting iteration 2597
reconstruction error=0.20875976787405454
iteration 1, reconstruction error: 0.20875976650345687, decrease = 1.3705976631417371e-09
iteration 2, reconstruction error: 0.20875976513394237, decrease = 1.3695145018033372e-09
iteration 3, reconstruction error: 0.20875976376547783, decrease = 1.3684645361333736e-09
iteration 4, reconstruction error: 0.20875976239807179, decrease = 1.367406049501696e-09
PARAFAC2 reconstruction error=0.8189076991389125, variation=6.018978648825168e-10.
Starting iteration 2598
reconstruction error=0.20875976067090907
iteration 1, reconstruction error: 0.20875975930109442, decrease = 1.3698146505980446e-09
iteration 2, reconstruction error: 0.20875975793235133, decrease = 1.368743091090252e-09
iteration 3, reconstruction error: 0.20875975656467213, decrease = 1.3676791921213294e-09
iteration 4, reconstruction error: 0.20875975519804676, decrease = 1.3666253684263552e-09
PARAFAC2 reconstruction error=0.8189076985373577, variation=6.015548059679077e-10.
Starting iteration 2599
reconstruction error=0.20875975347186787
iteration 1, reconstruction error: 0.2087597521028339, decrease = 1.3690339695227038e-09
iteration 2, reconstruction error: 0.20875975073487155, decrease = 1.36796235450376e-09
iteration 3, reconstruction error: 0.20875974936796685, decrease = 1.3669047005393509e-09
iteration 4, reconstruction error: 0.2087597480021191, decrease = 1.3658477404643321e-09
PARAFAC2 reconstruction error=0.8189076979361459, variation=6.012117470532985e-10.
Starting iteration 2600
reconstruction error=0.20875974627692875
iteration 1, reconstruction error: 0.20875974490867316, decrease = 1.3682555921601391e-09
iteration 2, reconstruction error: 0.20875974354148688, decrease = 1.3671862808539714e-09
iteration 3, reconstruction error: 0.20875974217536364, decrease = 1.3661232423078928e-09
iteration 4, reconstruction error: 0.20875974081028886, decrease = 1.3650747754390125e-09
PARAFAC2 reconstruction error=0.8189076973352767, variation=6.008692432502016e-10.
Starting iteration 2601
reconstruction error=0.20875973908608544
iteration 1, reconstruction error: 0.20875973771861364, decrease = 1.3674718024603294e-09
iteration 2, reconstruction error: 0.2087597363522096, decrease = 1.3664040454663962e-09
iteration 3, reconstruction error: 0.20875973498685627, decrease = 1.365353330395891e-09
iteration 4, reconstruction error: 0.20875973362255676, decrease = 1.3642995067009167e-09
PARAFAC2 reconstruction error=0.8189076967347498, variation=6.005268504694072e-10.
Starting iteration 2602
reconstruction error=0.2087597318993419
iteration 1, reconstruction error: 0.20875973053264077, decrease = 1.3667011411477858e-09
iteration 2, reconstruction error: 0.2087597291670166, decrease = 1.3656241693027482e-09
iteration 3, reconstruction error: 0.20875972780243934, decrease = 1.3645772567461023e-09
iteration 4, reconstruction error: 0.2087597264389152, decrease = 1.3635241546960941e-09
PARAFAC2 reconstruction error=0.8189076961345646, variation=6.001852348447301e-10.
Starting iteration 2603
reconstruction error=0.2087597247166819
iteration 1, reconstruction error: 0.20875972335075912, decrease = 1.3659227637852212e-09
iteration 2, reconstruction error: 0.2087597219859126, decrease = 1.3648465135851495e-09
iteration 3, reconstruction error: 0.20875972062211218, decrease = 1.363800433695772e-09
iteration 4, reconstruction error: 0.20875971925936018, decrease = 1.3627519945824673e-09
PARAFAC2 reconstruction error=0.8189076955347218, variation=5.998428420639357e-10.
Starting iteration 2604
reconstruction error=0.20875971753811925
iteration 1, reconstruction error: 0.20875971617297642, decrease = 1.365142832110422e-09
iteration 2, reconstruction error: 0.2087597148088982, decrease = 1.3640782114965333e-09
iteration 3, reconstruction error: 0.2087597134458731, decrease = 1.3630251094465251e-09
iteration 4, reconstruction error: 0.20875971208389718, decrease = 1.3619759209326787e-09
PARAFAC2 reconstruction error=0.81890769493522, variation=5.995017815507708e-10.
Starting iteration 2605
reconstruction error=0.20875971036363403
iteration 1, reconstruction error: 0.2087597089992665, decrease = 1.3643675356167506e-09
iteration 2, reconstruction error: 0.20875970763596513, decrease = 1.3633013606906275e-09
iteration 3, reconstruction error: 0.20875970627371376, decrease = 1.3622513672650882e-09
iteration 4, reconstruction error: 0.20875970491251003, decrease = 1.3612037330634763e-09
PARAFAC2 reconstruction error=0.8189076943360596, variation=5.991603879706986e-10.
Starting iteration 2606
reconstruction error=0.20875970319323311
iteration 1, reconstruction error: 0.2087597018296455, decrease = 1.3635876039419514e-09
iteration 2, reconstruction error: 0.2087597004671179, decrease = 1.3625276185091906e-09
iteration 3, reconstruction error: 0.20875969910563794, decrease = 1.361479956552003e-09
iteration 4, reconstruction error: 0.20875969774520106, decrease = 1.360436874264792e-09
PARAFAC2 reconstruction error=0.8189076937372403, variation=5.988193274575337e-10.
Starting iteration 2607
reconstruction error=0.20875969602690722
iteration 1, reconstruction error: 0.208759694664098, decrease = 1.3628092265793867e-09
iteration 2, reconstruction error: 0.20875969330234184, decrease = 1.3617561522849542e-09
iteration 3, reconstruction error: 0.20875969194163796, decrease = 1.3607038829022144e-09
iteration 4, reconstruction error: 0.20875969058197402, decrease = 1.359663936995048e-09
PARAFAC2 reconstruction error=0.8189076931387617, variation=5.984786000112763e-10.
Starting iteration 2608
reconstruction error=0.20875968886466648
iteration 1, reconstruction error: 0.20875968750262483, decrease = 1.3620416461357365e-09
iteration 2, reconstruction error: 0.20875968614164625, decrease = 1.3609785798340823e-09
iteration 3, reconstruction error: 0.20875968478171075, decrease = 1.3599354975468714e-09
iteration 4, reconstruction error: 0.20875968342282136, decrease = 1.3588893899019183e-09
PARAFAC2 reconstruction error=0.8189076925406233, variation=5.981383166542287e-10.
Starting iteration 2609
reconstruction error=0.20875968170649153
iteration 1, reconstruction error: 0.20875968034522366, decrease = 1.361267876198724e-09
iteration 2, reconstruction error: 0.20875967898501807, decrease = 1.360205587053187e-09
iteration 3, reconstruction error: 0.20875967762585398, decrease = 1.3591640868337862e-09
iteration 4, reconstruction error: 0.20875967626774064, decrease = 1.3581133440077053e-09
PARAFAC2 reconstruction error=0.8189076919428254, variation=5.977979222748786e-10.
Starting iteration 2610
reconstruction error=0.20875967455238395
iteration 1, reconstruction error: 0.20875967319189057, decrease = 1.3604933846167455e-09
iteration 2, reconstruction error: 0.2087596718324572, decrease = 1.359433371428409e-09
iteration 3, reconstruction error: 0.20875967047406455, decrease = 1.3583926483651254e-09
iteration 4, reconstruction error: 0.20875966911671417, decrease = 1.3573503709896073e-09
PARAFAC2 reconstruction error=0.8189076913453672, variation=5.974581940293433e-10.
Starting iteration 2611
reconstruction error=0.2087596674023469
iteration 1, reconstruction error: 0.20875966604262647, decrease = 1.3597204195914259e-09
iteration 2, reconstruction error: 0.208759664683963, decrease = 1.358663459516407e-09
iteration 3, reconstruction error: 0.20875966332634105, decrease = 1.3576219592970062e-09
iteration 4, reconstruction error: 0.20875966196976056, decrease = 1.356580486833181e-09
PARAFAC2 reconstruction error=0.8189076907482488, variation=5.97118465783808e-10.
Starting iteration 2612
reconstruction error=0.20875966025636872
iteration 1, reconstruction error: 0.20875965889741976, decrease = 1.3589489533671895e-09
iteration 2, reconstruction error: 0.20875965753953235, decrease = 1.3578874136221941e-09
iteration 3, reconstruction error: 0.20875965618267872, decrease = 1.3568536294528144e-09
iteration 4, reconstruction error: 0.20875965482686581, decrease = 1.3558129063895308e-09
PARAFAC2 reconstruction error=0.8189076901514698, variation=5.967789595828776e-10.
Starting iteration 2613
reconstruction error=0.20875965311445174
iteration 1, reconstruction error: 0.20875965175627498, decrease = 1.358176765497987e-09
iteration 2, reconstruction error: 0.20875965039915284, decrease = 1.35712213689132e-09
iteration 3, reconstruction error: 0.20875964904307526, decrease = 1.3560775835586014e-09
iteration 4, reconstruction error: 0.2087596476880284, decrease = 1.3550468525025394e-09
PARAFAC2 reconstruction error=0.8189076895550298, variation=5.964400084934596e-10.
Starting iteration 2614
reconstruction error=0.2087596459765929
iteration 1, reconstruction error: 0.20875964461918606, decrease = 1.3574068535859851e-09
iteration 2, reconstruction error: 0.20875964326283614, decrease = 1.356349921266542e-09
iteration 3, reconstruction error: 0.2087596419075223, decrease = 1.3553138333843862e-09
iteration 4, reconstruction error: 0.208759640553243, decrease = 1.3542792998144648e-09
PARAFAC2 reconstruction error=0.8189076889589284, variation=5.961013904709489e-10.
Starting iteration 2615
reconstruction error=0.20875963884278226
iteration 1, reconstruction error: 0.2087596374861484, decrease = 1.3566338608050899e-09
iteration 2, reconstruction error: 0.20875963613056756, decrease = 1.3555808420218085e-09
iteration 3, reconstruction error: 0.2087596347760236, decrease = 1.3545439492279598e-09
iteration 4, reconstruction error: 0.20875963342251191, decrease = 1.353511691615239e-09
PARAFAC2 reconstruction error=0.8189076883631661, variation=5.957623283592284e-10.
Starting iteration 2616
reconstruction error=0.20875963171302742
iteration 1, reconstruction error: 0.20875963035715803, decrease = 1.3558693889859086e-09
iteration 2, reconstruction error: 0.2087596290023471, decrease = 1.3548109301098066e-09
iteration 3, reconstruction error: 0.20875962764856842, decrease = 1.3537786724970857e-09
iteration 4, reconstruction error: 0.20875962629582662, decrease = 1.3527418074588127e-09
PARAFAC2 reconstruction error=0.8189076877677419, variation=5.954241544259276e-10.
Starting iteration 2617
reconstruction error=0.20875962458731764
iteration 1, reconstruction error: 0.20875962323222433, decrease = 1.35509331533612e-09
iteration 2, reconstruction error: 0.20875962187817404, decrease = 1.3540502885600603e-09
iteration 3, reconstruction error: 0.20875962052516372, decrease = 1.3530103148973183e-09
iteration 4, reconstruction error: 0.2087596191731856, decrease = 1.3519781127957486e-09
PARAFAC2 reconstruction error=0.8189076871726557, variation=5.950862025372317e-10.
Starting iteration 2618
reconstruction error=0.20875961746564903
iteration 1, reconstruction error: 0.20875961611132485, decrease = 1.3543241805802353e-09
iteration 2, reconstruction error: 0.20875961475804294, decrease = 1.3532819032047172e-09
iteration 3, reconstruction error: 0.20875961340580018, decrease = 1.3522427622092437e-09
iteration 4, reconstruction error: 0.20875961205458274, decrease = 1.3512174434904267e-09
PARAFAC2 reconstruction error=0.8189076865779074, variation=5.947483616708382e-10.
Starting iteration 2619
reconstruction error=0.2087596103480271
iteration 1, reconstruction error: 0.20875960899446197, decrease = 1.353565121098299e-09
iteration 2, reconstruction error: 0.20875960764195456, decrease = 1.3525074116227387e-09
iteration 3, reconstruction error: 0.20875960629047324, decrease = 1.3514813157478045e-09
iteration 4, reconstruction error: 0.20875960494002568, decrease = 1.3504475593340004e-09
PARAFAC2 reconstruction error=0.8189076859834967, variation=5.944106318267472e-10.
Starting iteration 2620
reconstruction error=0.20875960323443632
iteration 1, reconstruction error: 0.20875960188164575, decrease = 1.3527905740051693e-09
iteration 2, reconstruction error: 0.20875960052990128, decrease = 1.3517444663602163e-09
iteration 3, reconstruction error: 0.20875959917918369, decrease = 1.3507175933291649e-09
iteration 4, reconstruction error: 0.20875959782949904, decrease = 1.3496846418270536e-09
PARAFAC2 reconstruction error=0.818907685389423, variation=5.940736791387735e-10.
Starting iteration 2621
reconstruction error=0.208759596124879
iteration 1, reconstruction error: 0.2087595947728614, decrease = 1.352017581224274e-09
iteration 2, reconstruction error: 0.20875959342187528, decrease = 1.350986128523246e-09
iteration 3, reconstruction error: 0.20875959207192754, decrease = 1.3499477369283142e-09
iteration 4, reconstruction error: 0.20875959072300437, decrease = 1.3489231676100388e-09
PARAFAC2 reconstruction error=0.8189076847956865, variation=5.937365044061949e-10.
Starting iteration 2622
reconstruction error=0.20875958901935915
iteration 1, reconstruction error: 0.2087595876681022, decrease = 1.3512569396745278e-09
iteration 2, reconstruction error: 0.20875958631788827, decrease = 1.3502139406540437e-09
iteration 3, reconstruction error: 0.20875958496869965, decrease = 1.3491886219352267e-09
iteration 4, reconstruction error: 0.20875958362054017, decrease = 1.3481594729469748e-09
PARAFAC2 reconstruction error=0.8189076842022867, variation=5.933998847851285e-10.
Starting iteration 2623
reconstruction error=0.2087595819178612
iteration 1, reconstruction error: 0.20875958056737104, decrease = 1.3504901641425704e-09
iteration 2, reconstruction error: 0.2087595792179193, decrease = 1.3494517447920629e-09
iteration 3, reconstruction error: 0.20875957786949517, decrease = 1.3484241223604698e-09
iteration 4, reconstruction error: 0.20875957652209942, decrease = 1.3473957505283352e-09
PARAFAC2 reconstruction error=0.8189076836092234, variation=5.930632651640622e-10.
Starting iteration 2624
reconstruction error=0.2087595748203952
iteration 1, reconstruction error: 0.20875957347066337, decrease = 1.3497318263056002e-09
iteration 2, reconstruction error: 0.2087595721219746, decrease = 1.3486887717739648e-09
iteration 3, reconstruction error: 0.20875957077432114, decrease = 1.3476534610479263e-09
iteration 4, reconstruction error: 0.20875956942768292, decrease = 1.3466382176030578e-09
PARAFAC2 reconstruction error=0.8189076830164964, variation=5.927269786099032e-10.
Starting iteration 2625
reconstruction error=0.20875956772694582
iteration 1, reconstruction error: 0.2087595663779839, decrease = 1.3489619143935982e-09
iteration 2, reconstruction error: 0.20875956503005882, decrease = 1.3479250771109008e-09
iteration 3, reconstruction error: 0.20875956368315984, decrease = 1.3468989812359666e-09
iteration 4, reconstruction error: 0.20875956233728382, decrease = 1.345876021741077e-09
PARAFAC2 reconstruction error=0.8189076824241053, variation=5.923911361449541e-10.
Starting iteration 2626
reconstruction error=0.20875956063751533
iteration 1, reconstruction error: 0.2087595592893202, decrease = 1.3481951388616409e-09
iteration 2, reconstruction error: 0.20875955794215964, decrease = 1.3471605497805683e-09
iteration 3, reconstruction error: 0.2087595565960205, decrease = 1.3461391445979132e-09
iteration 4, reconstruction error: 0.20875955525090742, decrease = 1.3451130764785546e-09
PARAFAC2 reconstruction error=0.81890768183205, variation=5.92055293680005e-10.
Starting iteration 2627
reconstruction error=0.20875955355210607
iteration 1, reconstruction error: 0.20875955220466927, decrease = 1.3474368010246707e-09
iteration 2, reconstruction error: 0.2087595508582709, decrease = 1.3463983816741631e-09
iteration 3, reconstruction error: 0.20875954951289316, decrease = 1.3453777258920496e-09
iteration 4, reconstruction error: 0.20875954816853765, decrease = 1.3443555157977016e-09
PARAFAC2 reconstruction error=0.8189076812403303, variation=5.917196732596608e-10.
Starting iteration 2628
reconstruction error=0.2087595464708053
iteration 1, reconstruction error: 0.20875954512413222, decrease = 1.346673078606031e-09
iteration 2, reconstruction error: 0.20875954377849215, decrease = 1.3456400715927685e-09
iteration 3, reconstruction error: 0.2087595424338774, decrease = 1.3446147528739516e-09
iteration 4, reconstruction error: 0.20875954109028097, decrease = 1.3435964285601898e-09
PARAFAC2 reconstruction error=0.8189076806489455, variation=5.913848299954338e-10.
Starting iteration 2629
reconstruction error=0.20875953939341435
iteration 1, reconstruction error: 0.20875953804750422, decrease = 1.3459101333435086e-09
iteration 2, reconstruction error: 0.20875953670262481, decrease = 1.3448794022874466e-09
iteration 3, reconstruction error: 0.20875953535877298, decrease = 1.3438518353670048e-09
iteration 4, reconstruction error: 0.2087595340159395, decrease = 1.3428334832976674e-09
PARAFAC2 reconstruction error=0.8189076800578958, variation=5.910496536642995e-10.
Starting iteration 2630
reconstruction error=0.20875953232002956
iteration 1, reconstruction error: 0.2087595309748762, decrease = 1.3451533498187729e-09
iteration 2, reconstruction error: 0.20875952963076128, decrease = 1.3441149304682654e-09
iteration 3, reconstruction error: 0.20875952828766858, decrease = 1.3430926926183417e-09
iteration 4, reconstruction error: 0.20875952694558647, decrease = 1.3420821121101767e-09
PARAFAC2 reconstruction error=0.8189076794671808, variation=5.907150324446775e-10.
Starting iteration 2631
reconstruction error=0.2087595252506482
iteration 1, reconstruction error: 0.2087595239062547, decrease = 1.3443934854251438e-09
iteration 2, reconstruction error: 0.20875952256289965, decrease = 1.3433550660746363e-09
iteration 3, reconstruction error: 0.20875952122056138, decrease = 1.3423382683175333e-09
iteration 4, reconstruction error: 0.20875951987923838, decrease = 1.3413229971170892e-09
PARAFAC2 reconstruction error=0.8189076788768002, variation=5.903806332696604e-10.
Starting iteration 2632
reconstruction error=0.20875951818526564
iteration 1, reconstruction error: 0.20875951684163124, decrease = 1.343634398187632e-09
iteration 2, reconstruction error: 0.2087595154990314, decrease = 1.342599836862135e-09
iteration 3, reconstruction error: 0.2087595141574561, decrease = 1.3415752952994353e-09
iteration 4, reconstruction error: 0.2087595128168899, decrease = 1.3405662135923535e-09
PARAFAC2 reconstruction error=0.8189076782867536, variation=5.900465671615507e-10.
Starting iteration 2633
reconstruction error=0.20875951112387803
iteration 1, reconstruction error: 0.20875950978100968, decrease = 1.3428683443006406e-09
iteration 2, reconstruction error: 0.20875950843917127, decrease = 1.3418384181562715e-09
iteration 3, reconstruction error: 0.20875950709834734, decrease = 1.3408239241119446e-09
iteration 4, reconstruction error: 0.208759505758541, decrease = 1.3398063491987244e-09
PARAFAC2 reconstruction error=0.8189076776970411, variation=5.89712501053441e-10.
Starting iteration 2634
reconstruction error=0.2087595040664924
iteration 1, reconstruction error: 0.20875950272437777, decrease = 1.3421146416447982e-09
iteration 2, reconstruction error: 0.20875950138329302, decrease = 1.3410847432560047e-09
iteration 3, reconstruction error: 0.20875950004322819, decrease = 1.3400648368744328e-09
iteration 4, reconstruction error: 0.20875949870417634, decrease = 1.3390518416311892e-09
PARAFAC2 reconstruction error=0.8189076771076621, variation=5.893789900568436e-10.
Starting iteration 2635
reconstruction error=0.20875949701309027
iteration 1, reconstruction error: 0.20875949567173316, decrease = 1.3413571087195209e-09
iteration 2, reconstruction error: 0.2087594943314114, decrease = 1.3403217702379067e-09
iteration 3, reconstruction error: 0.20875949299210259, decrease = 1.3393088027502387e-09
iteration 4, reconstruction error: 0.2087594916538036, decrease = 1.3382989716426152e-09
PARAFAC2 reconstruction error=0.8189076765186163, variation=5.890458121271536e-10.
Starting iteration 2636
reconstruction error=0.2087594899636746
iteration 1, reconstruction error: 0.208759488623082, decrease = 1.340592609144764e-09
iteration 2, reconstruction error: 0.20875948728351393, decrease = 1.3395680675820643e-09
iteration 3, reconstruction error: 0.2087594859449619, decrease = 1.338552019225503e-09
iteration 4, reconstruction error: 0.20875948460741742, decrease = 1.3375444918306556e-09
PARAFAC2 reconstruction error=0.8189076759299038, variation=5.887125231751611e-10.
Starting iteration 2637
reconstruction error=0.20875948291825253
iteration 1, reconstruction error: 0.20875948157841284, decrease = 1.3398396836450388e-09
iteration 2, reconstruction error: 0.20875948023960075, decrease = 1.3388120889690214e-09
iteration 3, reconstruction error: 0.20875947890180163, decrease = 1.3377991214813534e-09
iteration 4, reconstruction error: 0.20875947756501087, decrease = 1.3367907614192376e-09
PARAFAC2 reconstruction error=0.8189076753415239, variation=5.883799003569834e-10.
Starting iteration 2638
reconstruction error=0.20875947587680307
iteration 1, reconstruction error: 0.20875947453771942, decrease = 1.3390836495208447e-09
iteration 2, reconstruction error: 0.20875947319966645, decrease = 1.338052973975934e-09
iteration 3, reconstruction error: 0.20875947186262103, decrease = 1.337045418825511e-09
iteration 4, reconstruction error: 0.20875947052658622, decrease = 1.3360348105617703e-09
PARAFAC2 reconstruction error=0.8189076747534767, variation=5.880471665165032e-10.
Starting iteration 2639
reconstruction error=0.20875946883933255
iteration 1, reconstruction error: 0.20875946750101107, decrease = 1.3383214814144395e-09
iteration 2, reconstruction error: 0.2087594661637072, decrease = 1.3373038787456437e-09
iteration 3, reconstruction error: 0.20875946482741778, decrease = 1.3362894124568925e-09
iteration 4, reconstruction error: 0.2087594634921313, decrease = 1.3352864924875973e-09
PARAFAC2 reconstruction error=0.8189076741657619, variation=5.877147657429305e-10.
Starting iteration 2640
reconstruction error=0.20875946180584007
iteration 1, reconstruction error: 0.20875946046827615, decrease = 1.3375639207335865e-09
iteration 2, reconstruction error: 0.20875945913172825, decrease = 1.3365479001326008e-09
iteration 3, reconstruction error: 0.2087594577961856, decrease = 1.335542648694954e-09
iteration 4, reconstruction error: 0.20875945646165744, decrease = 1.3345281546506271e-09
PARAFAC2 reconstruction error=0.8189076735783791, variation=5.873828090585675e-10.
Starting iteration 2641
reconstruction error=0.20875945477631958
iteration 1, reconstruction error: 0.20875945343950625, decrease = 1.336813326702213e-09
iteration 2, reconstruction error: 0.2087594521037136, decrease = 1.335792643164524e-09
iteration 3, reconstruction error: 0.20875945076892463, decrease = 1.3347889737946872e-09
iteration 4, reconstruction error: 0.2087594494351463, decrease = 1.333778337775371e-09
PARAFAC2 reconstruction error=0.818907672991328, variation=5.870510744188095e-10.
Starting iteration 2642
reconstruction error=0.20875944775076716
iteration 1, reconstruction error: 0.20875944641470753, decrease = 1.3360596240463707e-09
iteration 2, reconstruction error: 0.2087594450796647, decrease = 1.3350428262892677e-09
iteration 3, reconstruction error: 0.20875944374563715, decrease = 1.3340275550888236e-09
iteration 4, reconstruction error: 0.20875944241260558, decrease = 1.3330315740134324e-09
PARAFAC2 reconstruction error=0.8189076724046088, variation=5.867192287567491e-10.
Starting iteration 2643
reconstruction error=0.2087594407291812
iteration 1, reconstruction error: 0.20875943939387606, decrease = 1.335305144234411e-09
iteration 2, reconstruction error: 0.20875943805958924, decrease = 1.3342868199206492e-09
iteration 3, reconstruction error: 0.2087594367263092, decrease = 1.3332800419263435e-09
iteration 4, reconstruction error: 0.20875943539402825, decrease = 1.3322809522264834e-09
PARAFAC2 reconstruction error=0.8189076718182206, variation=5.863882712731083e-10.
Starting iteration 2644
reconstruction error=0.2087594337115627
iteration 1, reconstruction error: 0.2087594323770058, decrease = 1.3345568816713893e-09
iteration 2, reconstruction error: 0.20875943104347347, decrease = 1.3335323401086896e-09
iteration 3, reconstruction error: 0.2087594297109456, decrease = 1.33252786582716e-09
iteration 4, reconstruction error: 0.20875942837940906, decrease = 1.3315365476884722e-09
PARAFAC2 reconstruction error=0.8189076712321635, variation=5.860570917448626e-10.
Starting iteration 2645
reconstruction error=0.20875942669789602
iteration 1, reconstruction error: 0.2087594253640967, decrease = 1.3337993209905363e-09
iteration 2, reconstruction error: 0.20875942403131034, decrease = 1.3327863535028683e-09
iteration 3, reconstruction error: 0.2087594226995323, decrease = 1.3317780489519038e-09
iteration 4, reconstruction error: 0.20875942136875178, decrease = 1.330780513564278e-09
PARAFAC2 reconstruction error=0.8189076706464371, variation=5.857263563058268e-10.
Starting iteration 2646
reconstruction error=0.20875941968818898
iteration 1, reconstruction error: 0.20875941835513412, decrease = 1.333054860941374e-09
iteration 2, reconstruction error: 0.20875941702310763, decrease = 1.3320264891092393e-09
iteration 3, reconstruction error: 0.20875941569207712, decrease = 1.331030508033848e-09
iteration 4, reconstruction error: 0.2087594143620449, decrease = 1.3300322232456807e-09
PARAFAC2 reconstruction error=0.8189076700610414, variation=5.853957318890934e-10.
Starting iteration 2647
reconstruction error=0.2087594126824316
iteration 1, reconstruction error: 0.2087594113501381, decrease = 1.3322934977466616e-09
iteration 2, reconstruction error: 0.20875941001885143, decrease = 1.3312866642412047e-09
iteration 3, reconstruction error: 0.2087594086885723, decrease = 1.3302791368463573e-09
iteration 4, reconstruction error: 0.20875940735928838, decrease = 1.3292839051715077e-09
PARAFAC2 reconstruction error=0.8189076694759757, variation=5.850656625838724e-10.
Starting iteration 2648
reconstruction error=0.20875940568063225
iteration 1, reconstruction error: 0.20875940434908397, decrease = 1.3315482882969576e-09
iteration 2, reconstruction error: 0.20875940301855023, decrease = 1.3305337387414795e-09
iteration 3, reconstruction error: 0.2087594016890225, decrease = 1.329527737903291e-09
iteration 4, reconstruction error: 0.20875940036047913, decrease = 1.3285433586585071e-09
PARAFAC2 reconstruction error=0.8189076688912401, variation=5.847355932786513e-10.
Starting iteration 2649
reconstruction error=0.20875939868277635
iteration 1, reconstruction error: 0.2087593973519764, decrease = 1.330799942467209e-09
iteration 2, reconstruction error: 0.20875939602219631, decrease = 1.3297800915967883e-09
iteration 3, reconstruction error: 0.20875939469341145, decrease = 1.3287848599219387e-09
iteration 4, reconstruction error: 0.20875939336562183, decrease = 1.3277896282470891e-09
PARAFAC2 reconstruction error=0.8189076683068343, variation=5.844058570403377e-10.
Starting iteration 2650
reconstruction error=0.20875939168886468
iteration 1, reconstruction error: 0.20875939035881608, decrease = 1.330048599035294e-09
iteration 2, reconstruction error: 0.208759389029782, decrease = 1.3290340772353915e-09
iteration 3, reconstruction error: 0.20875938770174546, decrease = 1.3280365418477658e-09
iteration 4, reconstruction error: 0.20875938637470332, decrease = 1.3270421428401846e-09
PARAFAC2 reconstruction error=0.8189076677227582, variation=5.840760097797215e-10.
Starting iteration 2651
reconstruction error=0.20875938469889185
iteration 1, reconstruction error: 0.2087593833695985, decrease = 1.329293342067217e-09
iteration 2, reconstruction error: 0.2087593820413089, decrease = 1.328289617186229e-09
iteration 3, reconstruction error: 0.20875938071401753, decrease = 1.3272913601536374e-09
iteration 4, reconstruction error: 0.20875937938772138, decrease = 1.3262961562343634e-09
PARAFAC2 reconstruction error=0.818907667139011, variation=5.8374727274213e-10.
Starting iteration 2652
reconstruction error=0.20875937771286404
iteration 1, reconstruction error: 0.20875937638431513, decrease = 1.3285489097736303e-09
iteration 2, reconstruction error: 0.20875937505677455, decrease = 1.32754057746709e-09
iteration 3, reconstruction error: 0.2087593737302315, decrease = 1.3265430420794644e-09
iteration 4, reconstruction error: 0.20875937240467826, decrease = 1.3255532504974354e-09
PARAFAC2 reconstruction error=0.8189076665555929, variation=5.834180916153286e-10.
Starting iteration 2653
reconstruction error=0.20875937073076659
iteration 1, reconstruction error: 0.20875936940296597, decrease = 1.327800619455033e-09
iteration 2, reconstruction error: 0.20875936807617523, decrease = 1.3267907328362583e-09
iteration 3, reconstruction error: 0.20875936675037046, decrease = 1.3258047715236643e-09
iteration 4, reconstruction error: 0.20875936542556242, decrease = 1.3248080410477314e-09
PARAFAC2 reconstruction error=0.8189076659725035, variation=5.830893545777371e-10.
Starting iteration 2654
reconstruction error=0.2087593637526041
iteration 1, reconstruction error: 0.20875936242555027, decrease = 1.3270538279375188e-09
iteration 2, reconstruction error: 0.20875936109950088, decrease = 1.3260493814115648e-09
iteration 3, reconstruction error: 0.20875935977444746, decrease = 1.3250534280917492e-09
iteration 4, reconstruction error: 0.20875935845038462, decrease = 1.3240628315980274e-09
PARAFAC2 reconstruction error=0.8189076653897427, variation=5.827608395847506e-10.
Starting iteration 2655
reconstruction error=0.20875935677836585
iteration 1, reconstruction error: 0.2087593554520634, decrease = 1.3263024567500281e-09
iteration 2, reconstruction error: 0.20875935412675767, decrease = 1.3253057262740953e-09
iteration 3, reconstruction error: 0.20875935280245178, decrease = 1.3243058871736935e-09
iteration 4, reconstruction error: 0.2087593514791311, decrease = 1.323320675261641e-09
PARAFAC2 reconstruction error=0.8189076648073099, variation=5.824327686809738e-10.
Starting iteration 2656
reconstruction error=0.2087593498080572
iteration 1, reconstruction error: 0.2087593484824953, decrease = 1.325561882481452e-09
iteration 2, reconstruction error: 0.2087593471579448, decrease = 1.324550497061594e-09
iteration 3, reconstruction error: 0.2087593458343772, decrease = 1.3235676166178933e-09
iteration 4, reconstruction error: 0.20875934451180092, decrease = 1.32257627072363e-09
PARAFAC2 reconstruction error=0.8189076642252051, variation=5.821048087994996e-10.
Starting iteration 2657
reconstruction error=0.20875934284167272
iteration 1, reconstruction error: 0.2087593415168576, decrease = 1.3248151187195134e-09
iteration 2, reconstruction error: 0.20875934019305, decrease = 1.323807591324666e-09
iteration 3, reconstruction error: 0.2087593388702222, decrease = 1.3228278195054344e-09
iteration 4, reconstruction error: 0.2087593375483919, decrease = 1.3218302841178087e-09
PARAFAC2 reconstruction error=0.8189076636434283, variation=5.817768489180253e-10.
Starting iteration 2658
reconstruction error=0.20875933587920786
iteration 1, reconstruction error: 0.20875933455513407, decrease = 1.3240737950503956e-09
iteration 2, reconstruction error: 0.20875933323206938, decrease = 1.3230646855877382e-09
iteration 3, reconstruction error: 0.20875933190999296, decrease = 1.322076420562368e-09
iteration 4, reconstruction error: 0.20875933058889554, decrease = 1.3210974258992536e-09
PARAFAC2 reconstruction error=0.8189076630619786, variation=5.814496661926682e-10.
Starting iteration 2659
reconstruction error=0.2087593289206557
iteration 1, reconstruction error: 0.2087593275973302, decrease = 1.3233255047317982e-09
iteration 2, reconstruction error: 0.20875932627500224, decrease = 1.3223279693441725e-09
iteration 3, reconstruction error: 0.20875932495366795, decrease = 1.3213342919815574e-09
iteration 4, reconstruction error: 0.20875932363331803, decrease = 1.3203499127367735e-09
PARAFAC2 reconstruction error=0.8189076624808563, variation=5.811222614227063e-10.
Starting iteration 2660
reconstruction error=0.20875932196602232
iteration 1, reconstruction error: 0.2087593206434382, decrease = 1.3225841255515292e-09
iteration 2, reconstruction error: 0.20875931932186084, decrease = 1.3215773475572234e-09
iteration 3, reconstruction error: 0.20875931800126324, decrease = 1.3205976034935674e-09
iteration 4, reconstruction error: 0.2087593166816555, decrease = 1.3196077286448116e-09
PARAFAC2 reconstruction error=0.818907661900061, variation=5.807953007419542e-10.
Starting iteration 2661
reconstruction error=0.2087593150152962
iteration 1, reconstruction error: 0.20875931369346268, decrease = 1.3218335315201557e-09
iteration 2, reconstruction error: 0.20875931237262282, decrease = 1.3208398541575406e-09
iteration 3, reconstruction error: 0.2087593110527666, decrease = 1.3198562243132983e-09
iteration 4, reconstruction error: 0.2087593097338971, decrease = 1.318869485844587e-09
PARAFAC2 reconstruction error=0.8189076613195923, variation=5.804687841504119e-10.
Starting iteration 2662
reconstruction error=0.20875930806848128
iteration 1, reconstruction error: 0.20875930674738757, decrease = 1.3210937066521211e-09
iteration 2, reconstruction error: 0.20875930542729063, decrease = 1.3200969484206126e-09
iteration 3, reconstruction error: 0.208759304108175, decrease = 1.3191156222891465e-09
iteration 4, reconstruction error: 0.20875930279004143, decrease = 1.3181335745127143e-09
PARAFAC2 reconstruction error=0.8189076607394499, variation=5.801423785811721e-10.
Starting iteration 2663
reconstruction error=0.20875930112557206
iteration 1, reconstruction error: 0.20875929980521507, decrease = 1.3203569904085555e-09
iteration 2, reconstruction error: 0.2087592984858641, decrease = 1.3193509618147914e-09
iteration 3, reconstruction error: 0.20875929716748517, decrease = 1.3183789338011564e-09
iteration 4, reconstruction error: 0.2087592958500922, decrease = 1.3173929724885625e-09
PARAFAC2 reconstruction error=0.8189076601596338, variation=5.798160840342348e-10.
Starting iteration 2664
reconstruction error=0.20875929418656164
iteration 1, reconstruction error: 0.20875929286695294, decrease = 1.3196087000899581e-09
iteration 2, reconstruction error: 0.20875929154833173, decrease = 1.3186212122207053e-09
iteration 3, reconstruction error: 0.20875929023069803, decrease = 1.3176336965958768e-09
iteration 4, reconstruction error: 0.20875928891404258, decrease = 1.316655451333304e-09
PARAFAC2 reconstruction error=0.8189076595801439, variation=5.794899005095999e-10.
Starting iteration 2665
reconstruction error=0.20875928725144852
iteration 1, reconstruction error: 0.20875928593257964, decrease = 1.3188688752219235e-09
iteration 2, reconstruction error: 0.20875928461470597, decrease = 1.3178736713026495e-09
iteration 3, reconstruction error: 0.2087592832978082, decrease = 1.3168977575084284e-09
iteration 4, reconstruction error: 0.20875928198189253, decrease = 1.3159156819764206e-09
PARAFAC2 reconstruction error=0.8189076590009793, variation=5.791646051633847e-10.
Starting iteration 2666
reconstruction error=0.20875928032023494
iteration 1, reconstruction error: 0.208759279002102, decrease = 1.3181329361344751e-09
iteration 2, reconstruction error: 0.20875927768496583, decrease = 1.3171361779029667e-09
iteration 3, reconstruction error: 0.20875927636881175, decrease = 1.3161540746153833e-09
iteration 4, reconstruction error: 0.2087592750536305, decrease = 1.3151812416900555e-09
PARAFAC2 reconstruction error=0.8189076584221402, variation=5.788390877725647e-10.
Starting iteration 2667
reconstruction error=0.20875927339291098
iteration 1, reconstruction error: 0.2087592720755217, decrease = 1.3173892809970056e-09
iteration 2, reconstruction error: 0.208759270759123, decrease = 1.3163986845032838e-09
iteration 3, reconstruction error: 0.20875926944370335, decrease = 1.3154196620845937e-09
iteration 4, reconstruction error: 0.2087592681292596, decrease = 1.3144437482903726e-09
PARAFAC2 reconstruction error=0.8189076578436264, variation=5.785137924263495e-10.
Starting iteration 2668
reconstruction error=0.20875926646947887
iteration 1, reconstruction error: 0.20875926515282942, decrease = 1.316649456128971e-09
iteration 2, reconstruction error: 0.208759263837169, decrease = 1.3156604139474837e-09
iteration 3, reconstruction error: 0.2087592625224868, decrease = 1.3146821964404865e-09
iteration 4, reconstruction error: 0.20875926120877825, decrease = 1.3137085586034658e-09
PARAFAC2 reconstruction error=0.8189076572654376, variation=5.781888301470417e-10.
Starting iteration 2669
reconstruction error=0.20875925954993405
iteration 1, reconstruction error: 0.20875925823402364, decrease = 1.3159104084170536e-09
iteration 2, reconstruction error: 0.20875925691910224, decrease = 1.314921393991142e-09
iteration 3, reconstruction error: 0.2087592556051514, decrease = 1.3139508370230146e-09
iteration 4, reconstruction error: 0.20875925429218264, decrease = 1.3129687614910068e-09
PARAFAC2 reconstruction error=0.8189076566875731, variation=5.778644229792462e-10.
Starting iteration 2670
reconstruction error=0.20875925263427414
iteration 1, reconstruction error: 0.20875925131909506, decrease = 1.3151790767551574e-09
iteration 2, reconstruction error: 0.20875925000491272, decrease = 1.3141823462792246e-09
iteration 3, reconstruction error: 0.20875924869170245, decrease = 1.3132102627544384e-09
iteration 4, reconstruction error: 0.20875924737946425, decrease = 1.3122382069852279e-09
PARAFAC2 reconstruction error=0.8189076561100335, variation=5.775396827445434e-10.
Starting iteration 2671
reconstruction error=0.2087592457224915
iteration 1, reconstruction error: 0.20875924440805455, decrease = 1.3144369481743468e-09
iteration 2, reconstruction error: 0.20875924309460508, decrease = 1.313449460305094e-09
iteration 3, reconstruction error: 0.20875924178213232, decrease = 1.3124727693547555e-09
iteration 4, reconstruction error: 0.20875924047062852, decrease = 1.3115037944544383e-09
PARAFAC2 reconstruction error=0.8189076555328177, variation=5.772157196659577e-10.
Starting iteration 2672
reconstruction error=0.2087592388145877
iteration 1, reconstruction error: 0.208759237500889, decrease = 1.3136986776185466e-09
iteration 2, reconstruction error: 0.20875923618817782, decrease = 1.3127111897492938e-09
iteration 3, reconstruction error: 0.20875923487643713, decrease = 1.3117406882923177e-09
iteration 4, reconstruction error: 0.20875923356566697, decrease = 1.310770159079766e-09
PARAFAC2 reconstruction error=0.8189076549559261, variation=5.768916455650697e-10.
Starting iteration 2673
reconstruction error=0.20875923191055806
iteration 1, reconstruction error: 0.20875923059759455, decrease = 1.3129635156872155e-09
iteration 2, reconstruction error: 0.20875922928561932, decrease = 1.3119752229062698e-09
iteration 3, reconstruction error: 0.20875922797461305, decrease = 1.3110062757615282e-09
iteration 4, reconstruction error: 0.20875922666457578, decrease = 1.3100372731056353e-09
PARAFAC2 reconstruction error=0.818907654379358, variation=5.765681265756939e-10.
Starting iteration 2674
reconstruction error=0.20875922501040647
iteration 1, reconstruction error: 0.2087592236981727, decrease = 1.3122337660931294e-09
iteration 2, reconstruction error: 0.20875922238693267, decrease = 1.311240033219363e-09
iteration 3, reconstruction error: 0.2087592210766608, decrease = 1.3102718632307386e-09
iteration 4, reconstruction error: 0.20875921976735795, decrease = 1.3093028605748458e-09
PARAFAC2 reconstruction error=0.8189076538031135, variation=5.762444965640157e-10.
Starting iteration 2675
reconstruction error=0.20875921811411516
iteration 1, reconstruction error: 0.2087592168026228, decrease = 1.3114923591572847e-09
iteration 2, reconstruction error: 0.20875921549211252, decrease = 1.3105102836252769e-09
iteration 3, reconstruction error: 0.20875921418257506, decrease = 1.309537450699949e-09
iteration 4, reconstruction error: 0.2087592128740012, decrease = 1.3085738603813013e-09
PARAFAC2 reconstruction error=0.818907653227192, variation=5.759215326861522e-10.
Starting iteration 2676
reconstruction error=0.2087592112216919
iteration 1, reconstruction error: 0.2087592099109347, decrease = 1.3107571972259535e-09
iteration 2, reconstruction error: 0.20875920860116193, decrease = 1.3097727624700184e-09
iteration 3, reconstruction error: 0.2087592072923558, decrease = 1.3088061190380529e-09
iteration 4, reconstruction error: 0.20875920598451478, decrease = 1.3078410299183219e-09
PARAFAC2 reconstruction error=0.8189076526515935, variation=5.755984577859863e-10.
Starting iteration 2677
reconstruction error=0.2087592043331374
iteration 1, reconstruction error: 0.20875920302311154, decrease = 1.3100258655640573e-09
iteration 2, reconstruction error: 0.2087592017140701, decrease = 1.3090414585636978e-09
iteration 3, reconstruction error: 0.20875920040599374, decrease = 1.3080763416883912e-09
iteration 4, reconstruction error: 0.2087591990988833, decrease = 1.3071104476569673e-09
PARAFAC2 reconstruction error=0.8189076520763174, variation=5.752760490196351e-10.
Starting iteration 2678
reconstruction error=0.20875919744843405
iteration 1, reconstruction error: 0.20875919613914412, decrease = 1.309289926476609e-09
iteration 2, reconstruction error: 0.20875919483083555, decrease = 1.3083085725895671e-09
iteration 3, reconstruction error: 0.2087591935234905, decrease = 1.3073450377820706e-09
iteration 4, reconstruction error: 0.20875919221711525, decrease = 1.3063752579700605e-09
PARAFAC2 reconstruction error=0.818907651501364, variation=5.749534182086791e-10.
Starting iteration 2679
reconstruction error=0.2087591905675902
iteration 1, reconstruction error: 0.20875918925903625, decrease = 1.3085539596335849e-09
iteration 2, reconstruction error: 0.2087591879514536, decrease = 1.307582653264916e-09
iteration 3, reconstruction error: 0.20875918664484452, decrease = 1.3066090709390465e-09
iteration 4, reconstruction error: 0.20875918533919366, decrease = 1.3056508652020682e-09
PARAFAC2 reconstruction error=0.8189076509267329, variation=5.746311204646304e-10.
Starting iteration 2680
reconstruction error=0.20875918369059823
iteration 1, reconstruction error: 0.20875918238277405, decrease = 1.3078241822839232e-09
iteration 2, reconstruction error: 0.20875918107593197, decrease = 1.3068420789963398e-09
iteration 3, reconstruction error: 0.20875917977005193, decrease = 1.3058800429899264e-09
iteration 4, reconstruction error: 0.20875917846513006, decrease = 1.3049218650085237e-09
PARAFAC2 reconstruction error=0.8189076503524235, variation=5.74309377832094e-10.
Starting iteration 2681
reconstruction error=0.2087591768174643
iteration 1, reconstruction error: 0.20875917551037607, decrease = 1.3070882431964748e-09
iteration 2, reconstruction error: 0.20875917420425605, decrease = 1.3061200176966992e-09
iteration 3, reconstruction error: 0.20875917289910734, decrease = 1.3051487113280302e-09
iteration 4, reconstruction error: 0.20875917159491678, decrease = 1.3041905611022031e-09
PARAFAC2 reconstruction error=0.818907649778436, variation=5.739875241772552e-10.
Starting iteration 2682
reconstruction error=0.20875916994817525
iteration 1, reconstruction error: 0.20875916864181296, decrease = 1.306362296116248e-09
iteration 2, reconstruction error: 0.208759167336432, decrease = 1.3053809699847818e-09
iteration 3, reconstruction error: 0.208759166032003, decrease = 1.3044289814967414e-09
iteration 4, reconstruction error: 0.20875916472854225, decrease = 1.3034607559969658e-09
PARAFAC2 reconstruction error=0.8189076492047698, variation=5.736662256339287e-10.
Starting iteration 2683
reconstruction error=0.2087591630827304
iteration 1, reconstruction error: 0.2087591617770987, decrease = 1.3056317138548934e-09
iteration 2, reconstruction error: 0.20875916047244594, decrease = 1.3046527469473546e-09
iteration 3, reconstruction error: 0.20875915916874907, decrease = 1.303696872678728e-09
iteration 4, reconstruction error: 0.2087591578660119, decrease = 1.3027371681406663e-09
PARAFAC2 reconstruction error=0.8189076486314246, variation=5.733451491352071e-10.
Starting iteration 2684
reconstruction error=0.20875915622112579
iteration 1, reconstruction error: 0.2087591549162246, decrease = 1.30490118710469e-09
iteration 2, reconstruction error: 0.20875915361230474, decrease = 1.3039198609732239e-09
iteration 3, reconstruction error: 0.20875915230933534, decrease = 1.3029693990418423e-09
iteration 4, reconstruction error: 0.2087591510073272, decrease = 1.3020081401915462e-09
PARAFAC2 reconstruction error=0.8189076480584008, variation=5.730238505918805e-10.
Starting iteration 2685
reconstruction error=0.20875914936336082
iteration 1, reconstruction error: 0.2087591480591925, decrease = 1.304168328886135e-09
iteration 2, reconstruction error: 0.20875914675599394, decrease = 1.303198549074125e-09
iteration 3, reconstruction error: 0.20875914545375737, decrease = 1.3022365685788628e-09
iteration 4, reconstruction error: 0.20875914415247518, decrease = 1.3012821931113194e-09
PARAFAC2 reconstruction error=0.8189076474856974, variation=5.727033292046713e-10.
Starting iteration 2686
reconstruction error=0.2087591425094338
iteration 1, reconstruction error: 0.20875914120598832, decrease = 1.3034454904303772e-09
iteration 2, reconstruction error: 0.20875913990352415, decrease = 1.302464164298911e-09
iteration 3, reconstruction error: 0.2087591386020143, decrease = 1.3015098443425188e-09
iteration 4, reconstruction error: 0.2087591373014596, decrease = 1.3005547194744338e-09
PARAFAC2 reconstruction error=0.8189076469133144, variation=5.723830298620669e-10.
Starting iteration 2687
reconstruction error=0.20875913565933865
iteration 1, reconstruction error: 0.20875913435662605, decrease = 1.3027126044562465e-09
iteration 2, reconstruction error: 0.2087591330548878, decrease = 1.3017382449742598e-09
iteration 3, reconstruction error: 0.20875913175409697, decrease = 1.300790836156196e-09
iteration 4, reconstruction error: 0.2087591304542674, decrease = 1.2998295773058999e-09
PARAFAC2 reconstruction error=0.8189076463412516, variation=5.72062841541765e-10.
Starting iteration 2688
reconstruction error=0.20875912881307535
iteration 1, reconstruction error: 0.20875912751109252, decrease = 1.3019828271065848e-09
iteration 2, reconstruction error: 0.20875912621007867, decrease = 1.3010138522062675e-09
iteration 3, reconstruction error: 0.20875912491001836, decrease = 1.3000603094059926e-09
iteration 4, reconstruction error: 0.2087591236109085, decrease = 1.299109847474611e-09
PARAFAC2 reconstruction error=0.8189076457695086, variation=5.717429862883705e-10.
Starting iteration 2689
reconstruction error=0.20875912197064006
iteration 1, reconstruction error: 0.20875912066938007, decrease = 1.301259988650827e-09
iteration 2, reconstruction error: 0.2087591193690937, decrease = 1.3002863785693819e-09
iteration 3, reconstruction error: 0.20875911806975855, decrease = 1.299335139481883e-09
iteration 4, reconstruction error: 0.2087591167713754, decrease = 1.2983831509938426e-09
PARAFAC2 reconstruction error=0.8189076451980857, variation=5.714229089903711e-10.
Starting iteration 2690
reconstruction error=0.20875911513202422
iteration 1, reconstruction error: 0.2087591138314917, decrease = 1.3005325150139413e-09
iteration 2, reconstruction error: 0.20875911253193433, decrease = 1.2995573783758374e-09
iteration 3, reconstruction error: 0.20875911123332277, decrease = 1.2986115516255836e-09
iteration 4, reconstruction error: 0.20875910993566482, decrease = 1.2976579533141575e-09
PARAFAC2 reconstruction error=0.818907644626982, variation=5.711037198707913e-10.
Starting iteration 2691
reconstruction error=0.20875910829723415
iteration 1, reconstruction error: 0.2087591069974322, decrease = 1.2998019605081623e-09
iteration 2, reconstruction error: 0.20875910569859227, decrease = 1.298839924501749e-09
iteration 3, reconstruction error: 0.20875910440071282, decrease = 1.2978794428075702e-09
iteration 4, reconstruction error: 0.2087591031037692, decrease = 1.2969436358201136e-09
PARAFAC2 reconstruction error=0.8189076440561976, variation=5.707843087066067e-10.
Starting iteration 2692
reconstruction error=0.20875910146626125
iteration 1, reconstruction error: 0.20875910016718444, decrease = 1.2990768183396284e-09
iteration 2, reconstruction error: 0.2087590988690712, decrease = 1.2981132280209806e-09
iteration 3, reconstruction error: 0.20875909757190844, decrease = 1.297162766089599e-09
iteration 4, reconstruction error: 0.2087590962756977, decrease = 1.296210749845983e-09
PARAFAC2 reconstruction error=0.818907643485732, variation=5.704656746985393e-10.
Starting iteration 2693
reconstruction error=0.20875909463910172
iteration 1, reconstruction error: 0.20875909334074466, decrease = 1.298357060752764e-09
iteration 2, reconstruction error: 0.20875909204335968, decrease = 1.2973849772279777e-09
iteration 3, reconstruction error: 0.2087590907469221, decrease = 1.2964375961654895e-09
iteration 4, reconstruction error: 0.2087590894514303, decrease = 1.2954917971708113e-09
PARAFAC2 reconstruction error=0.8189076429155853, variation=5.701467076235645e-10.
Starting iteration 2694
reconstruction error=0.20875908781575792
iteration 1, reconstruction error: 0.2087590865181291, decrease = 1.297628809959761e-09
iteration 2, reconstruction error: 0.2087590852214654, decrease = 1.2966636930844544e-09
iteration 3, reconstruction error: 0.20875908392574677, decrease = 1.2957186434903178e-09
iteration 4, reconstruction error: 0.20875908263097628, decrease = 1.2947704852717123e-09
PARAFAC2 reconstruction error=0.818907642345757, variation=5.69828295660102e-10.
Starting iteration 2695
reconstruction error=0.20875908099621976
iteration 1, reconstruction error: 0.2087590796993138, decrease = 1.2969059715040032e-09
iteration 2, reconstruction error: 0.2087590784033737, decrease = 1.2959400774725793e-09
iteration 3, reconstruction error: 0.20875907710838176, decrease = 1.2949919470095494e-09
iteration 4, reconstruction error: 0.20875907581433106, decrease = 1.2940506999292722e-09
PARAFAC2 reconstruction error=0.8189076417762471, variation=5.695098836966395e-10.
Starting iteration 2696
reconstruction error=0.2087590741804904
iteration 1, reconstruction error: 0.20875907288431034, decrease = 1.296180052179352e-09
iteration 2, reconstruction error: 0.20875907158909, decrease = 1.2952203476412905e-09
iteration 3, reconstruction error: 0.20875907029481627, decrease = 1.2942737159793438e-09
iteration 4, reconstruction error: 0.20875906900149072, decrease = 1.2933255577607383e-09
PARAFAC2 reconstruction error=0.8189076412070551, variation=5.691920268446893e-10.
Starting iteration 2697
reconstruction error=0.20875906736856742
iteration 1, reconstruction error: 0.2087590660731102, decrease = 1.2954572137235942e-09
iteration 2, reconstruction error: 0.20875906477861347, decrease = 1.2944967320294154e-09
iteration 3, reconstruction error: 0.20875906348505952, decrease = 1.2935539583924793e-09
iteration 4, reconstruction error: 0.20875906219245058, decrease = 1.2926089365539184e-09
PARAFAC2 reconstruction error=0.8189076406381808, variation=5.688742810150416e-10.
Starting iteration 2698
reconstruction error=0.20875906056044244
iteration 1, reconstruction error: 0.2087590592657065, decrease = 1.2947359295800709e-09
iteration 2, reconstruction error: 0.2087590579719334, decrease = 1.2937731164175403e-09
iteration 3, reconstruction error: 0.20875905667910075, decrease = 1.2928326464933804e-09
iteration 4, reconstruction error: 0.20875905538721312, decrease = 1.2918876246548194e-09
PARAFAC2 reconstruction error=0.8189076400696238, variation=5.685569792746037e-10.
Starting iteration 2699
reconstruction error=0.20875905375611006
iteration 1, reconstruction error: 0.20875905246210008, decrease = 1.2940099824998441e-09
iteration 2, reconstruction error: 0.20875905116904747, decrease = 1.2930526094301342e-09
iteration 3, reconstruction error: 0.20875904987693455, decrease = 1.2921129166620915e-09
iteration 4, reconstruction error: 0.20875904858576283, decrease = 1.2911717250929655e-09
PARAFAC2 reconstruction error=0.8189076395013841, variation=5.682396775341658e-10.
Starting iteration 2700
reconstruction error=0.20875904695558256
iteration 1, reconstruction error: 0.20875904566229003, decrease = 1.2932925286257557e-09
iteration 2, reconstruction error: 0.20875904436995718, decrease = 1.2923328518432697e-09
iteration 3, reconstruction error: 0.2087590430785648, decrease = 1.2913923819191098e-09
iteration 4, reconstruction error: 0.2087590417881082, decrease = 1.2904566026872288e-09
PARAFAC2 reconstruction error=0.8189076389334616, variation=5.679224868160304e-10.
Starting iteration 2701
reconstruction error=0.20875904015884228
iteration 1, reconstruction error: 0.2087590388662749, decrease = 1.2925673864572218e-09
iteration 2, reconstruction error: 0.2087590375746595, decrease = 1.2916153979691813e-09
iteration 3, reconstruction error: 0.20875903628398146, decrease = 1.2906780366694903e-09
iteration 4, reconstruction error: 0.2087590349942477, decrease = 1.289733764231471e-09
PARAFAC2 reconstruction error=0.8189076383658559, variation=5.676057401871049e-10.
Starting iteration 2702
reconstruction error=0.2087590333658946
iteration 1, reconstruction error: 0.2087590320740377, decrease = 1.291856899232613e-09
iteration 2, reconstruction error: 0.20875903078314514, decrease = 1.2908925595134235e-09
iteration 3, reconstruction error: 0.20875902949318612, decrease = 1.2899590284831675e-09
iteration 4, reconstruction error: 0.20875902820417522, decrease = 1.2890108980201376e-09
PARAFAC2 reconstruction error=0.8189076377985665, variation=5.672894376473891e-10.
Starting iteration 2703
reconstruction error=0.20875902657673182
iteration 1, reconstruction error: 0.2087590252855962, decrease = 1.2911356150890896e-09
iteration 2, reconstruction error: 0.20875902399542032, decrease = 1.2901758827954524e-09
iteration 3, reconstruction error: 0.20875902270618027, decrease = 1.2892400480524202e-09
iteration 4, reconstruction error: 0.20875902141788139, decrease = 1.2882988842388698e-09
PARAFAC2 reconstruction error=0.8189076372315934, variation=5.66973024085371e-10.
Starting iteration 2704
reconstruction error=0.2087590197913493
iteration 1, reconstruction error: 0.20875901850093578, decrease = 1.2904135260338734e-09
iteration 2, reconstruction error: 0.20875901721147655, decrease = 1.2894592338330568e-09
iteration 3, reconstruction error: 0.20875901592295545, decrease = 1.2885210953772486e-09
iteration 4, reconstruction error: 0.20875901463536944, decrease = 1.287586010034758e-09
PARAFAC2 reconstruction error=0.8189076366649365, variation=5.666569435902602e-10.
Starting iteration 2705
reconstruction error=0.20875901300974628
iteration 1, reconstruction error: 0.20875901172005173, decrease = 1.2896945456031261e-09
iteration 2, reconstruction error: 0.2087590104313123, decrease = 1.2887394484906167e-09
iteration 3, reconstruction error: 0.20875900914350712, decrease = 1.287805168059819e-09
iteration 4, reconstruction error: 0.20875900785663462, decrease = 1.286872497452407e-09
PARAFAC2 reconstruction error=0.8189076360985953, variation=5.663411961620568e-10.
Starting iteration 2706
reconstruction error=0.2087590062319243
iteration 1, reconstruction error: 0.2087590049429464, decrease = 1.2889778966407306e-09
iteration 2, reconstruction error: 0.2087590036549275, decrease = 1.288018913747635e-09
iteration 3, reconstruction error: 0.20875900236783126, decrease = 1.2870962351474446e-09
iteration 4, reconstruction error: 0.20875900108167933, decrease = 1.2861519349538497e-09
PARAFAC2 reconstruction error=0.8189076355325695, variation=5.660257818007608e-10.
Starting iteration 2707
reconstruction error=0.20875899945787874
iteration 1, reconstruction error: 0.20875899816961446, decrease = 1.2882642730360772e-09
iteration 2, reconstruction error: 0.2087589968823099, decrease = 1.2873045684980156e-09
iteration 3, reconstruction error: 0.20875899559593109, decrease = 1.2863788090289319e-09
iteration 4, reconstruction error: 0.20875899431049272, decrease = 1.2854383668603475e-09
PARAFAC2 reconstruction error=0.8189076349668591, variation=5.657103674394648e-10.
Starting iteration 2708
reconstruction error=0.20875899268759807
iteration 1, reconstruction error: 0.2087589914000574, decrease = 1.287540657424202e-09
iteration 2, reconstruction error: 0.20875899011346719, decrease = 1.2865902232483961e-09
iteration 3, reconstruction error: 0.2087589888278066, decrease = 1.2856605779987262e-09
iteration 4, reconstruction error: 0.20875898754308259, decrease = 1.284724021610728e-09
PARAFAC2 reconstruction error=0.8189076344014639, variation=5.653952861450762e-10.
Starting iteration 2709
reconstruction error=0.20875898592109077
iteration 1, reconstruction error: 0.20875898463426443, decrease = 1.2868263399301583e-09
iteration 2, reconstruction error: 0.20875898334838933, decrease = 1.2858751008426594e-09
iteration 3, reconstruction error: 0.20875898206344234, decrease = 1.2849469821496484e-09
iteration 4, reconstruction error: 0.2087589807794319, decrease = 1.2840104535172259e-09
PARAFAC2 reconstruction error=0.8189076338363837, variation=5.650802048506876e-10.
Starting iteration 2710
reconstruction error=0.20875897915834984
iteration 1, reconstruction error: 0.20875897787224326, decrease = 1.2861065823432938e-09
iteration 2, reconstruction error: 0.2087589765870779, decrease = 1.2851653630185922e-09
iteration 3, reconstruction error: 0.2087589753028468, decrease = 1.2842311103433701e-09
iteration 4, reconstruction error: 0.20875897401954455, decrease = 1.2833022422498175e-09
PARAFAC2 reconstruction error=0.8189076332716176, variation=5.647660117347186e-10.
Starting iteration 2711
reconstruction error=0.2087589723993723
iteration 1, reconstruction error: 0.20875897111398006, decrease = 1.2853922370936743e-09
iteration 2, reconstruction error: 0.2087589698295306, decrease = 1.2844494634567383e-09
iteration 3, reconstruction error: 0.20875896854601153, decrease = 1.2835190688065268e-09
iteration 4, reconstruction error: 0.20875896726342133, decrease = 1.2825902007129741e-09
PARAFAC2 reconstruction error=0.818907632707166, variation=5.644515965741448e-10.
Starting iteration 2712
reconstruction error=0.2087589656441519
iteration 1, reconstruction error: 0.20875896435947325, decrease = 1.2846786412445965e-09
iteration 2, reconstruction error: 0.20875896307573968, decrease = 1.2837335638948844e-09
iteration 3, reconstruction error: 0.20875896179293343, decrease = 1.2828062501135662e-09
iteration 4, reconstruction error: 0.2087589605110599, decrease = 1.281873523995003e-09
PARAFAC2 reconstruction error=0.8189076321430285, variation=5.641375144804783e-10.
Starting iteration 2713
reconstruction error=0.20875895889269255
iteration 1, reconstruction error: 0.20875895760872903, decrease = 1.2839635188388598e-09
iteration 2, reconstruction error: 0.20875895632570365, decrease = 1.2830253803830516e-09
iteration 3, reconstruction error: 0.20875895504360867, decrease = 1.28209498573284e-09
iteration 4, reconstruction error: 0.20875895376244177, decrease = 1.2811668947954047e-09
PARAFAC2 reconstruction error=0.818907631579205, variation=5.638235434091143e-10.
Starting iteration 2714
reconstruction error=0.2087589521449819
iteration 1, reconstruction error: 0.20875895086173044, decrease = 1.2832514773020165e-09
iteration 2, reconstruction error: 0.20875894957942173, decrease = 1.2823087036650804e-09
iteration 3, reconstruction error: 0.20875894829804034, decrease = 1.2813813898837623e-09
iteration 4, reconstruction error: 0.2087589470175878, decrease = 1.2804525495457852e-09
PARAFAC2 reconstruction error=0.8189076310156949, variation=5.635101274492627e-10.
Starting iteration 2715
reconstruction error=0.20875894540103
iteration 1, reconstruction error: 0.20875894411848978, decrease = 1.2825402129212904e-09
iteration 2, reconstruction error: 0.2087589428368931, decrease = 1.281596662128237e-09
iteration 3, reconstruction error: 0.20875894155622143, decrease = 1.2806716798152706e-09
iteration 4, reconstruction error: 0.20875894027647243, decrease = 1.2797490012150803e-09
PARAFAC2 reconstruction error=0.8189076304524981, variation=5.63196711489411e-10.
Starting iteration 2716
reconstruction error=0.2087589386608191
iteration 1, reconstruction error: 0.2087589373789948, decrease = 1.2818242856038609e-09
iteration 2, reconstruction error: 0.20875893609810786, decrease = 1.2808869520597455e-09
iteration 3, reconstruction error: 0.20875893481815364, decrease = 1.2799542259411822e-09
iteration 4, reconstruction error: 0.20875893353910743, decrease = 1.279046202284917e-09
PARAFAC2 reconstruction error=0.8189076298896147, variation=5.628834065518618e-10.
Starting iteration 2717
reconstruction error=0.20875893192435846
iteration 1, reconstruction error: 0.2087589306432439, decrease = 1.2811145477797936e-09
iteration 2, reconstruction error: 0.20875892936307283, decrease = 1.2801710802534672e-09
iteration 3, reconstruction error: 0.2087589280838206, decrease = 1.2792522319227118e-09
iteration 4, reconstruction error: 0.2087589268054934, decrease = 1.278327194098594e-09
PARAFAC2 reconstruction error=0.8189076293270442, variation=5.625705457035224e-10.
Starting iteration 2718
reconstruction error=0.20875892519164116
iteration 1, reconstruction error: 0.20875892391124018, decrease = 1.2804009796862914e-09
iteration 2, reconstruction error: 0.20875892263177653, decrease = 1.279463646142176e-09
iteration 3, reconstruction error: 0.20875892135323174, decrease = 1.2785447978114206e-09
iteration 4, reconstruction error: 0.20875892007561267, decrease = 1.2776190660979125e-09
PARAFAC2 reconstruction error=0.8189076287647861, variation=5.622581289443929e-10.
Starting iteration 2719
reconstruction error=0.20875891846266562
iteration 1, reconstruction error: 0.20875891718297204, decrease = 1.2796935733305759e-09
iteration 2, reconstruction error: 0.20875891590421658, decrease = 1.2787554626303432e-09
iteration 3, reconstruction error: 0.20875891462638382, decrease = 1.2778327562745773e-09
iteration 4, reconstruction error: 0.20875891334947067, decrease = 1.2769131585432802e-09
PARAFAC2 reconstruction error=0.8189076282028408, variation=5.619452680960535e-10.
Starting iteration 2720
reconstruction error=0.20875891173742733
iteration 1, reconstruction error: 0.20875891045844192, decrease = 1.2789854175743187e-09
iteration 2, reconstruction error: 0.20875890918039772, decrease = 1.2780441982496171e-09
iteration 3, reconstruction error: 0.2087589079032708, decrease = 1.2771269042310962e-09
iteration 4, reconstruction error: 0.20875890662706584, decrease = 1.2762049750314475e-09
PARAFAC2 reconstruction error=0.8189076276412073, variation=5.616335174707388e-10.
Starting iteration 2721
reconstruction error=0.20875890501591454
iteration 1, reconstruction error: 0.20875890373764427, decrease = 1.2782702674130064e-09
iteration 2, reconstruction error: 0.20875890246030596, decrease = 1.2773383184505605e-09
iteration 3, reconstruction error: 0.20875890118389034, decrease = 1.2764156120947945e-09
iteration 4, reconstruction error: 0.20875889990839044, decrease = 1.2754999001440837e-09
PARAFAC2 reconstruction error=0.8189076270798858, variation=5.613214337785166e-10.
Starting iteration 2722
reconstruction error=0.2087588982981405
iteration 1, reconstruction error: 0.20875889702057843, decrease = 1.2775620839011737e-09
iteration 2, reconstruction error: 0.20875889574394754, decrease = 1.2766308843392693e-09
iteration 3, reconstruction error: 0.208758894468237, decrease = 1.2757105372074307e-09
iteration 4, reconstruction error: 0.20875889319344917, decrease = 1.2747878308516647e-09
PARAFAC2 reconstruction error=0.818907626518876, variation=5.610097941755043e-10.
Starting iteration 2723
reconstruction error=0.2087588915840921
iteration 1, reconstruction error: 0.20875889030724437, decrease = 1.2768477386515542e-09
iteration 2, reconstruction error: 0.20875888903131626, decrease = 1.2759281131646816e-09
iteration 3, reconstruction error: 0.20875888775631546, decrease = 1.2750007993833634e-09
iteration 4, reconstruction error: 0.2087588864822296, decrease = 1.2740858645887698e-09
PARAFAC2 reconstruction error=0.8189076259581779, variation=5.606981545724921e-10.
Starting iteration 2724
reconstruction error=0.20875888487377323
iteration 1, reconstruction error: 0.20875888359762595, decrease = 1.2761472711897426e-09
iteration 2, reconstruction error: 0.20875888232241294, decrease = 1.2752130185145205e-09
iteration 3, reconstruction error: 0.2087588810481134, decrease = 1.274299527009859e-09
iteration 4, reconstruction error: 0.2087588797747342, decrease = 1.273379207633596e-09
PARAFAC2 reconstruction error=0.8189076253977907, variation=5.603871811032946e-10.
Starting iteration 2725
reconstruction error=0.20875887816717373
iteration 1, reconstruction error: 0.20875887689173467, decrease = 1.2754390599223342e-09
iteration 2, reconstruction error: 0.20875887561722675, decrease = 1.274507915871581e-09
iteration 3, reconstruction error: 0.2087588743436369, decrease = 1.273589844696943e-09
iteration 4, reconstruction error: 0.20875887307095975, decrease = 1.2726771581039742e-09
PARAFAC2 reconstruction error=0.8189076248377146, variation=5.600760966117946e-10.
Starting iteration 2726
reconstruction error=0.2087588714642968
iteration 1, reconstruction error: 0.2087588701895636, decrease = 1.2747332078788531e-09
iteration 2, reconstruction error: 0.20875886891576387, decrease = 1.2737997323597483e-09
iteration 3, reconstruction error: 0.20875886764287835, decrease = 1.2728855192101207e-09
iteration 4, reconstruction error: 0.20875886637090782, decrease = 1.271970528904376e-09
PARAFAC2 reconstruction error=0.8189076242779493, variation=5.59765345187202e-10.
Starting iteration 2727
reconstruction error=0.20875886476513245
iteration 1, reconstruction error: 0.20875886349110742, decrease = 1.2740250243670204e-09
iteration 2, reconstruction error: 0.20875886221801204, decrease = 1.2730953791173505e-09
iteration 3, reconstruction error: 0.20875886094583085, decrease = 1.2721811937232985e-09
iteration 4, reconstruction error: 0.20875885967456, decrease = 1.2712708385986815e-09
PARAFAC2 reconstruction error=0.8189076237184945, variation=5.594548158072143e-10.
Starting iteration 2728
reconstruction error=0.20875885806968444
iteration 1, reconstruction error: 0.20875885679636913, decrease = 1.2733153142985287e-09
iteration 2, reconstruction error: 0.2087588555239773, decrease = 1.2723918307866455e-09
iteration 3, reconstruction error: 0.2087588542525012, decrease = 1.271476091080359e-09
iteration 4, reconstruction error: 0.20875885298193625, decrease = 1.2705649587996248e-09
PARAFAC2 reconstruction error=0.8189076231593501, variation=5.591443974495292e-10.
Starting iteration 2729
reconstruction error=0.2087588513779536
iteration 1, reconstruction error: 0.208758850105338, decrease = 1.2726155962372587e-09
iteration 2, reconstruction error: 0.2087588488336536, decrease = 1.27168442443093e-09
iteration 3, reconstruction error: 0.2087588475628795, decrease = 1.2707740970618886e-09
iteration 4, reconstruction error: 0.20875884629301347, decrease = 1.269866017894472e-09
PARAFAC2 reconstruction error=0.8189076226005152, variation=5.588348672702637e-10.
Starting iteration 2730
reconstruction error=0.20875884468992761
iteration 1, reconstruction error: 0.2087588434180156, decrease = 1.2719120201509782e-09
iteration 2, reconstruction error: 0.20875884214703702, decrease = 1.270978572387449e-09
iteration 3, reconstruction error: 0.20875884087696805, decrease = 1.2700689666633735e-09
iteration 4, reconstruction error: 0.2087588396078017, decrease = 1.2691663553443533e-09
PARAFAC2 reconstruction error=0.8189076220419905, variation=5.585246709571834e-10.
Starting iteration 2731
reconstruction error=0.20875883800560724
iteration 1, reconstruction error: 0.2087588367344003, decrease = 1.2712069452636143e-09
iteration 2, reconstruction error: 0.20875883546412144, decrease = 1.270278854326179e-09
iteration 3, reconstruction error: 0.20875883419474905, decrease = 1.2693723849821481e-09
iteration 4, reconstruction error: 0.208758832926294, decrease = 1.2684550632080516e-09
PARAFAC2 reconstruction error=0.8189076214837755, variation=5.582150297556154e-10.
Starting iteration 2732
reconstruction error=0.20875883132498244
iteration 1, reconstruction error: 0.20875883005448598, decrease = 1.2704964580390055e-09
iteration 2, reconstruction error: 0.20875882878491148, decrease = 1.2695745010837811e-09
iteration 3, reconstruction error: 0.20875882751624264, decrease = 1.2686688366514431e-09
iteration 4, reconstruction error: 0.2087588262484788, decrease = 1.26776383835292e-09
PARAFAC2 reconstruction error=0.8189076209258694, variation=5.579060546878623e-10.
Starting iteration 2733
reconstruction error=0.20875882464806716
iteration 1, reconstruction error: 0.20875882337827273, decrease = 1.2697944362649594e-09
iteration 2, reconstruction error: 0.20875882210939867, decrease = 1.2688740613775451e-09
iteration 3, reconstruction error: 0.20875882084143185, decrease = 1.267966814877397e-09
iteration 4, reconstruction error: 0.20875881957437234, decrease = 1.2670595128660977e-09
PARAFAC2 reconstruction error=0.8189076203682727, variation=5.575967465532017e-10.
Starting iteration 2734
reconstruction error=0.20875881797484971
iteration 1, reconstruction error: 0.20875881670575655, decrease = 1.2690931638914549e-09
iteration 2, reconstruction error: 0.20875881543758218, decrease = 1.2681743710718507e-09
iteration 3, reconstruction error: 0.20875881417031508, decrease = 1.267267096816127e-09
iteration 4, reconstruction error: 0.2087588129039568, decrease = 1.2663582960037445e-09
PARAFAC2 reconstruction error=0.8189076198109847, variation=5.572879935300534e-10.
Starting iteration 2735
reconstruction error=0.2087588113053218
iteration 1, reconstruction error: 0.2087588100369322, decrease = 1.26838961556075e-09
iteration 2, reconstruction error: 0.20875880876945752, decrease = 1.2674746807661563e-09
iteration 3, reconstruction error: 0.2087588075028932, decrease = 1.2665643256415393e-09
iteration 4, reconstruction error: 0.20875880623723614, decrease = 1.2656570513858156e-09
PARAFAC2 reconstruction error=0.8189076192540053, variation=5.569793515292076e-10.
Starting iteration 2736
reconstruction error=0.20875880463948485
iteration 1, reconstruction error: 0.20875880337179334, decrease = 1.2676915073228656e-09
iteration 2, reconstruction error: 0.20875880210502917, decrease = 1.2667641657859718e-09
iteration 3, reconstruction error: 0.208758800839163, decrease = 1.2658661618925038e-09
iteration 4, reconstruction error: 0.2087587995741987, decrease = 1.2649642999740252e-09
PARAFAC2 reconstruction error=0.8189076186973343, variation=5.566710425952692e-10.
Starting iteration 2737
reconstruction error=0.20875879797734576
iteration 1, reconstruction error: 0.20875879671035166, decrease = 1.2669940929743717e-09
iteration 2, reconstruction error: 0.20875879544428103, decrease = 1.2660706372180641e-09
iteration 3, reconstruction error: 0.2087587941791215, decrease = 1.2651595326929055e-09
iteration 4, reconstruction error: 0.2087587929148569, decrease = 1.2642645819127551e-09
PARAFAC2 reconstruction error=0.8189076181409716, variation=5.563627336613308e-10.
Starting iteration 2738
reconstruction error=0.2087587913188854
iteration 1, reconstruction error: 0.20875879005259562, decrease = 1.2662897674875495e-09
iteration 2, reconstruction error: 0.20875878878722468, decrease = 1.2653709469123697e-09
iteration 3, reconstruction error: 0.20875878752275173, decrease = 1.2644729430189017e-09
iteration 4, reconstruction error: 0.2087587862591907, decrease = 1.2635610335820502e-09
PARAFAC2 reconstruction error=0.8189076175849165, variation=5.560550908612072e-10.
Starting iteration 2739
reconstruction error=0.20875878466410674
iteration 1, reconstruction error: 0.2087587833985182, decrease = 1.2655885506251963e-09
iteration 2, reconstruction error: 0.20875878213384388, decrease = 1.264674309719993e-09
iteration 3, reconstruction error: 0.2087587808700753, decrease = 1.2637685897765039e-09
iteration 4, reconstruction error: 0.20875877960720854, decrease = 1.2628667556136008e-09
PARAFAC2 reconstruction error=0.8189076170291694, variation=5.557471149941762e-10.
Starting iteration 2740
reconstruction error=0.2087587780130137
iteration 1, reconstruction error: 0.20875877674812643, decrease = 1.2648872782516918e-09
iteration 2, reconstruction error: 0.20875877548414948, decrease = 1.2639769508826504e-09
iteration 3, reconstruction error: 0.20875877422107825, decrease = 1.2630712309391612e-09
iteration 4, reconstruction error: 0.20875877295890657, decrease = 1.2621716727334586e-09
PARAFAC2 reconstruction error=0.8189076164737294, variation=5.554399162832624e-10.
Starting iteration 2741
reconstruction error=0.20875877136559476
iteration 1, reconstruction error: 0.20875877010140487, decrease = 1.2641898916587735e-09
iteration 2, reconstruction error: 0.20875876883812683, decrease = 1.2632780377330732e-09
iteration 3, reconstruction error: 0.20875876757575146, decrease = 1.2623753709029018e-09
iteration 4, reconstruction error: 0.2087587663142787, decrease = 1.2614727595838815e-09
PARAFAC2 reconstruction error=0.8189076159185968, variation=5.551326065500461e-10.
Starting iteration 2742
reconstruction error=0.20875876472184904
iteration 1, reconstruction error: 0.20875876345835728, decrease = 1.2634917556653136e-09
iteration 2, reconstruction error: 0.2087587621957836, decrease = 1.2625736844906754e-09
iteration 3, reconstruction error: 0.20875876093410328, decrease = 1.2616803157783352e-09
iteration 4, reconstruction error: 0.20875875967331944, decrease = 1.260783838441526e-09
PARAFAC2 reconstruction error=0.8189076153637711, variation=5.548257409060398e-10.
Starting iteration 2743
reconstruction error=0.20875875808178354
iteration 1, reconstruction error: 0.20875875681898376, decrease = 1.2627997814096403e-09
iteration 2, reconstruction error: 0.20875875555710205, decrease = 1.2618817102350022e-09
iteration 3, reconstruction error: 0.20875875429612145, decrease = 1.2609805977170652e-09
iteration 4, reconstruction error: 0.20875875303603497, decrease = 1.2600864796041833e-09
PARAFAC2 reconstruction error=0.8189076148092522, variation=5.545188752620334e-10.
Starting iteration 2744
reconstruction error=0.2087587514453798
iteration 1, reconstruction error: 0.20875875018328127, decrease = 1.2620985367917115e-09
iteration 2, reconstruction error: 0.20875874892209925, decrease = 1.2611820199293078e-09
iteration 3, reconstruction error: 0.20875874766180677, decrease = 1.2602924814864025e-09
iteration 4, reconstruction error: 0.2087587464024177, decrease = 1.2593890652556894e-09
PARAFAC2 reconstruction error=0.8189076142550397, variation=5.542125647295393e-10.
Starting iteration 2745
reconstruction error=0.2087587448126408
iteration 1, reconstruction error: 0.20875874355123658, decrease = 1.2614042310676865e-09
iteration 2, reconstruction error: 0.2087587422907535, decrease = 1.260483079024155e-09
iteration 3, reconstruction error: 0.20875874103115918, decrease = 1.259594317737367e-09
iteration 4, reconstruction error: 0.20875873977246592, decrease = 1.2586932607305812e-09
PARAFAC2 reconstruction error=0.8189076137011335, variation=5.539061431747427e-10.
Starting iteration 2746
reconstruction error=0.20875873818356824
iteration 1, reconstruction error: 0.2087587369228637, decrease = 1.2607045407619921e-09
iteration 2, reconstruction error: 0.2087587356630726, decrease = 1.2597911047684818e-09
iteration 3, reconstruction error: 0.2087587344041718, decrease = 1.2589007891694592e-09
iteration 4, reconstruction error: 0.208758733146169, decrease = 1.2580028130315668e-09
PARAFAC2 reconstruction error=0.8189076131475332, variation=5.536002767314585e-10.
Starting iteration 2747
reconstruction error=0.2087587315581574
iteration 1, reconstruction error: 0.2087587302981526, decrease = 1.2600048227007221e-09
iteration 2, reconstruction error: 0.20875872903905424, decrease = 1.2590983533566913e-09
iteration 3, reconstruction error: 0.20875872778084695, decrease = 1.2582072883571271e-09
iteration 4, reconstruction error: 0.20875872652353766, decrease = 1.257309284463659e-09
PARAFAC2 reconstruction error=0.8189076125942388, variation=5.532944102881743e-10.
Starting iteration 2748
reconstruction error=0.20875872493640446
iteration 1, reconstruction error: 0.2087587236770916, decrease = 1.2593128484450489e-09
iteration 2, reconstruction error: 0.20875872241868756, decrease = 1.2584040476326663e-09
iteration 3, reconstruction error: 0.2087587211611738, decrease = 1.2575137597892194e-09
iteration 4, reconstruction error: 0.20875871990455808, decrease = 1.2566157281401757e-09
PARAFAC2 reconstruction error=0.8189076120412502, variation=5.529886548671925e-10.
Starting iteration 2749
reconstruction error=0.2087587183183086
iteration 1, reconstruction error: 0.20875871705968851, decrease = 1.2586200970332584e-09
iteration 2, reconstruction error: 0.208758715801978, decrease = 1.2577105190647586e-09
iteration 3, reconstruction error: 0.20875871454516087, decrease = 1.2568171225968428e-09
iteration 4, reconstruction error: 0.2087587132892348, decrease = 1.2559260853528542e-09
PARAFAC2 reconstruction error=0.8189076114885665, variation=5.52683676602328e-10.
Starting iteration 2750
reconstruction error=0.20875871170386143
iteration 1, reconstruction error: 0.20875871044593564, decrease = 1.2579257913092334e-09
iteration 2, reconstruction error: 0.20875870918892017, decrease = 1.257015463940192e-09
iteration 3, reconstruction error: 0.20875870793279425, decrease = 1.2561259254972867e-09
iteration 4, reconstruction error: 0.20875870667755708, decrease = 1.2552371642104987e-09
PARAFAC2 reconstruction error=0.8189076109361881, variation=5.523783652705561e-10.
Starting iteration 2751
reconstruction error=0.2087587050930644
iteration 1, reconstruction error: 0.20875870383583214, decrease = 1.2572322627413257e-09
iteration 2, reconstruction error: 0.2087587025795164, decrease = 1.256315745878922e-09
iteration 3, reconstruction error: 0.20875870132407784, decrease = 1.2554385586671657e-09
iteration 4, reconstruction error: 0.20875870006953187, decrease = 1.2545459671109427e-09
PARAFAC2 reconstruction error=0.8189076103841146, variation=5.52073498027994e-10.
Starting iteration 2752
reconstruction error=0.2087586984859176
iteration 1, reconstruction error: 0.20875869722937887, decrease = 1.256538734173418e-09
iteration 2, reconstruction error: 0.2087586959737474, decrease = 1.2556314599176943e-09
iteration 3, reconstruction error: 0.20875869471900313, decrease = 1.2547442806987164e-09
iteration 4, reconstruction error: 0.2087586934651499, decrease = 1.2538532156991522e-09
PARAFAC2 reconstruction error=0.8189076098323457, variation=5.517689638523393e-10.
Starting iteration 2753
reconstruction error=0.20875869188240867
iteration 1, reconstruction error: 0.20875869062656885, decrease = 1.2558398210238408e-09
iteration 2, reconstruction error: 0.20875868937162706, decrease = 1.2549417893747972e-09
iteration 3, reconstruction error: 0.20875868811757323, decrease = 1.254053832999702e-09
iteration 4, reconstruction error: 0.20875868686441124, decrease = 1.2531619908440206e-09
PARAFAC2 reconstruction error=0.8189076092808809, variation=5.51464762743592e-10.
Starting iteration 2754
reconstruction error=0.20875868528254454
iteration 1, reconstruction error: 0.20875868402739903, decrease = 1.2551455152998159e-09
iteration 2, reconstruction error: 0.20875868277314458, decrease = 1.2542544503002517e-09
iteration 3, reconstruction error: 0.20875868151978352, decrease = 1.2533610538323359e-09
iteration 4, reconstruction error: 0.208758680267305, decrease = 1.2524785097944857e-09
PARAFAC2 reconstruction error=0.8189076087297207, variation=5.511602285679373e-10.
Starting iteration 2755
reconstruction error=0.20875867868632061
iteration 1, reconstruction error: 0.20875867743185936, decrease = 1.2544612570941638e-09
iteration 2, reconstruction error: 0.20875867617830307, decrease = 1.2535562865512162e-09
iteration 3, reconstruction error: 0.20875867492563244, decrease = 1.252670633888897e-09
iteration 4, reconstruction error: 0.20875867367384515, decrease = 1.251787284939354e-09
PARAFAC2 reconstruction error=0.8189076081788642, variation=5.508564715483999e-10.
Starting iteration 2756
reconstruction error=0.2087586720937307
iteration 1, reconstruction error: 0.20875867083996066, decrease = 1.2537700322390322e-09
iteration 2, reconstruction error: 0.20875866958709327, decrease = 1.2528673931644363e-09
iteration 3, reconstruction error: 0.2087586683351123, decrease = 1.251980963346e-09
iteration 4, reconstruction error: 0.2087586670840124, decrease = 1.251099918109233e-09
PARAFAC2 reconstruction error=0.8189076076283114, variation=5.505528255511649e-10.
Starting iteration 2757
reconstruction error=0.20875866550477398
iteration 1, reconstruction error: 0.20875866425169518, decrease = 1.2530788073839005e-09
iteration 2, reconstruction error: 0.20875866299951745, decrease = 1.2521777226215391e-09
iteration 3, reconstruction error: 0.20875866174822538, decrease = 1.25129206995922e-09
iteration 4, reconstruction error: 0.2087586604978105, decrease = 1.2504148827474637e-09
PARAFAC2 reconstruction error=0.8189076070780622, variation=5.502491795539299e-10.
Starting iteration 2758
reconstruction error=0.20875865891945142
iteration 1, reconstruction error: 0.20875865766706073, decrease = 1.2523906911532379e-09
iteration 2, reconstruction error: 0.20875865641556882, decrease = 1.2514919101036526e-09
iteration 3, reconstruction error: 0.2087586551649641, decrease = 1.250604703129099e-09
iteration 4, reconstruction error: 0.2087586539152389, decrease = 1.2497252122045666e-09
PARAFAC2 reconstruction error=0.8189076065281163, variation=5.499458666236023e-10.
Starting iteration 2759
reconstruction error=0.208758652337752
iteration 1, reconstruction error: 0.20875865108605332, decrease = 1.251698689141989e-09
iteration 2, reconstruction error: 0.20875864983524797, decrease = 1.2508053481852244e-09
iteration 3, reconstruction error: 0.20875864858533294, decrease = 1.2499150325862018e-09
iteration 4, reconstruction error: 0.20875864733629587, decrease = 1.2490370682183283e-09
PARAFAC2 reconstruction error=0.8189076059784732, variation=5.496431088047871e-10.
Starting iteration 2760
reconstruction error=0.20875864575967432
iteration 1, reconstruction error: 0.20875864450866527, decrease = 1.2510090463546675e-09
iteration 2, reconstruction error: 0.20875864325855426, decrease = 1.2501110147056238e-09
iteration 3, reconstruction error: 0.20875864200931807, decrease = 1.2492361867177948e-09
iteration 4, reconstruction error: 0.20875864076097064, decrease = 1.2483474254310067e-09
PARAFAC2 reconstruction error=0.818907605429133, variation=5.493402399636693e-10.
Starting iteration 2761
reconstruction error=0.2087586391852222
iteration 1, reconstruction error: 0.2087586379348982, decrease = 1.2503239832373225e-09
iteration 2, reconstruction error: 0.2087586366854738, decrease = 1.24942442503162e-09
iteration 3, reconstruction error: 0.20875863543692805, decrease = 1.2485457390187804e-09
iteration 4, reconstruction error: 0.2087586341892672, decrease = 1.247660835757003e-09
PARAFAC2 reconstruction error=0.8189076048800954, variation=5.490375931671565e-10.
Starting iteration 2762
reconstruction error=0.20875863261438948
iteration 1, reconstruction error: 0.20875863136475672, decrease = 1.249632758382191e-09
iteration 2, reconstruction error: 0.20875863011601964, decrease = 1.2487370859570746e-09
iteration 3, reconstruction error: 0.20875862886815588, decrease = 1.2478637567703288e-09
iteration 4, reconstruction error: 0.20875862762117775, decrease = 1.2469781318635853e-09
PARAFAC2 reconstruction error=0.8189076043313599, variation=5.48735501482156e-10.
Starting iteration 2763
reconstruction error=0.2087586260471716
iteration 1, reconstruction error: 0.2087586247982277, decrease = 1.2489438927509866e-09
iteration 2, reconstruction error: 0.20875862355017413, decrease = 1.248053577151964e-09
iteration 3, reconstruction error: 0.20875862230300235, decrease = 1.2471717825146555e-09
iteration 4, reconstruction error: 0.20875862105670234, decrease = 1.2463000076401443e-09
PARAFAC2 reconstruction error=0.8189076037829267, variation=5.484331877525506e-10.
Starting iteration 2764
reconstruction error=0.20875861948356997
iteration 1, reconstruction error: 0.20875861823531036, decrease = 1.2482596067897589e-09
iteration 2, reconstruction error: 0.20875861698794798, decrease = 1.247362380052408e-09
iteration 3, reconstruction error: 0.2087586157414566, decrease = 1.246491382334014e-09
iteration 4, reconstruction error: 0.2087586144958455, decrease = 1.2456110864977887e-09
PARAFAC2 reconstruction error=0.8189076032347952, variation=5.481315401567599e-10.
Starting iteration 2765
reconstruction error=0.2087586129235816
iteration 1, reconstruction error: 0.20875861167600704, decrease = 1.2475745714279896e-09
iteration 2, reconstruction error: 0.20875861042932972, decrease = 1.2466773169350631e-09
iteration 3, reconstruction error: 0.20875860918352263, decrease = 1.2458070963727863e-09
iteration 4, reconstruction error: 0.2087586079385927, decrease = 1.2449299369166056e-09
PARAFAC2 reconstruction error=0.8189076026869654, variation=5.478297815386668e-10.
Starting iteration 2766
reconstruction error=0.2087586063671957
iteration 1, reconstruction error: 0.2087586051203131, decrease = 1.2468825971723163e-09
iteration 2, reconstruction error: 0.20875860387431233, decrease = 1.2460007747794322e-09
iteration 3, reconstruction error: 0.20875860262919105, decrease = 1.2451212838548997e-09
iteration 4, reconstruction error: 0.2087586013849431, decrease = 1.244247954668154e-09
PARAFAC2 reconstruction error=0.8189076021394369, variation=5.475284670097835e-10.
Starting iteration 2767
reconstruction error=0.20875859981441847
iteration 1, reconstruction error: 0.20875859856821552, decrease = 1.2462029463922164e-09
iteration 2, reconstruction error: 0.20875859732290827, decrease = 1.2453072462115244e-09
iteration 3, reconstruction error: 0.2087585960784666, decrease = 1.2444416608303754e-09
iteration 4, reconstruction error: 0.2087585948349006, decrease = 1.243566000175278e-09
PARAFAC2 reconstruction error=0.8189076015922098, variation=5.472271524809003e-10.
Starting iteration 2768
reconstruction error=0.2087585932652444
iteration 1, reconstruction error: 0.20875859201972652, decrease = 1.2455178832748715e-09
iteration 2, reconstruction error: 0.20875859077509656, decrease = 1.2446299546553519e-09
iteration 3, reconstruction error: 0.20875858953134382, decrease = 1.24375273968802e-09
iteration 4, reconstruction error: 0.20875858828846133, decrease = 1.2428824913701675e-09
PARAFAC2 reconstruction error=0.8189076010452835, variation=5.469262820412268e-10.
Starting iteration 2769
reconstruction error=0.208758586719669
iteration 1, reconstruction error: 0.20875858547483536, decrease = 1.2448336250692194e-09
iteration 2, reconstruction error: 0.20875858423088972, decrease = 1.2439456409385485e-09
iteration 3, reconstruction error: 0.20875858298782046, decrease = 1.243069258638485e-09
iteration 4, reconstruction error: 0.20875858174561682, decrease = 1.2422036455017604e-09
PARAFAC2 reconstruction error=0.8189076004986579, variation=5.466256336461583e-10.
Starting iteration 2770
reconstruction error=0.20875858017769222
iteration 1, reconstruction error: 0.20875857893353902, decrease = 1.2441531971330022e-09
iteration 2, reconstruction error: 0.20875857769027997, decrease = 1.2432590512645447e-09
iteration 3, reconstruction error: 0.20875857644788956, decrease = 1.242390412770078e-09
iteration 4, reconstruction error: 0.20875857520636865, decrease = 1.2415209138527672e-09
PARAFAC2 reconstruction error=0.8189075999523326, variation=5.463252072956948e-10.
Starting iteration 2771
reconstruction error=0.20875857363930636
iteration 1, reconstruction error: 0.20875857239583587, decrease = 1.2434704932395846e-09
iteration 2, reconstruction error: 0.20875857115326185, decrease = 1.2425740159027754e-09
iteration 3, reconstruction error: 0.20875856991155034, decrease = 1.2417115113905197e-09
iteration 4, reconstruction error: 0.20875856867070827, decrease = 1.2408420679843601e-09
PARAFAC2 reconstruction error=0.8189075994063078, variation=5.460248919675337e-10.
Starting iteration 2772
reconstruction error=0.2087585671045137
iteration 1, reconstruction error: 0.2087585658617298, decrease = 1.2427839035655808e-09
iteration 2, reconstruction error: 0.2087585646198308, decrease = 1.2418990003038033e-09
iteration 3, reconstruction error: 0.2087585633788051, decrease = 1.2410256988726331e-09
iteration 4, reconstruction error: 0.20875856213864424, decrease = 1.2401608628920258e-09
PARAFAC2 reconstruction error=0.8189075988605831, variation=5.45724687661675e-10.
Starting iteration 2773
reconstruction error=0.20875856057331124
iteration 1, reconstruction error: 0.20875855933121315, decrease = 1.2420980910476942e-09
iteration 2, reconstruction error: 0.20875855808999377, decrease = 1.241219377279279e-09
iteration 3, reconstruction error: 0.20875855684964542, decrease = 1.2403483518053093e-09
iteration 4, reconstruction error: 0.20875855561016496, decrease = 1.2394804627113842e-09
PARAFAC2 reconstruction error=0.8189075983151581, variation=5.454249274450262e-10.
Starting iteration 2774
reconstruction error=0.20875855404569582
iteration 1, reconstruction error: 0.20875855280427585, decrease = 1.2414199668242532e-09
iteration 2, reconstruction error: 0.20875855156373765, decrease = 1.2405381999425202e-09
iteration 3, reconstruction error: 0.20875855032407203, decrease = 1.239665620156316e-09
iteration 4, reconstruction error: 0.20875854908526892, decrease = 1.2388031156440604e-09
PARAFAC2 reconstruction error=0.8189075977700326, variation=5.451255002952848e-10.
Starting iteration 2775
reconstruction error=0.20875854752166287
iteration 1, reconstruction error: 0.20875854628092252, decrease = 1.2407403437997289e-09
iteration 2, reconstruction error: 0.20875854504107016, decrease = 1.239852359669058e-09
iteration 3, reconstruction error: 0.20875854380207798, decrease = 1.238992186625154e-09
iteration 4, reconstruction error: 0.20875854256395915, decrease = 1.2381188296828327e-09
PARAFAC2 reconstruction error=0.8189075972252065, variation=5.448261841678459e-10.
Starting iteration 2776
reconstruction error=0.20875854100121086
iteration 1, reconstruction error: 0.2087585397611517, decrease = 1.24005916646297e-09
iteration 2, reconstruction error: 0.20875853852197665, decrease = 1.2391750403573099e-09
iteration 3, reconstruction error: 0.20875853728366414, decrease = 1.2383125080894786e-09
iteration 4, reconstruction error: 0.20875853604621875, decrease = 1.2374453961516707e-09
PARAFAC2 reconstruction error=0.8189075966806795, variation=5.445269790627094e-10.
Starting iteration 2777
reconstruction error=0.2087585344843366
iteration 1, reconstruction error: 0.20875853324496405, decrease = 1.2393725490333907e-09
iteration 2, reconstruction error: 0.2087585320064609, decrease = 1.2385031333828067e-09
iteration 3, reconstruction error: 0.20875853076883188, decrease = 1.2376290270399437e-09
iteration 4, reconstruction error: 0.20875852953206153, decrease = 1.236770352797123e-09
PARAFAC2 reconstruction error=0.8189075961364513, variation=5.442282180467828e-10.
Starting iteration 2778
reconstruction error=0.20875852797104183
iteration 1, reconstruction error: 0.20875852673234196, decrease = 1.2386998649027703e-09
iteration 2, reconstruction error: 0.20875852549452234, decrease = 1.2378196245776962e-09
iteration 3, reconstruction error: 0.20875852425756525, decrease = 1.236957092309865e-09
iteration 4, reconstruction error: 0.208758523021473, decrease = 1.2360922563292576e-09
PARAFAC2 reconstruction error=0.8189075955925219, variation=5.439293460085537e-10.
Starting iteration 2779
reconstruction error=0.20875852146131252
iteration 1, reconstruction error: 0.2087585202232977, decrease = 1.238014829541001e-09
iteration 2, reconstruction error: 0.20875851898615616, decrease = 1.2371415281098308e-09
iteration 3, reconstruction error: 0.20875851774987564, decrease = 1.2362805223986584e-09
iteration 4, reconstruction error: 0.20875851651446609, decrease = 1.23540955243584e-09
PARAFAC2 reconstruction error=0.8189075950488909, variation=5.436310290818369e-10.
Starting iteration 2780
reconstruction error=0.20875851495515563
iteration 1, reconstruction error: 0.20875851371781579, decrease = 1.2373398416976045e-09
iteration 2, reconstruction error: 0.20875851248135857, decrease = 1.2364572143930275e-09
iteration 3, reconstruction error: 0.20875851124575226, decrease = 1.2356063117113791e-09
iteration 4, reconstruction error: 0.20875851001101156, decrease = 1.2347406985746545e-09
PARAFAC2 reconstruction error=0.8189075945055581, variation=5.433328231774226e-10.
Starting iteration 2781
reconstruction error=0.20875850845256894
iteration 1, reconstruction error: 0.20875850721590722, decrease = 1.2366617174741634e-09
iteration 2, reconstruction error: 0.20875850598012188, decrease = 1.2357853351741e-09
iteration 3, reconstruction error: 0.20875850474519678, decrease = 1.2349251066190448e-09
iteration 4, reconstruction error: 0.20875850351113417, decrease = 1.234062602106789e-09
PARAFAC2 reconstruction error=0.8189075939625231, variation=5.430349503399157e-10.
Starting iteration 2782
reconstruction error=0.2087585019535462
iteration 1, reconstruction error: 0.2087585007175618, decrease = 1.2359843981624152e-09
iteration 2, reconstruction error: 0.20875849948245767, decrease = 1.2351041300817656e-09
iteration 3, reconstruction error: 0.20875849824820372, decrease = 1.2342539490450832e-09
iteration 4, reconstruction error: 0.20875849701481458, decrease = 1.2333891408200515e-09
PARAFAC2 reconstruction error=0.8189075934197861, variation=5.427369664801063e-10.
Starting iteration 2783
reconstruction error=0.20875849545808595
iteration 1, reconstruction error: 0.2087584942227773, decrease = 1.2353086331629015e-09
iteration 2, reconstruction error: 0.2087584929883436, decrease = 1.2344337219083457e-09
iteration 3, reconstruction error: 0.20875849175477312, decrease = 1.2335704679955484e-09
iteration 4, reconstruction error: 0.2087584905220544, decrease = 1.2327187326466316e-09
PARAFAC2 reconstruction error=0.8189075928773467, variation=5.424394267095067e-10.
Starting iteration 2784
reconstruction error=0.20875848896618499
iteration 1, reconstruction error: 0.20875848773155448, decrease = 1.2346305089394605e-09
iteration 2, reconstruction error: 0.2087584864977934, decrease = 1.2337610655333009e-09
iteration 3, reconstruction error: 0.20875848526489413, decrease = 1.2328992826660112e-09
iteration 4, reconstruction error: 0.20875848403285735, decrease = 1.2320367781537556e-09
PARAFAC2 reconstruction error=0.8189075923352043, variation=5.421424420504195e-10.
Starting iteration 2785
reconstruction error=0.20875848247783882
iteration 1, reconstruction error: 0.20875848124388255, decrease = 1.2339562704966056e-09
iteration 2, reconstruction error: 0.20875848001080036, decrease = 1.2330821919093182e-09
iteration 3, reconstruction error: 0.2087584787785761, decrease = 1.2322242670670391e-09
iteration 4, reconstruction error: 0.20875847754720583, decrease = 1.2313702557609219e-09
PARAFAC2 reconstruction error=0.818907591793359, variation=5.418452353467273e-10.
Starting iteration 2786
reconstruction error=0.2087584759930451
iteration 1, reconstruction error: 0.20875847475976536, decrease = 1.2332797283409747e-09
iteration 2, reconstruction error: 0.20875847352736052, decrease = 1.2324048448419944e-09
iteration 3, reconstruction error: 0.20875847229580816, decrease = 1.231552360092536e-09
iteration 4, reconstruction error: 0.2087584710651106, decrease = 1.2306975438747259e-09
PARAFAC2 reconstruction error=0.818907591251811, variation=5.415480286430352e-10.
Starting iteration 2787
reconstruction error=0.20875846951180452
iteration 1, reconstruction error: 0.20875846827919906, decrease = 1.2326054621425442e-09
iteration 2, reconstruction error: 0.20875846704747153, decrease = 1.2317275255302462e-09
iteration 3, reconstruction error: 0.20875846581658877, decrease = 1.230882756830809e-09
iteration 4, reconstruction error: 0.20875846458656702, decrease = 1.2300217511196365e-09
PARAFAC2 reconstruction error=0.8189075907105594, variation=5.412515990954603e-10.
Starting iteration 2788
reconstruction error=0.2087584630341118
iteration 1, reconstruction error: 0.20875846180218288, decrease = 1.2319289199869132e-09
iteration 2, reconstruction error: 0.20875846057112346, decrease = 1.2310594210696024e-09
iteration 3, reconstruction error: 0.20875845934091572, decrease = 1.2302077412318368e-09
iteration 4, reconstruction error: 0.20875845811156513, decrease = 1.229350593545675e-09
PARAFAC2 reconstruction error=0.818907590169604, variation=5.409553915924903e-10.
Starting iteration 2789
reconstruction error=0.20875845655996764
iteration 1, reconstruction error: 0.20875845532871143, decrease = 1.2312562081007172e-09
iteration 2, reconstruction error: 0.20875845409832547, decrease = 1.2303859597828648e-09
iteration 3, reconstruction error: 0.2087584528687904, decrease = 1.2295350571012165e-09
iteration 4, reconstruction error: 0.20875845164010864, decrease = 1.2286817674400652e-09
PARAFAC2 reconstruction error=0.818907589628945, variation=5.406589620449154e-10.
Starting iteration 2790
reconstruction error=0.20875845008936517
iteration 1, reconstruction error: 0.20875844885878087, decrease = 1.230584301126214e-09
iteration 2, reconstruction error: 0.20875844762906376, decrease = 1.2297171059216794e-09
iteration 3, reconstruction error: 0.2087584464002045, decrease = 1.2288592643461271e-09
iteration 4, reconstruction error: 0.2087584451721908, decrease = 1.228013690734997e-09
PARAFAC2 reconstruction error=0.8189075890885819, variation=5.403631986311552e-10.
Starting iteration 2791
reconstruction error=0.20875844362229895
iteration 1, reconstruction error: 0.20875844239239277, decrease = 1.229906176902773e-09
iteration 2, reconstruction error: 0.2087584411633491, decrease = 1.2290436723905174e-09
iteration 3, reconstruction error: 0.2087584399351587, decrease = 1.2281904104849417e-09
iteration 4, reconstruction error: 0.20875843870781846, decrease = 1.2273402294482594e-09
PARAFAC2 reconstruction error=0.8189075885485145, variation=5.400673241950926e-10.
Starting iteration 2792
reconstruction error=0.20875843715877518
iteration 1, reconstruction error: 0.20875843592953783, decrease = 1.2292373507971632e-09
iteration 2, reconstruction error: 0.2087584347011669, decrease = 1.2283709327487458e-09
iteration 3, reconstruction error: 0.2087584334736515, decrease = 1.2275153948859696e-09
iteration 4, reconstruction error: 0.20875843224697624, decrease = 1.2266752613676601e-09
PARAFAC2 reconstruction error=0.8189075880087425, variation=5.397720048705423e-10.
Starting iteration 2793
reconstruction error=0.2087584306987846
iteration 1, reconstruction error: 0.20875842947022305, decrease = 1.228561558042074e-09
iteration 2, reconstruction error: 0.2087584282425225, decrease = 1.2277005523309015e-09
iteration 3, reconstruction error: 0.20875842701567363, decrease = 1.226848872493136e-09
iteration 4, reconstruction error: 0.20875842578967185, decrease = 1.226001772325347e-09
PARAFAC2 reconstruction error=0.8189075874692661, variation=5.394764635013871e-10.
Starting iteration 2794
reconstruction error=0.20875842424232566
iteration 1, reconstruction error: 0.20875842301443526, decrease = 1.2278904004681124e-09
iteration 2, reconstruction error: 0.2087584217874074, decrease = 1.227027868200281e-09
iteration 3, reconstruction error: 0.20875842056122504, decrease = 1.2261823501003022e-09
iteration 4, reconstruction error: 0.20875841933589365, decrease = 1.2253313919075026e-09
PARAFAC2 reconstruction error=0.8189075869300845, variation=5.391815882660467e-10.
Starting iteration 2795
reconstruction error=0.20875841778939838
iteration 1, reconstruction error: 0.2087584165621776, decrease = 1.2272207694508097e-09
iteration 2, reconstruction error: 0.2087584153358178, decrease = 1.2263598192507885e-09
iteration 3, reconstruction error: 0.20875841411030507, decrease = 1.2255127190829995e-09
iteration 4, reconstruction error: 0.2087584128856441, decrease = 1.2246609837340827e-09
PARAFAC2 reconstruction error=0.8189075863911977, variation=5.388868240530087e-10.
Starting iteration 2796
reconstruction error=0.20875841134000278
iteration 1, reconstruction error: 0.20875841011344776, decrease = 1.2265550242140932e-09
iteration 2, reconstruction error: 0.20875840888775987, decrease = 1.2256878845207098e-09
iteration 3, reconstruction error: 0.20875840766292061, decrease = 1.224839257796262e-09
iteration 4, reconstruction error: 0.2087584064389177, decrease = 1.2240029267918118e-09
PARAFAC2 reconstruction error=0.8189075858526058, variation=5.385918377953658e-10.
Starting iteration 2797
reconstruction error=0.2087584048941227
iteration 1, reconstruction error: 0.20875840366824036, decrease = 1.2258823400834729e-09
iteration 2, reconstruction error: 0.2087584024432198, decrease = 1.2250205572161832e-09
iteration 3, reconstruction error: 0.20875840121904551, decrease = 1.2241742897156627e-09
iteration 4, reconstruction error: 0.20875839999571372, decrease = 1.2233317969734259e-09
PARAFAC2 reconstruction error=0.8189075853143081, variation=5.382977397161426e-10.
Starting iteration 2798
reconstruction error=0.20875839845176647
iteration 1, reconstruction error: 0.20875839722655684, decrease = 1.2252096281972769e-09
iteration 2, reconstruction error: 0.20875839600220203, decrease = 1.2243548119794667e-09
iteration 3, reconstruction error: 0.20875839477869815, decrease = 1.2235038815422428e-09
iteration 4, reconstruction error: 0.20875839355603518, decrease = 1.222662970867816e-09
PARAFAC2 reconstruction error=0.8189075847763044, variation=5.380036416369194e-10.
Starting iteration 2799
reconstruction error=0.20875839201293192
iteration 1, reconstruction error: 0.20875839078838962, decrease = 1.2245423008927503e-09
iteration 2, reconstruction error: 0.20875838956470671, decrease = 1.2236829050049636e-09
iteration 3, reconstruction error: 0.2087583883418609, decrease = 1.2228458245999718e-09
iteration 4, reconstruction error: 0.2087583871198683, decrease = 1.2219925904499718e-09
PARAFAC2 reconstruction error=0.8189075842385951, variation=5.377093215130913e-10.
Starting iteration 2800
reconstruction error=0.20875838557760903
iteration 1, reconstruction error: 0.20875838435373786, decrease = 1.2238711710743644e-09
iteration 2, reconstruction error: 0.20875838313072306, decrease = 1.2230148005443198e-09
iteration 3, reconstruction error: 0.20875838190854837, decrease = 1.222174694781586e-09
iteration 4, reconstruction error: 0.20875838068721925, decrease = 1.2213291211704558e-09
PARAFAC2 reconstruction error=0.8189075837011791, variation=5.374160005899853e-10.
Starting iteration 2801
reconstruction error=0.2087583791458109
iteration 1, reconstruction error: 0.2087583779226047, decrease = 1.2232062029937651e-09
iteration 2, reconstruction error: 0.20875837670025413, decrease = 1.2223505818642622e-09
iteration 3, reconstruction error: 0.2087583754787421, decrease = 1.2215120304137628e-09
iteration 4, reconstruction error: 0.20875837425808025, decrease = 1.2206618493770804e-09
PARAFAC2 reconstruction error=0.8189075831640567, variation=5.371224576222744e-10.
Starting iteration 2802
reconstruction error=0.20875837271750974
iteration 1, reconstruction error: 0.20875837149497398, decrease = 1.2225357670647696e-09
iteration 2, reconstruction error: 0.2087583702732891, decrease = 1.2216848643831213e-09
iteration 3, reconstruction error: 0.2087583690524475, decrease = 1.2208416222403429e-09
iteration 4, reconstruction error: 0.20875836783244525, decrease = 1.220002238122575e-09
PARAFAC2 reconstruction error=0.8189075826272277, variation=5.368289146545635e-10.
Starting iteration 2803
reconstruction error=0.20875836629272562
iteration 1, reconstruction error: 0.2087583650708556, decrease = 1.2218700218280532e-09
iteration 2, reconstruction error: 0.20875836384983726, decrease = 1.2210183419902876e-09
iteration 3, reconstruction error: 0.20875836262966216, decrease = 1.2201750998475092e-09
iteration 4, reconstruction error: 0.20875836141032184, decrease = 1.2193403231552935e-09
PARAFAC2 reconstruction error=0.8189075820906916, variation=5.365361488429699e-10.
Starting iteration 2804
reconstruction error=0.2087583598714493
iteration 1, reconstruction error: 0.20875835865024578, decrease = 1.221203527190795e-09
iteration 2, reconstruction error: 0.20875835742989168, decrease = 1.2203540955546544e-09
iteration 3, reconstruction error: 0.20875835621037772, decrease = 1.2195139620363449e-09
iteration 4, reconstruction error: 0.20875835499170467, decrease = 1.2186730513619182e-09
PARAFAC2 reconstruction error=0.8189075815544485, variation=5.362430499644688e-10.
Starting iteration 2805
reconstruction error=0.2087583534536677
iteration 1, reconstruction error: 0.20875835223313147, decrease = 1.2205362276418441e-09
iteration 2, reconstruction error: 0.20875835101344237, decrease = 1.2196890997184795e-09
iteration 3, reconstruction error: 0.20875834979459415, decrease = 1.2188482167996284e-09
iteration 4, reconstruction error: 0.20875834857658068, decrease = 1.2180134678629884e-09
PARAFAC2 reconstruction error=0.8189075810184981, variation=5.359503951751776e-10.
Starting iteration 2806
reconstruction error=0.20875834703939383
iteration 1, reconstruction error: 0.20875834581952418, decrease = 1.2198696497378592e-09
iteration 2, reconstruction error: 0.20875834460049772, decrease = 1.219026463106232e-09
iteration 3, reconstruction error: 0.20875834338231372, decrease = 1.2181839981195708e-09
iteration 4, reconstruction error: 0.20875834216496292, decrease = 1.2173508034951652e-09
PARAFAC2 reconstruction error=0.8189075804828398, variation=5.356582954973987e-10.
Starting iteration 2807
reconstruction error=0.2087583406286163
iteration 1, reconstruction error: 0.2087583394094062, decrease = 1.2192101217500806e-09
iteration 2, reconstruction error: 0.20875833819104783, decrease = 1.2183583586455882e-09
iteration 3, reconstruction error: 0.2087583369735288, decrease = 1.2175190300389716e-09
iteration 4, reconstruction error: 0.20875833575683914, decrease = 1.216689665684001e-09
PARAFAC2 reconstruction error=0.8189075799474741, variation=5.3536575173041e-10.
Starting iteration 2808
reconstruction error=0.20875833422133802
iteration 1, reconstruction error: 0.2087583330027906, decrease = 1.2185474296266818e-09
iteration 2, reconstruction error: 0.2087583317850949, decrease = 1.217695694277765e-09
iteration 3, reconstruction error: 0.2087583305682324, decrease = 1.2168624996533595e-09
iteration 4, reconstruction error: 0.20875832935220925, decrease = 1.2160231432911672e-09
PARAFAC2 reconstruction error=0.8189075794124, variation=5.35074096141841e-10.
Starting iteration 2809
reconstruction error=0.20875832781754294
iteration 1, reconstruction error: 0.2087583265996605, decrease = 1.217882433790507e-09
iteration 2, reconstruction error: 0.208758325382629, decrease = 1.217031503353283e-09
iteration 3, reconstruction error: 0.2087583241664284, decrease = 1.2162006124416536e-09
iteration 4, reconstruction error: 0.20875832295107025, decrease = 1.2153581474549924e-09
PARAFAC2 reconstruction error=0.8189075788776176, variation=5.34782440553272e-10.
Starting iteration 2810
reconstruction error=0.20875832141724332
iteration 1, reconstruction error: 0.20875832020002508, decrease = 1.217218242866025e-09
iteration 2, reconstruction error: 0.20875831898365396, decrease = 1.2163711149426604e-09
iteration 3, reconstruction error: 0.20875831776811835, decrease = 1.2155356166054787e-09
iteration 4, reconstruction error: 0.20875831655341515, decrease = 1.2147031991371904e-09
PARAFAC2 reconstruction error=0.8189075783431269, variation=5.344906739424005e-10.
Starting iteration 2811
reconstruction error=0.20875831502042838
iteration 1, reconstruction error: 0.208758313803869, decrease = 1.2165593810120612e-09
iteration 2, reconstruction error: 0.20875831258816593, decrease = 1.2157030659931678e-09
iteration 3, reconstruction error: 0.20875831137328682, decrease = 1.2148791139754422e-09
iteration 4, reconstruction error: 0.2087583101592478, decrease = 1.2140390082127084e-09
PARAFAC2 reconstruction error=0.8189075778089274, variation=5.341994624430413e-10.
Starting iteration 2812
reconstruction error=0.2087583086271013
iteration 1, reconstruction error: 0.20875830741120843, decrease = 1.2158928586192275e-09
iteration 2, reconstruction error: 0.20875830619615954, decrease = 1.215048894831483e-09
iteration 3, reconstruction error: 0.2087583049819454, decrease = 1.214214145894843e-09
iteration 4, reconstruction error: 0.20875830376856447, decrease = 1.2133809235148618e-09
PARAFAC2 reconstruction error=0.8189075772750191, variation=5.339083619659846e-10.
Starting iteration 2813
reconstruction error=0.20875830223725575
iteration 1, reconstruction error: 0.20875830102202245, decrease = 1.2152333028758733e-09
iteration 2, reconstruction error: 0.20875829980763547, decrease = 1.2143869798642015e-09
iteration 3, reconstruction error: 0.20875829859408168, decrease = 1.213553785239796e-09
iteration 4, reconstruction error: 0.20875829738135726, decrease = 1.2127244208848253e-09
PARAFAC2 reconstruction error=0.8189075767414015, variation=5.336175945558352e-10.
Starting iteration 2814
reconstruction error=0.20875829585088876
iteration 1, reconstruction error: 0.20875829463631737, decrease = 1.2145713879085918e-09
iteration 2, reconstruction error: 0.20875829342259153, decrease = 1.2137258420530372e-09
iteration 3, reconstruction error: 0.2087582922096981, decrease = 1.212893424584749e-09
iteration 4, reconstruction error: 0.20875829099763094, decrease = 1.2120671688542473e-09
PARAFAC2 reconstruction error=0.8189075762080746, variation=5.333268271456859e-10.
Starting iteration 2815
reconstruction error=0.2087582894679957
iteration 1, reconstruction error: 0.208758288254087, decrease = 1.2139087235407686e-09
iteration 2, reconstruction error: 0.20875828704102226, decrease = 1.2130647319974486e-09
iteration 3, reconstruction error: 0.2087582858287861, decrease = 1.2122361447985952e-09
iteration 4, reconstruction error: 0.20875828461737853, decrease = 1.2114075853553175e-09
PARAFAC2 reconstruction error=0.8189075756750381, variation=5.330365038247464e-10.
Starting iteration 2816
reconstruction error=0.2087582830885804
iteration 1, reconstruction error: 0.20875828187533205, decrease = 1.2132483628857216e-09
iteration 2, reconstruction error: 0.2087582806629269, decrease = 1.2124051484985188e-09
iteration 3, reconstruction error: 0.20875827945135111, decrease = 1.2115757841435482e-09
iteration 4, reconstruction error: 0.20875827824059848, decrease = 1.2107526370375155e-09
PARAFAC2 reconstruction error=0.8189075751422917, variation=5.327464025484119e-10.
Starting iteration 2817
reconstruction error=0.20875827671263444
iteration 1, reconstruction error: 0.20875827550004875, decrease = 1.2125856985178984e-09
iteration 2, reconstruction error: 0.20875827428829857, decrease = 1.2117501724251412e-09
iteration 3, reconstruction error: 0.20875827307738082, decrease = 1.2109177549568528e-09
iteration 4, reconstruction error: 0.20875827186728857, decrease = 1.2100922486268928e-09
PARAFAC2 reconstruction error=0.8189075746098357, variation=5.324560792274724e-10.
Starting iteration 2818
reconstruction error=0.20875827034015854
iteration 1, reconstruction error: 0.2087582691282278, decrease = 1.2119307224445208e-09
iteration 2, reconstruction error: 0.20875826791714416, decrease = 1.2110836500323074e-09
iteration 3, reconstruction error: 0.20875826670687903, decrease = 1.2102651381074025e-09
iteration 4, reconstruction error: 0.20875826549744328, decrease = 1.2094357459968563e-09
PARAFAC2 reconstruction error=0.8189075740776691, variation=5.321665330626502e-10.
Starting iteration 2819
reconstruction error=0.20875826397115274
iteration 1, reconstruction error: 0.20875826275987927, decrease = 1.2112734704139427e-09
iteration 2, reconstruction error: 0.20875826154944904, decrease = 1.2104302282711643e-09
iteration 3, reconstruction error: 0.20875826033984426, decrease = 1.2096047774523555e-09
iteration 4, reconstruction error: 0.20875825913106733, decrease = 1.2087769396540438e-09
PARAFAC2 reconstruction error=0.8189075735457919, variation=5.318772089424328e-10.
Starting iteration 2820
reconstruction error=0.20875825760560776
iteration 1, reconstruction error: 0.20875825639499232, decrease = 1.2106154412272474e-09
iteration 2, reconstruction error: 0.20875825518521937, decrease = 1.2097729484850106e-09
iteration 3, reconstruction error: 0.20875825397627112, decrease = 1.2089482470667434e-09
iteration 4, reconstruction error: 0.20875825276814836, decrease = 1.208122768492359e-09
PARAFAC2 reconstruction error=0.8189075730142044, variation=5.315875517553081e-10.
Starting iteration 2821
reconstruction error=0.20875825124352052
iteration 1, reconstruction error: 0.2087582500335647, decrease = 1.2099558022171664e-09
iteration 2, reconstruction error: 0.20875824882445057, decrease = 1.209114142142198e-09
iteration 3, reconstruction error: 0.20875824761615958, decrease = 1.2082909950361653e-09
iteration 4, reconstruction error: 0.2087582464086941, decrease = 1.2074654887062053e-09
PARAFAC2 reconstruction error=0.818907572482906, variation=5.312983386573933e-10.
Starting iteration 2822
reconstruction error=0.2087582448848934
iteration 1, reconstruction error: 0.2087582436755956, decrease = 1.2092978007860467e-09
iteration 2, reconstruction error: 0.20875824246713948, decrease = 1.2084561129555027e-09
iteration 3, reconstruction error: 0.20875824125950423, decrease = 1.2076352418066705e-09
iteration 4, reconstruction error: 0.20875824005269294, decrease = 1.206811289788945e-09
PARAFAC2 reconstruction error=0.8189075719518962, variation=5.310097916932932e-10.
Starting iteration 2823
reconstruction error=0.20875823852972472
iteration 1, reconstruction error: 0.2087582373210842, decrease = 1.208640520999893e-09
iteration 2, reconstruction error: 0.20875823611328692, decrease = 1.2077972788571145e-09
iteration 3, reconstruction error: 0.20875823490630355, decrease = 1.2069833743577618e-09
iteration 4, reconstruction error: 0.20875823370014027, decrease = 1.2061632803650468e-09
PARAFAC2 reconstruction error=0.8189075714211753, variation=5.307209116622857e-10.
Starting iteration 2824
reconstruction error=0.2087582321780093
iteration 1, reconstruction error: 0.20875823097002447, decrease = 1.2079848232815493e-09
iteration 2, reconstruction error: 0.20875822976287364, decrease = 1.207150823745451e-09
iteration 3, reconstruction error: 0.20875822855654985, decrease = 1.206323790858832e-09
iteration 4, reconstruction error: 0.20875822735104463, decrease = 1.2055052234227759e-09
PARAFAC2 reconstruction error=0.8189075708907427, variation=5.304325867427906e-10.
Starting iteration 2825
reconstruction error=0.20875822582974232
iteration 1, reconstruction error: 0.20875822462241633, decrease = 1.2073259891831611e-09
iteration 2, reconstruction error: 0.2087582234159228, decrease = 1.2064935439592972e-09
iteration 3, reconstruction error: 0.20875822221025087, decrease = 1.2056719234099234e-09
iteration 4, reconstruction error: 0.2087582210054006, decrease = 1.2048502751049739e-09
PARAFAC2 reconstruction error=0.8189075703605984, variation=5.301443728455979e-10.
Starting iteration 2826
reconstruction error=0.2087582194849262
iteration 1, reconstruction error: 0.20875821827825208, decrease = 1.2066741217342525e-09
iteration 2, reconstruction error: 0.20875821707241582, decrease = 1.2058362641731435e-09
iteration 3, reconstruction error: 0.20875821586739346, decrease = 1.2050223596737908e-09
iteration 4, reconstruction error: 0.20875821466319813, decrease = 1.2041953267871719e-09
PARAFAC2 reconstruction error=0.8189075698307421, variation=5.298562699707077e-10.
Starting iteration 2827
reconstruction error=0.20875821314355242
iteration 1, reconstruction error: 0.20875821193753405, decrease = 1.2060183685047576e-09
iteration 2, reconstruction error: 0.2087582107323504, decrease = 1.2051836473236932e-09
iteration 3, reconstruction error: 0.20875820952798532, decrease = 1.204365079887637e-09
iteration 4, reconstruction error: 0.20875820832443492, decrease = 1.2035503982321671e-09
PARAFAC2 reconstruction error=0.8189075693011736, variation=5.295685001627248e-10.
Starting iteration 2828
reconstruction error=0.20875820680562562
iteration 1, reconstruction error: 0.20875820560026298, decrease = 1.2053626430308384e-09
iteration 2, reconstruction error: 0.20875820439572967, decrease = 1.2045333064314434e-09
iteration 3, reconstruction error: 0.20875820319201724, decrease = 1.2037124352826112e-09
iteration 4, reconstruction error: 0.2087582019891218, decrease = 1.2028954499143651e-09
PARAFAC2 reconstruction error=0.8189075687718926, variation=5.292809523993469e-10.
Starting iteration 2829
reconstruction error=0.2087582004711358
iteration 1, reconstruction error: 0.20875819926642425, decrease = 1.204711552738047e-09
iteration 2, reconstruction error: 0.20875819806254436, decrease = 1.2038798846703003e-09
iteration 3, reconstruction error: 0.20875819685948918, decrease = 1.203055183252033e-09
iteration 4, reconstruction error: 0.20875819565724021, decrease = 1.202248967047126e-09
PARAFAC2 reconstruction error=0.8189075682428992, variation=5.28993404635969e-10.
Starting iteration 2830
reconstruction error=0.20875819414008379
iteration 1, reconstruction error: 0.20875819293602874, decrease = 1.2040550501080105e-09
iteration 2, reconstruction error: 0.20875819173280377, decrease = 1.2032249641080739e-09
iteration 3, reconstruction error: 0.20875819053039896, decrease = 1.2024048146042077e-09
iteration 4, reconstruction error: 0.20875818932879875, decrease = 1.2016002082226862e-09
PARAFAC2 reconstruction error=0.8189075677141929, variation=5.287063009618009e-10.
Starting iteration 2831
reconstruction error=0.2087581878124679
iteration 1, reconstruction error: 0.20875818660906706, decrease = 1.2034008511907501e-09
iteration 2, reconstruction error: 0.20875818540649477, decrease = 1.2025722917474724e-09
iteration 3, reconstruction error: 0.20875818420473408, decrease = 1.2017606909608958e-09
iteration 4, reconstruction error: 0.20875818300379195, decrease = 1.2009421235248396e-09
PARAFAC2 reconstruction error=0.8189075671857733, variation=5.284196413768427e-10.
Starting iteration 2832
reconstruction error=0.2087581814882844
iteration 1, reconstruction error: 0.2087581802855331, decrease = 1.2027512874546176e-09
iteration 2, reconstruction error: 0.2087581790836127, decrease = 1.2019204242985637e-09
iteration 3, reconstruction error: 0.20875817788250928, decrease = 1.201103411174742e-09
iteration 4, reconstruction error: 0.20875817668221128, decrease = 1.2002979998815277e-09
PARAFAC2 reconstruction error=0.8189075666576406, variation=5.281326487249771e-10.
Starting iteration 2833
reconstruction error=0.20875817516753487
iteration 1, reconstruction error: 0.20875817396543234, decrease = 1.2021025286301779e-09
iteration 2, reconstruction error: 0.20875817276416764, decrease = 1.2012646988246445e-09
iteration 3, reconstruction error: 0.20875817156370685, decrease = 1.2004607863325134e-09
iteration 4, reconstruction error: 0.20875817036406458, decrease = 1.1996422744076085e-09
PARAFAC2 reconstruction error=0.8189075661297944, variation=5.278462111846238e-10.
Starting iteration 2834
reconstruction error=0.20875816885020607
iteration 1, reconstruction error: 0.20875816764875774, decrease = 1.2014483297129175e-09
iteration 2, reconstruction error: 0.2087581664481403, decrease = 1.200617438801288e-09
iteration 3, reconstruction error: 0.20875816524833057, decrease = 1.1998097237952976e-09
iteration 4, reconstruction error: 0.20875816404933945, decrease = 1.1989911286036659e-09
PARAFAC2 reconstruction error=0.8189075656022345, variation=5.27559884666573e-10.
Starting iteration 2835
reconstruction error=0.20875816253630344
iteration 1, reconstruction error: 0.20875816133551162, decrease = 1.200791827082881e-09
iteration 2, reconstruction error: 0.20875816013554296, decrease = 1.1999686522212727e-09
iteration 3, reconstruction error: 0.20875815893638436, decrease = 1.1991586057469306e-09
iteration 4, reconstruction error: 0.20875815773803813, decrease = 1.1983462278042367e-09
PARAFAC2 reconstruction error=0.8189075650749609, variation=5.272736691708246e-10.
Starting iteration 2836
reconstruction error=0.20875815622582636
iteration 1, reconstruction error: 0.20875815502568484, decrease = 1.2001415139462068e-09
iteration 2, reconstruction error: 0.20875815382636112, decrease = 1.199323723666268e-09
iteration 3, reconstruction error: 0.2087581526278575, decrease = 1.198503629673553e-09
iteration 4, reconstruction error: 0.20875815143015078, decrease = 1.197706711586477e-09
PARAFAC2 reconstruction error=0.8189075645479729, variation=5.269880087865886e-10.
Starting iteration 2837
reconstruction error=0.20875814991876845
iteration 1, reconstruction error: 0.20875814871927267, decrease = 1.1994957804795092e-09
iteration 2, reconstruction error: 0.20875814752060312, decrease = 1.1986695525045832e-09
iteration 3, reconstruction error: 0.20875814632274056, decrease = 1.1978625591435588e-09
iteration 4, reconstruction error: 0.2087581451256888, decrease = 1.197051763268675e-09
PARAFAC2 reconstruction error=0.8189075640212705, variation=5.267023484023525e-10.
Starting iteration 2838
reconstruction error=0.20875814361513062
iteration 1, reconstruction error: 0.20875814241628282, decrease = 1.1988477988111867e-09
iteration 2, reconstruction error: 0.2087581412182636, decrease = 1.1980192116123334e-09
iteration 3, reconstruction error: 0.2087581400210452, decrease = 1.1972184077446713e-09
iteration 4, reconstruction error: 0.20875813882463917, decrease = 1.1964060298019774e-09
PARAFAC2 reconstruction error=0.8189075634948536, variation=5.264169100627214e-10.
Starting iteration 2839
reconstruction error=0.20875813731490286
iteration 1, reconstruction error: 0.20875813611670463, decrease = 1.1981982350750542e-09
iteration 2, reconstruction error: 0.2087581349193319, decrease = 1.1973727287450942e-09
iteration 3, reconstruction error: 0.20875813372276458, decrease = 1.1965673174518798e-09
iteration 4, reconstruction error: 0.208758132527005, decrease = 1.1957595746903138e-09
PARAFAC2 reconstruction error=0.8189075629687221, variation=5.261314717230903e-10.
Starting iteration 2840
reconstruction error=0.20875813101808666
iteration 1, reconstruction error: 0.20875812982053565, decrease = 1.1975510028072733e-09
iteration 2, reconstruction error: 0.20875812862381482, decrease = 1.1967208335406099e-09
iteration 3, reconstruction error: 0.20875812742789088, decrease = 1.1959239432091096e-09
iteration 4, reconstruction error: 0.20875812623278164, decrease = 1.195109233798064e-09
PARAFAC2 reconstruction error=0.8189075624428754, variation=5.258466995172739e-10.
Starting iteration 2841
reconstruction error=0.20875812472468352
iteration 1, reconstruction error: 0.20875812352777826, decrease = 1.1969052693405757e-09
iteration 2, reconstruction error: 0.20875812233169921, decrease = 1.1960790413656497e-09
iteration 3, reconstruction error: 0.20875812113642564, decrease = 1.1952735745612841e-09
iteration 4, reconstruction error: 0.20875811994196594, decrease = 1.194459697817507e-09
PARAFAC2 reconstruction error=0.8189075619173135, variation=5.255619273114576e-10.
Starting iteration 2842
reconstruction error=0.20875811843467967
iteration 1, reconstruction error: 0.20875811723843246, decrease = 1.1962472123983048e-09
iteration 2, reconstruction error: 0.20875811604299915, decrease = 1.195433307898952e-09
iteration 3, reconstruction error: 0.20875811484837278, decrease = 1.194626370049079e-09
iteration 4, reconstruction error: 0.2087581136545511, decrease = 1.1938216804008306e-09
PARAFAC2 reconstruction error=0.8189075613920362, variation=5.252772661279437e-10.
Starting iteration 2843
reconstruction error=0.20875811214808973
iteration 1, reconstruction error: 0.2087581109524797, decrease = 1.1956100276488968e-09
iteration 2, reconstruction error: 0.2087581097576967, decrease = 1.1947829947622779e-09
iteration 3, reconstruction error: 0.20875810856371452, decrease = 1.1939821908946158e-09
iteration 4, reconstruction error: 0.2087581073705424, decrease = 1.193172116664698e-09
PARAFAC2 reconstruction error=0.8189075608670435, variation=5.249927159667322e-10.
Starting iteration 2844
reconstruction error=0.20875810586489366
iteration 1, reconstruction error: 0.20875810466993783, decrease = 1.1949558287316364e-09
iteration 2, reconstruction error: 0.20875810347579665, decrease = 1.194141174831742e-09
iteration 3, reconstruction error: 0.20875810228246325, decrease = 1.1933334043146004e-09
iteration 4, reconstruction error: 0.20875810108992834, decrease = 1.1925349041597144e-09
PARAFAC2 reconstruction error=0.8189075603423345, variation=5.247090539839405e-10.
Starting iteration 2845
reconstruction error=0.20875809958510455
iteration 1, reconstruction error: 0.20875809839079132, decrease = 1.1943132316449834e-09
iteration 2, reconstruction error: 0.20875809719729277, decrease = 1.1934985499895134e-09
iteration 3, reconstruction error: 0.20875809600460352, decrease = 1.192689252915713e-09
iteration 4, reconstruction error: 0.20875809481271354, decrease = 1.1918899756047097e-09
PARAFAC2 reconstruction error=0.8189075598179097, variation=5.24424725867334e-10.
Starting iteration 2846
reconstruction error=0.2087580933087062
iteration 1, reconstruction error: 0.20875809211503946, decrease = 1.1936667487777441e-09
iteration 2, reconstruction error: 0.20875809092219047, decrease = 1.1928489862533809e-09
iteration 3, reconstruction error: 0.20875808973014154, decrease = 1.1920489317862604e-09
iteration 4, reconstruction error: 0.2087580885388965, decrease = 1.191245047049705e-09
PARAFAC2 reconstruction error=0.8189075592937686, variation=5.241411749068448e-10.
Starting iteration 2847
reconstruction error=0.20875808703570403
iteration 1, reconstruction error: 0.20875808584268143, decrease = 1.1930225973788566e-09
iteration 2, reconstruction error: 0.2087580846504813, decrease = 1.1922001441622143e-09
iteration 3, reconstruction error: 0.20875808345907415, decrease = 1.1914071396113002e-09
iteration 4, reconstruction error: 0.20875808226846942, decrease = 1.1906047259202523e-09
PARAFAC2 reconstruction error=0.8189075587699111, variation=5.23857512924053e-10.
Starting iteration 2848
reconstruction error=0.208758080766095
iteration 1, reconstruction error: 0.2087580795737189, decrease = 1.1923761145116174e-09
iteration 2, reconstruction error: 0.2087580783821559, decrease = 1.191562987168382e-09
iteration 3, reconstruction error: 0.2087580771913899, decrease = 1.1907660135701548e-09
iteration 4, reconstruction error: 0.20875807600143081, decrease = 1.1899590757202816e-09
PARAFAC2 reconstruction error=0.8189075582463368, variation=5.235742950304711e-10.
Starting iteration 2849
reconstruction error=0.2087580744998729
iteration 1, reconstruction error: 0.2087580733081371, decrease = 1.1917358211377405e-09
iteration 2, reconstruction error: 0.20875807211722136, decrease = 1.1909157271450255e-09
iteration 3, reconstruction error: 0.20875807092710255, decrease = 1.1901188090579495e-09
iteration 4, reconstruction error: 0.20875806973778535, decrease = 1.1893172002785946e-09
PARAFAC2 reconstruction error=0.8189075577230456, variation=5.232911881591917e-10.
Starting iteration 2850
reconstruction error=0.20875806823704007
iteration 1, reconstruction error: 0.20875806704595148, decrease = 1.1910885888699596e-09
iteration 2, reconstruction error: 0.20875806585567375, decrease = 1.1902777374839246e-09
iteration 3, reconstruction error: 0.20875806466619837, decrease = 1.189475379304028e-09
iteration 4, reconstruction error: 0.2087580634775168, decrease = 1.188681569841421e-09
PARAFAC2 reconstruction error=0.8189075572000372, variation=5.230084143548197e-10.
Starting iteration 2851
reconstruction error=0.2087580619775896
iteration 1, reconstruction error: 0.20875806078714054, decrease = 1.1904490448966243e-09
iteration 2, reconstruction error: 0.20875805959750465, decrease = 1.1896358897978132e-09
iteration 3, reconstruction error: 0.20875805840867032, decrease = 1.1888343365296095e-09
iteration 4, reconstruction error: 0.20875805722063526, decrease = 1.1880350592186062e-09
PARAFAC2 reconstruction error=0.8189075566773114, variation=5.227257515727501e-10.
Starting iteration 2852
reconstruction error=0.2087580557215175
iteration 1, reconstruction error: 0.20875805453171725, decrease = 1.189800258316609e-09
iteration 2, reconstruction error: 0.2087580533427255, decrease = 1.1889917383989257e-09
iteration 3, reconstruction error: 0.20875805215452686, decrease = 1.1881986505812847e-09
iteration 4, reconstruction error: 0.20875805096713518, decrease = 1.187391684975836e-09
PARAFAC2 reconstruction error=0.8189075561548683, variation=5.224430887906806e-10.
Starting iteration 2853
reconstruction error=0.20875804946883084
iteration 1, reconstruction error: 0.2087580482796655, decrease = 1.1891653495244014e-09
iteration 2, reconstruction error: 0.20875804709131712, decrease = 1.1883483641561554e-09
iteration 3, reconstruction error: 0.20875804590376262, decrease = 1.1875544991823972e-09
iteration 4, reconstruction error: 0.20875804471700585, decrease = 1.1867567761836284e-09
PARAFAC2 reconstruction error=0.8189075556327072, variation=5.221610921424258e-10.
Starting iteration 2854
reconstruction error=0.208758043219515
iteration 1, reconstruction error: 0.20875804203099071, decrease = 1.1885242789944073e-09
iteration 2, reconstruction error: 0.20875804084328806, decrease = 1.1877026584450334e-09
iteration 3, reconstruction error: 0.2087580396563731, decrease = 1.1869149552090619e-09
iteration 4, reconstruction error: 0.2087580384702535, decrease = 1.1861195914342204e-09
PARAFAC2 reconstruction error=0.8189075551108284, variation=5.218788734495661e-10.
Starting iteration 2855
reconstruction error=0.20875803697357534
iteration 1, reconstruction error: 0.20875803578569752, decrease = 1.1878778238827437e-09
iteration 2, reconstruction error: 0.20875803459862746, decrease = 1.187070053365602e-09
iteration 3, reconstruction error: 0.2087580334123551, decrease = 1.1862723581224088e-09
iteration 4, reconstruction error: 0.20875803222686967, decrease = 1.1854854320425545e-09
PARAFAC2 reconstruction error=0.8189075545892313, variation=5.215970988459162e-10.
Starting iteration 2856
reconstruction error=0.20875803073100258
iteration 1, reconstruction error: 0.2087580295437697, decrease = 1.1872328675721633e-09
iteration 2, reconstruction error: 0.20875802835733914, decrease = 1.186430564903418e-09
iteration 3, reconstruction error: 0.20875802717170094, decrease = 1.185638198730743e-09
iteration 4, reconstruction error: 0.20875802598686427, decrease = 1.1848366732181148e-09
PARAFAC2 reconstruction error=0.8189075540679158, variation=5.213154352645688e-10.
Starting iteration 2857
reconstruction error=0.20875802449180905
iteration 1, reconstruction error: 0.2087580233052111, decrease = 1.1865979587799558e-09
iteration 2, reconstruction error: 0.20875802211942085, decrease = 1.1857902437739654e-09
iteration 3, reconstruction error: 0.2087580209344237, decrease = 1.1849971559563244e-09
iteration 4, reconstruction error: 0.20875801975021654, decrease = 1.1842071490075767e-09
PARAFAC2 reconstruction error=0.8189075535468817, variation=5.210341047501288e-10.
Starting iteration 2858
reconstruction error=0.20875801825597246
iteration 1, reconstruction error: 0.2087580170700171, decrease = 1.1859553616933027e-09
iteration 2, reconstruction error: 0.2087580158848664, decrease = 1.18515069980063e-09
iteration 3, reconstruction error: 0.20875801470051186, decrease = 1.1843545311140957e-09
iteration 4, reconstruction error: 0.2087580135169373, decrease = 1.183574571683721e-09
PARAFAC2 reconstruction error=0.8189075530261287, variation=5.207529962802937e-10.
Starting iteration 2859
reconstruction error=0.20875801202350283
iteration 1, reconstruction error: 0.2087580108381862, decrease = 1.1853166226316603e-09
iteration 2, reconstruction error: 0.20875800965367738, decrease = 1.184508824358943e-09
iteration 3, reconstruction error: 0.20875800846995232, decrease = 1.1837250624147089e-09
iteration 4, reconstruction error: 0.20875800728702268, decrease = 1.1829296431287162e-09
PARAFAC2 reconstruction error=0.8189075525056566, variation=5.204721098550635e-10.
Starting iteration 2860
reconstruction error=0.2087580057943924
iteration 1, reconstruction error: 0.20875800460971763, decrease = 1.1846747749455488e-09
iteration 2, reconstruction error: 0.20875800342584447, decrease = 1.1838731661661939e-09
iteration 3, reconstruction error: 0.20875800224275973, decrease = 1.1830847412852563e-09
iteration 4, reconstruction error: 0.20875800106046963, decrease = 1.1822900991553809e-09
PARAFAC2 reconstruction error=0.8189075519854656, variation=5.201910013852284e-10.
Starting iteration 2861
reconstruction error=0.2087579995686505
iteration 1, reconstruction error: 0.20875799838460754, decrease = 1.1840429470222347e-09
iteration 2, reconstruction error: 0.20875799720137003, decrease = 1.1832375079734447e-09
iteration 3, reconstruction error: 0.20875799601891787, decrease = 1.1824521639614005e-09
iteration 4, reconstruction error: 0.20875799483726576, decrease = 1.18165210949428e-09
PARAFAC2 reconstruction error=0.8189075514655548, variation=5.199107810938131e-10.
Starting iteration 2862
reconstruction error=0.208757993346257
iteration 1, reconstruction error: 0.20875799216285204, decrease = 1.1834049573611338e-09
iteration 2, reconstruction error: 0.20875799098025558, decrease = 1.1825964651990262e-09
iteration 3, reconstruction error: 0.20875798979844373, decrease = 1.181811842831948e-09
iteration 4, reconstruction error: 0.2087579886174188, decrease = 1.1810249445076693e-09
PARAFAC2 reconstruction error=0.8189075509459246, variation=5.196302277354903e-10.
Starting iteration 2863
reconstruction error=0.20875798712721505
iteration 1, reconstruction error: 0.2087579859444481, decrease = 1.1827669399444574e-09
iteration 2, reconstruction error: 0.2087579847624858, decrease = 1.1819623058073603e-09
iteration 3, reconstruction error: 0.208757983581315, decrease = 1.1811708000575294e-09
iteration 4, reconstruction error: 0.2087579824009242, decrease = 1.180390812871579e-09
PARAFAC2 reconstruction error=0.8189075504265744, variation=5.193502294886798e-10.
Starting iteration 2864
reconstruction error=0.20875798091152536
iteration 1, reconstruction error: 0.20875797972939872, decrease = 1.1821266465705804e-09
iteration 2, reconstruction error: 0.20875797854806977, decrease = 1.1813289513273872e-09
iteration 3, reconstruction error: 0.2087579773675331, decrease = 1.1805366684214391e-09
iteration 4, reconstruction error: 0.20875797618778108, decrease = 1.1797520182987853e-09
PARAFAC2 reconstruction error=0.8189075499075041, variation=5.190702312418694e-10.
Starting iteration 2865
reconstruction error=0.2087579746991873
iteration 1, reconstruction error: 0.2087579735176963, decrease = 1.181491016133407e-09
iteration 2, reconstruction error: 0.2087579723370038, decrease = 1.1806924882229453e-09
iteration 3, reconstruction error: 0.20875797115710207, decrease = 1.179901731873656e-09
iteration 4, reconstruction error: 0.2087579699779849, decrease = 1.179117165017729e-09
PARAFAC2 reconstruction error=0.8189075493887136, variation=5.187905660619663e-10.
Starting iteration 2866
reconstruction error=0.20875796849019382
iteration 1, reconstruction error: 0.20875796730933927, decrease = 1.180854553028965e-09
iteration 2, reconstruction error: 0.20875796612928782, decrease = 1.1800514454485267e-09
iteration 3, reconstruction error: 0.20875796495001792, decrease = 1.1792699039503418e-09
iteration 4, reconstruction error: 0.20875796377152178, decrease = 1.1784961340133293e-09
PARAFAC2 reconstruction error=0.8189075488702028, variation=5.185107898597607e-10.
Starting iteration 2867
reconstruction error=0.20875796228454263
iteration 1, reconstruction error: 0.20875796110433145, decrease = 1.1802111787861946e-09
iteration 2, reconstruction error: 0.20875795992490412, decrease = 1.1794273335752337e-09
iteration 3, reconstruction error: 0.20875795874627065, decrease = 1.1786334686014754e-09
iteration 4, reconstruction error: 0.2087579575684171, decrease = 1.1778535369266763e-09
PARAFAC2 reconstruction error=0.8189075483519709, variation=5.182319018359749e-10.
Starting iteration 2868
reconstruction error=0.2087579560822376
iteration 1, reconstruction error: 0.2087579549026521, decrease = 1.1795855126006671e-09
iteration 2, reconstruction error: 0.20875795372386735, decrease = 1.1787847364885806e-09
iteration 3, reconstruction error: 0.20875795254586416, decrease = 1.1780031949903957e-09
iteration 4, reconstruction error: 0.2087579513686417, decrease = 1.1772224584039037e-09
PARAFAC2 reconstruction error=0.8189075478340184, variation=5.179524587006767e-10.
Starting iteration 2869
reconstruction error=0.20875794988326563
iteration 1, reconstruction error: 0.20875794870431733, decrease = 1.1789483000956835e-09
iteration 2, reconstruction error: 0.20875794752616364, decrease = 1.1781536857213837e-09
iteration 3, reconstruction error: 0.20875794634879918, decrease = 1.1773644559287533e-09
iteration 4, reconstruction error: 0.20875794517220622, decrease = 1.1765929619489413e-09
PARAFAC2 reconstruction error=0.8189075473163445, variation=5.176739037437983e-10.
Starting iteration 2870
reconstruction error=0.2087579436876344
iteration 1, reconstruction error: 0.208757942509321, decrease = 1.178313391303476e-09
iteration 2, reconstruction error: 0.20875794133180453, decrease = 1.1775164732164e-09
iteration 3, reconstruction error: 0.20875794015505955, decrease = 1.176744979236588e-09
iteration 4, reconstruction error: 0.20875793897910844, decrease = 1.1759511142628298e-09
PARAFAC2 reconstruction error=0.8189075467989495, variation=5.173950157200125e-10.
Starting iteration 2871
reconstruction error=0.2087579374953378
iteration 1, reconstruction error: 0.20875793631765466, decrease = 1.177683145447972e-09
iteration 2, reconstruction error: 0.2087579351407646, decrease = 1.176890057630331e-09
iteration 3, reconstruction error: 0.20875793396465916, decrease = 1.1761054352632527e-09
iteration 4, reconstruction error: 0.2087579327893383, decrease = 1.1753208684073257e-09
PARAFAC2 reconstruction error=0.8189075462818328, variation=5.171166828077389e-10.
Starting iteration 2872
reconstruction error=0.2087579313063673
iteration 1, reconstruction error: 0.20875793012931676, decrease = 1.1770505403685405e-09
iteration 2, reconstruction error: 0.20875792895306858, decrease = 1.176248182188644e-09
iteration 3, reconstruction error: 0.2087579277775903, decrease = 1.175478270276642e-09
iteration 4, reconstruction error: 0.20875792660289588, decrease = 1.174694425065681e-09
PARAFAC2 reconstruction error=0.8189075457649946, variation=5.168382388731629e-10.
Starting iteration 2873
reconstruction error=0.20875792512073454
iteration 1, reconstruction error: 0.208757923944315, decrease = 1.1764195451124948e-09
iteration 2, reconstruction error: 0.2087579227686886, decrease = 1.1756264017837026e-09
iteration 3, reconstruction error: 0.20875792159384832, decrease = 1.1748402806155411e-09
iteration 4, reconstruction error: 0.20875792041978725, decrease = 1.174061070585708e-09
PARAFAC2 reconstruction error=0.8189075452484343, variation=5.165602390277968e-10.
Starting iteration 2874
reconstruction error=0.20875791893841555
iteration 1, reconstruction error: 0.2087579177626348, decrease = 1.175780750539701e-09
iteration 2, reconstruction error: 0.20875791658764176, decrease = 1.1749930473037296e-09
iteration 3, reconstruction error: 0.20875791541343097, decrease = 1.1742107841605787e-09
iteration 4, reconstruction error: 0.20875791423999246, decrease = 1.1734385130246494e-09
PARAFAC2 reconstruction error=0.8189075447321519, variation=5.162824612270356e-10.
Starting iteration 2875
reconstruction error=0.20875791275942887
iteration 1, reconstruction error: 0.2087579115842738, decrease = 1.1751550843541736e-09
iteration 2, reconstruction error: 0.20875791040991562, decrease = 1.1743581662670977e-09
iteration 3, reconstruction error: 0.2087579092363382, decrease = 1.1735774296806056e-09
iteration 4, reconstruction error: 0.20875790806353225, decrease = 1.1728059357007936e-09
PARAFAC2 reconstruction error=0.818907544216147, variation=5.160049054708793e-10.
Starting iteration 2876
reconstruction error=0.20875790658376064
iteration 1, reconstruction error: 0.20875790540924508, decrease = 1.1745155681364139e-09
iteration 2, reconstruction error: 0.208757904235511, decrease = 1.1737340821493802e-09
iteration 3, reconstruction error: 0.20875790306256078, decrease = 1.1729502091828437e-09
iteration 4, reconstruction error: 0.20875790189038204, decrease = 1.1721787429586072e-09
PARAFAC2 reconstruction error=0.8189075437004196, variation=5.15727349714723e-10.
Starting iteration 2877
reconstruction error=0.20875790041140926
iteration 1, reconstruction error: 0.20875789923752397, decrease = 1.1738852945253342e-09
iteration 2, reconstruction error: 0.20875789806442405, decrease = 1.1730999227577144e-09
iteration 3, reconstruction error: 0.20875789689209945, decrease = 1.1723245985084674e-09
iteration 4, reconstruction error: 0.20875789572055178, decrease = 1.1715476644358347e-09
PARAFAC2 reconstruction error=0.8189075431849695, variation=5.154501270254741e-10.
Starting iteration 2878
reconstruction error=0.20875789424238103
iteration 1, reconstruction error: 0.20875789306912368, decrease = 1.1732573523826062e-09
iteration 2, reconstruction error: 0.20875789189665403, decrease = 1.1724696491466347e-09
iteration 3, reconstruction error: 0.20875789072496204, decrease = 1.171691993429036e-09
iteration 4, reconstruction error: 0.20875788955403535, decrease = 1.1709266889425862e-09
PARAFAC2 reconstruction error=0.8189075426697965, variation=5.151730153585277e-10.
Starting iteration 2879
reconstruction error=0.208757888076665
iteration 1, reconstruction error: 0.20875788690403252, decrease = 1.1726324911087715e-09
iteration 2, reconstruction error: 0.20875788573219548, decrease = 1.1718370440672032e-09
iteration 3, reconstruction error: 0.20875788456112912, decrease = 1.171066354999084e-09
iteration 4, reconstruction error: 0.2087578833908327, decrease = 1.1702964153315065e-09
PARAFAC2 reconstruction error=0.8189075421548999, variation=5.14896569825396e-10.
Starting iteration 2880
reconstruction error=0.20875788191425515
iteration 1, reconstruction error: 0.20875788074225526, decrease = 1.1719998860293401e-09
iteration 2, reconstruction error: 0.20875787957104613, decrease = 1.1712091296800509e-09
iteration 3, reconstruction error: 0.20875787840060467, decrease = 1.1704414659696738e-09
iteration 4, reconstruction error: 0.20875787723094316, decrease = 1.169661506539299e-09
PARAFAC2 reconstruction error=0.8189075416402802, variation=5.146196802030545e-10.
Starting iteration 2881
reconstruction error=0.20875787575516377
iteration 1, reconstruction error: 0.20875787458378875, decrease = 1.1713750247555055e-09
iteration 2, reconstruction error: 0.20875787341320606, decrease = 1.1705826863384061e-09
iteration 3, reconstruction error: 0.20875787224339562, decrease = 1.1698104429580525e-09
iteration 4, reconstruction error: 0.2087578710743559, decrease = 1.1690397261343577e-09
PARAFAC2 reconstruction error=0.8189075411259369, variation=5.143433456922253e-10.
Starting iteration 2882
reconstruction error=0.20875786959936607
iteration 1, reconstruction error: 0.20875786842862595, decrease = 1.170740115963298e-09
iteration 2, reconstruction error: 0.20875786725867507, decrease = 1.1699508861706676e-09
iteration 3, reconstruction error: 0.20875786608948643, decrease = 1.1691886347975355e-09
iteration 4, reconstruction error: 0.20875786492107465, decrease = 1.1684117839916297e-09
PARAFAC2 reconstruction error=0.8189075406118697, variation=5.14067233226001e-10.
Starting iteration 2883
reconstruction error=0.20875786344688152
iteration 1, reconstruction error: 0.20875786227676704, decrease = 1.170114477533346e-09
iteration 2, reconstruction error: 0.20875786110743644, decrease = 1.1693306045668095e-09
iteration 3, reconstruction error: 0.20875785993888424, decrease = 1.1685521994486692e-09
iteration 4, reconstruction error: 0.2087578587710958, decrease = 1.167788449274454e-09
PARAFAC2 reconstruction error=0.8189075400980785, variation=5.137911207597767e-10.
Starting iteration 2884
reconstruction error=0.20875785729769533
iteration 1, reconstruction error: 0.20875785612820963, decrease = 1.1694857027233496e-09
iteration 2, reconstruction error: 0.20875785495950616, decrease = 1.1687034673357743e-09
iteration 3, reconstruction error: 0.20875785379157805, decrease = 1.1679281153309518e-09
iteration 4, reconstruction error: 0.20875785262441526, decrease = 1.1671627830889264e-09
PARAFAC2 reconstruction error=0.8189075395845631, variation=5.135154523827623e-10.
Starting iteration 2885
reconstruction error=0.20875785115180917
iteration 1, reconstruction error: 0.20875784998294908, decrease = 1.1688600920489733e-09
iteration 2, reconstruction error: 0.20875784881487902, decrease = 1.16807005734465e-09
iteration 3, reconstruction error: 0.20875784764756805, decrease = 1.1673109701071382e-09
iteration 4, reconstruction error: 0.2087578464810309, decrease = 1.1665371446589745e-09
PARAFAC2 reconstruction error=0.8189075390713232, variation=5.132398950280503e-10.
Starting iteration 2886
reconstruction error=0.20875784500921754
iteration 1, reconstruction error: 0.20875784384098542, decrease = 1.1682321221506697e-09
iteration 2, reconstruction error: 0.2087578426735402, decrease = 1.167445223826391e-09
iteration 3, reconstruction error: 0.20875784150685722, decrease = 1.166682972453259e-09
iteration 4, reconstruction error: 0.20875784034094494, decrease = 1.1659122833851399e-09
PARAFAC2 reconstruction error=0.818907538558359, variation=5.129642266510359e-10.
Starting iteration 2887
reconstruction error=0.20875783886992746
iteration 1, reconstruction error: 0.2087578377023179, decrease = 1.1676095645896112e-09
iteration 2, reconstruction error: 0.20875783653549063, decrease = 1.1668272736908847e-09
iteration 3, reconstruction error: 0.20875783536943635, decrease = 1.1660542809099894e-09
iteration 4, reconstruction error: 0.20875783420415048, decrease = 1.1652858677990707e-09
PARAFAC2 reconstruction error=0.8189075380456697, variation=5.126892244078363e-10.
Starting iteration 2888
reconstruction error=0.2087578327339196
iteration 1, reconstruction error: 0.20875783156694416, decrease = 1.166975432953521e-09
iteration 2, reconstruction error: 0.20875783040074022, decrease = 1.1662039389737089e-09
iteration 3, reconstruction error: 0.20875782923530697, decrease = 1.1654332499055897e-09
iteration 4, reconstruction error: 0.20875782807064447, decrease = 1.1646625053263193e-09
PARAFAC2 reconstruction error=0.8189075375332553, variation=5.124144442092415e-10.
Starting iteration 2889
reconstruction error=0.20875782660120945
iteration 1, reconstruction error: 0.20875782543485427, decrease = 1.1663551791052384e-09
iteration 2, reconstruction error: 0.20875782426927594, decrease = 1.1655783282993326e-09
iteration 3, reconstruction error: 0.20875782310447066, decrease = 1.1648052800072861e-09
iteration 4, reconstruction error: 0.20875782194042533, decrease = 1.1640453323469302e-09
PARAFAC2 reconstruction error=0.8189075370211156, variation=5.121396640106468e-10.
Starting iteration 2890
reconstruction error=0.20875782047178384
iteration 1, reconstruction error: 0.20875781930605122, decrease = 1.1657326215441799e-09
iteration 2, reconstruction error: 0.20875781814109778, decrease = 1.1649534392699223e-09
iteration 3, reconstruction error: 0.2087578169769112, decrease = 1.1641865804712381e-09
iteration 4, reconstruction error: 0.20875781581348993, decrease = 1.1634212759847884e-09
PARAFAC2 reconstruction error=0.8189075365092506, variation=5.118649948343545e-10.
Starting iteration 2891
reconstruction error=0.2087578143456397
iteration 1, reconstruction error: 0.20875781318053194, decrease = 1.1651077602703452e-09
iteration 2, reconstruction error: 0.20875781201620647, decrease = 1.1643254693716187e-09
iteration 3, reconstruction error: 0.2087578108526417, decrease = 1.1635647723107212e-09
iteration 4, reconstruction error: 0.20875780968984065, decrease = 1.1628010498920816e-09
PARAFAC2 reconstruction error=0.8189075359976601, variation=5.115905477026672e-10.
Starting iteration 2892
reconstruction error=0.20875780822278014
iteration 1, reconstruction error: 0.20875780705829494, decrease = 1.1644852027092867e-09
iteration 2, reconstruction error: 0.2087578058945905, decrease = 1.163704438367219e-09
iteration 3, reconstruction error: 0.20875780473165056, decrease = 1.1629399387924622e-09
iteration 4, reconstruction error: 0.20875780356947057, decrease = 1.1621799911321062e-09
PARAFAC2 reconstruction error=0.8189075354863433, variation=5.113167667047946e-10.
Starting iteration 2893
reconstruction error=0.208757802103199
iteration 1, reconstruction error: 0.20875780093933713, decrease = 1.1638618679921109e-09
iteration 2, reconstruction error: 0.20875779977625908, decrease = 1.1630780505367255e-09
iteration 3, reconstruction error: 0.2087577986139394, decrease = 1.1623196849441797e-09
iteration 4, reconstruction error: 0.20875779745238043, decrease = 1.1615589601277065e-09
PARAFAC2 reconstruction error=0.8189075349753008, variation=5.110425416177122e-10.
Starting iteration 2894
reconstruction error=0.20875779598689317
iteration 1, reconstruction error: 0.20875779482366003, decrease = 1.1632331486932657e-09
iteration 2, reconstruction error: 0.20875779366119915, decrease = 1.1624608775573364e-09
iteration 3, reconstruction error: 0.20875779249950283, decrease = 1.1616963224714283e-09
iteration 4, reconstruction error: 0.20875779133856562, decrease = 1.1609372074783408e-09
PARAFAC2 reconstruction error=0.818907534464532, variation=5.107687606198397e-10.
Starting iteration 2895
reconstruction error=0.2087577898738666
iteration 1, reconstruction error: 0.20875778871125217, decrease = 1.162614421401642e-09
iteration 2, reconstruction error: 0.20875778754941612, decrease = 1.1618360440390774e-09
iteration 3, reconstruction error: 0.20875778638833542, decrease = 1.1610807038042736e-09
iteration 4, reconstruction error: 0.2087577852280177, decrease = 1.1603177307861756e-09
PARAFAC2 reconstruction error=0.8189075339540366, variation=5.10495423711177e-10.
Starting iteration 2896
reconstruction error=0.20875778376411225
iteration 1, reconstruction error: 0.2087577826021142, decrease = 1.1619980533339458e-09
iteration 2, reconstruction error: 0.20875778144090382, decrease = 1.1612103778535499e-09
iteration 3, reconstruction error: 0.20875778028044642, decrease = 1.1604573968426735e-09
iteration 4, reconstruction error: 0.20875777912075202, decrease = 1.1596943960689998e-09
PARAFAC2 reconstruction error=0.8189075334438147, variation=5.102218647579093e-10.
Starting iteration 2897
reconstruction error=0.20875777765762552
iteration 1, reconstruction error: 0.20875777649625232, decrease = 1.1613731920601111e-09
iteration 2, reconstruction error: 0.2087577753356576, decrease = 1.1605947314308196e-09
iteration 3, reconstruction error: 0.20875777417581656, decrease = 1.1598410287749772e-09
iteration 4, reconstruction error: 0.20875777301674317, decrease = 1.1590733928201757e-09
PARAFAC2 reconstruction error=0.8189075329338658, variation=5.099489719384565e-10.
Starting iteration 2898
reconstruction error=0.2087577715544041
iteration 1, reconstruction error: 0.20875777039365578, decrease = 1.1607483030307009e-09
iteration 2, reconstruction error: 0.20875776923367897, decrease = 1.1599768090508888e-09
iteration 3, reconstruction error: 0.20875776807445823, decrease = 1.1592207471711191e-09
iteration 4, reconstruction error: 0.20875776691600198, decrease = 1.1584562475963622e-09
PARAFAC2 reconstruction error=0.8189075324241898, variation=5.096759680967011e-10.
Starting iteration 2899
reconstruction error=0.20875776545444727
iteration 1, reconstruction error: 0.2087577642943223, decrease = 1.160124968313525e-09
iteration 2, reconstruction error: 0.20875776313496341, decrease = 1.159358886670958e-09
iteration 3, reconstruction error: 0.20875776197636675, decrease = 1.1585966630534017e-09
iteration 4, reconstruction error: 0.2087577608185223, decrease = 1.1578444591986425e-09
PARAFAC2 reconstruction error=0.8189075319147864, variation=5.094034083441557e-10.
Starting iteration 2900
reconstruction error=0.20875775935775495
iteration 1, reconstruction error: 0.20875775819825024, decrease = 1.1595047144652426e-09
iteration 2, reconstruction error: 0.20875775703951469, decrease = 1.1587355519537823e-09
iteration 3, reconstruction error: 0.20875775588153597, decrease = 1.1579787129178953e-09
iteration 4, reconstruction error: 0.20875775472431018, decrease = 1.1572257874181702e-09
PARAFAC2 reconstruction error=0.8189075314056556, variation=5.091307375693077e-10.
Starting iteration 2901
reconstruction error=0.2087577532643219
iteration 1, reconstruction error: 0.2087577521054374, decrease = 1.1588844883725358e-09
iteration 2, reconstruction error: 0.2087577509473167, decrease = 1.1581207104427449e-09
iteration 3, reconstruction error: 0.20875774978995357, decrease = 1.1573631220063163e-09
iteration 4, reconstruction error: 0.20875774863335114, decrease = 1.1566024249454188e-09
PARAFAC2 reconstruction error=0.8189075308967971, variation=5.088585108836696e-10.
Starting iteration 2902
reconstruction error=0.20875774717415024
iteration 1, reconstruction error: 0.20875774601588215, decrease = 1.1582680925492639e-09
iteration 2, reconstruction error: 0.20875774485838244, decrease = 1.1574997071939208e-09
iteration 3, reconstruction error: 0.20875774370163802, decrease = 1.1567444224702683e-09
iteration 4, reconstruction error: 0.20875774254564966, decrease = 1.1559883605904986e-09
PARAFAC2 reconstruction error=0.8189075303882108, variation=5.085862841980315e-10.
Starting iteration 2903
reconstruction error=0.20875774108723394
iteration 1, reconstruction error: 0.208757739929583, decrease = 1.1576509473254504e-09
iteration 2, reconstruction error: 0.20875773877270432, decrease = 1.1568786761895211e-09
iteration 3, reconstruction error: 0.20875773761657554, decrease = 1.156128776047538e-09
iteration 4, reconstruction error: 0.20875773646120277, decrease = 1.1553727696789196e-09
PARAFAC2 reconstruction error=0.8189075298798966, variation=5.083142795569984e-10.
Starting iteration 2904
reconstruction error=0.20875773500356604
iteration 1, reconstruction error: 0.2087577338465369, decrease = 1.1570291391649334e-09
iteration 2, reconstruction error: 0.20875773269027692, decrease = 1.1562599766534731e-09
iteration 3, reconstruction error: 0.20875773153476065, decrease = 1.1555162660048524e-09
iteration 4, reconstruction error: 0.2087577303800035, decrease = 1.154757151011765e-09
PARAFAC2 reconstruction error=0.8189075293718538, variation=5.080427190051751e-10.
Starting iteration 2905
reconstruction error=0.20875772892315347
iteration 1, reconstruction error: 0.2087577277667407, decrease = 1.1564127710972372e-09
iteration 2, reconstruction error: 0.2087577266110917, decrease = 1.1556489931674463e-09
iteration 3, reconstruction error: 0.20875772545619567, decrease = 1.1548960399121455e-09
iteration 4, reconstruction error: 0.20875772430205417, decrease = 1.1541415045890346e-09
PARAFAC2 reconstruction error=0.8189075288640826, variation=5.077712694756542e-10.
Starting iteration 2906
reconstruction error=0.20875772284598387
iteration 1, reconstruction error: 0.20875772169018905, decrease = 1.1557948209617308e-09
iteration 2, reconstruction error: 0.20875772053515568, decrease = 1.1550333745002916e-09
iteration 3, reconstruction error: 0.20875771938088297, decrease = 1.1542727051949697e-09
iteration 4, reconstruction error: 0.208757718227354, decrease = 1.1535289667907733e-09
PARAFAC2 reconstruction error=0.8189075283565828, variation=5.074998199461334e-10.
Starting iteration 2907
reconstruction error=0.20875771677206342
iteration 1, reconstruction error: 0.20875771561688572, decrease = 1.155177703493493e-09
iteration 2, reconstruction error: 0.20875771446247338, decrease = 1.154412343495892e-09
iteration 3, reconstruction error: 0.20875771330880938, decrease = 1.1536639976661434e-09
iteration 4, reconstruction error: 0.20875771215589756, decrease = 1.1529118215669598e-09
PARAFAC2 reconstruction error=0.8189075278493539, variation=5.072288145058224e-10.
Starting iteration 2908
reconstruction error=0.20875771070138988
iteration 1, reconstruction error: 0.20875770954682396, decrease = 1.1545659150957732e-09
iteration 2, reconstruction error: 0.2087577083930249, decrease = 1.153799056297089e-09
iteration 3, reconstruction error: 0.2087577072399796, decrease = 1.1530452981300954e-09
iteration 4, reconstruction error: 0.208757706087678, decrease = 1.1523016152370502e-09
PARAFAC2 reconstruction error=0.8189075273423961, variation=5.069578090655114e-10.
Starting iteration 2909
reconstruction error=0.2087577046339478
iteration 1, reconstruction error: 0.20875770347999828, decrease = 1.1539495192725013e-09
iteration 2, reconstruction error: 0.20875770232681637, decrease = 1.1531819110732755e-09
iteration 3, reconstruction error: 0.2087577011743859, decrease = 1.152430456619058e-09
iteration 4, reconstruction error: 0.2087577000227007, decrease = 1.1516852194137783e-09
PARAFAC2 reconstruction error=0.818907526835709, variation=5.066871366921077e-10.
Starting iteration 2910
reconstruction error=0.20875769856974946
iteration 1, reconstruction error: 0.20875769741641861, decrease = 1.153330847492029e-09
iteration 2, reconstruction error: 0.20875769626385005, decrease = 1.1525685683633213e-09
iteration 3, reconstruction error: 0.2087576951120313, decrease = 1.1518187514880651e-09
iteration 4, reconstruction error: 0.20875769396096325, decrease = 1.1510680464343892e-09
PARAFAC2 reconstruction error=0.8189075263292922, variation=5.064167973856115e-10.
Starting iteration 2911
reconstruction error=0.20875769250879184
iteration 1, reconstruction error: 0.20875769135606737, decrease = 1.1527244714315543e-09
iteration 2, reconstruction error: 0.2087576902041198, decrease = 1.1519475651144973e-09
iteration 3, reconstruction error: 0.20875768905291053, decrease = 1.1512092668031215e-09
iteration 4, reconstruction error: 0.20875768790244498, decrease = 1.1504655561545007e-09
PARAFAC2 reconstruction error=0.8189075258231459, variation=5.061463470568128e-10.
Starting iteration 2912
reconstruction error=0.20875768645105794
iteration 1, reconstruction error: 0.20875768529895836, decrease = 1.152099582402144e-09
iteration 2, reconstruction error: 0.20875768414761867, decrease = 1.1513396902529394e-09
iteration 3, reconstruction error: 0.2087576829970235, decrease = 1.1505951746926257e-09
iteration 4, reconstruction error: 0.20875768184717738, decrease = 1.1498461072179111e-09
PARAFAC2 reconstruction error=0.8189075253172694, variation=5.058764518395265e-10.
Starting iteration 2913
reconstruction error=0.20875768039656092
iteration 1, reconstruction error: 0.2087576792450723, decrease = 1.1514886266716928e-09
iteration 2, reconstruction error: 0.2087576780943467, decrease = 1.1507255981424436e-09
iteration 3, reconstruction error: 0.20875767694436792, decrease = 1.1499787788693538e-09
iteration 4, reconstruction error: 0.20875767579513205, decrease = 1.149235873132426e-09
PARAFAC2 reconstruction error=0.8189075248116632, variation=5.056062235553327e-10.
Starting iteration 2914
reconstruction error=0.20875767434529455
iteration 1, reconstruction error: 0.20875767319441924, decrease = 1.1508753117173143e-09
iteration 2, reconstruction error: 0.2087576720443077, decrease = 1.1501115337875234e-09
iteration 3, reconstruction error: 0.2087576708949391, decrease = 1.1493686002950199e-09
iteration 4, reconstruction error: 0.2087576697463158, decrease = 1.148623307578589e-09
PARAFAC2 reconstruction error=0.8189075243063264, variation=5.053367724272562e-10.
Starting iteration 2915
reconstruction error=0.20875766829725198
iteration 1, reconstruction error: 0.20875766714698613, decrease = 1.1502658547879463e-09
iteration 2, reconstruction error: 0.20875766599748868, decrease = 1.1494974416770276e-09
iteration 3, reconstruction error: 0.20875766484873184, decrease = 1.1487568396528758e-09
iteration 4, reconstruction error: 0.20875766370072102, decrease = 1.148010825291479e-09
PARAFAC2 reconstruction error=0.8189075238012594, variation=5.050669882322723e-10.
Starting iteration 2916
reconstruction error=0.20875766225243012
iteration 1, reconstruction error: 0.20875766110277988, decrease = 1.1496502361207916e-09
iteration 2, reconstruction error: 0.20875765995389495, decrease = 1.148884931634342e-09
iteration 3, reconstruction error: 0.20875765880574912, decrease = 1.1481458284112733e-09
iteration 4, reconstruction error: 0.20875765765835083, decrease = 1.1473982874932176e-09
PARAFAC2 reconstruction error=0.8189075232964613, variation=5.04798092215708e-10.
Starting iteration 2917
reconstruction error=0.20875765621083195
iteration 1, reconstruction error: 0.2087576550617981, decrease = 1.1490338402975198e-09
iteration 2, reconstruction error: 0.20875765391352263, decrease = 1.148275474704974e-09
iteration 3, reconstruction error: 0.20875765276599165, decrease = 1.147530986900236e-09
iteration 4, reconstruction error: 0.20875765161919663, decrease = 1.146795020057212e-09
PARAFAC2 reconstruction error=0.8189075227919326, variation=5.04528752109934e-10.
Starting iteration 2918
reconstruction error=0.20875765017245607
iteration 1, reconstruction error: 0.20875764902403088, decrease = 1.1484251882798446e-09
iteration 2, reconstruction error: 0.2087576478763695, decrease = 1.1476613825944781e-09
iteration 3, reconstruction error: 0.20875764672944022, decrease = 1.1469292737764647e-09
iteration 4, reconstruction error: 0.2087576455832624, decrease = 1.1461778193222472e-09
PARAFAC2 reconstruction error=0.8189075222876726, variation=5.042599671156722e-10.
Starting iteration 2919
reconstruction error=0.20875764413729778
iteration 1, reconstruction error: 0.2087576429894836, decrease = 1.1478141770382422e-09
iteration 2, reconstruction error: 0.2087576418424301, decrease = 1.1470535077329203e-09
iteration 3, reconstruction error: 0.20875764069612182, decrease = 1.1463082705276406e-09
iteration 4, reconstruction error: 0.2087576395505442, decrease = 1.1455776327551348e-09
PARAFAC2 reconstruction error=0.8189075217836815, variation=5.03991071099108e-10.
Starting iteration 2920
reconstruction error=0.20875763810535095
iteration 1, reconstruction error: 0.2087576369581539, decrease = 1.1471970318144287e-09
iteration 2, reconstruction error: 0.20875763581170753, decrease = 1.146446382271904e-09
iteration 3, reconstruction error: 0.20875763466599873, decrease = 1.1457088056054943e-09
iteration 4, reconstruction error: 0.20875763352103896, decrease = 1.1449597658863553e-09
PARAFAC2 reconstruction error=0.8189075212799589, variation=5.037226191717536e-10.
Starting iteration 2921
reconstruction error=0.20875763207662015
iteration 1, reconstruction error: 0.20875763093002872, decrease = 1.1465914329100713e-09
iteration 2, reconstruction error: 0.2087576297841941, decrease = 1.14583462162976e-09
iteration 3, reconstruction error: 0.2087576286390978, decrease = 1.1450962955628086e-09
iteration 4, reconstruction error: 0.20875762749474597, decrease = 1.1443518355136462e-09
PARAFAC2 reconstruction error=0.8189075207765042, variation=5.034547223559116e-10.
Starting iteration 2922
reconstruction error=0.20875762605109618
iteration 1, reconstruction error: 0.2087576249051142, decrease = 1.1459819759807033e-09
iteration 2, reconstruction error: 0.20875762375988827, decrease = 1.1452259418565092e-09
iteration 3, reconstruction error: 0.20875762261540218, decrease = 1.144486089232899e-09
iteration 4, reconstruction error: 0.20875762147165516, decrease = 1.143747013765406e-09
PARAFAC2 reconstruction error=0.8189075202733179, variation=5.031862704285572e-10.
Starting iteration 2923
reconstruction error=0.20875762002877904
iteration 1, reconstruction error: 0.20875761888341265, decrease = 1.1453663850691242e-09
iteration 2, reconstruction error: 0.20875761773879306, decrease = 1.1446195935516101e-09
iteration 3, reconstruction error: 0.20875761659491102, decrease = 1.143882044640776e-09
iteration 4, reconstruction error: 0.2087576154517758, decrease = 1.1431352253676863e-09
PARAFAC2 reconstruction error=0.8189075197703997, variation=5.029182625904127e-10.
Starting iteration 2924
reconstruction error=0.20875761400966872
iteration 1, reconstruction error: 0.20875761286490407, decrease = 1.1447646441897774e-09
iteration 2, reconstruction error: 0.20875761172090165, decrease = 1.144002420572221e-09
iteration 3, reconstruction error: 0.20875761057762598, decrease = 1.1432756685803014e-09
iteration 4, reconstruction error: 0.20875760943509478, decrease = 1.142531208531139e-09
PARAFAC2 reconstruction error=0.8189075192677491, variation=5.026505878191756e-10.
Starting iteration 2925
reconstruction error=0.20875760799375684
iteration 1, reconstruction error: 0.20875760684960856, decrease = 1.1441482761220811e-09
iteration 2, reconstruction error: 0.20875760570620402, decrease = 1.1434045377178848e-09
iteration 3, reconstruction error: 0.20875760456354397, decrease = 1.1426600499131467e-09
iteration 4, reconstruction error: 0.20875760342161526, decrease = 1.1419287182512505e-09
PARAFAC2 reconstruction error=0.8189075187653657, variation=5.023833571371483e-10.
Starting iteration 2926
reconstruction error=0.20875760198104865
iteration 1, reconstruction error: 0.20875760083750677, decrease = 1.1435418723060309e-09
iteration 2, reconstruction error: 0.2087575996947109, decrease = 1.1427958857002096e-09
iteration 3, reconstruction error: 0.2087575985526572, decrease = 1.1420537016082477e-09
iteration 4, reconstruction error: 0.20875759741133407, decrease = 1.1413231193468931e-09
PARAFAC2 reconstruction error=0.8189075182632499, variation=5.021157933882137e-10.
Starting iteration 2927
reconstruction error=0.2087575959715396
iteration 1, reconstruction error: 0.20875759482860634, decrease = 1.1429332480439314e-09
iteration 2, reconstruction error: 0.20875759368641683, decrease = 1.142189509639735e-09
iteration 3, reconstruction error: 0.20875759254496795, decrease = 1.1414488798600075e-09
iteration 4, reconstruction error: 0.20875759140425273, decrease = 1.1407152167297596e-09
PARAFAC2 reconstruction error=0.8189075177614011, variation=5.018487847507913e-10.
Starting iteration 2928
reconstruction error=0.208757589965225
iteration 1, reconstruction error: 0.20875758882289894, decrease = 1.1423260670717639e-09
iteration 2, reconstruction error: 0.2087575876813196, decrease = 1.141579331065401e-09
iteration 3, reconstruction error: 0.20875758654047324, decrease = 1.1408463618245435e-09
iteration 4, reconstruction error: 0.20875758540036132, decrease = 1.1401119215381783e-09
PARAFAC2 reconstruction error=0.8189075172598195, variation=5.015816650910665e-10.
Starting iteration 2929
reconstruction error=0.20875758396209965
iteration 1, reconstruction error: 0.20875758282037682, decrease = 1.1417228273913338e-09
iteration 2, reconstruction error: 0.2087575816794085, decrease = 1.1409683198237985e-09
iteration 3, reconstruction error: 0.20875758053917387, decrease = 1.140234628937975e-09
iteration 4, reconstruction error: 0.20875757939966677, decrease = 1.1395070997899381e-09
PARAFAC2 reconstruction error=0.8189075167585044, variation=5.01315100542854e-10.
Starting iteration 2930
reconstruction error=0.2087575779621695
iteration 1, reconstruction error: 0.20875757682105767, decrease = 1.141111843905307e-09
iteration 2, reconstruction error: 0.20875757568069342, decrease = 1.1403642474761e-09
iteration 3, reconstruction error: 0.20875757454105512, decrease = 1.1396383003958732e-09
iteration 4, reconstruction error: 0.20875757340215667, decrease = 1.138898447772263e-09
PARAFAC2 reconstruction error=0.8189075162574556, variation=5.010487580392464e-10.
Starting iteration 2931
reconstruction error=0.20875757196543154
iteration 1, reconstruction error: 0.20875757082492222, decrease = 1.1405093258698429e-09
iteration 2, reconstruction error: 0.20875756968516046, decrease = 1.1397617571962115e-09
iteration 3, reconstruction error: 0.20875756854613314, decrease = 1.1390273169098464e-09
iteration 4, reconstruction error: 0.20875756740783566, decrease = 1.1382974840490334e-09
PARAFAC2 reconstruction error=0.8189075157566734, variation=5.007821934910339e-10.
Starting iteration 2932
reconstruction error=0.20875756597187814
iteration 1, reconstruction error: 0.20875756483197594, decrease = 1.1399022004088266e-09
iteration 2, reconstruction error: 0.20875756369281592, decrease = 1.1391600163168647e-09
iteration 3, reconstruction error: 0.2087575625543911, decrease = 1.138424826629958e-09
iteration 4, reconstruction error: 0.20875756141669458, decrease = 1.1376965203258038e-09
PARAFAC2 reconstruction error=0.8189075152561573, variation=5.005160730320313e-10.
Starting iteration 2933
reconstruction error=0.20875755998150305
iteration 1, reconstruction error: 0.20875755884220412, decrease = 1.139298932972821e-09
iteration 2, reconstruction error: 0.2087575577036543, decrease = 1.138549809986955e-09
iteration 3, reconstruction error: 0.208757556565832, decrease = 1.1378223085944938e-09
iteration 4, reconstruction error: 0.20875755542873953, decrease = 1.1370924757336809e-09
PARAFAC2 reconstruction error=0.8189075147559072, variation=5.002501746176335e-10.
Starting iteration 2934
reconstruction error=0.2087575539943117
iteration 1, reconstruction error: 0.2087575528556253, decrease = 1.1386863951745596e-09
iteration 2, reconstruction error: 0.2087575517176726, decrease = 1.137952704288736e-09
iteration 3, reconstruction error: 0.20875755058045126, decrease = 1.1372213448712643e-09
iteration 4, reconstruction error: 0.2087575494439659, decrease = 1.1364853502726646e-09
PARAFAC2 reconstruction error=0.8189075142559227, variation=4.999844982478407e-10.
Starting iteration 2935
reconstruction error=0.2087575480103003
iteration 1, reconstruction error: 0.20875754687221176, decrease = 1.138088540075799e-09
iteration 2, reconstruction error: 0.20875754573486696, decrease = 1.1373448016716026e-09
iteration 3, reconstruction error: 0.20875754459825122, decrease = 1.1366157459669068e-09
iteration 4, reconstruction error: 0.2087575434623645, decrease = 1.1358867180177867e-09
PARAFAC2 reconstruction error=0.818907513756204, variation=4.997187108557455e-10.
Starting iteration 2936
reconstruction error=0.2087575420294664
iteration 1, reconstruction error: 0.2087575408919804, decrease = 1.1374859942847593e-09
iteration 2, reconstruction error: 0.20875753975523345, decrease = 1.136746946572842e-09
iteration 3, reconstruction error: 0.20875753861922636, decrease = 1.1360070939492317e-09
iteration 4, reconstruction error: 0.20875753748394216, decrease = 1.1352841999823227e-09
PARAFAC2 reconstruction error=0.8189075132567504, variation=4.99453589597465e-10.
Starting iteration 2937
reconstruction error=0.2087575360518047
iteration 1, reconstruction error: 0.20875753491492502, decrease = 1.1368796737354359e-09
iteration 2, reconstruction error: 0.20875753377878675, decrease = 1.1361382667995912e-09
iteration 3, reconstruction error: 0.20875753264337446, decrease = 1.1354122919637888e-09
iteration 4, reconstruction error: 0.2087575315086943, decrease = 1.1346801553901997e-09
PARAFAC2 reconstruction error=0.818907512757562, variation=4.99188357316882e-10.
Starting iteration 2938
reconstruction error=0.20875753007731754
iteration 1, reconstruction error: 0.20875752894103652, decrease = 1.1362810137249824e-09
iteration 2, reconstruction error: 0.20875752780550616, decrease = 1.1355303641824577e-09
iteration 3, reconstruction error: 0.2087575266706979, decrease = 1.1348082473716659e-09
iteration 4, reconstruction error: 0.20875752553661023, decrease = 1.1340876848731085e-09
PARAFAC2 reconstruction error=0.8189075122586386, variation=4.989234581032065e-10.
Starting iteration 2939
reconstruction error=0.20875752410609844
iteration 1, reconstruction error: 0.2087575229704284, decrease = 1.1356700302389555e-09
iteration 2, reconstruction error: 0.20875752183548665, decrease = 1.134941751690377e-09
iteration 3, reconstruction error: 0.20875752070128323, decrease = 1.1342034256234257e-09
iteration 4, reconstruction error: 0.2087575195677996, decrease = 1.1334836402809856e-09
PARAFAC2 reconstruction error=0.81890751175998, variation=4.986585588895309e-10.
Starting iteration 2940
reconstruction error=0.20875751813795615
iteration 1, reconstruction error: 0.20875751700288475, decrease = 1.1350713979840776e-09
iteration 2, reconstruction error: 0.2087575158685517, decrease = 1.1343330441615507e-09
iteration 3, reconstruction error: 0.20875751473494536, decrease = 1.1336063476807823e-09
iteration 4, reconstruction error: 0.20875751360206035, decrease = 1.1328850080261077e-09
PARAFAC2 reconstruction error=0.8189075112615861, variation=4.983938817204603e-10.
Starting iteration 2941
reconstruction error=0.20875751217296493
iteration 1, reconstruction error: 0.20875751103849757, decrease = 1.1344673533919547e-09
iteration 2, reconstruction error: 0.20875750990476627, decrease = 1.1337313032822038e-09
iteration 3, reconstruction error: 0.2087575087717601, decrease = 1.13300616111367e-09
iteration 4, reconstruction error: 0.20875750763947146, decrease = 1.1322886517284303e-09
PARAFAC2 reconstruction error=0.8189075107634565, variation=4.981296486405995e-10.
Starting iteration 2942
reconstruction error=0.20875750621114192
iteration 1, reconstruction error: 0.2087575050772779, decrease = 1.1338640304447978e-09
iteration 2, reconstruction error: 0.20875750394414516, decrease = 1.1331327265384772e-09
iteration 3, reconstruction error: 0.20875750281173613, decrease = 1.1324090276598753e-09
iteration 4, reconstruction error: 0.2087575016800523, decrease = 1.1316838299801901e-09
PARAFAC2 reconstruction error=0.818907510265591, variation=4.978654155607387e-10.
Starting iteration 2943
reconstruction error=0.2087575002524842
iteration 1, reconstruction error: 0.2087574991192111, decrease = 1.133273114239941e-09
iteration 2, reconstruction error: 0.2087574979866817, decrease = 1.1325294035913203e-09
iteration 3, reconstruction error: 0.2087574968548736, decrease = 1.1318080916922213e-09
iteration 4, reconstruction error: 0.20875749572378607, decrease = 1.131087529193664e-09
PARAFAC2 reconstruction error=0.8189075097679898, variation=4.976012935031804e-10.
Starting iteration 2944
reconstruction error=0.20875749429698012
iteration 1, reconstruction error: 0.20875749316431721, decrease = 1.1326629079100314e-09
iteration 2, reconstruction error: 0.20875749203238028, decrease = 1.131936933074229e-09
iteration 3, reconstruction error: 0.20875749090116852, decrease = 1.1312117631501195e-09
iteration 4, reconstruction error: 0.20875748977067812, decrease = 1.1304903957398693e-09
PARAFAC2 reconstruction error=0.8189075092706519, variation=4.973378375794368e-10.
Starting iteration 2945
reconstruction error=0.2087574883446344
iteration 1, reconstruction error: 0.20875748721256782, decrease = 1.1320665793679296e-09
iteration 2, reconstruction error: 0.208757486081228, decrease = 1.13133982737601e-09
iteration 3, reconstruction error: 0.20875748495061872, decrease = 1.130609272870231e-09
iteration 4, reconstruction error: 0.2087574838207285, decrease = 1.129890209172757e-09
PARAFAC2 reconstruction error=0.8189075087735779, variation=4.970740485887859e-10.
Starting iteration 2946
reconstruction error=0.20875748239544237
iteration 1, reconstruction error: 0.2087574812639706, decrease = 1.1314717773824867e-09
iteration 2, reconstruction error: 0.20875748013323556, decrease = 1.1307350333833455e-09
iteration 3, reconstruction error: 0.20875747900321956, decrease = 1.130015997441447e-09
iteration 4, reconstruction error: 0.20875747787392795, decrease = 1.1292916046734547e-09
PARAFAC2 reconstruction error=0.8189075082767671, variation=4.968108147096473e-10.
Starting iteration 2947
reconstruction error=0.2087574764493979
iteration 1, reconstruction error: 0.2087574753185263, decrease = 1.13087161857095e-09
iteration 2, reconstruction error: 0.20875747418838916, decrease = 1.1301371227734336e-09
iteration 3, reconstruction error: 0.20875747305897563, decrease = 1.1294135349171341e-09
iteration 4, reconstruction error: 0.20875747193028427, decrease = 1.128691362595191e-09
PARAFAC2 reconstruction error=0.8189075077802196, variation=4.965474698082062e-10.
Starting iteration 2948
reconstruction error=0.20875747050650634
iteration 1, reconstruction error: 0.20875746937623493, decrease = 1.130271404248262e-09
iteration 2, reconstruction error: 0.20875746824669333, decrease = 1.1295415991430247e-09
iteration 3, reconstruction error: 0.20875746711787307, decrease = 1.12882025948835e-09
iteration 4, reconstruction error: 0.2087574659897734, decrease = 1.1280996692342171e-09
PARAFAC2 reconstruction error=0.8189075072839351, variation=4.962844579736725e-10.
Starting iteration 2949
reconstruction error=0.20875746456675623
iteration 1, reconstruction error: 0.20875746343708113, decrease = 1.1296751034617358e-09
iteration 2, reconstruction error: 0.20875746230814202, decrease = 1.1289391088631362e-09
iteration 3, reconstruction error: 0.20875746117991967, decrease = 1.1282223488784382e-09
iteration 4, reconstruction error: 0.2087574600524186, decrease = 1.1275010647349148e-09
PARAFAC2 reconstruction error=0.8189075067879134, variation=4.960217792060462e-10.
Starting iteration 2950
reconstruction error=0.20875745863015288
iteration 1, reconstruction error: 0.20875745750108263, decrease = 1.12907025395792e-09
iteration 2, reconstruction error: 0.2087574563727391, decrease = 1.128343529721576e-09
iteration 3, reconstruction error: 0.2087574552451092, decrease = 1.1276299061169226e-09
iteration 4, reconstruction error: 0.20875745411820293, decrease = 1.126906262749472e-09
PARAFAC2 reconstruction error=0.8189075062921545, variation=4.957588783938149e-10.
Starting iteration 2951
reconstruction error=0.20875745269669482
iteration 1, reconstruction error: 0.2087574515682178, decrease = 1.1284770340402872e-09
iteration 2, reconstruction error: 0.2087574504404675, decrease = 1.1277502820483676e-09
iteration 3, reconstruction error: 0.2087574493134378, decrease = 1.1270297195498102e-09
iteration 4, reconstruction error: 0.20875744818712402, decrease = 1.126313764476805e-09
PARAFAC2 reconstruction error=0.8189075057966578, variation=4.954966437153985e-10.
Starting iteration 2952
reconstruction error=0.2087574467663712
iteration 1, reconstruction error: 0.2087574456384913, decrease = 1.1278799005864926e-09
iteration 2, reconstruction error: 0.20875744451133965, decrease = 1.1271516497934897e-09
iteration 3, reconstruction error: 0.20875744338490165, decrease = 1.1264379984332606e-09
iteration 4, reconstruction error: 0.20875744225918344, decrease = 1.1257182130908205e-09
PARAFAC2 reconstruction error=0.8189075053014233, variation=4.952345200592845e-10.
Starting iteration 2953
reconstruction error=0.208757440839189
iteration 1, reconstruction error: 0.20875743971190153, decrease = 1.1272874855805526e-09
iteration 2, reconstruction error: 0.20875743858534548, decrease = 1.126556042896354e-09
iteration 3, reconstruction error: 0.20875743745950842, decrease = 1.1258370624656067e-09
iteration 4, reconstruction error: 0.2087574363343796, decrease = 1.1251288234426227e-09
PARAFAC2 reconstruction error=0.8189075048064509, variation=4.949723964031705e-10.
Starting iteration 2954
reconstruction error=0.20875743491514204
iteration 1, reconstruction error: 0.2087574337884486, decrease = 1.1266934329956513e-09
iteration 2, reconstruction error: 0.20875743266248808, decrease = 1.125960519265945e-09
iteration 3, reconstruction error: 0.20875743153724427, decrease = 1.1252438147923982e-09
iteration 4, reconstruction error: 0.20875743041270944, decrease = 1.1245348263688726e-09
PARAFAC2 reconstruction error=0.8189075043117404, variation=4.947104947916614e-10.
Starting iteration 2955
reconstruction error=0.20875742899422187
iteration 1, reconstruction error: 0.2087574278681294, decrease = 1.1260924692724217e-09
iteration 2, reconstruction error: 0.20875742674276213, decrease = 1.1253672715927365e-09
iteration 3, reconstruction error: 0.2087574256181123, decrease = 1.1246498177186481e-09
iteration 4, reconstruction error: 0.20875742449416768, decrease = 1.1239446318089819e-09
PARAFAC2 reconstruction error=0.8189075038172916, variation=4.944488152247573e-10.
Starting iteration 2956
reconstruction error=0.20875742307643694
iteration 1, reconstruction error: 0.2087574219509385, decrease = 1.125498444443096e-09
iteration 2, reconstruction error: 0.20875742082616677, decrease = 1.124771720206752e-09
iteration 3, reconstruction error: 0.20875741970210482, decrease = 1.1240619546271091e-09
iteration 4, reconstruction error: 0.2087574185787619, decrease = 1.1233429186852106e-09
PARAFAC2 reconstruction error=0.8189075033231041, variation=4.941874687247605e-10.
Starting iteration 2957
reconstruction error=0.20875741716178103
iteration 1, reconstruction error: 0.20875741603687353, decrease = 1.1249075004826636e-09
iteration 2, reconstruction error: 0.2087574149126997, decrease = 1.1241738373524157e-09
iteration 3, reconstruction error: 0.20875741378922716, decrease = 1.1234725372233356e-09
iteration 4, reconstruction error: 0.20875741266647593, decrease = 1.1227512253242367e-09
PARAFAC2 reconstruction error=0.818907502829178, variation=4.939261222247637e-10.
Starting iteration 2958
reconstruction error=0.20875741125024427
iteration 1, reconstruction error: 0.20875741012593615, decrease = 1.1243081188272441e-09
iteration 2, reconstruction error: 0.20875740900235323, decrease = 1.123582921147559e-09
iteration 3, reconstruction error: 0.20875740787947702, decrease = 1.1228762086812338e-09
iteration 4, reconstruction error: 0.20875740675731827, decrease = 1.1221587548071454e-09
PARAFAC2 reconstruction error=0.8189075023355128, variation=4.936652198139768e-10.
Starting iteration 2959
reconstruction error=0.2087574053418366
iteration 1, reconstruction error: 0.20875740421811712, decrease = 1.1237194785795879e-09
iteration 2, reconstruction error: 0.20875740309512744, decrease = 1.1229896734743505e-09
iteration 3, reconstruction error: 0.2087574019728491, decrease = 1.1222783535824732e-09
iteration 4, reconstruction error: 0.2087574008512805, decrease = 1.1215685880028303e-09
PARAFAC2 reconstruction error=0.8189075018421088, variation=4.934039843362825e-10.
Starting iteration 2960
reconstruction error=0.20875739943655033
iteration 1, reconstruction error: 0.2087573983134233, decrease = 1.1231270358180723e-09
iteration 2, reconstruction error: 0.2087573971910269, decrease = 1.1223963980455665e-09
iteration 3, reconstruction error: 0.2087573960693333, decrease = 1.1216935991154031e-09
iteration 4, reconstruction error: 0.20875739494835796, decrease = 1.1209753403296219e-09
PARAFAC2 reconstruction error=0.8189075013489654, variation=4.93143414992403e-10.
Starting iteration 2961
reconstruction error=0.20875739353438158
iteration 1, reconstruction error: 0.20875739241184932, decrease = 1.122532261588205e-09
iteration 2, reconstruction error: 0.20875739129004076, decrease = 1.121808562709603e-09
iteration 3, reconstruction error: 0.20875739016894582, decrease = 1.1210949391049496e-09
iteration 4, reconstruction error: 0.20875738904855445, decrease = 1.120391363018669e-09
PARAFAC2 reconstruction error=0.8189075008560823, variation=4.928830676931284e-10.
Starting iteration 2962
reconstruction error=0.208757387635328
iteration 1, reconstruction error: 0.2087573865133929, decrease = 1.1219351003788347e-09
iteration 2, reconstruction error: 0.20875738539217448, decrease = 1.1212184236608636e-09
iteration 3, reconstruction error: 0.2087573842716674, decrease = 1.1205070760134106e-09
iteration 4, reconstruction error: 0.2087573831518662, decrease = 1.119801196214354e-09
PARAFAC2 reconstruction error=0.8189075003634598, variation=4.926224983492489e-10.
Starting iteration 2963
reconstruction error=0.20875738173938974
iteration 1, reconstruction error: 0.20875738061804244, decrease = 1.121347292798447e-09
iteration 2, reconstruction error: 0.20875737949741804, decrease = 1.1206243988315379e-09
iteration 3, reconstruction error: 0.20875737837750266, decrease = 1.1199153826524366e-09
iteration 4, reconstruction error: 0.20875737725829394, decrease = 1.1192087256972627e-09
PARAFAC2 reconstruction error=0.8189074998710972, variation=4.923625951391841e-10.
Starting iteration 2964
reconstruction error=0.20875737584655818
iteration 1, reconstruction error: 0.20875737472580877, decrease = 1.1207494099441107e-09
iteration 2, reconstruction error: 0.20875737360577995, decrease = 1.1200288196899777e-09
iteration 3, reconstruction error: 0.20875737248645085, decrease = 1.1193291016287077e-09
iteration 4, reconstruction error: 0.2087573713678284, decrease = 1.1186224446735338e-09
PARAFAC2 reconstruction error=0.8189074993789945, variation=4.921026919291194e-10.
Starting iteration 2965
reconstruction error=0.2087573699568465
iteration 1, reconstruction error: 0.20875736883668494, decrease = 1.1201615468525716e-09
iteration 2, reconstruction error: 0.20875736771723472, decrease = 1.1194502269606943e-09
iteration 3, reconstruction error: 0.20875736659850117, decrease = 1.1187335502427231e-09
iteration 4, reconstruction error: 0.20875736548047125, decrease = 1.1180299186452913e-09
PARAFAC2 reconstruction error=0.8189074988871516, variation=4.918428997413571e-10.
Starting iteration 2966
reconstruction error=0.20875736407023385
iteration 1, reconstruction error: 0.20875736295066555, decrease = 1.1195682991793632e-09
iteration 2, reconstruction error: 0.20875736183181165, decrease = 1.1188538984185925e-09
iteration 3, reconstruction error: 0.20875736071365822, decrease = 1.1181534309567809e-09
iteration 4, reconstruction error: 0.2087573595962246, decrease = 1.1174336178587652e-09
PARAFAC2 reconstruction error=0.8189074983955684, variation=4.915832185758973e-10.
Starting iteration 2967
reconstruction error=0.20875735818673263
iteration 1, reconstruction error: 0.20875735706775372, decrease = 1.1189789095311653e-09
iteration 2, reconstruction error: 0.20875735594948688, decrease = 1.1182668402387463e-09
iteration 3, reconstruction error: 0.2087573548319252, decrease = 1.1175616820846557e-09
iteration 4, reconstruction error: 0.20875735371507248, decrease = 1.1168527214167057e-09
PARAFAC2 reconstruction error=0.8189074979042446, variation=4.913238704773448e-10.
Starting iteration 2968
reconstruction error=0.2087573523063266
iteration 1, reconstruction error: 0.20875735118793629, decrease = 1.1183903247946603e-09
iteration 2, reconstruction error: 0.20875735007026427, decrease = 1.1176720104977278e-09
iteration 3, reconstruction error: 0.20875734895329348, decrease = 1.1169707936353745e-09
iteration 4, reconstruction error: 0.2087573478370248, decrease = 1.1162686885946016e-09
PARAFAC2 reconstruction error=0.8189074974131798, variation=4.910647444233973e-10.
Starting iteration 2969
reconstruction error=0.2087573464290289
iteration 1, reconstruction error: 0.2087573453112249, decrease = 1.1178040160153557e-09
iteration 2, reconstruction error: 0.20875734419414146, decrease = 1.1170834257612228e-09
iteration 3, reconstruction error: 0.208757343077757, decrease = 1.1163844571004944e-09
iteration 4, reconstruction error: 0.20875734196208232, decrease = 1.1156746915208515e-09
PARAFAC2 reconstruction error=0.8189074969223737, variation=4.908060624586597e-10.
Starting iteration 2970
reconstruction error=0.20875734055482795
iteration 1, reconstruction error: 0.2087573394376172, decrease = 1.1172107405865717e-09
iteration 2, reconstruction error: 0.20875733832111623, decrease = 1.1165009750069288e-09
iteration 3, reconstruction error: 0.20875733720532116, decrease = 1.1157950674522965e-09
iteration 4, reconstruction error: 0.20875733609022734, decrease = 1.1150938228343676e-09
PARAFAC2 reconstruction error=0.8189074964318269, variation=4.905468253824097e-10.
Starting iteration 2971
reconstruction error=0.20875733468371988
iteration 1, reconstruction error: 0.2087573335670908, decrease = 1.116629066988395e-09
iteration 2, reconstruction error: 0.2087573324511846, decrease = 1.1159062007770615e-09
iteration 3, reconstruction error: 0.2087573313359766, decrease = 1.1152080092724503e-09
iteration 4, reconstruction error: 0.20875733022147372, decrease = 1.1145028788739353e-09
PARAFAC2 reconstruction error=0.8189074959415386, variation=4.902883654622769e-10.
Starting iteration 2972
reconstruction error=0.20875732881570863
iteration 1, reconstruction error: 0.20875732769966662, decrease = 1.1160420088085488e-09
iteration 2, reconstruction error: 0.20875732658434598, decrease = 1.1153206413982986e-09
iteration 3, reconstruction error: 0.20875732546972578, decrease = 1.1146202016920626e-09
iteration 4, reconstruction error: 0.2087573243558069, decrease = 1.1139188738074068e-09
PARAFAC2 reconstruction error=0.8189074954515083, variation=4.900302386090516e-10.
Starting iteration 2973
reconstruction error=0.20875732295078867
iteration 1, reconstruction error: 0.20875732183533605, decrease = 1.1154526191603509e-09
iteration 2, reconstruction error: 0.20875732072060246, decrease = 1.1147335832184524e-09
iteration 3, reconstruction error: 0.20875731960656782, decrease = 1.1140346423132996e-09
iteration 4, reconstruction error: 0.20875731849323448, decrease = 1.1133333421842195e-09
PARAFAC2 reconstruction error=0.8189074949617365, variation=4.897717786889189e-10.
Starting iteration 2974
reconstruction error=0.20875731708895626
iteration 1, reconstruction error: 0.20875731597409614, decrease = 1.114860120887684e-09
iteration 2, reconstruction error: 0.2087573148599442, decrease = 1.1141519373758513e-09
iteration 3, reconstruction error: 0.20875731374649745, decrease = 1.113446751466185e-09
iteration 4, reconstruction error: 0.20875731263374267, decrease = 1.1127547772105117e-09
PARAFAC2 reconstruction error=0.8189074944722229, variation=4.895136518356935e-10.
Starting iteration 2975
reconstruction error=0.2087573112302083
iteration 1, reconstruction error: 0.2087573101159306, decrease = 1.1142776978889657e-09
iteration 2, reconstruction error: 0.2087573090023727, decrease = 1.1135579125465256e-09
iteration 3, reconstruction error: 0.2087573078895068, decrease = 1.1128658827797011e-09
iteration 4, reconstruction error: 0.20875730677734144, decrease = 1.1121653598067383e-09
PARAFAC2 reconstruction error=0.8189074939829668, variation=4.892560800939805e-10.
Starting iteration 2976
reconstruction error=0.2087573053745471
iteration 1, reconstruction error: 0.20875730426085956, decrease = 1.1136875310846506e-09
iteration 2, reconstruction error: 0.20875730314788332, decrease = 1.1129762389483489e-09
iteration 3, reconstruction error: 0.20875730203560453, decrease = 1.1122787968442793e-09
iteration 4, reconstruction error: 0.20875730092402317, decrease = 1.1115813547402098e-09
PARAFAC2 reconstruction error=0.8189074934939686, variation=4.8899817528536e-10.
Starting iteration 2977
reconstruction error=0.2087572995219719
iteration 1, reconstruction error: 0.20875729840886834, decrease = 1.1131035537736977e-09
iteration 2, reconstruction error: 0.20875729729647688, decrease = 1.1123914567257032e-09
iteration 3, reconstruction error: 0.2087572961847844, decrease = 1.1116924880649748e-09
iteration 4, reconstruction error: 0.20875729507378854, decrease = 1.1109958508725981e-09
PARAFAC2 reconstruction error=0.8189074930052279, variation=4.887407145659495e-10.
Starting iteration 2978
reconstruction error=0.20875729367247106
iteration 1, reconstruction error: 0.2087572925599546, decrease = 1.112516467838276e-09
iteration 2, reconstruction error: 0.2087572914481448, decrease = 1.1118097831275264e-09
iteration 3, reconstruction error: 0.2087572903370386, decrease = 1.1111062070412459e-09
iteration 4, reconstruction error: 0.20875728922662368, decrease = 1.110414926674963e-09
PARAFAC2 reconstruction error=0.8189074925167442, variation=4.884836979357488e-10.
Starting iteration 2979
reconstruction error=0.2087572878260532
iteration 1, reconstruction error: 0.20875728671412305, decrease = 1.1119301590589714e-09
iteration 2, reconstruction error: 0.208757285602898, decrease = 1.111225056416032e-09
iteration 3, reconstruction error: 0.20875728449236886, decrease = 1.1105291408686213e-09
iteration 4, reconstruction error: 0.2087572833825402, decrease = 1.109828645651234e-09
PARAFAC2 reconstruction error=0.8189074920285179, variation=4.882263482386406e-10.
Starting iteration 2980
reconstruction error=0.2087572819827036
iteration 1, reconstruction error: 0.2087572808713605, decrease = 1.1113431008791252e-09
iteration 2, reconstruction error: 0.20875727976072253, decrease = 1.1106379704806102e-09
iteration 3, reconstruction error: 0.20875727865077737, decrease = 1.1099451635576685e-09
iteration 4, reconstruction error: 0.20875727754152656, decrease = 1.1092508023224923e-09
PARAFAC2 reconstruction error=0.8189074915405482, variation=4.879696646753473e-10.
Starting iteration 2981
reconstruction error=0.20875727614243922
iteration 1, reconstruction error: 0.20875727503167857, decrease = 1.1107606501248313e-09
iteration 2, reconstruction error: 0.20875727392161994, decrease = 1.1100586283507852e-09
iteration 3, reconstruction error: 0.20875727281225645, decrease = 1.1093634899594917e-09
iteration 4, reconstruction error: 0.2087572717035927, decrease = 1.1086637441426461e-09
PARAFAC2 reconstruction error=0.8189074910528352, variation=4.87712981112054e-10.
Starting iteration 2982
reconstruction error=0.20875727030523536
iteration 1, reconstruction error: 0.20875726919505871, decrease = 1.1101766450583028e-09
iteration 2, reconstruction error: 0.20875726808558331, decrease = 1.109475400440374e-09
iteration 3, reconstruction error: 0.2087572669768092, decrease = 1.1087741003112939e-09
iteration 4, reconstruction error: 0.20875726586872329, decrease = 1.10808592856948e-09
PARAFAC2 reconstruction error=0.8189074905653789, variation=4.874562975487606e-10.
Starting iteration 2983
reconstruction error=0.2087572644711083
iteration 1, reconstruction error: 0.20875726336151176, decrease = 1.1095965257723606e-09
iteration 2, reconstruction error: 0.20875726225262115, decrease = 1.1088906182177283e-09
iteration 3, reconstruction error: 0.2087572611444249, decrease = 1.108196256982552e-09
iteration 4, reconstruction error: 0.2087572600369229, decrease = 1.1075019790141027e-09
PARAFAC2 reconstruction error=0.8189074900781789, variation=4.872000580746771e-10.
Starting iteration 2984
reconstruction error=0.20875725864004335
iteration 1, reconstruction error: 0.2087572575310285, decrease = 1.1090148521741838e-09
iteration 2, reconstruction error: 0.20875725642271956, decrease = 1.1083089446195515e-09
iteration 3, reconstruction error: 0.20875725531510494, decrease = 1.107614611139951e-09
iteration 4, reconstruction error: 0.20875725420818314, decrease = 1.1069218042170093e-09
PARAFAC2 reconstruction error=0.818907489591235, variation=4.869438186005937e-10.
Starting iteration 2985
reconstruction error=0.20875725281204127
iteration 1, reconstruction error: 0.20875725170361425, decrease = 1.1084270168382204e-09
iteration 2, reconstruction error: 0.20875725059588082, decrease = 1.1077334327591615e-09
iteration 3, reconstruction error: 0.20875724948885407, decrease = 1.107026748048412e-09
iteration 4, reconstruction error: 0.20875724838250928, decrease = 1.106344793555536e-09
PARAFAC2 reconstruction error=0.8189074891045471, variation=4.866879121934176e-10.
Starting iteration 2986
reconstruction error=0.20875724698710593
iteration 1, reconstruction error: 0.2087572458792529, decrease = 1.1078530315344892e-09
iteration 2, reconstruction error: 0.20875724477211421, decrease = 1.1071386862848698e-09
iteration 3, reconstruction error: 0.20875724366565912, decrease = 1.1064550942130325e-09
iteration 4, reconstruction error: 0.20875724255989758, decrease = 1.1057615378895491e-09
PARAFAC2 reconstruction error=0.818907488618115, variation=4.864321168085439e-10.
Starting iteration 2987
reconstruction error=0.20875724116523273
iteration 1, reconstruction error: 0.2087572400579567, decrease = 1.107276020873016e-09
iteration 2, reconstruction error: 0.2087572389513959, decrease = 1.1065608152005524e-09
iteration 3, reconstruction error: 0.20875723784552785, decrease = 1.1058680360331863e-09
iteration 4, reconstruction error: 0.2087572367403418, decrease = 1.1051860537847347e-09
PARAFAC2 reconstruction error=0.8189074881319385, variation=4.861765434682752e-10.
Starting iteration 2988
reconstruction error=0.2087572353464078
iteration 1, reconstruction error: 0.2087572342397212, decrease = 1.1066866034692424e-09
iteration 2, reconstruction error: 0.20875723313373973, decrease = 1.1059814730707274e-09
iteration 3, reconstruction error: 0.20875723202844487, decrease = 1.105294855641148e-09
iteration 4, reconstruction error: 0.2087572309238459, decrease = 1.1045989678493129e-09
PARAFAC2 reconstruction error=0.8189074876460173, variation=4.859211921726114e-10.
Starting iteration 2989
reconstruction error=0.2087572295306465
iteration 1, reconstruction error: 0.2087572284245377, decrease = 1.1061087878960763e-09
iteration 2, reconstruction error: 0.20875722731913482, decrease = 1.105402880341444e-09
iteration 3, reconstruction error: 0.20875722621442164, decrease = 1.1047131820429712e-09
iteration 4, reconstruction error: 0.20875722511039738, decrease = 1.1040242609006157e-09
PARAFAC2 reconstruction error=0.8189074871603512, variation=4.856660629215526e-10.
Starting iteration 2990
reconstruction error=0.208757223717935
iteration 1, reconstruction error: 0.2087572226124079, decrease = 1.1055271142978995e-09
iteration 2, reconstruction error: 0.20875722150758128, decrease = 1.1048266190805123e-09
iteration 3, reconstruction error: 0.20875722040344977, decrease = 1.1041315084447945e-09
iteration 4, reconstruction error: 0.20875721930000643, decrease = 1.1034433367029806e-09
PARAFAC2 reconstruction error=0.8189074866749402, variation=4.854110446927962e-10.
Starting iteration 2991
reconstruction error=0.20875721790827334
iteration 1, reconstruction error: 0.2087572168033256, decrease = 1.1049477444124989e-09
iteration 2, reconstruction error: 0.20875721569908065, decrease = 1.1042449454823355e-09
iteration 3, reconstruction error: 0.2087572145955293, decrease = 1.1035513614032766e-09
iteration 4, reconstruction error: 0.2087572134926568, decrease = 1.102872487779294e-09
PARAFAC2 reconstruction error=0.818907486189784, variation=4.851561374863422e-10.
Starting iteration 2992
reconstruction error=0.2087572121016553
iteration 1, reconstruction error: 0.20875721099729538, decrease = 1.1043599090765355e-09
iteration 2, reconstruction error: 0.2087572098936321, decrease = 1.1036632718841588e-09
iteration 3, reconstruction error: 0.20875720879065085, decrease = 1.1029812618801316e-09
iteration 4, reconstruction error: 0.2087572076883593, decrease = 1.1022915635816588e-09
PARAFAC2 reconstruction error=0.8189074857048828, variation=4.849012302798883e-10.
Starting iteration 2993
reconstruction error=0.20875720629809633
iteration 1, reconstruction error: 0.20875720519430804, decrease = 1.1037882829967316e-09
iteration 2, reconstruction error: 0.20875720409122106, decrease = 1.1030869828676515e-09
iteration 3, reconstruction error: 0.20875720298882222, decrease = 1.1023988388814132e-09
iteration 4, reconstruction error: 0.2087572018871085, decrease = 1.101713720252917e-09
PARAFAC2 reconstruction error=0.8189074852202358, variation=4.846469892072491e-10.
Starting iteration 2994
reconstruction error=0.20875720049757326
iteration 1, reconstruction error: 0.20875719939436435, decrease = 1.103208913111331e-09
iteration 2, reconstruction error: 0.20875719829185674, decrease = 1.1025076129822509e-09
iteration 3, reconstruction error: 0.20875719719003497, decrease = 1.1018217727087887e-09
iteration 4, reconstruction error: 0.20875719608889595, decrease = 1.1011390133042198e-09
PARAFAC2 reconstruction error=0.818907484735843, variation=4.843928591569124e-10.
Starting iteration 2995
reconstruction error=0.20875719470009538
iteration 1, reconstruction error: 0.2087571935974666, decrease = 1.102628766069813e-09
iteration 2, reconstruction error: 0.20875719249553681, decrease = 1.1019297974090847e-09
iteration 3, reconstruction error: 0.20875719139429283, decrease = 1.1012439848911981e-09
iteration 4, reconstruction error: 0.208757190293727, decrease = 1.1005658329121815e-09
PARAFAC2 reconstruction error=0.8189074842517045, variation=4.841385070619708e-10.
Starting iteration 2996
reconstruction error=0.20875718890565506
iteration 1, reconstruction error: 0.2087571878036072, decrease = 1.1020478696277536e-09
iteration 2, reconstruction error: 0.20875718670225057, decrease = 1.1013566170170463e-09
iteration 3, reconstruction error: 0.20875718560158288, decrease = 1.1006676958746908e-09
iteration 4, reconstruction error: 0.2087571845015941, decrease = 1.099988766739557e-09
PARAFAC2 reconstruction error=0.8189074837678196, variation=4.83884821100844e-10.
Starting iteration 2997
reconstruction error=0.20875718311425598
iteration 1, reconstruction error: 0.2087571820127813, decrease = 1.1014746892357152e-09
iteration 2, reconstruction error: 0.20875718091200327, decrease = 1.100778024287763e-09
iteration 3, reconstruction error: 0.20875717981191186, decrease = 1.1000914068581835e-09
iteration 4, reconstruction error: 0.208757178712504, decrease = 1.0994078702974974e-09
PARAFAC2 reconstruction error=0.8189074832841887, variation=4.836309130951122e-10.
Starting iteration 2998
reconstruction error=0.20875717732588983
iteration 1, reconstruction error: 0.20875717622499373, decrease = 1.1008960965064318e-09
iteration 2, reconstruction error: 0.20875717512479428, decrease = 1.1001994593140552e-09
iteration 3, reconstruction error: 0.20875717402527838, decrease = 1.0995158949977935e-09
iteration 4, reconstruction error: 0.20875717292644216, decrease = 1.098836216462118e-09
PARAFAC2 reconstruction error=0.8189074828008112, variation=4.833775602008927e-10.
Starting iteration 2999
reconstruction error=0.20875717154055654
iteration 1, reconstruction error: 0.2087571704402367, decrease = 1.1003198352455001e-09
iteration 2, reconstruction error: 0.20875716934061278, decrease = 1.0996239196980895e-09
iteration 3, reconstruction error: 0.2087571682416685, decrease = 1.0989442689179896e-09
iteration 4, reconstruction error: 0.2087571671434101, decrease = 1.0982584008889518e-09
PARAFAC2 reconstruction error=0.8189074823176872, variation=4.831239852620683e-10.
Starting iteration 3000
reconstruction error=0.2087571657582538
iteration 1, reconstruction error: 0.2087571646585095, decrease = 1.0997442956295345e-09
iteration 2, reconstruction error: 0.20875716355946336, decrease = 1.099046131880499e-09
iteration 3, reconstruction error: 0.20875716246109693, decrease = 1.0983664255892478e-09
iteration 4, reconstruction error: 0.20875716136341016, decrease = 1.0976867748091479e-09
PARAFAC2 reconstruction error=0.818907481834816, variation=4.828711874793612e-10.
Starting iteration 3001
reconstruction error=0.20875715997898625
iteration 1, reconstruction error: 0.2087571588798182, decrease = 1.0991680621241784e-09
iteration 2, reconstruction error: 0.20875715778134218, decrease = 1.0984760046017783e-09
iteration 3, reconstruction error: 0.20875715668354894, decrease = 1.0977932451972094e-09
iteration 4, reconstruction error: 0.2087571555864346, decrease = 1.0971143438176512e-09
PARAFAC2 reconstruction error=0.8189074813521982, variation=4.826178345851417e-10.
Starting iteration 3002
reconstruction error=0.20875715420274232
iteration 1, reconstruction error: 0.20875715310414594, decrease = 1.0985963805332233e-09
iteration 2, reconstruction error: 0.20875715200625006, decrease = 1.097895885315836e-09
iteration 3, reconstruction error: 0.20875715090902766, decrease = 1.0972223962735228e-09
iteration 4, reconstruction error: 0.20875714981248727, decrease = 1.0965403862694956e-09
PARAFAC2 reconstruction error=0.8189074808698329, variation=4.823652588470395e-10.
Starting iteration 3003
reconstruction error=0.20875714842951662
iteration 1, reconstruction error: 0.2087571473314942, decrease = 1.0980224229850677e-09
iteration 2, reconstruction error: 0.2087571462341738, decrease = 1.0973204012110216e-09
iteration 3, reconstruction error: 0.20875714513752847, decrease = 1.0966453301008983e-09
iteration 4, reconstruction error: 0.2087571440415582, decrease = 1.095970258990775e-09
PARAFAC2 reconstruction error=0.8189074803877204, variation=4.821124610643324e-10.
Starting iteration 3004
reconstruction error=0.20875714265931616
iteration 1, reconstruction error: 0.20875714156187694, decrease = 1.097439222830232e-09
iteration 2, reconstruction error: 0.208757140465122, decrease = 1.0967549368690044e-09
iteration 3, reconstruction error: 0.20875713936905296, decrease = 1.096069041084391e-09
iteration 4, reconstruction error: 0.20875713827365436, decrease = 1.0953986051553954e-09
PARAFAC2 reconstruction error=0.8189074799058603, variation=4.818601073708351e-10.
Starting iteration 3005
reconstruction error=0.20875713689213618
iteration 1, reconstruction error: 0.20875713579527014, decrease = 1.0968660424381937e-09
iteration 2, reconstruction error: 0.20875713469909074, decrease = 1.0961793972530387e-09
iteration 3, reconstruction error: 0.2087571336035918, decrease = 1.095498941561246e-09
iteration 4, reconstruction error: 0.20875713250876787, decrease = 1.0948239259622738e-09
PARAFAC2 reconstruction error=0.8189074794242523, variation=4.816079757219427e-10.
Starting iteration 3006
reconstruction error=0.20875713112797295
iteration 1, reconstruction error: 0.2087571300316824, decrease = 1.0962905583333793e-09
iteration 2, reconstruction error: 0.2087571289360762, decrease = 1.0956061891054247e-09
iteration 3, reconstruction error: 0.20875712784115044, decrease = 1.0949257611692076e-09
iteration 4, reconstruction error: 0.20875712674689587, decrease = 1.0942545758396705e-09
PARAFAC2 reconstruction error=0.8189074789428965, variation=4.813558440730503e-10.
Starting iteration 3007
reconstruction error=0.20875712536683255
iteration 1, reconstruction error: 0.20875712427110907, decrease = 1.0957234841679764e-09
iteration 2, reconstruction error: 0.20875712317607292, decrease = 1.095036145093431e-09
iteration 3, reconstruction error: 0.2087571220817173, decrease = 1.094355633890487e-09
iteration 4, reconstruction error: 0.2087571209880328, decrease = 1.0936844763165254e-09
PARAFAC2 reconstruction error=0.8189074784617925, variation=4.811040454910653e-10.
Starting iteration 3008
reconstruction error=0.20875711960869656
iteration 1, reconstruction error: 0.20875711851354933, decrease = 1.0951472229070447e-09
iteration 2, reconstruction error: 0.20875711741909025, decrease = 1.0944590789208064e-09
iteration 3, reconstruction error: 0.20875711632530625, decrease = 1.093784007810683e-09
iteration 4, reconstruction error: 0.2087571152321942, decrease = 1.0931120453250287e-09
PARAFAC2 reconstruction error=0.8189074779809404, variation=4.808520248644754e-10.
Starting iteration 3009
reconstruction error=0.2087571138535804
iteration 1, reconstruction error: 0.20875711275899939, decrease = 1.0945810091644859e-09
iteration 2, reconstruction error: 0.2087571116651089, decrease = 1.0938904781987446e-09
iteration 3, reconstruction error: 0.20875711057189808, decrease = 1.0932108274186447e-09
iteration 4, reconstruction error: 0.20875710947935766, decrease = 1.0925404192452248e-09
PARAFAC2 reconstruction error=0.8189074775003397, variation=4.806007813940028e-10.
Starting iteration 3010
reconstruction error=0.20875710810146547
iteration 1, reconstruction error: 0.2087571070074569, decrease = 1.0940085781729891e-09
iteration 2, reconstruction error: 0.20875710591414112, decrease = 1.0933157712500474e-09
iteration 3, reconstruction error: 0.20875710482149654, decrease = 1.0926445859205103e-09
iteration 4, reconstruction error: 0.20875710372952935, decrease = 1.0919671833420352e-09
PARAFAC2 reconstruction error=0.81890747701999, variation=4.803496489458325e-10.
Starting iteration 3011
reconstruction error=0.20875710235235648
iteration 1, reconstruction error: 0.20875710125892263, decrease = 1.0934338434687163e-09
iteration 2, reconstruction error: 0.20875710016618007, decrease = 1.0927425631024335e-09
iteration 3, reconstruction error: 0.20875709907410095, decrease = 1.092079121578493e-09
iteration 4, reconstruction error: 0.20875709798270617, decrease = 1.0913947801061141e-09
PARAFAC2 reconstruction error=0.818907476539892, variation=4.8009796138615e-10.
Starting iteration 3012
reconstruction error=0.20875709660625727
iteration 1, reconstruction error: 0.20875709551339508, decrease = 1.0928621896333368e-09
iteration 2, reconstruction error: 0.20875709442121873, decrease = 1.0921763493598746e-09
iteration 3, reconstruction error: 0.20875709332971437, decrease = 1.0915043591186446e-09
iteration 4, reconstruction error: 0.20875709223888428, decrease = 1.0908300929202142e-09
PARAFAC2 reconstruction error=0.8189074760600444, variation=4.79847606094097e-10.
Starting iteration 3013
reconstruction error=0.20875709086315478
iteration 1, reconstruction error: 0.20875708977086965, decrease = 1.0922851234607123e-09
iteration 2, reconstruction error: 0.2087570886792634, decrease = 1.0916062498367296e-09
iteration 3, reconstruction error: 0.20875708758832914, decrease = 1.0909342595954996e-09
iteration 4, reconstruction error: 0.20875708649806607, decrease = 1.0902630742659625e-09
PARAFAC2 reconstruction error=0.818907475580448, variation=4.795964736459268e-10.
Starting iteration 3014
reconstruction error=0.2087570851230582
iteration 1, reconstruction error: 0.2087570840313401, decrease = 1.0917181048064606e-09
iteration 2, reconstruction error: 0.20875708294030165, decrease = 1.0910384540263607e-09
iteration 3, reconstruction error: 0.20875708184993594, decrease = 1.090365714384589e-09
iteration 4, reconstruction error: 0.20875708076024144, decrease = 1.0896945012994763e-09
PARAFAC2 reconstruction error=0.818907475101102, variation=4.793460073315714e-10.
Starting iteration 3015
reconstruction error=0.2087570793859614
iteration 1, reconstruction error: 0.20875707829480566, decrease = 1.0911557490889123e-09
iteration 2, reconstruction error: 0.20875707720434275, decrease = 1.090462914410395e-09
iteration 3, reconstruction error: 0.2087570761145456, decrease = 1.089797141418103e-09
iteration 4, reconstruction error: 0.20875707502541965, decrease = 1.0891259560885658e-09
PARAFAC2 reconstruction error=0.8189074746220064, variation=4.79095541017216e-10.
Starting iteration 3016
reconstruction error=0.20875707365185212
iteration 1, reconstruction error: 0.20875707256127266, decrease = 1.090579460072405e-09
iteration 2, reconstruction error: 0.20875707147137518, decrease = 1.0898974778239534e-09
iteration 3, reconstruction error: 0.20875707038214505, decrease = 1.0892301227638512e-09
iteration 4, reconstruction error: 0.20875706929358764, decrease = 1.0885574108776552e-09
PARAFAC2 reconstruction error=0.818907474143161, variation=4.788454077697679e-10.
Starting iteration 3017
reconstruction error=0.20875706792074483
iteration 1, reconstruction error: 0.20875706683072853, decrease = 1.090016299443164e-09
iteration 2, reconstruction error: 0.2087570657414027, decrease = 1.089325823988574e-09
iteration 3, reconstruction error: 0.20875706465273805, decrease = 1.088664658421834e-09
iteration 4, reconstruction error: 0.2087570635647492, decrease = 1.087988837911169e-09
PARAFAC2 reconstruction error=0.8189074736645658, variation=4.785951635000174e-10.
Starting iteration 3018
reconstruction error=0.20875706219262424
iteration 1, reconstruction error: 0.20875706110318115, decrease = 1.08944309129555e-09
iteration 2, reconstruction error: 0.20875706001441846, decrease = 1.0887626911149084e-09
iteration 3, reconstruction error: 0.208757058926327, decrease = 1.08809145027422e-09
iteration 4, reconstruction error: 0.20875705783890136, decrease = 1.0874256495263523e-09
PARAFAC2 reconstruction error=0.8189074731862205, variation=4.783453633194767e-10.
Starting iteration 3019
reconstruction error=0.2087570564674942
iteration 1, reconstruction error: 0.2087570553786204, decrease = 1.0888737966840978e-09
iteration 2, reconstruction error: 0.20875705429042554, decrease = 1.0881948675489639e-09
iteration 3, reconstruction error: 0.20875705320289956, decrease = 1.0875259859322028e-09
iteration 4, reconstruction error: 0.20875705211603937, decrease = 1.0868601851843351e-09
PARAFAC2 reconstruction error=0.8189074727081246, variation=4.780958962058435e-10.
Starting iteration 3020
reconstruction error=0.20875705074535236
iteration 1, reconstruction error: 0.20875704965704253, decrease = 1.0883098311431638e-09
iteration 2, reconstruction error: 0.20875704856941776, decrease = 1.0876247680258189e-09
iteration 3, reconstruction error: 0.20875704748245646, decrease = 1.0869612987463029e-09
iteration 4, reconstruction error: 0.2087570463961679, decrease = 1.0862885591045313e-09
PARAFAC2 reconstruction error=0.8189074722302786, variation=4.778459850030004e-10.
Starting iteration 3021
reconstruction error=0.2087570450261949
iteration 1, reconstruction error: 0.2087570439384544, decrease = 1.087740508776136e-09
iteration 2, reconstruction error: 0.20875704285139357, decrease = 1.0870608302404605e-09
iteration 3, reconstruction error: 0.20875704176500084, decrease = 1.0863927257798167e-09
iteration 4, reconstruction error: 0.20875704067926928, decrease = 1.0857315602130768e-09
PARAFAC2 reconstruction error=0.8189074717526817, variation=4.775968509562745e-10.
Starting iteration 3022
reconstruction error=0.2087570393100188
iteration 1, reconstruction error: 0.20875703822284528, decrease = 1.08717351787746e-09
iteration 2, reconstruction error: 0.20875703713635146, decrease = 1.0864938115862088e-09
iteration 3, reconstruction error: 0.2087570360505219, decrease = 1.0858295651505756e-09
iteration 4, reconstruction error: 0.20875703496536044, decrease = 1.0851614606899318e-09
PARAFAC2 reconstruction error=0.8189074712753339, variation=4.77347827931851e-10.
Starting iteration 3023
reconstruction error=0.20875703359682243
iteration 1, reconstruction error: 0.2087570325102144, decrease = 1.0866080257798671e-09
iteration 2, reconstruction error: 0.20875703142428995, decrease = 1.0859244614636054e-09
iteration 3, reconstruction error: 0.20875703033902815, decrease = 1.0852617970957823e-09
iteration 4, reconstruction error: 0.20875702925443218, decrease = 1.084595968592339e-09
PARAFAC2 reconstruction error=0.8189074707982349, variation=4.770990269520325e-10.
Starting iteration 3024
reconstruction error=0.20875702788661038
iteration 1, reconstruction error: 0.20875702680056474, decrease = 1.0860456423067433e-09
iteration 2, reconstruction error: 0.20875702571520882, decrease = 1.085355916252695e-09
iteration 3, reconstruction error: 0.20875702463050713, decrease = 1.084701689579859e-09
iteration 4, reconstruction error: 0.20875702354647507, decrease = 1.0840320585625562e-09
PARAFAC2 reconstruction error=0.8189074703213848, variation=4.768501149499116e-10.
Starting iteration 3025
reconstruction error=0.20875702217936967
iteration 1, reconstruction error: 0.20875702109389802, decrease = 1.085471657003012e-09
iteration 2, reconstruction error: 0.20875702000909294, decrease = 1.0848050790990271e-09
iteration 3, reconstruction error: 0.20875701892496054, decrease = 1.0841323949684067e-09
iteration 4, reconstruction error: 0.20875701784149553, decrease = 1.083465012152729e-09
PARAFAC2 reconstruction error=0.8189074698447835, variation=4.766013139700931e-10.
Starting iteration 3026
reconstruction error=0.2087570164751041
iteration 1, reconstruction error: 0.20875701539019098, decrease = 1.0849131315548988e-09
iteration 2, reconstruction error: 0.20875701430596294, decrease = 1.0842280406819782e-09
iteration 3, reconstruction error: 0.20875701322239062, decrease = 1.083572315208059e-09
iteration 4, reconstruction error: 0.2087570121394841, decrease = 1.0829065144601913e-09
PARAFAC2 reconstruction error=0.8189074693684306, variation=4.76352846057182e-10.
Starting iteration 3027
reconstruction error=0.20875701077380904
iteration 1, reconstruction error: 0.20875700968946675, decrease = 1.0843422826312121e-09
iteration 2, reconstruction error: 0.2087570086058011, decrease = 1.0836656572088543e-09
iteration 3, reconstruction error: 0.2087570075227935, decrease = 1.0830076002665834e-09
iteration 4, reconstruction error: 0.2087570064404494, decrease = 1.0823441032314918e-09
PARAFAC2 reconstruction error=0.8189074688923256, variation=4.761050442780856e-10.
Starting iteration 3028
reconstruction error=0.2087570050754899
iteration 1, reconstruction error: 0.20875700399170694, decrease = 1.083782952271406e-09
iteration 2, reconstruction error: 0.2087570029086021, decrease = 1.083104828047965e-09
iteration 3, reconstruction error: 0.20875700182615847, decrease = 1.0824436347256494e-09
iteration 4, reconstruction error: 0.20875700074437828, decrease = 1.081780193201709e-09
PARAFAC2 reconstruction error=0.8189074684164689, variation=4.75856687387477e-10.
Starting iteration 3029
reconstruction error=0.20875699938012587
iteration 1, reconstruction error: 0.20875699829691458, decrease = 1.0832112984360265e-09
iteration 2, reconstruction error: 0.20875699721437677, decrease = 1.0825378093937132e-09
iteration 3, reconstruction error: 0.20875699613249396, decrease = 1.08188280556476e-09
iteration 4, reconstruction error: 0.20875699505127537, decrease = 1.0812185868847024e-09
PARAFAC2 reconstruction error=0.8189074679408602, variation=4.756086635637757e-10.
Starting iteration 3030
reconstruction error=0.20875699368773853
iteration 1, reconstruction error: 0.20875699260509037, decrease = 1.082648165562361e-09
iteration 2, reconstruction error: 0.20875699152310956, decrease = 1.0819808105022588e-09
iteration 3, reconstruction error: 0.20875699044179377, decrease = 1.0813157869105083e-09
iteration 4, reconstruction error: 0.20875698936113682, decrease = 1.0806569528121202e-09
PARAFAC2 reconstruction error=0.818907467465499, variation=4.753611948515868e-10.
Starting iteration 3031
reconstruction error=0.20875698799831632
iteration 1, reconstruction error: 0.20875698691622285, decrease = 1.0820934703836826e-09
iteration 2, reconstruction error: 0.20875698583481136, decrease = 1.081411488135231e-09
iteration 3, reconstruction error: 0.20875698475405718, decrease = 1.0807541805935017e-09
iteration 4, reconstruction error: 0.208756983673958, decrease = 1.0800991767645485e-09
PARAFAC2 reconstruction error=0.8189074669903854, variation=4.751136151170954e-10.
Starting iteration 3032
reconstruction error=0.20875698231184692
iteration 1, reconstruction error: 0.20875698123032124, decrease = 1.0815256745733137e-09
iteration 2, reconstruction error: 0.20875698014947136, decrease = 1.0808498818182244e-09
iteration 3, reconstruction error: 0.20875697906927806, decrease = 1.080193295921461e-09
iteration 4, reconstruction error: 0.20875697798973894, decrease = 1.0795391247597763e-09
PARAFAC2 reconstruction error=0.818907466515519, variation=4.748663684495114e-10.
Starting iteration 3033
reconstruction error=0.2087569766283388
iteration 1, reconstruction error: 0.20875697554737938, decrease = 1.0809594330751793e-09
iteration 2, reconstruction error: 0.20875697446709113, decrease = 1.0802882477456421e-09
iteration 3, reconstruction error: 0.20875697338745866, decrease = 1.0796324667605717e-09
iteration 4, reconstruction error: 0.20875697230848037, decrease = 1.078978295598887e-09
PARAFAC2 reconstruction error=0.8189074660408997, variation=4.746193438265323e-10.
Starting iteration 3034
reconstruction error=0.208756970947792
iteration 1, reconstruction error: 0.20875696986739417, decrease = 1.0803978267581726e-09
iteration 2, reconstruction error: 0.208756968787666, decrease = 1.0797281679852944e-09
iteration 3, reconstruction error: 0.20875696770858743, decrease = 1.0790785764935862e-09
iteration 4, reconstruction error: 0.20875696663017232, decrease = 1.0784151072140702e-09
PARAFAC2 reconstruction error=0.8189074655665278, variation=4.743718751143433e-10.
Starting iteration 3035
reconstruction error=0.20875696527019877
iteration 1, reconstruction error: 0.2087569641903556, decrease = 1.07984315933507e-09
iteration 2, reconstruction error: 0.20875696311119138, decrease = 1.079164230199936e-09
iteration 3, reconstruction error: 0.20875696203267674, decrease = 1.0785146387082278e-09
iteration 4, reconstruction error: 0.2087569609548217, decrease = 1.0778550274537224e-09
PARAFAC2 reconstruction error=0.8189074650924023, variation=4.74125516625179e-10.
Starting iteration 3036
reconstruction error=0.20875695959555296
iteration 1, reconstruction error: 0.2087569585162776, decrease = 1.079275363524701e-09
iteration 2, reconstruction error: 0.20875695743766803, decrease = 1.0786095627768333e-09
iteration 3, reconstruction error: 0.2087569563597212, decrease = 1.077946842897859e-09
iteration 4, reconstruction error: 0.2087569552824216, decrease = 1.0772995828745024e-09
PARAFAC2 reconstruction error=0.8189074646185236, variation=4.738787140468048e-10.
Starting iteration 3037
reconstruction error=0.20875695392386687
iteration 1, reconstruction error: 0.20875695284514775, decrease = 1.0787191140337882e-09
iteration 2, reconstruction error: 0.20875695176710213, decrease = 1.078045624991475e-09
iteration 3, reconstruction error: 0.20875695068970918, decrease = 1.0773929526308734e-09
iteration 4, reconstruction error: 0.2087569496129689, decrease = 1.076740280270272e-09
PARAFAC2 reconstruction error=0.8189074641448912, variation=4.736323555576405e-10.
Starting iteration 3038
reconstruction error=0.2087569482551167
iteration 1, reconstruction error: 0.20875694717696383, decrease = 1.0781528725356537e-09
iteration 2, reconstruction error: 0.20875694609947748, decrease = 1.07748635014282e-09
iteration 3, reconstruction error: 0.20875694502264694, decrease = 1.076830541402174e-09
iteration 4, reconstruction error: 0.20875694394646363, decrease = 1.076183309134393e-09
PARAFAC2 reconstruction error=0.8189074636715052, variation=4.733859970684762e-10.
Starting iteration 3039
reconstruction error=0.20875694258932015
iteration 1, reconstruction error: 0.20875694151172655, decrease = 1.0775935976869988e-09
iteration 2, reconstruction error: 0.20875694043480109, decrease = 1.0769254654707794e-09
iteration 3, reconstruction error: 0.20875693935852593, decrease = 1.0762751523341052e-09
iteration 4, reconstruction error: 0.20875693828290506, decrease = 1.075620870150118e-09
PARAFAC2 reconstruction error=0.8189074631983652, variation=4.731400826685217e-10.
Starting iteration 3040
reconstruction error=0.20875693692647174
iteration 1, reconstruction error: 0.2087569358494367, decrease = 1.0770350444833099e-09
iteration 2, reconstruction error: 0.20875693477306048, decrease = 1.0763762103849217e-09
iteration 3, reconstruction error: 0.20875693369734777, decrease = 1.07571271334983e-09
iteration 4, reconstruction error: 0.2087569326222908, decrease = 1.0750569601203352e-09
PARAFAC2 reconstruction error=0.8189074627254712, variation=4.728939462239623e-10.
Starting iteration 3041
reconstruction error=0.2087569312665608
iteration 1, reconstruction error: 0.2087569301900866, decrease = 1.0764742153224205e-09
iteration 2, reconstruction error: 0.20875692911426505, decrease = 1.075821542961819e-09
iteration 3, reconstruction error: 0.20875692803911394, decrease = 1.0751511070328235e-09
iteration 4, reconstruction error: 0.20875692696460396, decrease = 1.074509980991678e-09
PARAFAC2 reconstruction error=0.8189074622528227, variation=4.726484759132177e-10.
Starting iteration 3042
reconstruction error=0.20875692560958875
iteration 1, reconstruction error: 0.2087569245336723, decrease = 1.0759164392748488e-09
iteration 2, reconstruction error: 0.20875692345841781, decrease = 1.0752544965519917e-09
iteration 3, reconstruction error: 0.20875692238381752, decrease = 1.0746002976347313e-09
iteration 4, reconstruction error: 0.208756921309873, decrease = 1.0739445166496608e-09
PARAFAC2 reconstruction error=0.81890746178042, variation=4.724027835578681e-10.
Starting iteration 3043
reconstruction error=0.2087569199555542
iteration 1, reconstruction error: 0.20875691888019474, decrease = 1.07535946813897e-09
iteration 2, reconstruction error: 0.208756917805498, decrease = 1.0746967482599956e-09
iteration 3, reconstruction error: 0.208756916731457, decrease = 1.0740409950305008e-09
iteration 4, reconstruction error: 0.2087569156580641, decrease = 1.0733929023398758e-09
PARAFAC2 reconstruction error=0.8189074613082625, variation=4.72157424269426e-10.
Starting iteration 3044
reconstruction error=0.20875691430446164
iteration 1, reconstruction error: 0.2087569132296569, decrease = 1.074804745204716e-09
iteration 2, reconstruction error: 0.2087569121555179, decrease = 1.0741389999679996e-09
iteration 3, reconstruction error: 0.20875691108203387, decrease = 1.073484023894622e-09
iteration 4, reconstruction error: 0.20875691000919408, decrease = 1.0728397892290076e-09
PARAFAC2 reconstruction error=0.8189074608363504, variation=4.719121760032863e-10.
Starting iteration 3045
reconstruction error=0.2087569086562958
iteration 1, reconstruction error: 0.20875690758205184, decrease = 1.0742439437994022e-09
iteration 2, reconstruction error: 0.20875690650846368, decrease = 1.0735881628143318e-09
iteration 3, reconstruction error: 0.20875690543553668, decrease = 1.0729269972475919e-09
iteration 4, reconstruction error: 0.20875690436325153, decrease = 1.0722851495614805e-09
PARAFAC2 reconstruction error=0.818907460364683, variation=4.716673718263564e-10.
Starting iteration 3046
reconstruction error=0.2087569030110565
iteration 1, reconstruction error: 0.20875690193737342, decrease = 1.0736830868829372e-09
iteration 2, reconstruction error: 0.20875690086434764, decrease = 1.073025779341208e-09
iteration 3, reconstruction error: 0.20875689979197531, decrease = 1.0723723298244892e-09
iteration 4, reconstruction error: 0.20875689872024716, decrease = 1.071728150670026e-09
PARAFAC2 reconstruction error=0.8189074598932606, variation=4.714223456048217e-10.
Starting iteration 3047
reconstruction error=0.20875689736875927
iteration 1, reconstruction error: 0.20875689629562777, decrease = 1.0731315003287278e-09
iteration 2, reconstruction error: 0.20875689522315977, decrease = 1.0724680032936362e-09
iteration 3, reconstruction error: 0.20875689415133825, decrease = 1.071821520426397e-09
iteration 4, reconstruction error: 0.20875689308016865, decrease = 1.0711695974663371e-09
PARAFAC2 reconstruction error=0.8189074594220829, variation=4.711777634724967e-10.
Starting iteration 3048
reconstruction error=0.20875689172938333
iteration 1, reconstruction error: 0.20875689065680575, decrease = 1.0725775823061667e-09
iteration 2, reconstruction error: 0.2087568895848955, decrease = 1.0719102550016402e-09
iteration 3, reconstruction error: 0.20875688851363328, decrease = 1.0712622178221665e-09
iteration 4, reconstruction error: 0.20875688744301527, decrease = 1.0706180109121277e-09
PARAFAC2 reconstruction error=0.8189074589511498, variation=4.709330703178694e-10.
Starting iteration 3049
reconstruction error=0.20875688609293097
iteration 1, reconstruction error: 0.20875688502091191, decrease = 1.0720190568580534e-09
iteration 2, reconstruction error: 0.208756883949554, decrease = 1.0713579190468892e-09
iteration 3, reconstruction error: 0.2087568828788434, decrease = 1.0707106035123815e-09
iteration 4, reconstruction error: 0.20875688180878546, decrease = 1.07005793115178e-09
PARAFAC2 reconstruction error=0.8189074584804608, variation=4.706890432970567e-10.
Starting iteration 3050
reconstruction error=0.20875688045939908
iteration 1, reconstruction error: 0.20875687938793547, decrease = 1.0714636122788335e-09
iteration 2, reconstruction error: 0.2087568783171361, decrease = 1.0707993658432002e-09
iteration 3, reconstruction error: 0.20875687724697783, decrease = 1.0701582675576304e-09
iteration 4, reconstruction error: 0.20875687617747302, decrease = 1.0695048180409117e-09
PARAFAC2 reconstruction error=0.818907458010016, variation=4.704447942316392e-10.
Starting iteration 3051
reconstruction error=0.20875687482879385
iteration 1, reconstruction error: 0.2087568737578888, decrease = 1.0709050590751445e-09
iteration 2, reconstruction error: 0.20875687268763793, decrease = 1.0702508601578842e-09
iteration 3, reconstruction error: 0.2087568716180374, decrease = 1.0696005192656344e-09
iteration 4, reconstruction error: 0.20875687054908343, decrease = 1.068953980887244e-09
PARAFAC2 reconstruction error=0.8189074575398151, variation=4.702008782331291e-10.
Starting iteration 3052
reconstruction error=0.208756869201106
iteration 1, reconstruction error: 0.2087568681307479, decrease = 1.070358107702063e-09
iteration 2, reconstruction error: 0.2087568670610602, decrease = 1.069687699528643e-09
iteration 3, reconstruction error: 0.20875686599201204, decrease = 1.0690481555553077e-09
iteration 4, reconstruction error: 0.20875686492360654, decrease = 1.0684055029575035e-09
PARAFAC2 reconstruction error=0.818907457069858, variation=4.699570732569214e-10.
Starting iteration 3053
reconstruction error=0.2087568635763271
iteration 1, reconstruction error: 0.20875686250653216, decrease = 1.0697949470728219e-09
iteration 2, reconstruction error: 0.20875686143739372, decrease = 1.0691384444427854e-09
iteration 3, reconstruction error: 0.20875686036889718, decrease = 1.0684965412455227e-09
iteration 4, reconstruction error: 0.20875685930104868, decrease = 1.067848504066049e-09
PARAFAC2 reconstruction error=0.8189074566001445, variation=4.697134903253186e-10.
Starting iteration 3054
reconstruction error=0.20875685795447102
iteration 1, reconstruction error: 0.2087568568852307, decrease = 1.0692403074052947e-09
iteration 2, reconstruction error: 0.2087568558166408, decrease = 1.0685899110018937e-09
iteration 3, reconstruction error: 0.2087568547486974, decrease = 1.0679434003790789e-09
iteration 4, reconstruction error: 0.2087568536814028, decrease = 1.0672946137990635e-09
PARAFAC2 reconstruction error=0.8189074561306745, variation=4.694700184160183e-10.
Starting iteration 3055
reconstruction error=0.20875685233552388
iteration 1, reconstruction error: 0.20875685126683904, decrease = 1.0686848350704992e-09
iteration 2, reconstruction error: 0.20875685019880533, decrease = 1.0680337170221321e-09
iteration 3, reconstruction error: 0.2087568491314135, decrease = 1.0673918138248695e-09
iteration 4, reconstruction error: 0.20875684806466743, decrease = 1.0667460803581719e-09
PARAFAC2 reconstruction error=0.8189074556614476, variation=4.692268795736254e-10.
Starting iteration 3056
reconstruction error=0.20875684671949182
iteration 1, reconstruction error: 0.20875684565135164, decrease = 1.0681401874101937e-09
iteration 2, reconstruction error: 0.20875684458387186, decrease = 1.0674797712439954e-09
iteration 3, reconstruction error: 0.2087568435170347, decrease = 1.0668371741573424e-09
iteration 4, reconstruction error: 0.20875684245083712, decrease = 1.0661975746728558e-09
PARAFAC2 reconstruction error=0.8189074551924639, variation=4.689837407312325e-10.
Starting iteration 3057
reconstruction error=0.20875684110636178
iteration 1, reconstruction error: 0.2087568400387786, decrease = 1.0675831885187392e-09
iteration 2, reconstruction error: 0.20875683897184652, decrease = 1.0669320704703722e-09
iteration 3, reconstruction error: 0.2087568379055594, decrease = 1.0662871141597918e-09
iteration 4, reconstruction error: 0.2087568368399227, decrease = 1.0656367177563908e-09
PARAFAC2 reconstruction error=0.8189074547237231, variation=4.687408239334445e-10.
Starting iteration 3058
reconstruction error=0.20875683549613913
iteration 1, reconstruction error: 0.20875683442911214, decrease = 1.0670269945389776e-09
iteration 2, reconstruction error: 0.20875683336273168, decrease = 1.0663804561605872e-09
iteration 3, reconstruction error: 0.2087568322969969, decrease = 1.0657347782050408e-09
iteration 4, reconstruction error: 0.20875683123190175, decrease = 1.0650951509649786e-09
PARAFAC2 reconstruction error=0.8189074542552252, variation=4.684979071356565e-10.
Starting iteration 3059
reconstruction error=0.20875682988882238
iteration 1, reconstruction error: 0.20875682882234622, decrease = 1.0664761573853099e-09
iteration 2, reconstruction error: 0.20875682775651425, decrease = 1.0658319782308467e-09
iteration 3, reconstruction error: 0.2087568266913365, decrease = 1.0651777515580108e-09
iteration 4, reconstruction error: 0.20875682562679138, decrease = 1.0645451187230037e-09
PARAFAC2 reconstruction error=0.8189074537869695, variation=4.682556564716833e-10.
Starting iteration 3060
reconstruction error=0.2087568242844076
iteration 1, reconstruction error: 0.20875682321847916, decrease = 1.065928428856111e-09
iteration 2, reconstruction error: 0.20875682215320496, decrease = 1.065274202183275e-09
iteration 3, reconstruction error: 0.2087568210885734, decrease = 1.0646315495854708e-09
iteration 4, reconstruction error: 0.20875682002457907, decrease = 1.0639943370804872e-09
PARAFAC2 reconstruction error=0.8189074533189563, variation=4.680131837631052e-10.
Starting iteration 3061
reconstruction error=0.20875681868288792
iteration 1, reconstruction error: 0.20875681761751572, decrease = 1.0653722071207739e-09
iteration 2, reconstruction error: 0.20875681655279232, decrease = 1.064723392785183e-09
iteration 3, reconstruction error: 0.20875681548870617, decrease = 1.0640861525246237e-09
iteration 4, reconstruction error: 0.20875681442526578, decrease = 1.0634403913023505e-09
PARAFAC2 reconstruction error=0.8189074528511852, variation=4.677711551437369e-10.
Starting iteration 3062
reconstruction error=0.20875681308426877
iteration 1, reconstruction error: 0.2087568120194443, decrease = 1.064824478591575e-09
iteration 2, reconstruction error: 0.20875681095527096, decrease = 1.0641733327876324e-09
iteration 3, reconstruction error: 0.2087568098917364, decrease = 1.0635345659704143e-09
iteration 4, reconstruction error: 0.2087568088288391, decrease = 1.0628972979542795e-09
PARAFAC2 reconstruction error=0.8189074523836563, variation=4.675289044797637e-10.
Starting iteration 3063
reconstruction error=0.20875680748855005
iteration 1, reconstruction error: 0.20875680642427713, decrease = 1.0642729197929413e-09
iteration 2, reconstruction error: 0.2087568053606477, decrease = 1.0636294345278685e-09
iteration 3, reconstruction error: 0.20875680429766702, decrease = 1.0629806757034288e-09
iteration 4, reconstruction error: 0.208756803235319, decrease = 1.0623480151128462e-09
PARAFAC2 reconstruction error=0.818907451916369, variation=4.672872089273028e-10.
Starting iteration 3064
reconstruction error=0.2087568018957187
iteration 1, reconstruction error: 0.2087568008319897, decrease = 1.0637290215331774e-09
iteration 2, reconstruction error: 0.2087567997689211, decrease = 1.0630686053669791e-09
iteration 3, reconstruction error: 0.20875679870648506, decrease = 1.0624360280431233e-09
iteration 4, reconstruction error: 0.2087567976446894, decrease = 1.0617956514025195e-09
PARAFAC2 reconstruction error=0.8189074514493236, variation=4.670454023525394e-10.
Starting iteration 3065
reconstruction error=0.20875679630578328
iteration 1, reconstruction error: 0.20875679524260507, decrease = 1.0631782121350852e-09
iteration 2, reconstruction error: 0.20875679418007956, decrease = 1.062525512018908e-09
iteration 3, reconstruction error: 0.20875679311818973, decrease = 1.0618898260705834e-09
iteration 4, reconstruction error: 0.20875679205694103, decrease = 1.061248700029438e-09
PARAFAC2 reconstruction error=0.8189074509825197, variation=4.668039288446835e-10.
Starting iteration 3066
reconstruction error=0.20875679071873443
iteration 1, reconstruction error: 0.2087567896561032, decrease = 1.062631233006428e-09
iteration 2, reconstruction error: 0.20875678859413002, decrease = 1.061973176064157e-09
iteration 3, reconstruction error: 0.2087567875327918, decrease = 1.0613382117607983e-09
iteration 4, reconstruction error: 0.20875678647208235, decrease = 1.0607094647063775e-09
PARAFAC2 reconstruction error=0.818907450515957, variation=4.665626773814324e-10.
Starting iteration 3067
reconstruction error=0.20875678513456833
iteration 1, reconstruction error: 0.20875678407249176, decrease = 1.0620765655833253e-09
iteration 2, reconstruction error: 0.20875678301106634, decrease = 1.0614254197793827e-09
iteration 3, reconstruction error: 0.2087567819502697, decrease = 1.0607966449693862e-09
iteration 4, reconstruction error: 0.20875678089011568, decrease = 1.0601540201271575e-09
PARAFAC2 reconstruction error=0.8189074500496354, variation=4.663216479627863e-10.
Starting iteration 3068
reconstruction error=0.20875677955329272
iteration 1, reconstruction error: 0.20875677849176777, decrease = 1.0615249512735403e-09
iteration 2, reconstruction error: 0.208756777430887, decrease = 1.0608807721190772e-09
iteration 3, reconstruction error: 0.20875677637063653, decrease = 1.0602504707524218e-09
iteration 4, reconstruction error: 0.20875677531102638, decrease = 1.0596101496229693e-09
PARAFAC2 reconstruction error=0.8189074495835549, variation=4.660805075218377e-10.
Starting iteration 3069
reconstruction error=0.20875677397489836
iteration 1, reconstruction error: 0.20875677291391728, decrease = 1.060981080769352e-09
iteration 2, reconstruction error: 0.20875677185358268, decrease = 1.0603345979021128e-09
iteration 3, reconstruction error: 0.20875677079388225, decrease = 1.059700438510447e-09
iteration 4, reconstruction error: 0.20875676973482216, decrease = 1.0590600896254188e-09
PARAFAC2 reconstruction error=0.8189074491177152, variation=4.658397001477965e-10.
Starting iteration 3070
reconstruction error=0.20875676839938598
iteration 1, reconstruction error: 0.2087567673389557, decrease = 1.0604302713712599e-09
iteration 2, reconstruction error: 0.20875676627916573, decrease = 1.059789977997383e-09
iteration 3, reconstruction error: 0.20875676522001768, decrease = 1.0591480470445447e-09
iteration 4, reconstruction error: 0.20875676416149916, decrease = 1.0585185228340066e-09
PARAFAC2 reconstruction error=0.818907448652116, variation=4.655992258406627e-10.
Starting iteration 3071
reconstruction error=0.20875676282675634
iteration 1, reconstruction error: 0.2087567617668715, decrease = 1.0598848465548372e-09
iteration 2, reconstruction error: 0.20875676070762622, decrease = 1.0592452748259262e-09
iteration 3, reconstruction error: 0.20875675964902587, decrease = 1.0586003462709215e-09
iteration 4, reconstruction error: 0.20875675859105045, decrease = 1.0579754294859356e-09
PARAFAC2 reconstruction error=0.8189074481867574, variation=4.65358529488924e-10.
Starting iteration 3072
reconstruction error=0.20875675725699644
iteration 1, reconstruction error: 0.2087567561976601, decrease = 1.0593363408695211e-09
iteration 2, reconstruction error: 0.20875675513896408, decrease = 1.0586960197400686e-09
iteration 3, reconstruction error: 0.20875675408090763, decrease = 1.0580564480111576e-09
iteration 4, reconstruction error: 0.20875675302347144, decrease = 1.0574361941628752e-09
PARAFAC2 reconstruction error=0.8189074477216391, variation=4.651182772263951e-10.
Starting iteration 3073
reconstruction error=0.20875675169011315
iteration 1, reconstruction error: 0.20875675063132298, decrease = 1.0587901666525568e-09
iteration 2, reconstruction error: 0.2087567495731716, decrease = 1.058151372079763e-09
iteration 3, reconstruction error: 0.2087567485156629, decrease = 1.0575087194819588e-09
iteration 4, reconstruction error: 0.2087567474587791, decrease = 1.056883802696973e-09
PARAFAC2 reconstruction error=0.8189074472567609, variation=4.6487824700847113e-10.
Starting iteration 3074
reconstruction error=0.2087567461261057
iteration 1, reconstruction error: 0.20875674506785863, decrease = 1.0582470733044858e-09
iteration 2, reconstruction error: 0.20875674401025499, decrease = 1.0576036435505642e-09
iteration 3, reconstruction error: 0.20875674295328628, decrease = 1.0569687070027811e-09
iteration 4, reconstruction error: 0.2087567418969425, decrease = 1.0563437902177952e-09
PARAFAC2 reconstruction error=0.8189074467921225, variation=4.646384388351521e-10.
Starting iteration 3075
reconstruction error=0.20875674056496177
iteration 1, reconstruction error: 0.20875673950726553, decrease = 1.057696236150818e-09
iteration 2, reconstruction error: 0.20875673845020806, decrease = 1.0570574693336e-09
iteration 3, reconstruction error: 0.20875673739378092, decrease = 1.056427140211369e-09
iteration 4, reconstruction error: 0.20875673633799027, decrease = 1.0557906493513514e-09
PARAFAC2 reconstruction error=0.8189074463277242, variation=4.643982975949257e-10.
Starting iteration 3076
reconstruction error=0.2087567350066952
iteration 1, reconstruction error: 0.20875673394954056, decrease = 1.0571546416038302e-09
iteration 2, reconstruction error: 0.20875673289302774, decrease = 1.0565128216732944e-09
iteration 3, reconstruction error: 0.2087567318371491, decrease = 1.055878634526053e-09
iteration 4, reconstruction error: 0.2087567307818969, decrease = 1.0552521911844082e-09
PARAFAC2 reconstruction error=0.818907445863565, variation=4.641591555554214e-10.
Starting iteration 3077
reconstruction error=0.20875672945129453
iteration 1, reconstruction error: 0.20875672839467832, decrease = 1.0566162111924626e-09
iteration 2, reconstruction error: 0.20875672733871556, decrease = 1.0559627616757439e-09
iteration 3, reconstruction error: 0.20875672628337308, decrease = 1.0553424800718858e-09
iteration 4, reconstruction error: 0.20875672522866323, decrease = 1.0547098472368788e-09
PARAFAC2 reconstruction error=0.8189074453996454, variation=4.639195694267073e-10.
Starting iteration 3078
reconstruction error=0.20875672389875272
iteration 1, reconstruction error: 0.20875672284268734, decrease = 1.0560653740387949e-09
iteration 2, reconstruction error: 0.20875672178726076, decrease = 1.0554265794660012e-09
iteration 3, reconstruction error: 0.208756720732466, decrease = 1.054794751542687e-09
iteration 4, reconstruction error: 0.20875671967829848, decrease = 1.054167531044925e-09
PARAFAC2 reconstruction error=0.8189074449359652, variation=4.6368020534259813e-10.
Starting iteration 3079
reconstruction error=0.20875671834907525
iteration 1, reconstruction error: 0.2087567172935522, decrease = 1.055523057846841e-09
iteration 2, reconstruction error: 0.20875671623867256, decrease = 1.0548796280929196e-09
iteration 3, reconstruction error: 0.2087567151844186, decrease = 1.054253961907392e-09
iteration 4, reconstruction error: 0.20875671413079344, decrease = 1.05362515934182e-09
PARAFAC2 reconstruction error=0.818907444472524, variation=4.634412853476988e-10.
Starting iteration 3080
reconstruction error=0.20875671280225816
iteration 1, reconstruction error: 0.20875671174728055, decrease = 1.0549776052748427e-09
iteration 2, reconstruction error: 0.20875671069294324, decrease = 1.0543373119009658e-09
iteration 3, reconstruction error: 0.20875670963923704, decrease = 1.0537062056226176e-09
iteration 4, reconstruction error: 0.20875670858614953, decrease = 1.0530875060865696e-09
PARAFAC2 reconstruction error=0.8189074440093217, variation=4.63202254330497e-10.
Starting iteration 3081
reconstruction error=0.2087567072583
iteration 1, reconstruction error: 0.20875670620386394, decrease = 1.0544360662390062e-09
iteration 2, reconstruction error: 0.20875670515006972, decrease = 1.0537942185528948e-09
iteration 3, reconstruction error: 0.20875670409690508, decrease = 1.0531646388312055e-09
iteration 4, reconstruction error: 0.20875670304435917, decrease = 1.0525459115395819e-09
PARAFAC2 reconstruction error=0.8189074435463578, variation=4.6296388944711e-10.
Starting iteration 3082
reconstruction error=0.20875670171719465
iteration 1, reconstruction error: 0.20875670066330632, decrease = 1.0538883377098074e-09
iteration 2, reconstruction error: 0.20875669961005136, decrease = 1.0532549554742587e-09
iteration 3, reconstruction error: 0.20875669855742596, decrease = 1.052625403508145e-09
iteration 4, reconstruction error: 0.20875669750542392, decrease = 1.0520020410353936e-09
PARAFAC2 reconstruction error=0.818907443083633, variation=4.627248584299082e-10.
Starting iteration 3083
reconstruction error=0.20875669617894663
iteration 1, reconstruction error: 0.20875669512559986, decrease = 1.0533467709183952e-09
iteration 2, reconstruction error: 0.20875669407289033, decrease = 1.052709530657836e-09
iteration 3, reconstruction error: 0.2087566930208026, decrease = 1.052087722497319e-09
iteration 4, reconstruction error: 0.20875669196934676, decrease = 1.0514558390628537e-09
PARAFAC2 reconstruction error=0.8189074426211461, variation=4.6248682661342855e-10.
Starting iteration 3084
reconstruction error=0.20875669064354752
iteration 1, reconstruction error: 0.20875668959074617, decrease = 1.0528013461019725e-09
iteration 2, reconstruction error: 0.20875668853857665, decrease = 1.0521695181786583e-09
iteration 3, reconstruction error: 0.20875668748703127, decrease = 1.0515453785497897e-09
iteration 4, reconstruction error: 0.20875668643610695, decrease = 1.0509243197898144e-09
PARAFAC2 reconstruction error=0.8189074421588977, variation=4.6224846173004153e-10.
Starting iteration 3085
reconstruction error=0.20875668511100576
iteration 1, reconstruction error: 0.20875668405874365, decrease = 1.052262110778912e-09
iteration 2, reconstruction error: 0.2087566830071165, decrease = 1.0516271464755533e-09
iteration 3, reconstruction error: 0.20875668195610803, decrease = 1.051008474695081e-09
iteration 4, reconstruction error: 0.20875668090572835, decrease = 1.0503796721295089e-09
PARAFAC2 reconstruction error=0.8189074416968872, variation=4.620104299135619e-10.
Starting iteration 3086
reconstruction error=0.2087566795813014
iteration 1, reconstruction error: 0.2087566785295839, decrease = 1.0517174908741822e-09
iteration 2, reconstruction error: 0.20875667747849752, decrease = 1.051086384595834e-09
iteration 3, reconstruction error: 0.2087566764280322, decrease = 1.0504653258358587e-09
iteration 4, reconstruction error: 0.20875667537819098, decrease = 1.0498412139625657e-09
PARAFAC2 reconstruction error=0.8189074412351147, variation=4.617725091193847e-10.
Starting iteration 3087
reconstruction error=0.20875667405445206
iteration 1, reconstruction error: 0.20875667300326844, decrease = 1.0511836123772156e-09
iteration 2, reconstruction error: 0.20875667195272748, decrease = 1.0505409597794113e-09
iteration 3, reconstruction error: 0.20875667090280522, decrease = 1.0499222602433633e-09
iteration 4, reconstruction error: 0.20875666985349942, decrease = 1.0493058089089402e-09
PARAFAC2 reconstruction error=0.8189074407735801, variation=4.6153458832520755e-10.
Starting iteration 3088
reconstruction error=0.20875666853044547
iteration 1, reconstruction error: 0.2087566674798034, decrease = 1.050642073341379e-09
iteration 2, reconstruction error: 0.2087566664297955, decrease = 1.0500078861941375e-09
iteration 3, reconstruction error: 0.20875666538041407, decrease = 1.0493814428524928e-09
iteration 4, reconstruction error: 0.2087566643316529, decrease = 1.0487611612486347e-09
PARAFAC2 reconstruction error=0.8189074403122827, variation=4.612974446871476e-10.
Starting iteration 3089
reconstruction error=0.2087566630092801
iteration 1, reconstruction error: 0.20875666195918113, decrease = 1.050098979993308e-09
iteration 2, reconstruction error: 0.20875666090971018, decrease = 1.0494709545838532e-09
iteration 3, reconstruction error: 0.2087566598608649, decrease = 1.0488452883983257e-09
iteration 4, reconstruction error: 0.20875665881264144, decrease = 1.0482234524822331e-09
PARAFAC2 reconstruction error=0.8189074398512225, variation=4.610601900267852e-10.
Starting iteration 3090
reconstruction error=0.20875665749095287
iteration 1, reconstruction error: 0.20875665644139316, decrease = 1.049559716914672e-09
iteration 2, reconstruction error: 0.20875665539246144, decrease = 1.0489317192607928e-09
iteration 3, reconstruction error: 0.2087566543441608, decrease = 1.0483006407380202e-09
iteration 4, reconstruction error: 0.2087566532964689, decrease = 1.0476919054536182e-09
PARAFAC2 reconstruction error=0.8189074393903999, variation=4.6082260229951544e-10.
Starting iteration 3091
reconstruction error=0.20875665197546606
iteration 1, reconstruction error: 0.2087566509264425, decrease = 1.0490235624605049e-09
iteration 2, reconstruction error: 0.20875664987805082, decrease = 1.0483916790260395e-09
iteration 3, reconstruction error: 0.20875664883028555, decrease = 1.0477652634399703e-09
iteration 4, reconstruction error: 0.2087566477831321, decrease = 1.047153447286675e-09
PARAFAC2 reconstruction error=0.818907438929814, variation=4.6058590275066535e-10.
Starting iteration 3092
reconstruction error=0.20875664646281045
iteration 1, reconstruction error: 0.20875664541432384, decrease = 1.048486603094645e-09
iteration 2, reconstruction error: 0.208756644366476, decrease = 1.0478478362774268e-09
iteration 3, reconstruction error: 0.2087566433192423, decrease = 1.0472337164113554e-09
iteration 4, reconstruction error: 0.20875664227263271, decrease = 1.0466095767824868e-09
PARAFAC2 reconstruction error=0.8189074384694652, variation=4.603487591126054e-10.
Starting iteration 3093
reconstruction error=0.2087566409529922
iteration 1, reconstruction error: 0.20875663990504328, decrease = 1.047948922083819e-09
iteration 2, reconstruction error: 0.208756638857727, decrease = 1.047316289248812e-09
iteration 3, reconstruction error: 0.20875663781103948, decrease = 1.0466875144388155e-09
iteration 4, reconstruction error: 0.2087566367649676, decrease = 1.0460718680160852e-09
PARAFAC2 reconstruction error=0.818907438009353, variation=4.6011228160836026e-10.
Starting iteration 3094
reconstruction error=0.20875663544600287
iteration 1, reconstruction error: 0.20875663439859166, decrease = 1.0474112133174174e-09
iteration 2, reconstruction error: 0.20875663335182387, decrease = 1.0467677835634959e-09
iteration 3, reconstruction error: 0.20875663230565938, decrease = 1.0461644883719146e-09
iteration 4, reconstruction error: 0.20875663126012678, decrease = 1.0455326049374492e-09
PARAFAC2 reconstruction error=0.8189074375494774, variation=4.598755820595102e-10.
Starting iteration 3095
reconstruction error=0.20875662994184158
iteration 1, reconstruction error: 0.2087566288949758, decrease = 1.0468657885009947e-09
iteration 2, reconstruction error: 0.20875662784873725, decrease = 1.046238540247657e-09
iteration 3, reconstruction error: 0.20875662680311588, decrease = 1.045621367268268e-09
iteration 4, reconstruction error: 0.2087566257581194, decrease = 1.0449964782388577e-09
PARAFAC2 reconstruction error=0.8189074370898378, variation=4.5963954864447487e-10.
Starting iteration 3096
reconstruction error=0.20875662444051155
iteration 1, reconstruction error: 0.20875662339418113, decrease = 1.0463304112029448e-09
iteration 2, reconstruction error: 0.20875662234847567, decrease = 1.0457054666623833e-09
iteration 3, reconstruction error: 0.2087566213033974, decrease = 1.045078273920197e-09
iteration 4, reconstruction error: 0.20875662025893094, decrease = 1.0444664577669016e-09
PARAFAC2 reconstruction error=0.8189074366304349, variation=4.5940296011792725e-10.
Starting iteration 3097
reconstruction error=0.2087566189420081
iteration 1, reconstruction error: 0.2087566178962123, decrease = 1.0457957833054365e-09
iteration 2, reconstruction error: 0.20875661685104838, decrease = 1.0451639276265468e-09
iteration 3, reconstruction error: 0.20875661580650476, decrease = 1.044543618267113e-09
iteration 4, reconstruction error: 0.20875661476256901, decrease = 1.0439357434055552e-09
PARAFAC2 reconstruction error=0.8189074361712676, variation=4.5916725976979933e-10.
Starting iteration 3098
reconstruction error=0.20875661344632587
iteration 1, reconstruction error: 0.2087566124010678, decrease = 1.045258074539035e-09
iteration 2, reconstruction error: 0.2087566113564385, decrease = 1.0446292997290385e-09
iteration 3, reconstruction error: 0.20875661031242868, decrease = 1.0440098230368733e-09
iteration 4, reconstruction error: 0.20875660926903145, decrease = 1.0433972297274607e-09
PARAFAC2 reconstruction error=0.8189074357123359, variation=4.5893167044397387e-10.
Starting iteration 3099
reconstruction error=0.20875660795346554
iteration 1, reconstruction error: 0.20875660690874517, decrease = 1.0447203657726334e-09
iteration 2, reconstruction error: 0.20875660586465436, decrease = 1.0440908138065197e-09
iteration 3, reconstruction error: 0.20875660482117223, decrease = 1.043482134033269e-09
iteration 4, reconstruction error: 0.20875660377831193, decrease = 1.0428602981171764e-09
PARAFAC2 reconstruction error=0.8189074352536404, variation=4.586955260066361e-10.
Starting iteration 3100
reconstruction error=0.20875660246342487
iteration 1, reconstruction error: 0.2087566014192422, decrease = 1.0441826570062318e-09
iteration 2, reconstruction error: 0.20875660037568444, decrease = 1.0435577679768215e-09
iteration 3, reconstruction error: 0.2087565993327385, decrease = 1.0429459518235262e-09
iteration 4, reconstruction error: 0.2087565982904205, decrease = 1.0423179819252226e-09
PARAFAC2 reconstruction error=0.8189074347951801, variation=4.5846026974771803e-10.
Starting iteration 3101
reconstruction error=0.20875659697620003
iteration 1, reconstruction error: 0.20875659593255197, decrease = 1.0436480568642992e-09
iteration 2, reconstruction error: 0.2087565948895296, decrease = 1.043022362923196e-09
iteration 3, reconstruction error: 0.2087565938471198, decrease = 1.0424097973693591e-09
iteration 4, reconstruction error: 0.20875659280532796, decrease = 1.0417918472338528e-09
PARAFAC2 reconstruction error=0.8189074343369551, variation=4.5822501348879996e-10.
Starting iteration 3102
reconstruction error=0.20875659149178713
iteration 1, reconstruction error: 0.20875659044868144, decrease = 1.0431056851611942e-09
iteration 2, reconstruction error: 0.20875658940618752, decrease = 1.04249392451905e-09
iteration 3, reconstruction error: 0.2087565883643185, decrease = 1.0418690077340642e-09
iteration 4, reconstruction error: 0.20875658732305435, decrease = 1.0412641582302484e-09
PARAFAC2 reconstruction error=0.8189074338789655, variation=4.5798964620757943e-10.
Starting iteration 3103
reconstruction error=0.20875658601019464
iteration 1, reconstruction error: 0.2087565849676174, decrease = 1.0425772467570482e-09
iteration 2, reconstruction error: 0.20875658392566426, decrease = 1.0419531348837552e-09
iteration 3, reconstruction error: 0.20875658288432447, decrease = 1.041339792173801e-09
iteration 4, reconstruction error: 0.20875658184359647, decrease = 1.0407280037760813e-09
PARAFAC2 reconstruction error=0.8189074334212106, variation=4.577548340378712e-10.
Starting iteration 3104
reconstruction error=0.20875658053141416
iteration 1, reconstruction error: 0.20875657948937307, decrease = 1.0420410923028811e-09
iteration 2, reconstruction error: 0.20875657844794837, decrease = 1.0414246964796092e-09
iteration 3, reconstruction error: 0.2087565774071432, decrease = 1.0408051642762928e-09
iteration 4, reconstruction error: 0.20875657636695213, decrease = 1.040191072165797e-09
PARAFAC2 reconstruction error=0.8189074329636906, variation=4.57520021868163e-10.
Starting iteration 3105
reconstruction error=0.20875657505543868
iteration 1, reconstruction error: 0.20875657401392758, decrease = 1.0415110995865007e-09
iteration 2, reconstruction error: 0.20875657297304293, decrease = 1.040884656244856e-09
iteration 3, reconstruction error: 0.20875657193277314, decrease = 1.040269786978243e-09
iteration 4, reconstruction error: 0.20875657089310667, decrease = 1.039666464031086e-09
PARAFAC2 reconstruction error=0.8189074325064052, variation=4.572854317430597e-10.
Starting iteration 3106
reconstruction error=0.2087565695822705
iteration 1, reconstruction error: 0.20875656854129634, decrease = 1.0409741679762163e-09
iteration 2, reconstruction error: 0.20875656750094324, decrease = 1.040353109216241e-09
iteration 3, reconstruction error: 0.20875656646120266, decrease = 1.0397405714179797e-09
iteration 4, reconstruction error: 0.2087565654220708, decrease = 1.0391318638891534e-09
PARAFAC2 reconstruction error=0.8189074320493545, variation=4.5705073059565393e-10.
Starting iteration 3107
reconstruction error=0.2087565641119136
iteration 1, reconstruction error: 0.20875656307146556, decrease = 1.0404480332848465e-09
iteration 2, reconstruction error: 0.20875656203164936, decrease = 1.0398162053615323e-09
iteration 3, reconstruction error: 0.2087565609924388, decrease = 1.0392105509460237e-09
iteration 4, reconstruction error: 0.20875655995384002, decrease = 1.0385987903038796e-09
PARAFAC2 reconstruction error=0.818907431592538, variation=4.56816473537458e-10.
Starting iteration 3108
reconstruction error=0.20875655864435394
iteration 1, reconstruction error: 0.20875655760444362, decrease = 1.0399103245184449e-09
iteration 2, reconstruction error: 0.20875655656516048, decrease = 1.0392831317762585e-09
iteration 3, reconstruction error: 0.20875655552648376, decrease = 1.0386767279602083e-09
iteration 4, reconstruction error: 0.2087565544884111, decrease = 1.0380726556125097e-09
PARAFAC2 reconstruction error=0.8189074311359557, variation=4.565823275015646e-10.
Starting iteration 3109
reconstruction error=0.20875655317959627
iteration 1, reconstruction error: 0.20875655214021824, decrease = 1.0393780280892884e-09
iteration 2, reconstruction error: 0.20875655110146588, decrease = 1.0387523619037609e-09
iteration 3, reconstruction error: 0.2087565500633176, decrease = 1.0381482895560623e-09
iteration 4, reconstruction error: 0.20875654902578344, decrease = 1.0375341419344153e-09
PARAFAC2 reconstruction error=0.8189074306796071, variation=4.563485145325785e-10.
Starting iteration 3110
reconstruction error=0.208756547717639
iteration 1, reconstruction error: 0.20875654667879404, decrease = 1.0388449545040146e-09
iteration 2, reconstruction error: 0.20875654564057322, decrease = 1.038220814875146e-09
iteration 3, reconstruction error: 0.20875654460295723, decrease = 1.0376159931269058e-09
iteration 4, reconstruction error: 0.2087565435659492, decrease = 1.037008034998621e-09
PARAFAC2 reconstruction error=0.8189074302234925, variation=4.5611459054129e-10.
Starting iteration 3111
reconstruction error=0.20875654225847906
iteration 1, reconstruction error: 0.20875654122016796, decrease = 1.0383111037626236e-09
iteration 2, reconstruction error: 0.20875654018247403, decrease = 1.0376939307832345e-09
iteration 3, reconstruction error: 0.20875653914539424, decrease = 1.0370797831615874e-09
iteration 4, reconstruction error: 0.2087565381089162, decrease = 1.0364780422822406e-09
PARAFAC2 reconstruction error=0.8189074297676117, variation=4.558808885946064e-10.
Starting iteration 3112
reconstruction error=0.20875653680211567
iteration 1, reconstruction error: 0.20875653576433456, decrease = 1.0377811110462432e-09
iteration 2, reconstruction error: 0.20875653472717912, decrease = 1.0371554448607156e-09
iteration 3, reconstruction error: 0.2087565336906185, decrease = 1.0365606151196971e-09
iteration 4, reconstruction error: 0.20875653265467353, decrease = 1.0359449686969668e-09
PARAFAC2 reconstruction error=0.8189074293119641, variation=4.556475197148302e-10.
Starting iteration 3113
reconstruction error=0.20875653134854733
iteration 1, reconstruction error: 0.20875653031129543, decrease = 1.03725189548598e-09
iteration 2, reconstruction error: 0.2087565292746692, decrease = 1.0366262293004525e-09
iteration 3, reconstruction error: 0.20875652823863936, decrease = 1.0360298452471994e-09
iteration 4, reconstruction error: 0.20875652720322052, decrease = 1.035418834005597e-09
PARAFAC2 reconstruction error=0.81890742885655, variation=4.55414150835054e-10.
Starting iteration 3114
reconstruction error=0.20875652589776555
iteration 1, reconstruction error: 0.20875652486104826, decrease = 1.0367172953440473e-09
iteration 2, reconstruction error: 0.20875652382494586, decrease = 1.0361023983218587e-09
iteration 3, reconstruction error: 0.20875652278944984, decrease = 1.035496022261384e-09
iteration 4, reconstruction error: 0.20875652175456175, decrease = 1.034888091888675e-09
PARAFAC2 reconstruction error=0.8189074284013689, variation=4.5518111502218517e-10.
Starting iteration 3115
reconstruction error=0.2087565204497726
iteration 1, reconstruction error: 0.20875651941358764, decrease = 1.0361849711593152e-09
iteration 2, reconstruction error: 0.2087565183780137, decrease = 1.0355739321621371e-09
iteration 3, reconstruction error: 0.20875651734304457, decrease = 1.0349691381694726e-09
iteration 4, reconstruction error: 0.2087565163086911, decrease = 1.0343534639911667e-09
PARAFAC2 reconstruction error=0.818907427946421, variation=4.549478571647114e-10.
Starting iteration 3116
reconstruction error=0.2087565150045747
iteration 1, reconstruction error: 0.20875651396891814, decrease = 1.0356565605107448e-09
iteration 2, reconstruction error: 0.20875651293387032, decrease = 1.0350478252263429e-09
iteration 3, reconstruction error: 0.2087565118994312, decrease = 1.0344391176975165e-09
iteration 4, reconstruction error: 0.20875651086560235, decrease = 1.0338288558564557e-09
PARAFAC2 reconstruction error=0.8189074274917056, variation=4.547153764633549e-10.
Starting iteration 3117
reconstruction error=0.2087565095621549
iteration 1, reconstruction error: 0.20875650852702915, decrease = 1.0351257628826716e-09
iteration 2, reconstruction error: 0.2087565074925082, decrease = 1.0345209411344314e-09
iteration 3, reconstruction error: 0.2087565064586014, decrease = 1.03390682126836e-09
iteration 4, reconstruction error: 0.20875650542529403, decrease = 1.0333073563462136e-09
PARAFAC2 reconstruction error=0.8189074270372232, variation=4.5448245167278856e-10.
Starting iteration 3118
reconstruction error=0.20875650412252242
iteration 1, reconstruction error: 0.20875650308792199, decrease = 1.0346004331029945e-09
iteration 2, reconstruction error: 0.20875650205393262, decrease = 1.0339893663502409e-09
iteration 3, reconstruction error: 0.208756501020555, decrease = 1.0333776057080968e-09
iteration 4, reconstruction error: 0.20875649998777454, decrease = 1.0327804722543021e-09
PARAFAC2 reconstruction error=0.818907426582973, variation=4.5425019301603697e-10.
Starting iteration 3119
reconstruction error=0.20875649868566487
iteration 1, reconstruction error: 0.20875649765159524, decrease = 1.0340696354749213e-09
iteration 2, reconstruction error: 0.20875649661813894, decrease = 1.033456292764967e-09
iteration 3, reconstruction error: 0.20875649558528747, decrease = 1.032851471016727e-09
iteration 4, reconstruction error: 0.20875649455303236, decrease = 1.0322551147190495e-09
PARAFAC2 reconstruction error=0.8189074261289552, variation=4.5401782333698293e-10.
Starting iteration 3120
reconstruction error=0.20875649325159318
iteration 1, reconstruction error: 0.20875649221805354, decrease = 1.0335396427585408e-09
iteration 2, reconstruction error: 0.20875649118512105, decrease = 1.032932489541949e-09
iteration 3, reconstruction error: 0.2087564901527957, decrease = 1.032325336325357e-09
iteration 4, reconstruction error: 0.20875648912107367, decrease = 1.0317220411337757e-09
PARAFAC2 reconstruction error=0.8189074256751694, variation=4.5378578672483627e-10.
Starting iteration 3121
reconstruction error=0.20875648782029804
iteration 1, reconstruction error: 0.20875648678728376, decrease = 1.0330142852232882e-09
iteration 2, reconstruction error: 0.20875648575488126, decrease = 1.0324024968255685e-09
iteration 3, reconstruction error: 0.20875648472308128, decrease = 1.0317999787901044e-09
iteration 4, reconstruction error: 0.20875648369188307, decrease = 1.031198210155182e-09
PARAFAC2 reconstruction error=0.8189074252216157, variation=4.5355363909038715e-10.
Starting iteration 3122
reconstruction error=0.20875648239178018
iteration 1, reconstruction error: 0.20875648135929126, decrease = 1.0324889276880356e-09
iteration 2, reconstruction error: 0.20875648032741878, decrease = 1.0318724763536125e-09
iteration 3, reconstruction error: 0.20875647929614338, decrease = 1.031275398410969e-09
iteration 4, reconstruction error: 0.20875647826547206, decrease = 1.0306713260632705e-09
PARAFAC2 reconstruction error=0.8189074247682937, variation=4.5332204656745034e-10.
Starting iteration 3123
reconstruction error=0.20875647696603425
iteration 1, reconstruction error: 0.20875647593407146, decrease = 1.0319627929966657e-09
iteration 2, reconstruction error: 0.20875647490271892, decrease = 1.0313525311556049e-09
iteration 3, reconstruction error: 0.20875647387197585, decrease = 1.030743074226237e-09
iteration 4, reconstruction error: 0.2087564728418322, decrease = 1.0301436370596662e-09
PARAFAC2 reconstruction error=0.8189074243152036, variation=4.5309012097760615e-10.
Starting iteration 3124
reconstruction error=0.20875647154305646
iteration 1, reconstruction error: 0.20875647051161825, decrease = 1.0314382126175303e-09
iteration 2, reconstruction error: 0.2087564694807988, decrease = 1.0308194575703311e-09
iteration 3, reconstruction error: 0.20875646845058263, decrease = 1.0302161623787498e-09
iteration 4, reconstruction error: 0.20875646742095585, decrease = 1.029626772730552e-09
PARAFAC2 reconstruction error=0.8189074238623447, variation=4.5285886152157673e-10.
Starting iteration 3125
reconstruction error=0.20875646612285134
iteration 1, reconstruction error: 0.20875646509194004, decrease = 1.0309113007700432e-09
iteration 2, reconstruction error: 0.20875646406164747, decrease = 1.0302925734784196e-09
iteration 3, reconstruction error: 0.2087564630319528, decrease = 1.0296946628685077e-09
iteration 4, reconstruction error: 0.20875646200285217, decrease = 1.029100638039182e-09
PARAFAC2 reconstruction error=0.8189074234097172, variation=4.5262749104324485e-10.
Starting iteration 3126
reconstruction error=0.20875646070541043
iteration 1, reconstruction error: 0.20875645967502604, decrease = 1.0303843889225561e-09
iteration 2, reconstruction error: 0.20875645864525574, decrease = 1.0297702968120603e-09
iteration 3, reconstruction error: 0.20875645761608722, decrease = 1.0291685281771379e-09
iteration 4, reconstruction error: 0.20875645658751737, decrease = 1.0285698404111088e-09
PARAFAC2 reconstruction error=0.818907422957321, variation=4.523962315872154e-10.
Starting iteration 3127
reconstruction error=0.20875645529074074
iteration 1, reconstruction error: 0.20875645426088016, decrease = 1.029860585699538e-09
iteration 2, reconstruction error: 0.2087564532316383, decrease = 1.0292418584079144e-09
iteration 3, reconstruction error: 0.20875645220298975, decrease = 1.0286485552235547e-09
iteration 4, reconstruction error: 0.2087564511749414, decrease = 1.0280483409008667e-09
PARAFAC2 reconstruction error=0.8189074225051558, variation=4.5216519417579093e-10.
Starting iteration 3128
reconstruction error=0.2087564498788275
iteration 1, reconstruction error: 0.20875644884949923, decrease = 1.0293282615148058e-09
iteration 2, reconstruction error: 0.20875644782077965, decrease = 1.028719581741555e-09
iteration 3, reconstruction error: 0.2087564467926549, decrease = 1.0281247520005365e-09
iteration 4, reconstruction error: 0.20875644576513117, decrease = 1.0275237327661557e-09
PARAFAC2 reconstruction error=0.8189074220532212, variation=4.519346008535763e-10.
Starting iteration 3129
reconstruction error=0.20875644446968006
iteration 1, reconstruction error: 0.20875644344087407, decrease = 1.0288059848484465e-09
iteration 2, reconstruction error: 0.20875644241268296, decrease = 1.0281911155818335e-09
iteration 3, reconstruction error: 0.20875644138508123, decrease = 1.0276017259336356e-09
iteration 4, reconstruction error: 0.2087564403580813, decrease = 1.0269999295431376e-09
PARAFAC2 reconstruction error=0.8189074216015173, variation=4.517038965090592e-10.
Starting iteration 3130
reconstruction error=0.20875643906329455
iteration 1, reconstruction error: 0.208756438035017, decrease = 1.0282775464443006e-09
iteration 2, reconstruction error: 0.2087564370073412, decrease = 1.0276758055649537e-09
iteration 3, reconstruction error: 0.20875643598026022, decrease = 1.0270809758239352e-09
iteration 4, reconstruction error: 0.2087564349537818, decrease = 1.0264784300328955e-09
PARAFAC2 reconstruction error=0.818907421150044, variation=4.5147330318684453e-10.
Starting iteration 3131
reconstruction error=0.20875643365966562
iteration 1, reconstruction error: 0.20875643263190646, decrease = 1.0277591555585275e-09
iteration 2, reconstruction error: 0.20875643160475912, decrease = 1.0271473394052322e-09
iteration 3, reconstruction error: 0.2087564305782051, decrease = 1.0265540362208725e-09
iteration 4, reconstruction error: 0.2087564295522489, decrease = 1.0259561811221118e-09
PARAFAC2 reconstruction error=0.8189074206988008, variation=4.5124315395383974e-10.
Starting iteration 3132
reconstruction error=0.20875642825878937
iteration 1, reconstruction error: 0.20875642723155405, decrease = 1.0272353245799337e-09
iteration 2, reconstruction error: 0.2087564262049259, decrease = 1.0266281436077662e-09
iteration 3, reconstruction error: 0.2087564251788972, decrease = 1.0260287064411955e-09
iteration 4, reconstruction error: 0.20875642415346254, decrease = 1.0254346538562942e-09
PARAFAC2 reconstruction error=0.8189074202477882, variation=4.5101267165392755e-10.
Starting iteration 3133
reconstruction error=0.20875642286066884
iteration 1, reconstruction error: 0.20875642183395968, decrease = 1.0267091621329882e-09
iteration 2, reconstruction error: 0.20875642080784762, decrease = 1.0261120564347692e-09
iteration 3, reconstruction error: 0.20875641978234583, decrease = 1.0255017945937084e-09
iteration 4, reconstruction error: 0.2087564187574342, decrease = 1.0249116277893933e-09
PARAFAC2 reconstruction error=0.8189074197970052, variation=4.507829665101326e-10.
Starting iteration 3134
reconstruction error=0.2087564174652987
iteration 1, reconstruction error: 0.20875641643911255, decrease = 1.0261861360660873e-09
iteration 2, reconstruction error: 0.20875641541353052, decrease = 1.0255820359628132e-09
iteration 3, reconstruction error: 0.20875641438854636, decrease = 1.024984153108477e-09
iteration 4, reconstruction error: 0.2087564133641524, decrease = 1.0243939585485862e-09
PARAFAC2 reconstruction error=0.8189074193464522, variation=4.5055303932173274e-10.
Starting iteration 3135
reconstruction error=0.20875641207267734
iteration 1, reconstruction error: 0.2087564110470166, decrease = 1.025660750775259e-09
iteration 2, reconstruction error: 0.20875641002195833, decrease = 1.0250582604953706e-09
iteration 3, reconstruction error: 0.20875640899749107, decrease = 1.024467261023787e-09
iteration 4, reconstruction error: 0.20875640797362094, decrease = 1.0238701275699924e-09
PARAFAC2 reconstruction error=0.8189074188961287, variation=4.5032344520024026e-10.
Starting iteration 3136
reconstruction error=0.20875640668280643
iteration 1, reconstruction error: 0.20875640565766565, decrease = 1.025140777821676e-09
iteration 2, reconstruction error: 0.20875640463313044, decrease = 1.0245352066728941e-09
iteration 3, reconstruction error: 0.20875640360918546, decrease = 1.0239449843574278e-09
iteration 4, reconstruction error: 0.2087564025858368, decrease = 1.023348655815326e-09
PARAFAC2 reconstruction error=0.818907418446035, variation=4.500937400564453e-10.
Starting iteration 3137
reconstruction error=0.20875640129568362
iteration 1, reconstruction error: 0.20875640027106432, decrease = 1.0246193060670095e-09
iteration 2, reconstruction error: 0.20875639924704215, decrease = 1.0240221726132148e-09
iteration 3, reconstruction error: 0.20875639822362096, decrease = 1.0234211811344096e-09
iteration 4, reconstruction error: 0.20875639720079073, decrease = 1.0228302371739773e-09
PARAFAC2 reconstruction error=0.8189074179961705, variation=4.498644790018602e-10.
Starting iteration 3138
reconstruction error=0.20875639591130035
iteration 1, reconstruction error: 0.20875639488720255, decrease = 1.0240978065567674e-09
iteration 2, reconstruction error: 0.2087563938637104, decrease = 1.0234921521412588e-09
iteration 3, reconstruction error: 0.2087563928408053, decrease = 1.0229050939614126e-09
iteration 4, reconstruction error: 0.2087563918184966, decrease = 1.0223087099081596e-09
PARAFAC2 reconstruction error=0.818907417546535, variation=4.496355510141825e-10.
Starting iteration 3139
reconstruction error=0.20875639052965744
iteration 1, reconstruction error: 0.20875638950608424, decrease = 1.0235731984220564e-09
iteration 2, reconstruction error: 0.2087563884831128, decrease = 1.0229714575427096e-09
iteration 3, reconstruction error: 0.20875638746072844, decrease = 1.0223843438517122e-09
iteration 4, reconstruction error: 0.20875638643893893, decrease = 1.0217895141106936e-09
PARAFAC2 reconstruction error=0.8189074170971286, variation=4.494064009818999e-10.
Starting iteration 3140
reconstruction error=0.20875638515075648
iteration 1, reconstruction error: 0.2087563841277079, decrease = 1.0230485902873454e-09
iteration 2, reconstruction error: 0.20875638310524716, decrease = 1.0224607271958064e-09
iteration 3, reconstruction error: 0.20875638208338737, decrease = 1.0218597912281524e-09
iteration 4, reconstruction error: 0.2087563810621217, decrease = 1.0212656831320999e-09
PARAFAC2 reconstruction error=0.8189074166479512, variation=4.491773619719197e-10.
Starting iteration 3141
reconstruction error=0.20875637977459435
iteration 1, reconstruction error: 0.20875637875206493, decrease = 1.022529422245455e-09
iteration 2, reconstruction error: 0.2087563777301303, decrease = 1.0219346202600121e-09
iteration 3, reconstruction error: 0.20875637670878514, decrease = 1.021345175100663e-09
iteration 4, reconstruction error: 0.20875637568803168, decrease = 1.0207534539841134e-09
PARAFAC2 reconstruction error=0.8189074161990025, variation=4.4894865602884693e-10.
Starting iteration 3142
reconstruction error=0.20875637440117104
iteration 1, reconstruction error: 0.2087563733791562, decrease = 1.0220148338735413e-09
iteration 2, reconstruction error: 0.20875637235774308, decrease = 1.02141312074977e-09
iteration 3, reconstruction error: 0.20875637133691632, decrease = 1.0208267564593143e-09
iteration 4, reconstruction error: 0.20875637031668434, decrease = 1.020231982229447e-09
PARAFAC2 reconstruction error=0.8189074157502823, variation=4.4872028315268153e-10.
Starting iteration 3143
reconstruction error=0.2087563690304804
iteration 1, reconstruction error: 0.20875636800898625, decrease = 1.0214941392749921e-09
iteration 2, reconstruction error: 0.20875636698808925, decrease = 1.0208970058211975e-09
iteration 3, reconstruction error: 0.20875636596778707, decrease = 1.020302176080179e-09
iteration 4, reconstruction error: 0.2087563649480751, decrease = 1.0197119815202882e-09
PARAFAC2 reconstruction error=0.8189074153017902, variation=4.484920212988186e-10.
Starting iteration 3144
reconstruction error=0.2087563636625178
iteration 1, reconstruction error: 0.20875636264154748, decrease = 1.0209703082963983e-09
iteration 2, reconstruction error: 0.20875636162116892, decrease = 1.0203785594242731e-09
iteration 3, reconstruction error: 0.20875636060138514, decrease = 1.0197837851944058e-09
iteration 4, reconstruction error: 0.20875635958218153, decrease = 1.0192036103973123e-09
PARAFAC2 reconstruction error=0.8189074148535267, variation=4.4826353740035074e-10.
Starting iteration 3145
reconstruction error=0.20875635829729025
iteration 1, reconstruction error: 0.20875635727683373, decrease = 1.0204565248361774e-09
iteration 2, reconstruction error: 0.20875635625697664, decrease = 1.0198570876696067e-09
iteration 3, reconstruction error: 0.20875635523770744, decrease = 1.019269196822492e-09
iteration 4, reconstruction error: 0.20875635421902614, decrease = 1.0186813059753774e-09
PARAFAC2 reconstruction error=0.818907414405491, variation=4.4803571963569766e-10.
Starting iteration 3146
reconstruction error=0.20875635293479222
iteration 1, reconstruction error: 0.20875635191485103, decrease = 1.019941187063722e-09
iteration 2, reconstruction error: 0.20875635089551392, decrease = 1.0193371147160235e-09
iteration 3, reconstruction error: 0.20875634987676236, decrease = 1.0187515553372606e-09
iteration 4, reconstruction error: 0.2087563488585964, decrease = 1.018165968202922e-09
PARAFAC2 reconstruction error=0.8189074139576831, variation=4.478079018710446e-10.
Starting iteration 3147
reconstruction error=0.2087563475750161
iteration 1, reconstruction error: 0.2087563465555957, decrease = 1.019420409198446e-09
iteration 2, reconstruction error: 0.20875634553677544, decrease = 1.0188202503869093e-09
iteration 3, reconstruction error: 0.2087563445185423, decrease = 1.0182331366959119e-09
iteration 4, reconstruction error: 0.20875634350089628, decrease = 1.0176460230049145e-09
PARAFAC2 reconstruction error=0.818907413510103, variation=4.475800841063915e-10.
Starting iteration 3148
reconstruction error=0.20875634221796036
iteration 1, reconstruction error: 0.20875634119906372, decrease = 1.0188966337310035e-09
iteration 2, reconstruction error: 0.20875634018076342, decrease = 1.0183003051889017e-09
iteration 3, reconstruction error: 0.20875633916304565, decrease = 1.0177177711678809e-09
iteration 4, reconstruction error: 0.208756338145908, decrease = 1.0171376518819386e-09
PARAFAC2 reconstruction error=0.8189074130627506, variation=4.473523773640409e-10.
Starting iteration 3149
reconstruction error=0.20875633686364192
iteration 1, reconstruction error: 0.20875633584525832, decrease = 1.0183835996713242e-09
iteration 2, reconstruction error: 0.20875633482746334, decrease = 1.0177949871792435e-09
iteration 3, reconstruction error: 0.20875633381026934, decrease = 1.0171939957004383e-09
iteration 4, reconstruction error: 0.20875633279365477, decrease = 1.0166145703038865e-09
PARAFAC2 reconstruction error=0.8189074126156253, variation=4.4712533675550503e-10.
Starting iteration 3150
reconstruction error=0.2087563315120315
iteration 1, reconstruction error: 0.20875633049417092, decrease = 1.0178605736044233e-09
iteration 2, reconstruction error: 0.20875632947689207, decrease = 1.0172788444950953e-09
iteration 3, reconstruction error: 0.20875632846021266, decrease = 1.0166794073285246e-09
iteration 4, reconstruction error: 0.20875632744410877, decrease = 1.0161038954681345e-09
PARAFAC2 reconstruction error=0.8189074121687275, variation=4.468977410354569e-10.
Starting iteration 3151
reconstruction error=0.20875632616314452
iteration 1, reconstruction error: 0.20875632514579698, decrease = 1.017347539544744e-09
iteration 2, reconstruction error: 0.20875632412904116, decrease = 1.0167558184281944e-09
iteration 3, reconstruction error: 0.20875632311287012, decrease = 1.0161710362055487e-09
iteration 4, reconstruction error: 0.2087563220972862, decrease = 1.0155839225145513e-09
PARAFAC2 reconstruction error=0.8189074117220568, variation=4.4667070042692103e-10.
Starting iteration 3152
reconstruction error=0.20875632081697482
iteration 1, reconstruction error: 0.20875631980013487, decrease = 1.0168399455778854e-09
iteration 2, reconstruction error: 0.20875631878390055, decrease = 1.0162343189179524e-09
iteration 3, reconstruction error: 0.20875631776824874, decrease = 1.0156518126525071e-09
iteration 4, reconstruction error: 0.20875631675317705, decrease = 1.0150716933665649e-09
PARAFAC2 reconstruction error=0.8189074112756127, variation=4.4644410390759504e-10.
Starting iteration 3153
reconstruction error=0.20875631547351622
iteration 1, reconstruction error: 0.20875631445720091, decrease = 1.0163153096875988e-09
iteration 2, reconstruction error: 0.2087563134414796, decrease = 1.0157213126138487e-09
iteration 3, reconstruction error: 0.2087563124263431, decrease = 1.0151365026356274e-09
iteration 4, reconstruction error: 0.208756311411786, decrease = 1.0145571049946511e-09
PARAFAC2 reconstruction error=0.8189074108293957, variation=4.462170632990592e-10.
Starting iteration 3154
reconstruction error=0.2087563101327726
iteration 1, reconstruction error: 0.2087563091169703, decrease = 1.015802303383495e-09
iteration 2, reconstruction error: 0.2087563081017628, decrease = 1.0152075013980522e-09
iteration 3, reconstruction error: 0.20875630708714085, decrease = 1.0146219420192892e-09
iteration 4, reconstruction error: 0.2087563060731006, decrease = 1.0140402406655369e-09
PARAFAC2 reconstruction error=0.818907410383405, variation=4.459906888243381e-10.
Starting iteration 3155
reconstruction error=0.2087563047947393
iteration 1, reconstruction error: 0.20875630377945464, decrease = 1.0152846618982636e-09
iteration 2, reconstruction error: 0.20875630276476326, decrease = 1.0146913864694795e-09
iteration 3, reconstruction error: 0.20875630175065973, decrease = 1.0141035233779405e-09
iteration 4, reconstruction error: 0.2087563007371194, decrease = 1.0135403349931238e-09
PARAFAC2 reconstruction error=0.818907409937641, variation=4.4576398128270966e-10.
Starting iteration 3156
reconstruction error=0.2087562994594157
iteration 1, reconstruction error: 0.20875629844464638, decrease = 1.0147693241258082e-09
iteration 2, reconstruction error: 0.20875629743046725, decrease = 1.0141791295659175e-09
iteration 3, reconstruction error: 0.20875629641686902, decrease = 1.013598233123858e-09
iteration 4, reconstruction error: 0.2087562954038556, decrease = 1.0130134231456367e-09
PARAFAC2 reconstruction error=0.818907409492103, variation=4.4553805089719845e-10.
Starting iteration 3157
reconstruction error=0.20875629412679847
iteration 1, reconstruction error: 0.20875629311254987, decrease = 1.0142486017716834e-09
iteration 2, reconstruction error: 0.2087562920988791, decrease = 1.0136707584429416e-09
iteration 3, reconstruction error: 0.20875629108579932, decrease = 1.0130797867269337e-09
iteration 4, reconstruction error: 0.2087562900732989, decrease = 1.012500416841533e-09
PARAFAC2 reconstruction error=0.8189074090467912, variation=4.4531178744477984e-10.
Starting iteration 3158
reconstruction error=0.20875628879688785
iteration 1, reconstruction error: 0.20875628778314917, decrease = 1.013738676336473e-09
iteration 2, reconstruction error: 0.2087562867699999, decrease = 1.0131492589326996e-09
iteration 3, reconstruction error: 0.20875628575743235, decrease = 1.0125675575789472e-09
iteration 4, reconstruction error: 0.2087562847454388, decrease = 1.0119935445196404e-09
PARAFAC2 reconstruction error=0.8189074086017052, variation=4.450859680815711e-10.
Starting iteration 3159
reconstruction error=0.20875628346968214
iteration 1, reconstruction error: 0.20875628245645494, decrease = 1.0132271965890283e-09
iteration 2, reconstruction error: 0.20875628144381872, decrease = 1.0126362248730203e-09
iteration 3, reconstruction error: 0.2087562804317603, decrease = 1.0120584092998541e-09
iteration 4, reconstruction error: 0.20875627942028285, decrease = 1.0114774573466434e-09
PARAFAC2 reconstruction error=0.8189074081568453, variation=4.448599266737574e-10.
Starting iteration 3160
reconstruction error=0.20875627814517597
iteration 1, reconstruction error: 0.2087562771324618, decrease = 1.012714162529349e-09
iteration 2, reconstruction error: 0.20875627612033396, decrease = 1.0121278537500444e-09
iteration 3, reconstruction error: 0.2087562751087917, decrease = 1.011542266615706e-09
iteration 4, reconstruction error: 0.20875627409783343, decrease = 1.0109582615491775e-09
PARAFAC2 reconstruction error=0.8189074077122108, variation=4.4463444037745603e-10.
Starting iteration 3161
reconstruction error=0.2087562728233648
iteration 1, reconstruction error: 0.208756271811166, decrease = 1.0121988247568936e-09
iteration 2, reconstruction error: 0.2087562707995581, decrease = 1.0116078807964612e-09
iteration 3, reconstruction error: 0.20875626978852577, decrease = 1.0110323411804956e-09
iteration 4, reconstruction error: 0.20875626877807357, decrease = 1.0104521941389777e-09
PARAFAC2 reconstruction error=0.8189074072678018, variation=4.444090651034571e-10.
Starting iteration 3162
reconstruction error=0.20875626750426007
iteration 1, reconstruction error: 0.20875626649257195, decrease = 1.011688122165566e-09
iteration 2, reconstruction error: 0.20875626548147477, decrease = 1.0110971782051337e-09
iteration 3, reconstruction error: 0.20875626447095005, decrease = 1.0105247194580613e-09
iteration 4, reconstruction error: 0.20875626346100548, decrease = 1.0099445724165435e-09
PARAFAC2 reconstruction error=0.8189074068236181, variation=4.441836898294582e-10.
Starting iteration 3163
reconstruction error=0.2087562621878458
iteration 1, reconstruction error: 0.20875626117666835, decrease = 1.011177447329814e-09
iteration 2, reconstruction error: 0.2087562601660811, decrease = 1.0105872527699233e-09
iteration 3, reconstruction error: 0.2087562591560717, decrease = 1.010009381685606e-09
iteration 4, reconstruction error: 0.20875625814664248, decrease = 1.009429234644088e-09
PARAFAC2 reconstruction error=0.8189074063796594, variation=4.439586476223667e-10.
Starting iteration 3164
reconstruction error=0.20875625687412255
iteration 1, reconstruction error: 0.20875625586346586, decrease = 1.0106566972201136e-09
iteration 2, reconstruction error: 0.20875625485338545, decrease = 1.0100804082036063e-09
iteration 3, reconstruction error: 0.208756253843886, decrease = 1.0094994562503956e-09
iteration 4, reconstruction error: 0.20875625283496438, decrease = 1.0089216129216538e-09
PARAFAC2 reconstruction error=0.818907405935926, variation=4.4373338337067025e-10.
Starting iteration 3165
reconstruction error=0.2087562515630935
iteration 1, reconstruction error: 0.20875625055294134, decrease = 1.0101521563665727e-09
iteration 2, reconstruction error: 0.20875624954338012, decrease = 1.0095612124061404e-09
iteration 3, reconstruction error: 0.2087562485343914, decrease = 1.0089887259034924e-09
iteration 4, reconstruction error: 0.20875624752597738, decrease = 1.0084140189547952e-09
PARAFAC2 reconstruction error=0.8189074054924171, variation=4.4350889627509105e-10.
Starting iteration 3166
reconstruction error=0.2087562462547587
iteration 1, reconstruction error: 0.20875624524511954, decrease = 1.009639150062469e-09
iteration 2, reconstruction error: 0.20875624423606054, decrease = 1.0090590030209512e-09
iteration 3, reconstruction error: 0.20875624322758712, decrease = 1.0084734158866127e-09
iteration 4, reconstruction error: 0.20875624221967998, decrease = 1.0079071466329026e-09
PARAFAC2 reconstruction error=0.8189074050491332, variation=4.43283965090302e-10.
Starting iteration 3167
reconstruction error=0.208756240949108
iteration 1, reconstruction error: 0.20875623993997958, decrease = 1.0091284197155659e-09
iteration 2, reconstruction error: 0.20875623893143128, decrease = 1.0085483004296236e-09
iteration 3, reconstruction error: 0.20875623792346315, decrease = 1.0079681256325301e-09
iteration 4, reconstruction error: 0.20875623691607365, decrease = 1.0073895051476711e-09
PARAFAC2 reconstruction error=0.8189074046060736, variation=4.4305958901702525e-10.
Starting iteration 3168
reconstruction error=0.20875623564613838
iteration 1, reconstruction error: 0.20875623463752374, decrease = 1.008614636255345e-09
iteration 2, reconstruction error: 0.20875623362948925, decrease = 1.008034489213827e-09
iteration 3, reconstruction error: 0.20875623262203413, decrease = 1.0074551193284265e-09
iteration 4, reconstruction error: 0.20875623161515072, decrease = 1.0068834099818957e-09
PARAFAC2 reconstruction error=0.8189074041632382, variation=4.4283543498835343e-10.
Starting iteration 3169
reconstruction error=0.20875623034586224
iteration 1, reconstruction error: 0.20875622933775442, decrease = 1.0081078194446036e-09
iteration 2, reconstruction error: 0.20875622833023064, decrease = 1.0075237866224995e-09
iteration 3, reconstruction error: 0.2087562273232793, decrease = 1.0069513278754272e-09
iteration 4, reconstruction error: 0.20875622631690505, decrease = 1.0063742617028026e-09
PARAFAC2 reconstruction error=0.8189074037206272, variation=4.426109478927742e-10.
Starting iteration 3170
reconstruction error=0.2087562250482641
iteration 1, reconstruction error: 0.20875622404067087, decrease = 1.0075932310726898e-09
iteration 2, reconstruction error: 0.20875622303365318, decrease = 1.0070176914567242e-09
iteration 3, reconstruction error: 0.20875622202720945, decrease = 1.0064437339085686e-09
iteration 4, reconstruction error: 0.20875622102133973, decrease = 1.0058697208492617e-09
PARAFAC2 reconstruction error=0.8189074032782403, variation=4.4238690488640486e-10.
Starting iteration 3171
reconstruction error=0.20875621975334555
iteration 1, reconstruction error: 0.2087562187462553, decrease = 1.0070902445313834e-09
iteration 2, reconstruction error: 0.20875621773974676, decrease = 1.006508543177631e-09
iteration 3, reconstruction error: 0.20875621673382144, decrease = 1.0059253152672198e-09
iteration 4, reconstruction error: 0.20875621572846167, decrease = 1.0053597676584758e-09
PARAFAC2 reconstruction error=0.8189074028360771, variation=4.421631949469429e-10.
Starting iteration 3172
reconstruction error=0.2087562144611065
iteration 1, reconstruction error: 0.208756213454527, decrease = 1.0065795141844802e-09
iteration 2, reconstruction error: 0.2087562124485361, decrease = 1.0059909016923996e-09
iteration 3, reconstruction error: 0.20875621144310838, decrease = 1.0054277133075828e-09
iteration 4, reconstruction error: 0.2087562104382539, decrease = 1.0048544774043933e-09
PARAFAC2 reconstruction error=0.8189074023941376, variation=4.419394850074809e-10.
Starting iteration 3173
reconstruction error=0.2087562091715463
iteration 1, reconstruction error: 0.2087562081654736, decrease = 1.0060726973737388e-09
iteration 2, reconstruction error: 0.20875620715999033, decrease = 1.0054832799699653e-09
iteration 3, reconstruction error: 0.2087562061550687, decrease = 1.0049216181418075e-09
iteration 4, reconstruction error: 0.20875620515072646, decrease = 1.0043422482564068e-09
PARAFAC2 reconstruction error=0.8189074019524217, variation=4.417158860903214e-10.
Starting iteration 3174
reconstruction error=0.2087562038846541
iteration 1, reconstruction error: 0.20875620287909133, decrease = 1.0055627719385285e-09
iteration 2, reconstruction error: 0.2087562018741126, decrease = 1.0049787391164244e-09
iteration 3, reconstruction error: 0.20875620086970398, decrease = 1.0044086118377038e-09
iteration 4, reconstruction error: 0.20875619986586783, decrease = 1.0038361530906315e-09
PARAFAC2 reconstruction error=0.8189074015109291, variation=4.414926202400693e-10.
Starting iteration 3175
reconstruction error=0.208756198600436
iteration 1, reconstruction error: 0.2087561975953832, decrease = 1.0050528187477425e-09
iteration 2, reconstruction error: 0.2087561965909167, decrease = 1.0044664822128624e-09
iteration 3, reconstruction error: 0.20875619558701186, decrease = 1.0039048481402801e-09
iteration 4, reconstruction error: 0.20875619458367947, decrease = 1.0033323893932078e-09
PARAFAC2 reconstruction error=0.8189074010696598, variation=4.412693543898172e-10.
Starting iteration 3176
reconstruction error=0.2087561933188945
iteration 1, reconstruction error: 0.2087561923143493, decrease = 1.0045451970253083e-09
iteration 2, reconstruction error: 0.20875619131037965, decrease = 1.0039696574093426e-09
iteration 3, reconstruction error: 0.2087561903069878, decrease = 1.0033918418361765e-09
iteration 4, reconstruction error: 0.20875618930416145, decrease = 1.0028263497385836e-09
PARAFAC2 reconstruction error=0.8189074006286138, variation=4.410459775172626e-10.
Starting iteration 3177
reconstruction error=0.2087561880400225
iteration 1, reconstruction error: 0.2087561870359795, decrease = 1.0040429876401191e-09
iteration 2, reconstruction error: 0.20875618603252438, decrease = 1.00345512454858e-09
iteration 3, reconstruction error: 0.20875618502963092, decrease = 1.0028934627204222e-09
iteration 4, reconstruction error: 0.20875618402731685, decrease = 1.002314065079446e-09
PARAFAC2 reconstruction error=0.8189074001877905, variation=4.408232667785228e-10.
Starting iteration 3178
reconstruction error=0.20875618276381236
iteration 1, reconstruction error: 0.20875618176028007, decrease = 1.0035322850487916e-09
iteration 2, reconstruction error: 0.20875618075733338, decrease = 1.002946697914453e-09
iteration 3, reconstruction error: 0.20875617975494368, decrease = 1.0023896990229986e-09
iteration 4, reconstruction error: 0.2087561787531318, decrease = 1.0018118834498324e-09
PARAFAC2 reconstruction error=0.8189073997471898, variation=4.4060066706208545e-10.
Starting iteration 3179
reconstruction error=0.20875617749026637
iteration 1, reconstruction error: 0.20875617648724787, decrease = 1.0030185015885706e-09
iteration 2, reconstruction error: 0.20875617548479952, decrease = 1.0024483465542744e-09
iteration 3, reconstruction error: 0.20875617448291822, decrease = 1.001881300144447e-09
iteration 4, reconstruction error: 0.20875617348160933, decrease = 1.001308896908526e-09
PARAFAC2 reconstruction error=0.818907399306812, variation=4.403778453010432e-10.
Starting iteration 3180
reconstruction error=0.20875617221938922
iteration 1, reconstruction error: 0.20875617121687065, decrease = 1.002518568160582e-09
iteration 2, reconstruction error: 0.2087561702149299, decrease = 1.0019407525874158e-09
iteration 3, reconstruction error: 0.20875616921355852, decrease = 1.0013713747092368e-09
iteration 4, reconstruction error: 0.2087561682127503, decrease = 1.0008082140799957e-09
PARAFAC2 reconstruction error=0.8189073988666564, variation=4.401555786515132e-10.
Starting iteration 3181
reconstruction error=0.20875616695117466
iteration 1, reconstruction error: 0.2087561659491591, decrease = 1.0020155538636999e-09
iteration 2, reconstruction error: 0.20875616494772212, decrease = 1.0014369888899921e-09
iteration 3, reconstruction error: 0.20875616394685448, decrease = 1.0008676387673887e-09
iteration 4, reconstruction error: 0.20875616294655006, decrease = 1.0003044226269964e-09
PARAFAC2 reconstruction error=0.8189073984267234, variation=4.399329789350759e-10.
Starting iteration 3182
reconstruction error=0.20875616168561348
iteration 1, reconstruction error: 0.20875616068410166, decrease = 1.0015118179218518e-09
iteration 2, reconstruction error: 0.20875615968317462, decrease = 1.0009270356992062e-09
iteration 3, reconstruction error: 0.2087561586828123, decrease = 1.0003623207577306e-09
iteration 4, reconstruction error: 0.2087561576830147, decrease = 9.99797605816255e-10
PARAFAC2 reconstruction error=0.8189073979870122, variation=4.3971126739705824e-10.
Starting iteration 3183
reconstruction error=0.20875615642270648
iteration 1, reconstruction error: 0.2087561554217092, decrease = 1.0009972850610893e-09
iteration 2, reconstruction error: 0.2087561544212836, decrease = 1.0004256034701342e-09
iteration 3, reconstruction error: 0.2087561534214266, decrease = 9.998570027480724e-10
iteration 4, reconstruction error: 0.20875615242213352, decrease = 9.99293064962714e-10
PARAFAC2 reconstruction error=0.8189073975475232, variation=4.394890007475283e-10.
Starting iteration 3184
reconstruction error=0.20875615116246518
iteration 1, reconstruction error: 0.20875615016196702, decrease = 1.0004981565447935e-09
iteration 2, reconstruction error: 0.2087561491620483, decrease = 9.999187311482416e-10
iteration 3, reconstruction error: 0.20875614816269505, decrease = 9.993532390506488e-10
iteration 4, reconstruction error: 0.20875614716390037, decrease = 9.987946858469599e-10
PARAFAC2 reconstruction error=0.818907397108256, variation=4.3926717818720817e-10.
Starting iteration 3185
reconstruction error=0.20875614590487418
iteration 1, reconstruction error: 0.20875614490487904, decrease = 9.999951422479114e-10
iteration 2, reconstruction error: 0.20875614390546327, decrease = 9.994157723625108e-10
iteration 3, reconstruction error: 0.20875614290661457, decrease = 9.988486981971079e-10
iteration 4, reconstruction error: 0.20875614190833058, decrease = 9.982839832556323e-10
PARAFAC2 reconstruction error=0.8189073966692105, variation=4.3904546664919053e-10.
Starting iteration 3186
reconstruction error=0.2087561406499381
iteration 1, reconstruction error: 0.20875613965044748, decrease = 9.994906291499461e-10
iteration 2, reconstruction error: 0.2087561386515332, decrease = 9.989142846222876e-10
iteration 3, reconstruction error: 0.20875613765318204, decrease = 9.98351151748622e-10
iteration 4, reconstruction error: 0.20875613665540185, decrease = 9.97780191802633e-10
PARAFAC2 reconstruction error=0.8189073962303863, variation=4.3882419920038274e-10.
Starting iteration 3187
reconstruction error=0.20875613539764779
iteration 1, reconstruction error: 0.20875613439866247, decrease = 9.98985311140288e-10
iteration 2, reconstruction error: 0.2087561334002496, decrease = 9.984128801487913e-10
iteration 3, reconstruction error: 0.20875613240240687, decrease = 9.97842725114495e-10
iteration 4, reconstruction error: 0.20875613140512347, decrease = 9.972833947546889e-10
PARAFAC2 reconstruction error=0.8189073957917836, variation=4.3860270970697e-10.
Starting iteration 3188
reconstruction error=0.20875613014800465
iteration 1, reconstruction error: 0.2087561291495231, decrease = 9.984815474428643e-10
iteration 2, reconstruction error: 0.20875612815162092, decrease = 9.979021775574637e-10
iteration 3, reconstruction error: 0.20875612715427888, decrease = 9.973420422859647e-10
iteration 4, reconstruction error: 0.20875612615749228, decrease = 9.967865977067447e-10
PARAFAC2 reconstruction error=0.818907395353402, variation=4.3838166430276715e-10.
Starting iteration 3189
reconstruction error=0.2087561249010126
iteration 1, reconstruction error: 0.20875612390303636, decrease = 9.979762571887818e-10
iteration 2, reconstruction error: 0.20875612290562642, decrease = 9.974099324239205e-10
iteration 3, reconstruction error: 0.20875612190878504, decrease = 9.9684138721301e-10
iteration 4, reconstruction error: 0.20875612091250992, decrease = 9.962751179593e-10
PARAFAC2 reconstruction error=0.8189073949152414, variation=4.381605078762618e-10.
Starting iteration 3190
reconstruction error=0.20875611965666468
iteration 1, reconstruction error: 0.20875611865918914, decrease = 9.974755466046759e-10
iteration 2, reconstruction error: 0.20875611766228677, decrease = 9.969023662126375e-10
iteration 3, reconstruction error: 0.2087561166659453, decrease = 9.963414815405969e-10
iteration 4, reconstruction error: 0.20875611567016625, decrease = 9.957790425563218e-10
PARAFAC2 reconstruction error=0.818907394477302, variation=4.3793946247205895e-10.
Starting iteration 3191
reconstruction error=0.20875611441495945
iteration 1, reconstruction error: 0.2087561134179807, decrease = 9.969787495567317e-10
iteration 2, reconstruction error: 0.20875611242158443, decrease = 9.963962710468621e-10
iteration 3, reconstruction error: 0.20875611142574516, decrease = 9.958392721554077e-10
iteration 4, reconstruction error: 0.20875611043046907, decrease = 9.95276083770591e-10
PARAFAC2 reconstruction error=0.8189073940395831, variation=4.3771886115706593e-10.
Starting iteration 3192
reconstruction error=0.2087561091758898
iteration 1, reconstruction error: 0.20875610817941942, decrease = 9.964703784337559e-10
iteration 2, reconstruction error: 0.20875610718352078, decrease = 9.958986413316495e-10
iteration 3, reconstruction error: 0.2087561061881868, decrease = 9.953339819013252e-10
iteration 4, reconstruction error: 0.20875610519340296, decrease = 9.947838386370478e-10
PARAFAC2 reconstruction error=0.8189073936020846, variation=4.3749848188667784e-10.
Starting iteration 3193
reconstruction error=0.2087561039394628
iteration 1, reconstruction error: 0.20875610294349545, decrease = 9.959673641368738e-10
iteration 2, reconstruction error: 0.20875610194809746, decrease = 9.953979862586948e-10
iteration 3, reconstruction error: 0.20875610095326264, decrease = 9.948348256294537e-10
iteration 4, reconstruction error: 0.20875609995898328, decrease = 9.942793532946581e-10
PARAFAC2 reconstruction error=0.8189073931648067, variation=4.372779915939873e-10.
Starting iteration 3194
reconstruction error=0.20875609870567613
iteration 1, reconstruction error: 0.208756097710211, decrease = 9.95465126996109e-10
iteration 2, reconstruction error: 0.20875609671530673, decrease = 9.94904270079644e-10
iteration 3, reconstruction error: 0.2087560957209772, decrease = 9.943295353753712e-10
iteration 4, reconstruction error: 0.20875609472719545, decrease = 9.937817513350211e-10
PARAFAC2 reconstruction error=0.818907392727749, variation=4.370576123235992e-10.
Starting iteration 3195
reconstruction error=0.20875609347452054
iteration 1, reconstruction error: 0.20875609247955376, decrease = 9.949667756359304e-10
iteration 2, reconstruction error: 0.20875609148515326, decrease = 9.944005063822203e-10
iteration 3, reconstruction error: 0.20875609049131824, decrease = 9.938350142846275e-10
iteration 4, reconstruction error: 0.20875608949804333, decrease = 9.932749067687041e-10
PARAFAC2 reconstruction error=0.8189073922909115, variation=4.368375661201185e-10.
Starting iteration 3196
reconstruction error=0.2087560882459999
iteration 1, reconstruction error: 0.208756087251533, decrease = 9.94466897719093e-10
iteration 2, reconstruction error: 0.2087560862576378, decrease = 9.938951883725622e-10
iteration 3, reconstruction error: 0.20875608526429962, decrease = 9.933381894811077e-10
iteration 4, reconstruction error: 0.20875608427151846, decrease = 9.927811628340777e-10
PARAFAC2 reconstruction error=0.818907391854294, variation=4.366175199166378e-10.
Starting iteration 3197
reconstruction error=0.2087560830201087
iteration 1, reconstruction error: 0.20875608202614251, decrease = 9.93966187134987e-10
iteration 2, reconstruction error: 0.20875608103274876, decrease = 9.933937561434902e-10
iteration 3, reconstruction error: 0.20875608003990354, decrease = 9.928452227025986e-10
iteration 4, reconstruction error: 0.2087560790476246, decrease = 9.922789256933129e-10
PARAFAC2 reconstruction error=0.8189073914178959, variation=4.363980288246694e-10.
Starting iteration 3198
reconstruction error=0.2087560777968509
iteration 1, reconstruction error: 0.20875607680337843, decrease = 9.934724709559362e-10
iteration 2, reconstruction error: 0.20875607581049, decrease = 9.92888438133832e-10
iteration 3, reconstruction error: 0.20875607481814776, decrease = 9.923422361612921e-10
iteration 4, reconstruction error: 0.20875607382636333, decrease = 9.917844323581448e-10
PARAFAC2 reconstruction error=0.8189073909817179, variation=4.361779826211887e-10.
Starting iteration 3199
reconstruction error=0.20875607257621803
iteration 1, reconstruction error: 0.20875607158324852, decrease = 9.929695121702053e-10
iteration 2, reconstruction error: 0.20875607059085383, decrease = 9.923946941992057e-10
iteration 3, reconstruction error: 0.20875606959901305, decrease = 9.918407761766446e-10
iteration 4, reconstruction error: 0.2087560686077285, decrease = 9.912845544413074e-10
PARAFAC2 reconstruction error=0.8189073905457591, variation=4.3595882459612767e-10.
Starting iteration 3200
reconstruction error=0.20875606735821003
iteration 1, reconstruction error: 0.20875606636574276, decrease = 9.924672750294405e-10
iteration 2, reconstruction error: 0.20875606537384334, decrease = 9.918994237079204e-10
iteration 3, reconstruction error: 0.20875606438250632, decrease = 9.91337012479221e-10
iteration 4, reconstruction error: 0.20875606339171476, decrease = 9.907915599072226e-10
PARAFAC2 reconstruction error=0.8189073901100196, variation=4.357395555487642e-10.
Starting iteration 3201
reconstruction error=0.20875606214283007
iteration 1, reconstruction error: 0.20875606115086193, decrease = 9.919681465131447e-10
iteration 2, reconstruction error: 0.2087560601594647, decrease = 9.913972143227312e-10
iteration 3, reconstruction error: 0.20875605916861448, decrease = 9.90850235194074e-10
iteration 4, reconstruction error: 0.2087560581783251, decrease = 9.90289378277609e-10
PARAFAC2 reconstruction error=0.8189073896744993, variation=4.3552028650140073e-10.
Starting iteration 3202
reconstruction error=0.20875605693007038
iteration 1, reconstruction error: 0.208756055938596, decrease = 9.914743748229427e-10
iteration 2, reconstruction error: 0.20875605494769867, decrease = 9.908973364058937e-10
iteration 3, reconstruction error: 0.20875605395734914, decrease = 9.90349524609968e-10
iteration 4, reconstruction error: 0.20875605296755584, decrease = 9.897933028746309e-10
PARAFAC2 reconstruction error=0.8189073892391983, variation=4.3530101745403726e-10.
Starting iteration 3203
reconstruction error=0.20875605171992792
iteration 1, reconstruction error: 0.2087560507289627, decrease = 9.909652265438496e-10
iteration 2, reconstruction error: 0.20875604973855758, decrease = 9.904051190279262e-10
iteration 3, reconstruction error: 0.20875604874870252, decrease = 9.898550590303756e-10
iteration 4, reconstruction error: 0.20875604775940756, decrease = 9.892949515144522e-10
PARAFAC2 reconstruction error=0.818907388804116, variation=4.350823035181861e-10.
Starting iteration 3204
reconstruction error=0.2087560465124065
iteration 1, reconstruction error: 0.2087560455219404, decrease = 9.904660980275537e-10
iteration 2, reconstruction error: 0.20875604453202826, decrease = 9.89912152249417e-10
iteration 3, reconstruction error: 0.20875604354267774, decrease = 9.893505181768347e-10
iteration 4, reconstruction error: 0.20875604255387809, decrease = 9.887996532675913e-10
PARAFAC2 reconstruction error=0.8189073883692521, variation=4.348638116269399e-10.
Starting iteration 3205
reconstruction error=0.20875604130750847
iteration 1, reconstruction error: 0.20875604031752992, decrease = 9.899785435862896e-10
iteration 2, reconstruction error: 0.20875603932812153, decrease = 9.894083885519933e-10
iteration 3, reconstruction error: 0.20875603833926473, decrease = 9.88856801997784e-10
iteration 4, reconstruction error: 0.20875603735095727, decrease = 9.883074636451994e-10
PARAFAC2 reconstruction error=0.8189073879346072, variation=4.3464498666878626e-10.
Starting iteration 3206
reconstruction error=0.20875603610521992
iteration 1, reconstruction error: 0.2087560351157444, decrease = 9.894755292894075e-10
iteration 2, reconstruction error: 0.20875603412682664, decrease = 9.889177532418358e-10
iteration 3, reconstruction error: 0.20875603313846128, decrease = 9.883653617759336e-10
iteration 4, reconstruction error: 0.2087560321506591, decrease = 9.878021733911169e-10
PARAFAC2 reconstruction error=0.8189073875001807, variation=4.3442649477754003e-10.
Starting iteration 3207
reconstruction error=0.208756030905544
iteration 1, reconstruction error: 0.2087560299165622, decrease = 9.889818131103567e-10
iteration 2, reconstruction error: 0.20875602892814513, decrease = 9.884170704133055e-10
iteration 3, reconstruction error: 0.208756027940282, decrease = 9.878631246351688e-10
iteration 4, reconstruction error: 0.2087560269529666, decrease = 9.8731539610597e-10
PARAFAC2 reconstruction error=0.8189073870659721, variation=4.342085579978061e-10.
Starting iteration 3208
reconstruction error=0.20875602570847837
iteration 1, reconstruction error: 0.20875602471999413, decrease = 9.884842389062953e-10
iteration 2, reconstruction error: 0.2087560237320731, decrease = 9.87921022765903e-10
iteration 3, reconstruction error: 0.20875602274470292, decrease = 9.873701856122352e-10
iteration 4, reconstruction error: 0.20875602175788435, decrease = 9.868185713024502e-10
PARAFAC2 reconstruction error=0.8189073866319818, variation=4.339902881511648e-10.
Starting iteration 3209
reconstruction error=0.2087560205140261
iteration 1, reconstruction error: 0.2087560195260364, decrease = 9.879897178155517e-10
iteration 2, reconstruction error: 0.20875601853861217, decrease = 9.874242257179588e-10
iteration 3, reconstruction error: 0.20875601755173265, decrease = 9.868795225465021e-10
iteration 4, reconstruction error: 0.2087560165654086, decrease = 9.863240502117065e-10
PARAFAC2 reconstruction error=0.8189073861982095, variation=4.337723513714309e-10.
Starting iteration 3210
reconstruction error=0.20875601532217178
iteration 1, reconstruction error: 0.2087560143346889, decrease = 9.874828732492347e-10
iteration 2, reconstruction error: 0.2087560133477515, decrease = 9.869373929216607e-10
iteration 3, reconstruction error: 0.20875601236136956, decrease = 9.863819483424408e-10
iteration 4, reconstruction error: 0.20875601137554464, decrease = 9.858249216954107e-10
PARAFAC2 reconstruction error=0.8189073857646548, variation=4.335546366363019e-10.
Starting iteration 3211
reconstruction error=0.2087560101329308
iteration 1, reconstruction error: 0.20875600914593706, decrease = 9.869937367401604e-10
iteration 2, reconstruction error: 0.20875600815950032, decrease = 9.86436737848706e-10
iteration 3, reconstruction error: 0.20875600717361598, decrease = 9.858843463828038e-10
iteration 4, reconstruction error: 0.20875600618827475, decrease = 9.853412252791571e-10
PARAFAC2 reconstruction error=0.8189073853313179, variation=4.333369219011729e-10.
Starting iteration 3212
reconstruction error=0.20875600494629398
iteration 1, reconstruction error: 0.20875600395979857, decrease = 9.864954131355574e-10
iteration 2, reconstruction error: 0.20875600297385324, decrease = 9.859453253824313e-10
iteration 3, reconstruction error: 0.2087560019884642, decrease = 9.853890481359429e-10
iteration 4, reconstruction error: 0.20875600100362057, decrease = 9.848436233195201e-10
PARAFAC2 reconstruction error=0.8189073848981984, variation=4.331195402329513e-10.
Starting iteration 3213
reconstruction error=0.20875599976226053
iteration 1, reconstruction error: 0.20875599877625733, decrease = 9.860031957575899e-10
iteration 2, reconstruction error: 0.2087559977908065, decrease = 9.854508320472632e-10
iteration 3, reconstruction error: 0.20875599680590656, decrease = 9.848999393824442e-10
iteration 4, reconstruction error: 0.2087559958215613, decrease = 9.843452719593415e-10
PARAFAC2 reconstruction error=0.8189073844652962, variation=4.329021585647297e-10.
Starting iteration 3214
reconstruction error=0.20875599458082889
iteration 1, reconstruction error: 0.20875599359531324, decrease = 9.855156413163257e-10
iteration 2, reconstruction error: 0.2087559926103585, decrease = 9.849547566442851e-10
iteration 3, reconstruction error: 0.208755991625953, decrease = 9.844054738028518e-10
iteration 4, reconstruction error: 0.2087559906421023, decrease = 9.838507231130222e-10
PARAFAC2 reconstruction error=0.8189073840326113, variation=4.3268488791881055e-10.
Starting iteration 3215
reconstruction error=0.2087559894019898
iteration 1, reconstruction error: 0.20875598841697407, decrease = 9.850157356439126e-10
iteration 2, reconstruction error: 0.20875598743251228, decrease = 9.84461789865776e-10
iteration 3, reconstruction error: 0.20875598644859591, decrease = 9.839163650493532e-10
iteration 4, reconstruction error: 0.20875598546523272, decrease = 9.833631964273337e-10
PARAFAC2 reconstruction error=0.8189073836001431, variation=4.324681723844037e-10.
Starting iteration 3216
reconstruction error=0.20875598422574948
iteration 1, reconstruction error: 0.20875598324122596, decrease = 9.84523518265945e-10
iteration 2, reconstruction error: 0.20875598225725633, decrease = 9.839696279989596e-10
iteration 3, reconstruction error: 0.2087559812738422, decrease = 9.834141279085884e-10
iteration 4, reconstruction error: 0.20875598029096348, decrease = 9.82878722854963e-10
PARAFAC2 reconstruction error=0.818907383167892, variation=4.322511237830895e-10.
Starting iteration 3217
reconstruction error=0.20875597905210405
iteration 1, reconstruction error: 0.20875597806807578, decrease = 9.840282755302354e-10
iteration 2, reconstruction error: 0.20875597708459914, decrease = 9.834766334648748e-10
iteration 3, reconstruction error: 0.20875597610167257, decrease = 9.829265734673243e-10
iteration 4, reconstruction error: 0.20875597511929067, decrease = 9.823818980514432e-10
PARAFAC2 reconstruction error=0.8189073827358578, variation=4.3203418620407774e-10.
Starting iteration 3218
reconstruction error=0.20875597388105585
iteration 1, reconstruction error: 0.2087559728975167, decrease = 9.835391390211612e-10
iteration 2, reconstruction error: 0.20875597191452838, decrease = 9.82988329623069e-10
iteration 3, reconstruction error: 0.20875597093209244, decrease = 9.824359381571668e-10
iteration 4, reconstruction error: 0.20875596995020507, decrease = 9.818873769606995e-10
PARAFAC2 reconstruction error=0.8189073823040397, variation=4.318181368034857e-10.
Starting iteration 3219
reconstruction error=0.20875596871259172
iteration 1, reconstruction error: 0.20875596772954938, decrease = 9.83042341973217e-10
iteration 2, reconstruction error: 0.20875596674705713, decrease = 9.82492254220091e-10
iteration 3, reconstruction error: 0.20875596576511107, decrease = 9.81946052247551e-10
iteration 4, reconstruction error: 0.2087559647837151, decrease = 9.813959644944248e-10
PARAFAC2 reconstruction error=0.8189073818724385, variation=4.3160119922447393e-10.
Starting iteration 3220
reconstruction error=0.20875596354672019
iteration 1, reconstruction error: 0.2087559625641654, decrease = 9.82554787531953e-10
iteration 2, reconstruction error: 0.20875596158216456, decrease = 9.820008417538162e-10
iteration 3, reconstruction error: 0.20875596060071455, decrease = 9.814500046001484e-10
iteration 4, reconstruction error: 0.2087559596198046, decrease = 9.809099643653951e-10
PARAFAC2 reconstruction error=0.8189073814410534, variation=4.313851498238819e-10.
Starting iteration 3221
reconstruction error=0.20875595838343505
iteration 1, reconstruction error: 0.2087559574013748, decrease = 9.820602664412093e-10
iteration 2, reconstruction error: 0.2087559564198692, decrease = 9.815055990181065e-10
iteration 3, reconstruction error: 0.20875595543890446, decrease = 9.809647261160848e-10
iteration 4, reconstruction error: 0.20875595445848283, decrease = 9.804216327680138e-10
PARAFAC2 reconstruction error=0.8189073810098845, variation=4.311688783786849e-10.
Starting iteration 3222
reconstruction error=0.20875595322273716
iteration 1, reconstruction error: 0.20875595224116522, decrease = 9.815719348438279e-10
iteration 2, reconstruction error: 0.2087559512601472, decrease = 9.810180168212668e-10
iteration 3, reconstruction error: 0.20875595027967853, decrease = 9.804686784686822e-10
iteration 4, reconstruction error: 0.20875594929974983, decrease = 9.799286937450802e-10
PARAFAC2 reconstruction error=0.8189073805789314, variation=4.3095305102269776e-10.
Starting iteration 3223
reconstruction error=0.20875594806462563
iteration 1, reconstruction error: 0.20875594708354278, decrease = 9.810828538459049e-10
iteration 2, reconstruction error: 0.2087559461030162, decrease = 9.805265765994164e-10
iteration 3, reconstruction error: 0.20875594512303738, decrease = 9.79978820314642e-10
iteration 4, reconstruction error: 0.20875594414359627, decrease = 9.794411115482404e-10
PARAFAC2 reconstruction error=0.8189073801481941, variation=4.307373346890131e-10.
Starting iteration 3224
reconstruction error=0.2087559429090921
iteration 1, reconstruction error: 0.20875594192850683, decrease = 9.805852796418435e-10
iteration 2, reconstruction error: 0.2087559409484655, decrease = 9.800413258709284e-10
iteration 3, reconstruction error: 0.20875593996897654, decrease = 9.794889621606018e-10
iteration 4, reconstruction error: 0.20875593899002456, decrease = 9.789519750391662e-10
PARAFAC2 reconstruction error=0.8189073797176726, variation=4.3052150733302597e-10.
Starting iteration 3225
reconstruction error=0.2087559377561373
iteration 1, reconstruction error: 0.20875593677603574, decrease = 9.801015554700143e-10
iteration 2, reconstruction error: 0.20875593579649432, decrease = 9.795414201985153e-10
iteration 3, reconstruction error: 0.20875593481749602, decrease = 9.789982990948687e-10
iteration 4, reconstruction error: 0.20875593383903082, decrease = 9.784651977540193e-10
PARAFAC2 reconstruction error=0.8189073792873665, variation=4.303061240662487e-10.
Starting iteration 3226
reconstruction error=0.20875593260576505
iteration 1, reconstruction error: 0.20875593162615802, decrease = 9.796070343792707e-10
iteration 2, reconstruction error: 0.20875593064710027, decrease = 9.790577515378374e-10
iteration 3, reconstruction error: 0.20875592966858722, decrease = 9.785130483663806e-10
iteration 4, reconstruction error: 0.2087559286906142, decrease = 9.779730081316274e-10
PARAFAC2 reconstruction error=0.8189073788572756, variation=4.3009085182177387e-10.
Starting iteration 3227
reconstruction error=0.20875592745797156
iteration 1, reconstruction error: 0.20875592647884514, decrease = 9.791264188319104e-10
iteration 2, reconstruction error: 0.20875592550028116, decrease = 9.785639798476353e-10
iteration 3, reconstruction error: 0.2087559245222541, decrease = 9.78027048237351e-10
iteration 4, reconstruction error: 0.20875592354477251, decrease = 9.774815956653526e-10
PARAFAC2 reconstruction error=0.8189073784274002, variation=4.298753575326941e-10.
Starting iteration 3228
reconstruction error=0.20875592231274523
iteration 1, reconstruction error: 0.20875592133411716, decrease = 9.786280674717318e-10
iteration 2, reconstruction error: 0.20875592035604074, decrease = 9.780764254063712e-10
iteration 3, reconstruction error: 0.20875591937850205, decrease = 9.77538688884394e-10
iteration 4, reconstruction error: 0.20875591840150878, decrease = 9.769932640679713e-10
PARAFAC2 reconstruction error=0.8189073779977396, variation=4.296606403997316e-10.
Starting iteration 3229
reconstruction error=0.20875591717009145
iteration 1, reconstruction error: 0.20875591619195172, decrease = 9.781397358743504e-10
iteration 2, reconstruction error: 0.2087559152143644, decrease = 9.775873166528726e-10
iteration 3, reconstruction error: 0.20875591423731943, decrease = 9.770449727053432e-10
iteration 4, reconstruction error: 0.20875591326081297, decrease = 9.765064590272488e-10
PARAFAC2 reconstruction error=0.818907377568294, variation=4.2944559019986173e-10.
Starting iteration 3230
reconstruction error=0.20875591203001792
iteration 1, reconstruction error: 0.2087559110523704, decrease = 9.776475184963829e-10
iteration 2, reconstruction error: 0.208755910075266, decrease = 9.771043973927362e-10
iteration 3, reconstruction error: 0.20875590909870398, decrease = 9.765620256896312e-10
iteration 4, reconstruction error: 0.2087559081226866, decrease = 9.760173780293258e-10
PARAFAC2 reconstruction error=0.8189073771390631, variation=4.292308730668992e-10.
Starting iteration 3231
reconstruction error=0.2087559068925047
iteration 1, reconstruction error: 0.20875590591534396, decrease = 9.77160741211236e-10
iteration 2, reconstruction error: 0.20875590493873022, decrease = 9.766137343270032e-10
iteration 3, reconstruction error: 0.2087559039626596, decrease = 9.760706132233565e-10
iteration 4, reconstruction error: 0.2087559029871244, decrease = 9.75535208169731e-10
PARAFAC2 reconstruction error=0.818907376710047, variation=4.290161559339367e-10.
Starting iteration 3232
reconstruction error=0.20875590175757017
iteration 1, reconstruction error: 0.20875590078089004, decrease = 9.766801256638757e-10
iteration 2, reconstruction error: 0.2087558998047639, decrease = 9.761261521301634e-10
iteration 3, reconstruction error: 0.20875589882918236, decrease = 9.755815322254335e-10
iteration 4, reconstruction error: 0.2087558978541409, decrease = 9.750414642351046e-10
PARAFAC2 reconstruction error=0.818907376281245, variation=4.288019939124865e-10.
Starting iteration 3233
reconstruction error=0.20875589662518973
iteration 1, reconstruction error: 0.20875589564900182, decrease = 9.761879082859082e-10
iteration 2, reconstruction error: 0.20875589467336397, decrease = 9.756378482883576e-10
iteration 3, reconstruction error: 0.20875589369827002, decrease = 9.750939500285938e-10
iteration 4, reconstruction error: 0.20875589272370532, decrease = 9.74564706712755e-10
PARAFAC2 reconstruction error=0.8189073758526577, variation=4.28587276779524e-10.
Starting iteration 3234
reconstruction error=0.20875589149537957
iteration 1, reconstruction error: 0.20875589051968074, decrease = 9.756988272879852e-10
iteration 2, reconstruction error: 0.20875588954452737, decrease = 9.751533747159868e-10
iteration 3, reconstruction error: 0.20875588856991792, decrease = 9.746094487006474e-10
iteration 4, reconstruction error: 0.20875588759584307, decrease = 9.740748485587147e-10
PARAFAC2 reconstruction error=0.8189073754242844, variation=4.2837333680267875e-10.
Starting iteration 3235
reconstruction error=0.20875588636813275
iteration 1, reconstruction error: 0.20875588539291917, decrease = 9.752135765594971e-10
iteration 2, reconstruction error: 0.20875588441825338, decrease = 9.74665792519147e-10
iteration 3, reconstruction error: 0.20875588344412915, decrease = 9.74124225727735e-10
iteration 4, reconstruction error: 0.20875588247054033, decrease = 9.735888206741095e-10
PARAFAC2 reconstruction error=0.8189073749961249, variation=4.2815950784813595e-10.
Starting iteration 3236
reconstruction error=0.20875588124343766
iteration 1, reconstruction error: 0.2087558802687132, decrease = 9.747244678059985e-10
iteration 2, reconstruction error: 0.20875587929454115, decrease = 9.741720485845207e-10
iteration 3, reconstruction error: 0.2087558783208983, decrease = 9.736428330242575e-10
iteration 4, reconstruction error: 0.20875587734779552, decrease = 9.731027927895042e-10
PARAFAC2 reconstruction error=0.8189073745681794, variation=4.279454568489882e-10.
Starting iteration 3237
reconstruction error=0.2087558761213113
iteration 1, reconstruction error: 0.20875587514707056, decrease = 9.742407436341693e-10
iteration 2, reconstruction error: 0.2087558741733814, decrease = 9.7368915707996e-10
iteration 3, reconstruction error: 0.20875587320022385, decrease = 9.731575545401938e-10
iteration 4, reconstruction error: 0.2087558722276086, decrease = 9.7261523834824e-10
PARAFAC2 reconstruction error=0.8189073741404478, variation=4.277316278944454e-10.
Starting iteration 3238
reconstruction error=0.2087558710017391
iteration 1, reconstruction error: 0.2087558700279859, decrease = 9.737531891929052e-10
iteration 2, reconstruction error: 0.20875586905477894, decrease = 9.732069594647896e-10
iteration 3, reconstruction error: 0.20875586808211274, decrease = 9.726661975850703e-10
iteration 4, reconstruction error: 0.20875586710997276, decrease = 9.721399796269736e-10
PARAFAC2 reconstruction error=0.8189073737129294, variation=4.275183540514149e-10.
Starting iteration 3239
reconstruction error=0.2087558658847202
iteration 1, reconstruction error: 0.20875586491145304, decrease = 9.732671613083e-10
iteration 2, reconstruction error: 0.20875586393873208, decrease = 9.7272095933576e-10
iteration 3, reconstruction error: 0.20875586296654652, decrease = 9.721855542821345e-10
iteration 4, reconstruction error: 0.2087558619948964, decrease = 9.716501214729334e-10
PARAFAC2 reconstruction error=0.8189073732856247, variation=4.2730474714147704e-10.
Starting iteration 3240
reconstruction error=0.20875586077025535
iteration 1, reconstruction error: 0.2087558597974742, decrease = 9.727811334236947e-10
iteration 2, reconstruction error: 0.20875585882523773, decrease = 9.722364857633892e-10
iteration 3, reconstruction error: 0.20875585785353667, decrease = 9.71701052954188e-10
iteration 4, reconstruction error: 0.2087558568823687, decrease = 9.711679793689143e-10
PARAFAC2 reconstruction error=0.8189073728585329, variation=4.2709180636535393e-10.
Starting iteration 3241
reconstruction error=0.20875585565834462
iteration 1, reconstruction error: 0.2087558546860487, decrease = 9.722959104507822e-10
iteration 2, reconstruction error: 0.20875585371429364, decrease = 9.71755065304336e-10
iteration 3, reconstruction error: 0.2087558527430786, decrease = 9.712150528251584e-10
iteration 4, reconstruction error: 0.208755851772392, decrease = 9.706865866654368e-10
PARAFAC2 reconstruction error=0.8189073724316543, variation=4.2687853252232344e-10.
Starting iteration 3242
reconstruction error=0.2087558505489826
iteration 1, reconstruction error: 0.20875584957716578, decrease = 9.718168214600809e-10
iteration 2, reconstruction error: 0.20875584860589746, decrease = 9.712683157747648e-10
iteration 3, reconstruction error: 0.20875584763516458, decrease = 9.707328829655637e-10
iteration 4, reconstruction error: 0.20875584666496402, decrease = 9.702005587808316e-10
PARAFAC2 reconstruction error=0.8189073720049888, variation=4.2666559174620033e-10.
Starting iteration 3243
reconstruction error=0.20875584544215928
iteration 1, reconstruction error: 0.20875584447083695, decrease = 9.713223281249128e-10
iteration 2, reconstruction error: 0.20875584350005003, decrease = 9.707869230712873e-10
iteration 3, reconstruction error: 0.20875584252980317, decrease = 9.702468550809584e-10
iteration 4, reconstruction error: 0.2087558415600817, decrease = 9.697214697901302e-10
PARAFAC2 reconstruction error=0.818907371578536, variation=4.264527619923797e-10.
Starting iteration 3244
reconstruction error=0.20875584033788924
iteration 1, reconstruction error: 0.20875583936705144, decrease = 9.708377990413908e-10
iteration 2, reconstruction error: 0.20875583839675363, decrease = 9.702978143177887e-10
iteration 3, reconstruction error: 0.20875583742698198, decrease = 9.697716518708432e-10
iteration 4, reconstruction error: 0.20875583645774576, decrease = 9.692362190616421e-10
PARAFAC2 reconstruction error=0.818907371152296, variation=4.262400432608615e-10.
Starting iteration 3245
reconstruction error=0.20875583523616414
iteration 1, reconstruction error: 0.20875583426580846, decrease = 9.703556846929473e-10
iteration 2, reconstruction error: 0.20875583329599284, decrease = 9.698156167026184e-10
iteration 3, reconstruction error: 0.2087558323267072, decrease = 9.692856517418136e-10
iteration 4, reconstruction error: 0.20875583135795853, decrease = 9.68748664620378e-10
PARAFAC2 reconstruction error=0.8189073707262684, variation=4.2602754657394826e-10.
Starting iteration 3246
reconstruction error=0.20875583013698232
iteration 1, reconstruction error: 0.2087558291671119, decrease = 9.698704062088837e-10
iteration 2, reconstruction error: 0.20875582819777685, decrease = 9.693350566664094e-10
iteration 3, reconstruction error: 0.20875582722897265, decrease = 9.688042035271849e-10
iteration 4, reconstruction error: 0.2087558262607015, decrease = 9.682711576974867e-10
PARAFAC2 reconstruction error=0.8189073703004534, variation=4.25815049887035e-10.
Starting iteration 3247
reconstruction error=0.2087558250403446
iteration 1, reconstruction error: 0.2087558240709548, decrease = 9.693897906615234e-10
iteration 2, reconstruction error: 0.20875582310210272, decrease = 9.688520818951218e-10
iteration 3, reconstruction error: 0.20875582213377986, decrease = 9.683228663348586e-10
iteration 4, reconstruction error: 0.20875582116598781, decrease = 9.677920409512097e-10
PARAFAC2 reconstruction error=0.8189073698748501, variation=4.256032193339365e-10.
Starting iteration 3248
reconstruction error=0.20875581994623713
iteration 1, reconstruction error: 0.20875581897732717, decrease = 9.689099522702804e-10
iteration 2, reconstruction error: 0.20875581800896262, decrease = 9.683645552094333e-10
iteration 3, reconstruction error: 0.20875581704112736, decrease = 9.678352563824433e-10
iteration 4, reconstruction error: 0.20875581607381516, decrease = 9.673122025599667e-10
PARAFAC2 reconstruction error=0.8189073694494593, variation=4.2539083366932573e-10.
Starting iteration 3249
reconstruction error=0.20875581485467368
iteration 1, reconstruction error: 0.20875581388624895, decrease = 9.68424729297368e-10
iteration 2, reconstruction error: 0.20875581291836195, decrease = 9.678869927753908e-10
iteration 3, reconstruction error: 0.2087558119509996, decrease = 9.673623568851042e-10
iteration 4, reconstruction error: 0.20875581098418033, decrease = 9.668192635370332e-10
PARAFAC2 reconstruction error=0.8189073690242802, variation=4.251791141385297e-10.
Starting iteration 3250
reconstruction error=0.20875580976564667
iteration 1, reconstruction error: 0.20875580879770028, decrease = 9.679463897072083e-10
iteration 2, reconstruction error: 0.20875580783029854, decrease = 9.674017420469028e-10
iteration 3, reconstruction error: 0.20875580686341985, decrease = 9.668786882244262e-10
iteration 4, reconstruction error: 0.20875580589707274, decrease = 9.663471134402357e-10
PARAFAC2 reconstruction error=0.8189073685993128, variation=4.249673946077337e-10.
Starting iteration 3251
reconstruction error=0.2087558046791491
iteration 1, reconstruction error: 0.20875580371168717, decrease = 9.674619161348375e-10
iteration 2, reconstruction error: 0.2087558027447622, decrease = 9.669249845245531e-10
iteration 3, reconstruction error: 0.20875580177836567, decrease = 9.663965183648315e-10
iteration 4, reconstruction error: 0.20875580081249764, decrease = 9.658680244495343e-10
PARAFAC2 reconstruction error=0.8189073681745572, variation=4.247555640546352e-10.
Starting iteration 3252
reconstruction error=0.20875579959518253
iteration 1, reconstruction error: 0.20875579862820276, decrease = 9.669797740308184e-10
iteration 2, reconstruction error: 0.2087557976617638, decrease = 9.664389566399478e-10
iteration 3, reconstruction error: 0.20875579669584712, decrease = 9.659166799735885e-10
iteration 4, reconstruction error: 0.20875579573045897, decrease = 9.653881583027157e-10
PARAFAC2 reconstruction error=0.818907367750013, variation=4.245441775907466e-10.
Starting iteration 3253
reconstruction error=0.2087557945137501
iteration 1, reconstruction error: 0.20875579354724938, decrease = 9.665007127956926e-10
iteration 2, reconstruction error: 0.20875579258128563, decrease = 9.659637534298326e-10
iteration 3, reconstruction error: 0.2087557916158496, decrease = 9.654360366706527e-10
iteration 4, reconstruction error: 0.20875579065094282, decrease = 9.649067655992383e-10
PARAFAC2 reconstruction error=0.8189073673256801, variation=4.243329021491604e-10.
Starting iteration 3254
reconstruction error=0.2087557894348463
iteration 1, reconstruction error: 0.2087557884688208, decrease = 9.660254818300018e-10
iteration 2, reconstruction error: 0.2087557875033439, decrease = 9.654769206335345e-10
iteration 3, reconstruction error: 0.2087557865383846, decrease = 9.64959279148303e-10
iteration 4, reconstruction error: 0.2087557855739592, decrease = 9.644254006513364e-10
PARAFAC2 reconstruction error=0.8189073669015584, variation=4.241217377298767e-10.
Starting iteration 3255
reconstruction error=0.20875578435846423
iteration 1, reconstruction error: 0.20875578339292478, decrease = 9.655394539453965e-10
iteration 2, reconstruction error: 0.2087557824279215, decrease = 9.650032717356538e-10
iteration 3, reconstruction error: 0.208755781463449, decrease = 9.644725018631561e-10
iteration 4, reconstruction error: 0.2087557804994973, decrease = 9.639516962423045e-10
PARAFAC2 reconstruction error=0.8189073664776477, variation=4.2391068433289547e-10.
Starting iteration 3256
reconstruction error=0.20875577928461558
iteration 1, reconstruction error: 0.20875577831954903, decrease = 9.650665544480574e-10
iteration 2, reconstruction error: 0.2087557773550264, decrease = 9.64522628432718e-10
iteration 3, reconstruction error: 0.20875577639103218, decrease = 9.639942177841476e-10
iteration 4, reconstruction error: 0.20875577542756418, decrease = 9.63467999826051e-10
PARAFAC2 reconstruction error=0.8189073660539478, variation=4.236999640028216e-10.
Starting iteration 3257
reconstruction error=0.20875577421327937
iteration 1, reconstruction error: 0.2087557732486996, decrease = 9.645797771629105e-10
iteration 2, reconstruction error: 0.20875577228465528, decrease = 9.640443165981338e-10
iteration 3, reconstruction error: 0.20875577132113707, decrease = 9.635182096623396e-10
iteration 4, reconstruction error: 0.2087557703581435, decrease = 9.62993573772053e-10
PARAFAC2 reconstruction error=0.8189073656304588, variation=4.2348891060584037e-10.
Starting iteration 3258
reconstruction error=0.20875576914446653
iteration 1, reconstruction error: 0.20875576818037048, decrease = 9.640960529910814e-10
iteration 2, reconstruction error: 0.2087557672168083, decrease = 9.635621744941147e-10
iteration 3, reconstruction error: 0.2087557662537661, decrease = 9.630422015405316e-10
iteration 4, reconstruction error: 0.2087557652912485, decrease = 9.625175934058205e-10
PARAFAC2 reconstruction error=0.8189073652071803, variation=4.232785233426739e-10.
Starting iteration 3259
reconstruction error=0.20875576407817692
iteration 1, reconstruction error: 0.20875576311455918, decrease = 9.636177411564972e-10
iteration 2, reconstruction error: 0.20875576215147068, decrease = 9.630884978406584e-10
iteration 3, reconstruction error: 0.20875576118890907, decrease = 9.62561613748747e-10
iteration 4, reconstruction error: 0.20875576022687442, decrease = 9.620346463901086e-10
PARAFAC2 reconstruction error=0.8189073647841123, variation=4.23068025057205e-10.
Starting iteration 3260
reconstruction error=0.20875575901440835
iteration 1, reconstruction error: 0.20875575805126814, decrease = 9.631402064780303e-10
iteration 2, reconstruction error: 0.20875575708865873, decrease = 9.62609408849957e-10
iteration 3, reconstruction error: 0.20875575612657082, decrease = 9.62087909339715e-10
iteration 4, reconstruction error: 0.20875575516501063, decrease = 9.61560192580535e-10
PARAFAC2 reconstruction error=0.8189073643612546, variation=4.2285774881634097e-10.
Starting iteration 3261
reconstruction error=0.20875575395315388
iteration 1, reconstruction error: 0.20875575299048965, decrease = 9.62664226111798e-10
iteration 2, reconstruction error: 0.20875575202835622, decrease = 9.621334284837246e-10
iteration 3, reconstruction error: 0.20875575106675123, decrease = 9.616049900795787e-10
iteration 4, reconstruction error: 0.20875575010566935, decrease = 9.61081880745951e-10
PARAFAC2 reconstruction error=0.8189073639386071, variation=4.2264747257547697e-10.
Starting iteration 3262
reconstruction error=0.20875574889441265
iteration 1, reconstruction error: 0.2087557479322221, decrease = 9.621905494583416e-10
iteration 2, reconstruction error: 0.20875574697057317, decrease = 9.616489271557782e-10
iteration 3, reconstruction error: 0.20875574600944186, decrease = 9.611313134261223e-10
iteration 4, reconstruction error: 0.20875574504883057, decrease = 9.60611284961388e-10
PARAFAC2 reconstruction error=0.8189073635161693, variation=4.224377514461253e-10.
Starting iteration 3263
reconstruction error=0.20875574383818396
iteration 1, reconstruction error: 0.2087557428764725, decrease = 9.617114604676402e-10
iteration 2, reconstruction error: 0.20875574191529336, decrease = 9.61179136282908e-10
iteration 3, reconstruction error: 0.20875574095464117, decrease = 9.606521966798454e-10
iteration 4, reconstruction error: 0.20875573999451125, decrease = 9.60129920013486e-10
PARAFAC2 reconstruction error=0.8189073630939414, variation=4.222279192944711e-10.
Starting iteration 3264
reconstruction error=0.20875573878446627
iteration 1, reconstruction error: 0.20875573782323156, decrease = 9.612347029452906e-10
iteration 2, reconstruction error: 0.20875573686253535, decrease = 9.606962170227717e-10
iteration 3, reconstruction error: 0.2087557359023576, decrease = 9.601777428702718e-10
iteration 4, reconstruction error: 0.2087557349426952, decrease = 9.596624050978164e-10
PARAFAC2 reconstruction error=0.8189073626719234, variation=4.220179761205145e-10.
Starting iteration 3265
reconstruction error=0.20875573373325496
iteration 1, reconstruction error: 0.208755732772497, decrease = 9.60757945422941e-10
iteration 2, reconstruction error: 0.20875573181227294, decrease = 9.602240669259743e-10
iteration 3, reconstruction error: 0.2087557308525789, decrease = 9.596940464540182e-10
iteration 4, reconstruction error: 0.20875572989339786, decrease = 9.591810401499146e-10
PARAFAC2 reconstruction error=0.8189073622501151, variation=4.218083660134653e-10.
Starting iteration 3266
reconstruction error=0.20875572868455544
iteration 1, reconstruction error: 0.20875572772427348, decrease = 9.602819650567085e-10
iteration 2, reconstruction error: 0.20875572676453003, decrease = 9.59743451378614e-10
iteration 3, reconstruction error: 0.20875572580530116, decrease = 9.592288630067003e-10
iteration 4, reconstruction error: 0.20875572484660307, decrease = 9.586980931342026e-10
PARAFAC2 reconstruction error=0.8189073618285159, variation=4.215991999956259e-10.
Starting iteration 3267
reconstruction error=0.20875572363835296
iteration 1, reconstruction error: 0.20875572267855316, decrease = 9.597997951971138e-10
iteration 2, reconstruction error: 0.20875572171928108, decrease = 9.592720784379338e-10
iteration 3, reconstruction error: 0.20875572076054133, decrease = 9.587397542532017e-10
iteration 4, reconstruction error: 0.20875571980230379, decrease = 9.582375448680125e-10
PARAFAC2 reconstruction error=0.8189073614071262, variation=4.2138970091087913e-10.
Starting iteration 3268
reconstruction error=0.20875571859466616
iteration 1, reconstruction error: 0.20875571763533773, decrease = 9.593284222564336e-10
iteration 2, reconstruction error: 0.2087557166765455, decrease = 9.587922400466908e-10
iteration 3, reconstruction error: 0.20875571571826937, decrease = 9.582761251181182e-10
iteration 4, reconstruction error: 0.2087557147605094, decrease = 9.5775998243397e-10
PARAFAC2 reconstruction error=0.8189073609859453, variation=4.2118086795994714e-10.
Starting iteration 3269
reconstruction error=0.20875571355347725
iteration 1, reconstruction error: 0.20875571259462555, decrease = 9.588516924896595e-10
iteration 2, reconstruction error: 0.20875571163630316, decrease = 9.583223936626695e-10
iteration 3, reconstruction error: 0.2087557106785007, decrease = 9.578024484646619e-10
iteration 4, reconstruction error: 0.20875570972122368, decrease = 9.57277035418258e-10
PARAFAC2 reconstruction error=0.8189073605649736, variation=4.2097170194210776e-10.
Starting iteration 3270
reconstruction error=0.20875570851478312
iteration 1, reconstruction error: 0.20875570755640976, decrease = 9.583733528994998e-10
iteration 2, reconstruction error: 0.2087557065985672, decrease = 9.578425552714265e-10
iteration 3, reconstruction error: 0.2087557056412377, decrease = 9.573295212117472e-10
iteration 4, reconstruction error: 0.20875570468443197, decrease = 9.56805717988729e-10
PARAFAC2 reconstruction error=0.8189073601442107, variation=4.2076286899117576e-10.
Starting iteration 3271
reconstruction error=0.20875570347859468
iteration 1, reconstruction error: 0.20875570252069114, decrease = 9.57903534271054e-10
iteration 2, reconstruction error: 0.20875570156332457, decrease = 9.57366574905194e-10
iteration 3, reconstruction error: 0.20875570060646717, decrease = 9.568573988705253e-10
iteration 4, reconstruction error: 0.2087556996501367, decrease = 9.563304592674626e-10
PARAFAC2 reconstruction error=0.8189073597236565, variation=4.205542580848487e-10.
Starting iteration 3272
reconstruction error=0.20875569844489864
iteration 1, reconstruction error: 0.20875569748747805, decrease = 9.57420587255342e-10
iteration 2, reconstruction error: 0.2087556965305782, decrease = 9.568998371456416e-10
iteration 3, reconstruction error: 0.20875569557420298, decrease = 9.563752290109306e-10
iteration 4, reconstruction error: 0.2087556946183369, decrease = 9.558660807318375e-10
PARAFAC2 reconstruction error=0.8189073593033107, variation=4.203457582008241e-10.
Starting iteration 3273
reconstruction error=0.20875569341370215
iteration 1, reconstruction error: 0.20875569245674752, decrease = 9.569546266519069e-10
iteration 2, reconstruction error: 0.2087556915003252, decrease = 9.564223302227504e-10
iteration 3, reconstruction error: 0.2087556905444252, decrease = 9.558999980452398e-10
iteration 4, reconstruction error: 0.20875568958903667, decrease = 9.55388518297795e-10
PARAFAC2 reconstruction error=0.8189073588831737, variation=4.2013703627219456e-10.
Starting iteration 3274
reconstruction error=0.20875568838499584
iteration 1, reconstruction error: 0.2087556874285164, decrease = 9.564794234417917e-10
iteration 2, reconstruction error: 0.2087556864725701, decrease = 9.559463221009423e-10
iteration 3, reconstruction error: 0.20875568551713605, decrease = 9.554340374418047e-10
iteration 4, reconstruction error: 0.20875568456222662, decrease = 9.549094293070937e-10
PARAFAC2 reconstruction error=0.8189073584632446, variation=4.1992909149968227e-10.
Starting iteration 3275
reconstruction error=0.20875568335877967
iteration 1, reconstruction error: 0.20875568240277703, decrease = 9.560026381638664e-10
iteration 2, reconstruction error: 0.20875568144730516, decrease = 9.554718682913688e-10
iteration 3, reconstruction error: 0.20875568049234552, decrease = 9.549596391433823e-10
iteration 4, reconstruction error: 0.2087556795379013, decrease = 9.544442181042001e-10
PARAFAC2 reconstruction error=0.8189073580435235, variation=4.197210357048675e-10.
Starting iteration 3276
reconstruction error=0.20875567833505762
iteration 1, reconstruction error: 0.20875567737952866, decrease = 9.555289615104101e-10
iteration 2, reconstruction error: 0.20875567642452583, decrease = 9.550028268190403e-10
iteration 3, reconstruction error: 0.20875567547003604, decrease = 9.54489792759361e-10
iteration 4, reconstruction error: 0.20875567451606858, decrease = 9.539674605818504e-10
PARAFAC2 reconstruction error=0.8189073576240107, variation=4.195128688877503e-10.
Starting iteration 3277
reconstruction error=0.2087556733138204
iteration 1, reconstruction error: 0.20875567235876508, decrease = 9.550553126125294e-10
iteration 2, reconstruction error: 0.2087556714042367, decrease = 9.545283730094667e-10
iteration 3, reconstruction error: 0.20875567045021753, decrease = 9.540191692192224e-10
iteration 4, reconstruction error: 0.2087556694967214, decrease = 9.534961431523215e-10
PARAFAC2 reconstruction error=0.8189073572047055, variation=4.1930514615984293e-10.
Starting iteration 3278
reconstruction error=0.20875566829507028
iteration 1, reconstruction error: 0.2087556673404879, decrease = 9.545823853596147e-10
iteration 2, reconstruction error: 0.20875566638642779, decrease = 9.540601086932554e-10
iteration 3, reconstruction error: 0.20875566543288843, decrease = 9.53539358583555e-10
iteration 4, reconstruction error: 0.20875566447986135, decrease = 9.530270739244173e-10
PARAFAC2 reconstruction error=0.8189073567856079, variation=4.190976454765405e-10.
Starting iteration 3279
reconstruction error=0.20875566327880804
iteration 1, reconstruction error: 0.20875566232469547, decrease = 9.54112566731169e-10
iteration 2, reconstruction error: 0.20875566137110826, decrease = 9.535872091959163e-10
iteration 3, reconstruction error: 0.20875566041803953, decrease = 9.530687350434164e-10
iteration 4, reconstruction error: 0.20875565946548535, decrease = 9.525541744270782e-10
PARAFAC2 reconstruction error=0.8189073563667181, variation=4.1888981172633066e-10.
Starting iteration 3280
reconstruction error=0.2087556582650268
iteration 1, reconstruction error: 0.2087556573113848, decrease = 9.536419987021816e-10
iteration 2, reconstruction error: 0.2087556563582736, decrease = 9.531112010741083e-10
iteration 3, reconstruction error: 0.20875565540566773, decrease = 9.526058553088745e-10
iteration 4, reconstruction error: 0.2087556544535826, decrease = 9.520851329547497e-10
PARAFAC2 reconstruction error=0.8189073559480355, variation=4.1868253308763315e-10.
Starting iteration 3281
reconstruction error=0.2087556532537288
iteration 1, reconstruction error: 0.20875565230056206, decrease = 9.531667399809152e-10
iteration 2, reconstruction error: 0.20875565134791527, decrease = 9.526467947829076e-10
iteration 3, reconstruction error: 0.20875565039578306, decrease = 9.521322064109938e-10
iteration 4, reconstruction error: 0.2087556494441724, decrease = 9.516106513896005e-10
PARAFAC2 reconstruction error=0.8189073555295603, variation=4.1847525444893563e-10.
Starting iteration 3282
reconstruction error=0.2087556482449072
iteration 1, reconstruction error: 0.2087556472922064, decrease = 9.527008071330556e-10
iteration 2, reconstruction error: 0.20875564634003557, decrease = 9.521708144166752e-10
iteration 3, reconstruction error: 0.2087556453883817, decrease = 9.51653866820834e-10
iteration 4, reconstruction error: 0.20875564443723316, decrease = 9.51148548811176e-10
PARAFAC2 reconstruction error=0.8189073551112919, variation=4.1826841989944796e-10.
Starting iteration 3283
reconstruction error=0.20875564323856577
iteration 1, reconstruction error: 0.20875564228633553, decrease = 9.522302391040682e-10
iteration 2, reconstruction error: 0.20875564133463842, decrease = 9.516971100076432e-10
iteration 3, reconstruction error: 0.20875564038344896, decrease = 9.511894605296334e-10
iteration 4, reconstruction error: 0.20875563943277098, decrease = 9.506779807821886e-10
PARAFAC2 reconstruction error=0.8189073546932308, variation=4.18061030238448e-10.
Starting iteration 3284
reconstruction error=0.2087556382346953
iteration 1, reconstruction error: 0.20875563728294416, decrease = 9.517511501133669e-10
iteration 2, reconstruction error: 0.2087556363317084, decrease = 9.512357568297602e-10
iteration 3, reconstruction error: 0.20875563538098796, decrease = 9.507204468128805e-10
iteration 4, reconstruction error: 0.20875563443077982, decrease = 9.502081343981672e-10
PARAFAC2 reconstruction error=0.8189073542753762, variation=4.1785463977817017e-10.
Starting iteration 3285
reconstruction error=0.20875563323330193
iteration 1, reconstruction error: 0.20875563228201677, decrease = 9.51285161754356e-10
iteration 2, reconstruction error: 0.20875563133125927, decrease = 9.507575005063273e-10
iteration 3, reconstruction error: 0.20875563038101022, decrease = 9.502490461166246e-10
iteration 4, reconstruction error: 0.20875562943127113, decrease = 9.497390929258387e-10
PARAFAC2 reconstruction error=0.8189073538577285, variation=4.1764769420638004e-10.
Starting iteration 3286
reconstruction error=0.20875562823438112
iteration 1, reconstruction error: 0.20875562728357577, decrease = 9.508053511186887e-10
iteration 2, reconstruction error: 0.20875562633327657, decrease = 9.50299200441762e-10
iteration 3, reconstruction error: 0.208755625383495, decrease = 9.497815589565306e-10
iteration 4, reconstruction error: 0.20875562443422727, decrease = 9.49267747740734e-10
PARAFAC2 reconstruction error=0.8189073534402871, variation=4.174414147684047e-10.
Starting iteration 3287
reconstruction error=0.20875562323793198
iteration 1, reconstruction error: 0.20875562228759262, decrease = 9.50339362759678e-10
iteration 2, reconstruction error: 0.20875562133776784, decrease = 9.498247743877641e-10
iteration 3, reconstruction error: 0.20875562038845613, decrease = 9.493117125725092e-10
iteration 4, reconstruction error: 0.20875561943965665, decrease = 9.487994834245228e-10
PARAFAC2 reconstruction error=0.8189073530230523, variation=4.1723480226352194e-10.
Starting iteration 3288
reconstruction error=0.20875561824396002
iteration 1, reconstruction error: 0.2087556172940866, decrease = 9.498734299118183e-10
iteration 2, reconstruction error: 0.2087556163447301, decrease = 9.493564823159772e-10
iteration 3, reconstruction error: 0.20875561539588822, decrease = 9.488418939440635e-10
iteration 4, reconstruction error: 0.20875561444755236, decrease = 9.483358542894393e-10
PARAFAC2 reconstruction error=0.8189073526060234, variation=4.17028855892454e-10.
Starting iteration 3289
reconstruction error=0.20875561325244435
iteration 1, reconstruction error: 0.20875561230304154, decrease = 9.494028063716797e-10
iteration 2, reconstruction error: 0.20875561135415566, decrease = 9.488858865314143e-10
iteration 3, reconstruction error: 0.208755610405782, decrease = 9.483736573834278e-10
iteration 4, reconstruction error: 0.20875560945791524, decrease = 9.478667573059596e-10
PARAFAC2 reconstruction error=0.8189073521892011, variation=4.168223544098737e-10.
Starting iteration 3290
reconstruction error=0.2087556082633966
iteration 1, reconstruction error: 0.20875560731446516, decrease = 9.489314334309995e-10
iteration 2, reconstruction error: 0.2087556063660452, decrease = 9.484199536835547e-10
iteration 3, reconstruction error: 0.20875560541813754, decrease = 9.47907669024417e-10
iteration 4, reconstruction error: 0.20875560447074137, decrease = 9.473961615213966e-10
PARAFAC2 reconstruction error=0.8189073517725843, variation=4.166167411057131e-10.
Starting iteration 3291
reconstruction error=0.20875560327681675
iteration 1, reconstruction error: 0.20875560232835202, decrease = 9.484647234270227e-10
iteration 2, reconstruction error: 0.20875560138040114, decrease = 9.479508844556506e-10
iteration 3, reconstruction error: 0.20875560043296174, decrease = 9.474394047082058e-10
iteration 4, reconstruction error: 0.20875559948602998, decrease = 9.46931755230196e-10
PARAFAC2 reconstruction error=0.8189073513561734, variation=4.164109057569476e-10.
Starting iteration 3292
reconstruction error=0.20875559829270007
iteration 1, reconstruction error: 0.20875559734470053, decrease = 9.479995399797048e-10
iteration 2, reconstruction error: 0.2087555963972164, decrease = 9.474841466960982e-10
iteration 3, reconstruction error: 0.20875559545024913, decrease = 9.469672546114083e-10
iteration 4, reconstruction error: 0.2087555945037841, decrease = 9.464650452262191e-10
PARAFAC2 reconstruction error=0.8189073509399684, variation=4.162050704081821e-10.
Starting iteration 3293
reconstruction error=0.20875559331104365
iteration 1, reconstruction error: 0.20875559236350932, decrease = 9.475343287768112e-10
iteration 2, reconstruction error: 0.20875559141649422, decrease = 9.470151052237696e-10
iteration 3, reconstruction error: 0.20875559046998984, decrease = 9.465043748768664e-10
iteration 4, reconstruction error: 0.2087555895239931, decrease = 9.459967531544322e-10
PARAFAC2 reconstruction error=0.8189073505239686, variation=4.159997901709289e-10.
Starting iteration 3294
reconstruction error=0.2087555883318428
iteration 1, reconstruction error: 0.20875558738478292, decrease = 9.470598749672376e-10
iteration 2, reconstruction error: 0.20875558643823147, decrease = 9.465514483331106e-10
iteration 3, reconstruction error: 0.20875558549219148, decrease = 9.460399963412414e-10
iteration 4, reconstruction error: 0.20875558454665763, decrease = 9.455338456643148e-10
PARAFAC2 reconstruction error=0.8189073501081744, variation=4.1579417686676834e-10.
Starting iteration 3295
reconstruction error=0.20875558335510133
iteration 1, reconstruction error: 0.20875558240850509, decrease = 9.465962458321542e-10
iteration 2, reconstruction error: 0.20875558146242573, decrease = 9.460793537474643e-10
iteration 3, reconstruction error: 0.2087555805168533, decrease = 9.455724259144205e-10
iteration 4, reconstruction error: 0.2087555795717831, decrease = 9.450702165292313e-10
PARAFAC2 reconstruction error=0.8189073496925854, variation=4.155890076518176e-10.
Starting iteration 3296
reconstruction error=0.20875557838081316
iteration 1, reconstruction error: 0.20875557743468517, decrease = 9.46127981515943e-10
iteration 2, reconstruction error: 0.20875557648906873, decrease = 9.456164462573469e-10
iteration 3, reconstruction error: 0.20875557554396224, decrease = 9.45106493066561e-10
iteration 4, reconstruction error: 0.20875557459935798, decrease = 9.446042559257961e-10
PARAFAC2 reconstruction error=0.8189073492772015, variation=4.153838384368669e-10.
Starting iteration 3297
reconstruction error=0.20875557340898435
iteration 1, reconstruction error: 0.20875557246331697, decrease = 9.456673777386015e-10
iteration 2, reconstruction error: 0.20875557151817112, decrease = 9.451458504727839e-10
iteration 3, reconstruction error: 0.20875557057353056, decrease = 9.446405602187014e-10
iteration 4, reconstruction error: 0.20875556962939304, decrease = 9.441375181662437e-10
PARAFAC2 reconstruction error=0.8189073488620223, variation=4.1517922433342846e-10.
Starting iteration 3298
reconstruction error=0.20875556843960424
iteration 1, reconstruction error: 0.20875556749440669, decrease = 9.451975591101558e-10
iteration 2, reconstruction error: 0.20875556654972216, decrease = 9.446845250504765e-10
iteration 3, reconstruction error: 0.20875556560554526, decrease = 9.441769033280423e-10
iteration 4, reconstruction error: 0.2087555646618768, decrease = 9.436684489383396e-10
PARAFAC2 reconstruction error=0.818907348447048, variation=4.1497427716308266e-10.
Starting iteration 3299
reconstruction error=0.20875556347267812
iteration 1, reconstruction error: 0.2087555625279442, decrease = 9.447339299750723e-10
iteration 2, reconstruction error: 0.2087555615837295, decrease = 9.442147064220308e-10
iteration 3, reconstruction error: 0.20875556064000933, decrease = 9.437201575757115e-10
iteration 4, reconstruction error: 0.20875555969680756, decrease = 9.432017666899384e-10
PARAFAC2 reconstruction error=0.8189073480322786, variation=4.147694410150393e-10.
Starting iteration 3300
reconstruction error=0.2087555585081914
iteration 1, reconstruction error: 0.20875555756392733, decrease = 9.44264083591051e-10
iteration 2, reconstruction error: 0.20875555662017473, decrease = 9.437526038436062e-10
iteration 3, reconstruction error: 0.20875555567692744, decrease = 9.43247285833948e-10
iteration 4, reconstruction error: 0.2087555547341801, decrease = 9.427473524059593e-10
PARAFAC2 reconstruction error=0.8189073476177136, variation=4.1456504895620583e-10.
Starting iteration 3301
reconstruction error=0.20875555354616337
iteration 1, reconstruction error: 0.20875555260235595, decrease = 9.43807421105447e-10
iteration 2, reconstruction error: 0.20875555165907858, decrease = 9.432773728779154e-10
iteration 3, reconstruction error: 0.208755550716288, decrease = 9.427905678371928e-10
iteration 4, reconstruction error: 0.20875554977401203, decrease = 9.42275979465279e-10
PARAFAC2 reconstruction error=0.8189073472033529, variation=4.1436065689737234e-10.
Starting iteration 3302
reconstruction error=0.2087555485865724
iteration 1, reconstruction error: 0.20875554764323634, decrease = 9.433360481647668e-10
iteration 2, reconstruction error: 0.20875554670041413, decrease = 9.428222091933947e-10
iteration 3, reconstruction error: 0.20875554575809493, decrease = 9.423191948965126e-10
iteration 4, reconstruction error: 0.20875554481627642, decrease = 9.418185120679823e-10
PARAFAC2 reconstruction error=0.8189073467891966, variation=4.1415626483853885e-10.
Starting iteration 3303
reconstruction error=0.20875554362942622
iteration 1, reconstruction error: 0.20875554268655536, decrease = 9.428708647174489e-10
iteration 2, reconstruction error: 0.20875554174419603, decrease = 9.423593294588528e-10
iteration 3, reconstruction error: 0.20875554080234818, decrease = 9.41847849711408e-10
iteration 4, reconstruction error: 0.20875553986099024, decrease = 9.413579360462165e-10
PARAFAC2 reconstruction error=0.8189073463752444, variation=4.1395220584661274e-10.
Starting iteration 3304
reconstruction error=0.20875553867472252
iteration 1, reconstruction error: 0.20875553773231456, decrease = 9.424079572273314e-10
iteration 2, reconstruction error: 0.2087555367904258, decrease = 9.418887614298654e-10
iteration 3, reconstruction error: 0.20875553584902928, decrease = 9.413965162963223e-10
iteration 4, reconstruction error: 0.20875553490814117, decrease = 9.408881174177708e-10
PARAFAC2 reconstruction error=0.8189073459614962, variation=4.137482578769891e-10.
Starting iteration 3305
reconstruction error=0.20875553372246208
iteration 1, reconstruction error: 0.20875553278051778, decrease = 9.419443003366723e-10
iteration 2, reconstruction error: 0.20875553183909035, decrease = 9.41427436007558e-10
iteration 3, reconstruction error: 0.20875553089816595, decrease = 9.409243939551004e-10
iteration 4, reconstruction error: 0.20875552995773297, decrease = 9.404329814888257e-10
PARAFAC2 reconstruction error=0.8189073455479516, variation=4.135445319519704e-10.
Starting iteration 3306
reconstruction error=0.2087555287726372
iteration 1, reconstruction error: 0.20875552783115886, decrease = 9.414783397332371e-10
iteration 2, reconstruction error: 0.20875552689019278, decrease = 9.40966082829675e-10
iteration 3, reconstruction error: 0.20875552594972738, decrease = 9.404654000011448e-10
iteration 4, reconstruction error: 0.20875552500976347, decrease = 9.399639122609216e-10
PARAFAC2 reconstruction error=0.8189073451346108, variation=4.1334080602695167e-10.
Starting iteration 3307
reconstruction error=0.20875552382524787
iteration 1, reconstruction error: 0.20875552288423932, decrease = 9.41008548860367e-10
iteration 2, reconstruction error: 0.2087555219437323, decrease = 9.405070333645682e-10
iteration 3, reconstruction error: 0.2087555210037228, decrease = 9.400094869160824e-10
iteration 4, reconstruction error: 0.20875552006423026, decrease = 9.394925393202413e-10
PARAFAC2 reconstruction error=0.8189073447214735, variation=4.131373021465379e-10.
Starting iteration 3308
reconstruction error=0.2087555188803049
iteration 1, reconstruction error: 0.20875551793975153, decrease = 9.405533851758463e-10
iteration 2, reconstruction error: 0.20875551699970812, decrease = 9.400434042294847e-10
iteration 3, reconstruction error: 0.20875551606016463, decrease = 9.395434985570716e-10
iteration 4, reconstruction error: 0.20875551512112725, decrease = 9.390373756357207e-10
PARAFAC2 reconstruction error=0.8189073443085395, variation=4.12934020310729e-10.
Starting iteration 3309
reconstruction error=0.20875551393778202
iteration 1, reconstruction error: 0.20875551299769, decrease = 9.400920319979633e-10
iteration 2, reconstruction error: 0.20875551205811566, decrease = 9.395743350015806e-10
iteration 3, reconstruction error: 0.20875551111903273, decrease = 9.39082922535306e-10
iteration 4, reconstruction error: 0.2087555101804536, decrease = 9.385791310823066e-10
PARAFAC2 reconstruction error=0.818907343895809, variation=4.127305164303152e-10.
Starting iteration 3310
reconstruction error=0.20875550899769785
iteration 1, reconstruction error: 0.20875550805807333, decrease = 9.396245170822937e-10
iteration 2, reconstruction error: 0.20875550711895102, decrease = 9.391223076971045e-10
iteration 3, reconstruction error: 0.20875550618033484, decrease = 9.386161847757535e-10
iteration 4, reconstruction error: 0.20875550524221625, decrease = 9.381185828161165e-10
PARAFAC2 reconstruction error=0.8189073434832815, variation=4.125274566391113e-10.
Starting iteration 3311
reconstruction error=0.20875550406004303
iteration 1, reconstruction error: 0.20875550312087832, decrease = 9.391647182166452e-10
iteration 2, reconstruction error: 0.2087555021822243, decrease = 9.386540156253176e-10
iteration 3, reconstruction error: 0.20875550124406253, decrease = 9.381617704917744e-10
iteration 4, reconstruction error: 0.2087555003064099, decrease = 9.376526222126813e-10
PARAFAC2 reconstruction error=0.8189073430709569, variation=4.1232461889251226e-10.
Starting iteration 3312
reconstruction error=0.20875549912481764
iteration 1, reconstruction error: 0.2087554981861173, decrease = 9.3870033968102e-10
iteration 2, reconstruction error: 0.20875549724791692, decrease = 9.382003784974557e-10
iteration 3, reconstruction error: 0.20875549631022108, decrease = 9.376958376439148e-10
iteration 4, reconstruction error: 0.20875549537302596, decrease = 9.37195127059809e-10
PARAFAC2 reconstruction error=0.8189073426588351, variation=4.1212178114591325e-10.
Starting iteration 3313
reconstruction error=0.2087554941920216
iteration 1, reconstruction error: 0.20875549325377954, decrease = 9.382420673720304e-10
iteration 2, reconstruction error: 0.20875549231604665, decrease = 9.377328913373617e-10
iteration 3, reconstruction error: 0.20875549137880753, decrease = 9.372391196471597e-10
iteration 4, reconstruction error: 0.20875549044206756, decrease = 9.367399633752882e-10
PARAFAC2 reconstruction error=0.8189073422469162, variation=4.1191894339931423e-10.
Starting iteration 3314
reconstruction error=0.20875548926164805
iteration 1, reconstruction error: 0.20875548832386423, decrease = 9.377838228186164e-10
iteration 2, reconstruction error: 0.20875548738659347, decrease = 9.372707610033615e-10
iteration 3, reconstruction error: 0.2087554864498172, decrease = 9.367762676681934e-10
iteration 4, reconstruction error: 0.20875548551354242, decrease = 9.362747799279703e-10
PARAFAC2 reconstruction error=0.8189073418351998, variation=4.117164387196226e-10.
Starting iteration 3315
reconstruction error=0.20875548433369392
iteration 1, reconstruction error: 0.20875548339637529, decrease = 9.373186393712984e-10
iteration 2, reconstruction error: 0.20875548245956121, decrease = 9.36814070762182e-10
iteration 3, reconstruction error: 0.2087554815232463, decrease = 9.363149144903105e-10
iteration 4, reconstruction error: 0.20875548058742438, decrease = 9.358219199562257e-10
PARAFAC2 reconstruction error=0.8189073414236856, variation=4.115141560845359e-10.
Starting iteration 3316
reconstruction error=0.20875547940817066
iteration 1, reconstruction error: 0.20875547847130413, decrease = 9.368665288000955e-10
iteration 2, reconstruction error: 0.20875547753495524, decrease = 9.36348887314864e-10
iteration 3, reconstruction error: 0.20875547659909857, decrease = 9.358566699368964e-10
iteration 4, reconstruction error: 0.20875547566373567, decrease = 9.353628982466944e-10
PARAFAC2 reconstruction error=0.8189073410123738, variation=4.1131176242714673e-10.
Starting iteration 3317
reconstruction error=0.20875547448505916
iteration 1, reconstruction error: 0.20875547354865778, decrease = 9.364013731083531e-10
iteration 2, reconstruction error: 0.20875547261276176, decrease = 9.358960273431194e-10
iteration 3, reconstruction error: 0.2087554716773672, decrease = 9.353945673584718e-10
iteration 4, reconstruction error: 0.20875547074246717, decrease = 9.349000185121525e-10
PARAFAC2 reconstruction error=0.8189073406012642, variation=4.111095908143625e-10.
Starting iteration 3318
reconstruction error=0.20875546956436544
iteration 1, reconstruction error: 0.20875546862842773, decrease = 9.35937716217694e-10
iteration 2, reconstruction error: 0.20875546769299458, decrease = 9.354331476085775e-10
iteration 3, reconstruction error: 0.2087554667580575, decrease = 9.349370722055994e-10
iteration 4, reconstruction error: 0.20875546582361185, decrease = 9.344456597393247e-10
PARAFAC2 reconstruction error=0.8189073401903565, variation=4.1090775226848564e-10.
Starting iteration 3319
reconstruction error=0.20875546464609657
iteration 1, reconstruction error: 0.20875546371061324, decrease = 9.354833296892906e-10
iteration 2, reconstruction error: 0.2087554627756399, decrease = 9.34973348742929e-10
iteration 3, reconstruction error: 0.2087554618411618, decrease = 9.344780782516438e-10
iteration 4, reconstruction error: 0.20875546090717595, decrease = 9.339858608736762e-10
PARAFAC2 reconstruction error=0.8189073397796507, variation=4.107058027003063e-10.
Starting iteration 3320
reconstruction error=0.20875545973023785
iteration 1, reconstruction error: 0.20875545879521817, decrease = 9.350196727986315e-10
iteration 2, reconstruction error: 0.20875545786069458, decrease = 9.345235973956534e-10
iteration 3, reconstruction error: 0.2087554569266763, decrease = 9.340182793859952e-10
iteration 4, reconstruction error: 0.20875545599314407, decrease = 9.335322237458143e-10
PARAFAC2 reconstruction error=0.8189073393691467, variation=4.1050396415442947e-10.
Starting iteration 3321
reconstruction error=0.20875545481679078
iteration 1, reconstruction error: 0.20875545388223168, decrease = 9.345590967768658e-10
iteration 2, reconstruction error: 0.2087554529481702, decrease = 9.340614948172288e-10
iteration 3, reconstruction error: 0.20875545201461015, decrease = 9.335600348325812e-10
iteration 4, reconstruction error: 0.20875545108153926, decrease = 9.33070898323507e-10
PARAFAC2 reconstruction error=0.8189073389588442, variation=4.1030256969776246e-10.
Starting iteration 3322
reconstruction error=0.20875544990576156
iteration 1, reconstruction error: 0.20875544897165993, decrease = 9.34101629379569e-10
iteration 2, reconstruction error: 0.20875544803805515, decrease = 9.336047768204736e-10
iteration 3, reconstruction error: 0.20875544710495567, decrease = 9.33099486566391e-10
iteration 4, reconstruction error: 0.2087554461723384, decrease = 9.326172611956451e-10
PARAFAC2 reconstruction error=0.8189073385487431, variation=4.10101064218793e-10.
Starting iteration 3323
reconstruction error=0.20875544499713866
iteration 1, reconstruction error: 0.20875544406349145, decrease = 9.3364721509559e-10
iteration 2, reconstruction error: 0.20875544313035027, decrease = 9.331411754409658e-10
iteration 3, reconstruction error: 0.20875544219770215, decrease = 9.326481253957297e-10
iteration 4, reconstruction error: 0.20875544126554543, decrease = 9.32156712929455e-10
PARAFAC2 reconstruction error=0.8189073381388433, variation=4.0989978078442846e-10.
Starting iteration 3324
reconstruction error=0.20875544009092672
iteration 1, reconstruction error: 0.20875543915773773, decrease = 9.331889982977515e-10
iteration 2, reconstruction error: 0.20875543822505715, decrease = 9.326805716636244e-10
iteration 3, reconstruction error: 0.20875543729286414, decrease = 9.321930172223603e-10
iteration 4, reconstruction error: 0.20875543636116028, decrease = 9.317038529577104e-10
PARAFAC2 reconstruction error=0.8189073377291448, variation=4.096984973500639e-10.
Starting iteration 3325
reconstruction error=0.2087554351871218
iteration 1, reconstruction error: 0.2087554342543949, decrease = 9.327268957193269e-10
iteration 2, reconstruction error: 0.2087554333221579, decrease = 9.32237009809711e-10
iteration 3, reconstruction error: 0.20875543239042857, decrease = 9.317293325761256e-10
iteration 4, reconstruction error: 0.20875543145918066, decrease = 9.312479121170725e-10
PARAFAC2 reconstruction error=0.8189073373196473, variation=4.0949754698260676e-10.
Starting iteration 3326
reconstruction error=0.20875543028571705
iteration 1, reconstruction error: 0.20875542935344454, decrease = 9.322725091909234e-10
iteration 2, reconstruction error: 0.20875542842167197, decrease = 9.317725757629347e-10
iteration 3, reconstruction error: 0.20875542749039472, decrease = 9.312772497604982e-10
iteration 4, reconstruction error: 0.20875542655961274, decrease = 9.307819792692129e-10
PARAFAC2 reconstruction error=0.8189073369103504, variation=4.0929681865975454e-10.
converged in 3326 iterations.

We examine the results by plotting the relative SSE and its relative change as a function of iteration number

it_num = np.arange(len(rec_err)) + 1
rel_sse = np.array(rec_err) ** 2

fig, axes = plt.subplots(1, 2, figsize=(10, 3), tight_layout=True)
axes[0].plot(it_num, rel_sse)
axes[0].set_ylim(0.67, 0.68)
axes[0].set_xlabel("Iteration number")
axes[0].set_ylabel("Relative SSE")

axes[1].semilogy(it_num[1:], (rel_sse[:-1] - rel_sse[1:]) / rel_sse[:-1])
axes[1].set_xlabel("Iteration number")
axes[1].set_ylabel("Relative change in SSE")
axes[1].set_ylim(1e-9, 1e-6)

plt.show()
plot semiconductor etch analysis

Next, we look at the components

weights, (A, B, C), P_is = pf2
B_is = [P_i @ B for P_i in P_is]

# We normalise the components to make them easier to compare
A_norm = np.linalg.norm(A, axis=0, keepdims=True)
C_norm = np.linalg.norm(C, axis=0, keepdims=True)
A = A / A_norm
B_is = [B_i * A_norm * C_norm for B_i in B_is]
C = C / C_norm

# We find the permutation so the first component explains most of the variation in the data
B_norm = np.linalg.norm(B, axis=0, keepdims=True)
permutation = np.argsort(weights * A_norm * B_norm * C_norm).squeeze()

fig, axes = plt.subplots(1, 2, figsize=(16, 5))

for i, B_i in enumerate(B_is):
    axes[0].plot(B_i[:, permutation[0]], color="k", alpha=0.3)
    axes[1].plot(B_i[:, permutation[1]], color="k", alpha=0.3)
plot semiconductor etch analysis

We see that the components are similar to those in [WGM01]. We can see an overall shape, but they are fairly noisy.

Note

In this simple example, we only use one random initialisation. For a more thorough analysis, you should fit several models with different random initialisations and select the model with the lowest SSE [YB21].

Next we use PARAFAC2 ADMM to apply a TV penalty

Since the TV-penalty scales with the norm of the factors, we also need to penalise the norm of \(\mathbf{A}\) and \(\mathbf{C}\) [RSC+22]. In this case, we use unit ball constraints, constraining the columns of \(\mathbf{A}\) and \(\mathbf{C}\) to have unit norm.

Similar as before, we add non-negativity on \(\mathbf{A}\) to resolve the sign indeterminacy.

Note

The proximal operator for the total variation penalty is computed using the C-implementation for the improved version of the direct TV algorithm presented in [Con13]. The C-implementation is CeCILL lisenced and is available here, and the Python-wrapper, condat-tv, is GPL-3 lisenced and is available here.

cmf, diagnostics = parafac2_aoadmm(
    standardised,
    2,
    n_iter_max=10_000,
    non_negative={0: True},
    l2_norm_bound=[1, None, 1],
    tv_penalty={1: 0.1},
    verbose=100,
    return_errors=True,
    init_params={"nn_modes": [0]},
    constant_feasibility_penalty=True,
    tol=1e-9,
    random_state=0,
)
All regularization penalties (including regs list):
* Mode 0:
   - <'matcouply.penalties.L2Ball' with norm_bound=1, non_negativity=True, aux_init='random_uniform', dual_init='random_uniform')>
* Mode 1:
   - <'matcouply.penalties.Parafac2' with svd='truncated_svd', update_basis_matrices=True, update_coordinate_matrix=True, n_iter=1, aux_init='random_uniform', dual_init='random_uniform')>
   - <'matcouply.penalties.TotalVariationPenalty' with reg_strength=0.1, l1_strength=0, aux_init='random_uniform', dual_init='random_uniform')>
* Mode 2:
   - <'matcouply.penalties.L2Ball' with norm_bound=1, non_negativity=None, aux_init='random_uniform', dual_init='random_uniform')>
Feasibility gaps for A: [0.7400643923079112]
Feasibility gaps for the Bi-matrices: [0.996063095944572, 0.7079440010796405]
Feasibility gaps for C: [0.8911128744366852]
Coupled matrix factorization iteration=0, reconstruction error=0.9943419876450781, regularized loss=128.04131256269025 regularized loss variation=0.44201391162254966.
Feasibility gaps for A: [0.24571171050751403]
Feasibility gaps for the Bi-matrices: [0.05863289739688526, 0.056407660531033875]
Feasibility gaps for C: [0.10936519236829603]
Coupled matrix factorization iteration=100, reconstruction error=0.8334356309284227, regularized loss=357.17205036894984 regularized loss variation=4.333733591646685e-05.
Feasibility gaps for A: [2.2937812223995472e-07]
Feasibility gaps for the Bi-matrices: [1.599078584664396e-06, 2.374601489706463e-06]
Feasibility gaps for C: [2.2660232332025454e-06]
Coupled matrix factorization iteration=200, reconstruction error=0.8334221990190355, regularized loss=357.5251500390751 regularized loss variation=6.638804868007274e-07.
Feasibility gaps for A: [3.3646942669086847e-09]
Feasibility gaps for the Bi-matrices: [2.2665057893169465e-08, 3.295674196971305e-08]
Feasibility gaps for C: [3.27132012552442e-08]
Coupled matrix factorization iteration=300, reconstruction error=0.8334219922418229, regularized loss=357.53065696511663 regularized loss variation=1.0415710811259165e-08.
Feasibility gaps for A: [5.2802052919369055e-11]
Feasibility gaps for the Bi-matrices: [3.557187105306611e-10, 5.172401632528409e-10]
Feasibility gaps for C: [5.133308320471987e-10]
converged in 357 iterations: FEASIBILITY GAP CRITERION AND RELATIVE LOSS CRITERION SATISFIED

We examine the diagnostic plots

For ALS, the relative SSE and its change was the only interesting metrics. However, with regularized PARAFAC2 and AO-ADMM we should also to look at the feasibility gaps and the regularization penalty.

All feasibility gaps and the change in relative SSE should be low.

rel_sse = np.array(diagnostics.rec_errors) ** 2
loss = np.array(diagnostics.regularized_loss)
feasibility_penalty_A = np.array([gapA for gapA, gapB, gapC in diagnostics.feasibility_gaps])
feasibility_penalty_B = np.array([gapB for gapA, gapB, gapC in diagnostics.feasibility_gaps])
feasibility_penalty_C = np.array([gapC for gapA, gapB, gapC in diagnostics.feasibility_gaps])

it_num = np.arange(len(rel_sse))

fig, axes = plt.subplots(2, 3, figsize=(15, 6), tight_layout=True)
axes[0, 0].plot(it_num, rel_sse)
axes[0, 0].set_ylim(0.69, 0.71)
axes[0, 0].set_xlabel("Iteration number")
axes[0, 0].set_ylabel("Relative SSE")

axes[0, 1].plot(it_num, loss)
axes[0, 1].set_xlabel("Iteration number")
axes[0, 1].set_ylabel("Regularized loss")

axes[0, 2].semilogy(it_num[1:], np.abs(loss[:-1] - loss[1:]) / loss[:-1])
axes[0, 2].set_xlabel("Iteration number")
axes[0, 2].set_ylabel("Relative change in regularized loss")

axes[1, 0].semilogy(it_num, feasibility_penalty_A)
axes[1, 0].set_xlabel("Iteration number")
axes[1, 0].set_ylabel("Feasibility gap A")

axes[1, 1].semilogy(it_num, feasibility_penalty_B)
axes[1, 1].set_xlabel("Iteration number")
axes[1, 1].set_ylabel("Feasibility gap B_is")
axes[1, 1].legend(["PARAFAC2", "TV"])

axes[1, 2].semilogy(it_num, feasibility_penalty_C)
axes[1, 2].set_xlabel("Iteration number")
axes[1, 2].set_ylabel("Feasibility gap C")
plot semiconductor etch analysis
Text(1025.2772062174477, 0.5, 'Feasibility gap C')

Next, we look at the regularized components

weights, (A, B_is, C) = cmf
# We find the permutation so the first component explains most of the variation in the data
B_norm = np.linalg.norm(B_is[0], axis=0, keepdims=True)  # All B_is have same norm due to PARAFAC2 constraint
permutation = np.argsort(B_norm).squeeze()

fig, axes = plt.subplots(1, 2, figsize=(16, 5))

for i, B_i in enumerate(B_is):
    axes[0].plot(B_i[:, permutation[0]], color="k", alpha=0.3)
    axes[1].plot(B_i[:, permutation[1]], color="k", alpha=0.3)
plot semiconductor etch analysis

We see that the TV regularization removed much of the noise. We now have piecewise constant components with transitions that are easy to identify.

Comparing with unregularized PARAFAC2

print("Relative SSE with unregularized PARAFAC2: ", rec_err[-1] ** 2)
print("Relative SSE with TV regularized PARAFAC2:", diagnostics.rec_errors[-1] ** 2)
Relative SSE with unregularized PARAFAC2:  0.6706092264456022
Relative SSE with TV regularized PARAFAC2: 0.6945922121734125

We see that there is only a small change in the relative SSE, but the components are much smoother and the transitions are clearer.

License

Since this example uses the condat_tv-library, it is lisenced under a GPL-3 license

                  Version 3, 29 June 2007

Example demonstrating TV regularized PARAFAC2
Copyright (C) 2021 Marie Roald

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 3 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.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.

Total running time of the script: (1 minutes 37.664 seconds)

Gallery generated by Sphinx-Gallery