Note
Go to the end to download the full example code.
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.61it/s]
67%|██████▋ | 2/3 [00:01<00:00, 1.68it/s]
100%|██████████| 3/3 [00:01<00:00, 1.80it/s]
100%|██████████| 3/3 [00:01<00:00, 1.76it/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.40475022531493976
iteration 1, reconstruction error: 0.32389244186409344, decrease = 0.08085778345084632
iteration 2, reconstruction error: 0.32378166507662476, decrease = 0.00011077678746868047
iteration 3, reconstruction error: 0.3237804661065873, decrease = 1.1989700374748224e-06
iteration 4, reconstruction error: 0.32377926243211125, decrease = 1.2036744760357543e-06
PARAFAC2 reconstruction error=0.9013060633769127
Starting iteration 1
reconstruction error=0.27497113531500744
iteration 1, reconstruction error: 0.2744181441792846, decrease = 0.0005529911357228245
iteration 2, reconstruction error: 0.27441548668539245, decrease = 2.657493892166407e-06
iteration 3, reconstruction error: 0.27441301933817813, decrease = 2.467347214318849e-06
iteration 4, reconstruction error: 0.27441053025032686, decrease = 2.489087851276217e-06
PARAFAC2 reconstruction error=0.8722949494596751, variation=0.02901111391723754.
Starting iteration 2
reconstruction error=0.27151879286010855
iteration 1, reconstruction error: 0.2712319097891948, decrease = 0.0002868830709137349
iteration 2, reconstruction error: 0.2712302312734493, decrease = 1.6785157455068145e-06
iteration 3, reconstruction error: 0.27122864330663565, decrease = 1.5879668136542513e-06
iteration 4, reconstruction error: 0.27122704211276977, decrease = 1.6011938658855307e-06
PARAFAC2 reconstruction error=0.8672392745468855, variation=0.005055674912789576.
Starting iteration 3
reconstruction error=0.2663623914916931
iteration 1, reconstruction error: 0.2659181525616001, decrease = 0.0004442389300929883
iteration 2, reconstruction error: 0.2659178103910047, decrease = 3.421705954131937e-07
iteration 3, reconstruction error: 0.2659176546574982, decrease = 1.5573350647946071e-07
iteration 4, reconstruction error: 0.2659174985482754, decrease = 1.5610922282638384e-07
PARAFAC2 reconstruction error=0.8631512934443739, variation=0.004087981102511629.
Starting iteration 4
reconstruction error=0.2549138527717762
iteration 1, reconstruction error: 0.2539548196404908, decrease = 0.0009590331312853695
iteration 2, reconstruction error: 0.2539528397658705, decrease = 1.9798746203059103e-06
iteration 3, reconstruction error: 0.253951205272058, decrease = 1.6344938125190112e-06
iteration 4, reconstruction error: 0.2539495652326116, decrease = 1.6400394464155532e-06
PARAFAC2 reconstruction error=0.8543096340399998, variation=0.008841659404374091.
Starting iteration 5
reconstruction error=0.2367842623443013
iteration 1, reconstruction error: 0.23563407569693154, decrease = 0.0011501866473697664
iteration 2, reconstruction error: 0.2356302484647766, decrease = 3.827232154945959e-06
iteration 3, reconstruction error: 0.235626724354443, decrease = 3.5241103335803547e-06
iteration 4, reconstruction error: 0.23562321449818774, decrease = 3.50985625527378e-06
PARAFAC2 reconstruction error=0.8382558204335929, variation=0.016053813606406897.
Starting iteration 6
reconstruction error=0.22102603324861775
iteration 1, reconstruction error: 0.22050028673485364, decrease = 0.0005257465137641082
iteration 2, reconstruction error: 0.22049746284049343, decrease = 2.823894360209911e-06
iteration 3, reconstruction error: 0.22049474383850837, decrease = 2.719001985063141e-06
iteration 4, reconstruction error: 0.22049204433067235, decrease = 2.6995078360181335e-06
Accepted line search jump of 2.449489742783178.
PARAFAC2 reconstruction error=0.8224830823333543, variation=0.0318265517066455.
Starting iteration 7
reconstruction error=0.20948777773628927
iteration 1, reconstruction error: 0.20942682031080412, decrease = 6.095742548514749e-05
iteration 2, reconstruction error: 0.20942552923784613, decrease = 1.2910729579873603e-06
iteration 3, reconstruction error: 0.2094242498214517, decrease = 1.2794163944396253e-06
iteration 4, reconstruction error: 0.20942298193482306, decrease = 1.2678866286308654e-06
PARAFAC2 reconstruction error=0.8190044946499817, variation=0.0034785876833726137.
Starting iteration 8
reconstruction error=0.2091357344325887
iteration 1, reconstruction error: 0.20913373766857482, decrease = 1.9967640138840448e-06
iteration 2, reconstruction error: 0.20913248118125194, decrease = 1.2564873228815276e-06
iteration 3, reconstruction error: 0.20913123714723192, decrease = 1.2440340200203792e-06
iteration 4, reconstruction error: 0.209130005514337, decrease = 1.2316328949213418e-06
Accepted line search jump of 2.8284271247461903.
PARAFAC2 reconstruction error=0.8189388765421786, variation=0.0035442057911757585.
Starting iteration 9
reconstruction error=0.20886171135653728
iteration 1, reconstruction error: 0.2088601473465121, decrease = 1.5640100251845812e-06
iteration 2, reconstruction error: 0.2088589343001134, decrease = 1.213046398690354e-06
iteration 3, reconstruction error: 0.20885773369210148, decrease = 1.2006080119253415e-06
iteration 4, reconstruction error: 0.20885654535885848, decrease = 1.1883332430018267e-06
PARAFAC2 reconstruction error=0.8189280754734841, variation=1.080106869444375e-05.
Starting iteration 10
reconstruction error=0.2088809284288581
iteration 1, reconstruction error: 0.20887974239642493, decrease = 1.1860324331813832e-06
iteration 2, reconstruction error: 0.20887862101427104, decrease = 1.1213821538846869e-06
iteration 3, reconstruction error: 0.20887751111611036, decrease = 1.1098981606838532e-06
iteration 4, reconstruction error: 0.2088764125820866, decrease = 1.0985340237468222e-06
Accepted line search jump of 3.1622776601683795.
PARAFAC2 reconstruction error=0.8189225018941609, variation=1.6374648017625226e-05.
Starting iteration 11
reconstruction error=0.2089349075455501
iteration 1, reconstruction error: 0.20893390029727796, decrease = 1.0072482721501519e-06
iteration 2, reconstruction error: 0.2089329459909852, decrease = 9.543062927663826e-07
iteration 3, reconstruction error: 0.20893200153526909, decrease = 9.444557161064626e-07
iteration 4, reconstruction error: 0.2089310668551391, decrease = 9.346801299880969e-07
PARAFAC2 reconstruction error=0.8189208302468131, variation=1.671647347878391e-06.
Starting iteration 12
reconstruction error=0.20891666082344584
iteration 1, reconstruction error: 0.20891572339082723, decrease = 9.374326186140092e-07
iteration 2, reconstruction error: 0.20891480120688286, decrease = 9.221839443740443e-07
iteration 3, reconstruction error: 0.20891388860578322, decrease = 9.126010996340916e-07
iteration 4, reconstruction error: 0.20891298550538065, decrease = 9.031004025716882e-07
Accepted line search jump of 3.4641016151377544.
PARAFAC2 reconstruction error=0.8189190253208092, variation=3.4765733517572173e-06.
Starting iteration 13
reconstruction error=0.20887380350094037
iteration 1, reconstruction error: 0.2088729896632292, decrease = 8.138377111666095e-07
iteration 2, reconstruction error: 0.20887219169891433, decrease = 7.979643148747773e-07
iteration 3, reconstruction error: 0.20887140214041616, decrease = 7.895584981654213e-07
iteration 4, reconstruction error: 0.20887062090378175, decrease = 7.812366344117638e-07
PARAFAC2 reconstruction error=0.8189184689211151, variation=5.563996940960436e-07.
Starting iteration 14
reconstruction error=0.20887473585201355
iteration 1, reconstruction error: 0.20887396654450918, decrease = 7.693075043668784e-07
iteration 2, reconstruction error: 0.20887320578460208, decrease = 7.607599070980076e-07
iteration 3, reconstruction error: 0.20887245305743785, decrease = 7.527271642382427e-07
iteration 4, reconstruction error: 0.20887170828552884, decrease = 7.447719090059035e-07
Accepted line search jump of 3.7416573867739413.
PARAFAC2 reconstruction error=0.8189171798438566, variation=1.8454769525888537e-06.
Starting iteration 15
reconstruction error=0.20887338367212666
iteration 1, reconstruction error: 0.2088727363723578, decrease = 6.472997688689031e-07
iteration 2, reconstruction error: 0.20887209722482095, decrease = 6.391475368405786e-07
iteration 3, reconstruction error: 0.2088714648935886, decrease = 6.323312323475161e-07
iteration 4, reconstruction error: 0.20887083931523276, decrease = 6.2557835583954e-07
PARAFAC2 reconstruction error=0.81891686391338, variation=3.159304765576465e-07.
Starting iteration 16
reconstruction error=0.2088675341487307
iteration 1, reconstruction error: 0.2088669155080358, decrease = 6.186406948938128e-07
iteration 2, reconstruction error: 0.20886630309157242, decrease = 6.12416463374732e-07
iteration 3, reconstruction error: 0.2088656972234594, decrease = 6.058681130127752e-07
iteration 4, reconstruction error: 0.20886509784110163, decrease = 5.993823577743473e-07
Accepted line search jump of 4.0.
PARAFAC2 reconstruction error=0.8189157930084954, variation=1.3868353612167539e-06.
Starting iteration 17
reconstruction error=0.20884905447369279
iteration 1, reconstruction error: 0.20884853859425498, decrease = 5.158794378068432e-07
iteration 2, reconstruction error: 0.20884802835692665, decrease = 5.102373283327744e-07
iteration 3, reconstruction error: 0.2088475236231077, decrease = 5.047338189345663e-07
iteration 4, reconstruction error: 0.20884702433750563, decrease = 4.992856020846759e-07
PARAFAC2 reconstruction error=0.8189155688907196, variation=2.241177757822399e-07.
Starting iteration 18
reconstruction error=0.20884798303305765
iteration 1, reconstruction error: 0.20884749082096285, decrease = 4.92212094804767e-07
iteration 2, reconstruction error: 0.2088470034932573, decrease = 4.873277055505998e-07
iteration 3, reconstruction error: 0.20884652143123916, decrease = 4.820620181367197e-07
iteration 4, reconstruction error: 0.20884604458237763, decrease = 4.768488615358724e-07
Accepted line search jump of 4.242640687119285.
PARAFAC2 reconstruction error=0.8189146756768433, variation=1.1173316520896037e-06.
Starting iteration 19
reconstruction error=0.20884199682046722
iteration 1, reconstruction error: 0.20884159366715896, decrease = 4.0315330826490303e-07
iteration 2, reconstruction error: 0.2088411946957555, decrease = 3.989714034702274e-07
iteration 3, reconstruction error: 0.2088408000645993, decrease = 3.9463115619753353e-07
iteration 4, reconstruction error: 0.20884040973053708, decrease = 3.9033406221133937e-07
PARAFAC2 reconstruction error=0.8189145074034017, variation=1.6827344162528846e-07.
Starting iteration 20
reconstruction error=0.20883904005546317
iteration 1, reconstruction error: 0.20883865473443886, decrease = 3.8532102430988147e-07
iteration 2, reconstruction error: 0.20883827322788862, decrease = 3.815065502399406e-07
iteration 3, reconstruction error: 0.20883789587688012, decrease = 3.773510084958964e-07
iteration 4, reconstruction error: 0.20883752263962863, decrease = 3.732372514941851e-07
Accepted line search jump of 4.47213595499958.
PARAFAC2 reconstruction error=0.8189137734245099, variation=9.022523334012433e-07.
Starting iteration 21
reconstruction error=0.20882824283953239
iteration 1, reconstruction error: 0.2088279305422449, decrease = 3.122972874747276e-07
iteration 2, reconstruction error: 0.20882762143581893, decrease = 3.0910642598303006e-07
iteration 3, reconstruction error: 0.208827315712231, decrease = 3.057235879178055e-07
iteration 4, reconstruction error: 0.20882701333659687, decrease = 3.0237563414248214e-07
PARAFAC2 reconstruction error=0.8189136451732185, variation=1.282512913647338e-07.
Starting iteration 22
reconstruction error=0.20882738248085217
iteration 1, reconstruction error: 0.20882708429807573, decrease = 2.981827764425571e-07
iteration 2, reconstruction error: 0.20882678907851324, decrease = 2.9521956249056736e-07
iteration 3, reconstruction error: 0.2088264970925954, decrease = 2.919859178329709e-07
iteration 4, reconstruction error: 0.20882620830705137, decrease = 2.887855440336651e-07
Accepted line search jump of 4.69041575982343.
PARAFAC2 reconstruction error=0.8189130520894496, variation=7.21335060238637e-07.
Starting iteration 23
reconstruction error=0.20882268501822918
iteration 1, reconstruction error: 0.20882244657798657, decrease = 2.3844024260588625e-07
iteration 2, reconstruction error: 0.2088222105599285, decrease = 2.3601805806960918e-07
iteration 3, reconstruction error: 0.2088219771343967, decrease = 2.3342553179261927e-07
iteration 4, reconstruction error: 0.20882174627469904, decrease = 2.3085969766412084e-07
PARAFAC2 reconstruction error=0.8189129548048556, variation=9.728459404723111e-08.
Starting iteration 24
reconstruction error=0.20882099497239143
iteration 1, reconstruction error: 0.20882076713168557, decrease = 2.2784070585757377e-07
iteration 2, reconstruction error: 0.2088205415606305, decrease = 2.2557105505693897e-07
iteration 3, reconstruction error: 0.20882031846810373, decrease = 2.230925267854289e-07
iteration 4, reconstruction error: 0.20882009782843405, decrease = 2.206396696735613e-07
Accepted line search jump of 4.898979485566356.
PARAFAC2 reconstruction error=0.8189124828430928, variation=5.692463568296446e-07.
Starting iteration 25
reconstruction error=0.20881428725069195
iteration 1, reconstruction error: 0.2088141066902223, decrease = 1.805604696591967e-07
iteration 2, reconstruction error: 0.20881392795660722, decrease = 1.7873361507492191e-07
iteration 3, reconstruction error: 0.20881375118760823, decrease = 1.7676899899399245e-07
iteration 4, reconstruction error: 0.20881357636255599, decrease = 1.7482505224042377e-07
PARAFAC2 reconstruction error=0.8189124093635598, variation=7.347953301373167e-08.
Starting iteration 26
reconstruction error=0.20881382902908233
iteration 1, reconstruction error: 0.20881365656704126, decrease = 1.7246204106480256e-07
iteration 2, reconstruction error: 0.2088134858239207, decrease = 1.7074312055886942e-07
iteration 3, reconstruction error: 0.20881331695750135, decrease = 1.6886641934776847e-07
iteration 4, reconstruction error: 0.2088131499480667, decrease = 1.67009434642873e-07
Accepted line search jump of 5.0990195135927845.
PARAFAC2 reconstruction error=0.8189120387660281, variation=4.4407706467630703e-07.
Starting iteration 27
reconstruction error=0.20881095865233235
iteration 1, reconstruction error: 0.20881082336577592, decrease = 1.3528655642969234e-07
iteration 2, reconstruction error: 0.20881068944720058, decrease = 1.3391857534017504e-07
iteration 3, reconstruction error: 0.2088105569975854, decrease = 1.3244961516445386e-07
iteration 4, reconstruction error: 0.20881042600151345, decrease = 1.3099607196198626e-07
PARAFAC2 reconstruction error=0.8189119837175646, variation=5.5048463565299244e-08.
Starting iteration 28
reconstruction error=0.20880992958247444
iteration 1, reconstruction error: 0.20880980024743875, decrease = 1.2933503568124394e-07
iteration 2, reconstruction error: 0.20880967220004623, decrease = 1.2804739252247899e-07
iteration 3, reconstruction error: 0.20880954555625328, decrease = 1.2664379295257433e-07
iteration 4, reconstruction error: 0.2088094203012604, decrease = 1.2525499287763253e-07
Accepted line search jump of 5.291502622129181.
PARAFAC2 reconstruction error=0.8189116959570898, variation=3.42808938347261e-07.
Starting iteration 29
reconstruction error=0.20880567851311085
iteration 1, reconstruction error: 0.2088055776605431, decrease = 1.0085256774150508e-07
iteration 2, reconstruction error: 0.20880547781982423, decrease = 9.984071888680113e-08
iteration 3, reconstruction error: 0.20880537906753951, decrease = 9.87522847106792e-08
iteration 4, reconstruction error: 0.20880528139210455, decrease = 9.76754349624187e-08
PARAFAC2 reconstruction error=0.8189116548622073, variation=4.1094882496928165e-08.
Starting iteration 30
reconstruction error=0.208805529541461
iteration 1, reconstruction error: 0.20880543311769656, decrease = 9.642376444518597e-08
iteration 2, reconstruction error: 0.2088053376480173, decrease = 9.546967927320793e-08
iteration 3, reconstruction error: 0.2088052432179232, decrease = 9.443009407750225e-08
iteration 4, reconstruction error: 0.20880514981638365, decrease = 9.340153955816888e-08
Accepted line search jump of 5.477225575051661.
PARAFAC2 reconstruction error=0.8189114333689238, variation=2.6258816598900836e-07.
Starting iteration 31
reconstruction error=0.20880410592105228
iteration 1, reconstruction error: 0.20880403120288407, decrease = 7.471816820814325e-08
iteration 2, reconstruction error: 0.20880395723280365, decrease = 7.397008042198117e-08
iteration 3, reconstruction error: 0.2088038840607864, decrease = 7.317201725087763e-08
iteration 4, reconstruction error: 0.20880381167839798, decrease = 7.23823884163366e-08
PARAFAC2 reconstruction error=0.8189114028245223, variation=3.05444014525591e-08.
Starting iteration 32
reconstruction error=0.2088034171703141
iteration 1, reconstruction error: 0.20880334562919595, decrease = 7.154111814067221e-08
iteration 2, reconstruction error: 0.2088032747905829, decrease = 7.083861305878791e-08
iteration 3, reconstruction error: 0.20880320471469435, decrease = 7.007588853635838e-08
iteration 4, reconstruction error: 0.20880313539344378, decrease = 6.932125057312888e-08
Accepted line search jump of 5.656854249492381.
PARAFAC2 reconstruction error=0.8189112333456288, variation=2.0002329503832073e-07.
Starting iteration 33
reconstruction error=0.20880058416755792
iteration 1, reconstruction error: 0.20880052878018057, decrease = 5.5387377351223677e-08
iteration 2, reconstruction error: 0.20880047393789875, decrease = 5.484228182695006e-08
iteration 3, reconstruction error: 0.208800419677433, decrease = 5.426046573164811e-08
iteration 4, reconstruction error: 0.20880036599258234, decrease = 5.3684850676027907e-08
PARAFAC2 reconstruction error=0.818911210590706, variation=2.2754922723855486e-08.
Starting iteration 34
reconstruction error=0.20880064960228628
iteration 1, reconstruction error: 0.2088005965340279, decrease = 5.3068258371036237e-08
iteration 2, reconstruction error: 0.2088005439780983, decrease = 5.255592960828892e-08
iteration 3, reconstruction error: 0.2088004919781915, decrease = 5.1999906797162154e-08
iteration 4, reconstruction error: 0.20880044052839877, decrease = 5.144979273175032e-08
Accepted line search jump of 5.830951894845301.
PARAFAC2 reconstruction error=0.8189110812344805, variation=1.5211114823276972e-07.
Starting iteration 35
reconstruction error=0.20880024538201625
iteration 1, reconstruction error: 0.20880020431297158, decrease = 4.106904466505412e-08
iteration 2, reconstruction error: 0.20880016364651874, decrease = 4.066645284406256e-08
iteration 3, reconstruction error: 0.2088001234012664, decrease = 4.024525232515508e-08
iteration 4, reconstruction error: 0.2088000835727912, decrease = 3.982847521233346e-08
PARAFAC2 reconstruction error=0.8189110642258797, variation=1.7008600861068146e-08.
Starting iteration 36
reconstruction error=0.20879970091424585
iteration 1, reconstruction error: 0.20879966146724074, decrease = 3.9447005106829636e-08
iteration 2, reconstruction error: 0.20879962239434297, decrease = 3.907289777838052e-08
iteration 3, reconstruction error: 0.20879958372447865, decrease = 3.8669864310669766e-08
iteration 4, reconstruction error: 0.20879954545340798, decrease = 3.827107067366775e-08
Accepted line search jump of 6.0.
PARAFAC2 reconstruction error=0.818910965326941, variation=1.1590753956625122e-07.
Starting iteration 37
reconstruction error=0.20879756536009228
iteration 1, reconstruction error: 0.20879753460353273, decrease = 3.075655954920542e-08
iteration 2, reconstruction error: 0.20879750413917147, decrease = 3.046436125586638e-08
iteration 3, reconstruction error: 0.20879747397965637, decrease = 3.015951510754178e-08
iteration 4, reconstruction error: 0.20879744412178802, decrease = 2.985786834441839e-08
PARAFAC2 reconstruction error=0.8189109524417301, variation=1.2885210898261334e-08.
Starting iteration 38
reconstruction error=0.2087977994970626
iteration 1, reconstruction error: 0.2087977699128512, decrease = 2.9584211386213255e-08
iteration 2, reconstruction error: 0.20879774059963305, decrease = 2.9313218158355525e-08
iteration 3, reconstruction error: 0.2087977115782183, decrease = 2.9021414743590768e-08
iteration 4, reconstruction error: 0.2087976828455526, decrease = 2.8732665691144632e-08
Accepted line search jump of 6.164414002968976.
PARAFAC2 reconstruction error=0.818910876331183, variation=8.899575798526627e-08.
Starting iteration 39
reconstruction error=0.20879815294003093
iteration 1, reconstruction error: 0.20879812967979997, decrease = 2.326023096355101e-08
iteration 2, reconstruction error: 0.2087981066413756, decrease = 2.3038424362686882e-08
iteration 3, reconstruction error: 0.20879808382319748, decrease = 2.2818178124772714e-08
iteration 4, reconstruction error: 0.20879806122301717, decrease = 2.2600180310528017e-08
PARAFAC2 reconstruction error=0.8189108664069407, variation=9.924242316827758e-09.
Starting iteration 40
reconstruction error=0.20879761241019476
iteration 1, reconstruction error: 0.20879758994714112, decrease = 2.2463053639398822e-08
iteration 2, reconstruction error: 0.20879756768355523, decrease = 2.226358589152433e-08
iteration 3, reconstruction error: 0.2087975456312996, decrease = 2.205225563267632e-08
iteration 4, reconstruction error: 0.20879752378821534, decrease = 2.1843084258010848e-08
Accepted line search jump of 6.324555320336759.
PARAFAC2 reconstruction error=0.8189108071185218, variation=6.921266115789138e-08.
Starting iteration 41
reconstruction error=0.20879562980660504
iteration 1, reconstruction error: 0.2087956117960382, decrease = 1.8010566843473796e-08
iteration 2, reconstruction error: 0.20879559395025662, decrease = 1.7845781574710173e-08
iteration 3, reconstruction error: 0.20879557626509118, decrease = 1.7685165443204198e-08
iteration 4, reconstruction error: 0.20879555873891129, decrease = 1.752617989625449e-08
PARAFAC2 reconstruction error=0.818910799226655, variation=7.89186682670362e-09.
Starting iteration 42
reconstruction error=0.20879604726895337
iteration 1, reconstruction error: 0.20879602984075513, decrease = 1.7428198245683646e-08
iteration 2, reconstruction error: 0.2087960125583443, decrease = 1.7282410835761652e-08
iteration 3, reconstruction error: 0.20879599543017568, decrease = 1.7128168605662353e-08
iteration 4, reconstruction error: 0.20879597845469583, decrease = 1.697547985513026e-08
Accepted line search jump of 6.48074069840786.
PARAFAC2 reconstruction error=0.8189107522368663, variation=5.488165555345148e-08.
Starting iteration 43
reconstruction error=0.20879712418451662
iteration 1, reconstruction error: 0.20879710994982856, decrease = 1.4234688067160661e-08
iteration 2, reconstruction error: 0.2087970958528346, decrease = 1.409699396104358e-08
iteration 3, reconstruction error: 0.20879708187369114, decrease = 1.3979143453912712e-08
iteration 4, reconstruction error: 0.2087970680112697, decrease = 1.3862421432975225e-08
PARAFAC2 reconstruction error=0.8189107457244493, variation=6.512416939052912e-09.
Starting iteration 44
reconstruction error=0.20879645019868753
iteration 1, reconstruction error: 0.20879643634781855, decrease = 1.3850868979536912e-08
iteration 2, reconstruction error: 0.20879642260868833, decrease = 1.373913022240103e-08
iteration 3, reconstruction error: 0.20879640898323298, decrease = 1.3625455347332505e-08
iteration 4, reconstruction error: 0.20879639547036502, decrease = 1.3512867963472175e-08
Accepted line search jump of 6.6332495807108.
PARAFAC2 reconstruction error=0.818910707675502, variation=4.456136426522761e-08.
Starting iteration 45
reconstruction error=0.2087941016520622
iteration 1, reconstruction error: 0.2087940899661578, decrease = 1.1685904383051948e-08
iteration 2, reconstruction error: 0.20879407839296343, decrease = 1.1573194375058549e-08
iteration 3, reconstruction error: 0.2087940669084266, decrease = 1.1484536821537716e-08
iteration 4, reconstruction error: 0.20879405551170274, decrease = 1.1396723870182868e-08
PARAFAC2 reconstruction error=0.8189107019709355, variation=5.7045664858534906e-09.
Starting iteration 46
reconstruction error=0.208794797681011
iteration 1, reconstruction error: 0.20879478629679665, decrease = 1.1384214348986177e-08
iteration 2, reconstruction error: 0.20879477499743368, decrease = 1.1299362973060667e-08
iteration 3, reconstruction error: 0.20879476378367035, decrease = 1.1213763334572135e-08
iteration 4, reconstruction error: 0.20879475265471062, decrease = 1.112895972599226e-08
Accepted line search jump of 6.782329983125268.
PARAFAC2 reconstruction error=0.8189106705032854, variation=3.717221663812609e-08.
Starting iteration 47
reconstruction error=0.20879686727233332
iteration 1, reconstruction error: 0.2087968574305352, decrease = 9.84179812646424e-09
iteration 2, reconstruction error: 0.20879684770705717, decrease = 9.723478022749532e-09
iteration 3, reconstruction error: 0.2087968380512673, decrease = 9.655789862117459e-09
iteration 4, reconstruction error: 0.20879682846259257, decrease = 9.588674743099546e-09
PARAFAC2 reconstruction error=0.8189106651604167, variation=5.3428687030177e-09.
Starting iteration 48
reconstruction error=0.20879585935964737
iteration 1, reconstruction error: 0.20879584971607765, decrease = 9.643569720552136e-09
iteration 2, reconstruction error: 0.20879584014479763, decrease = 9.5712800185499e-09
iteration 3, reconstruction error: 0.20879583063936413, decrease = 9.505433495871074e-09
iteration 4, reconstruction error: 0.20879582119921958, decrease = 9.440144554950791e-09
Accepted line search jump of 6.928203230275509.
PARAFAC2 reconstruction error=0.8189106387493107, variation=3.175397467192198e-08.
Starting iteration 49
reconstruction error=0.20879242830540412
iteration 1, reconstruction error: 0.20879241961999595, decrease = 8.68540817045016e-09
iteration 2, reconstruction error: 0.20879241105739924, decrease = 8.562596715000481e-09
iteration 3, reconstruction error: 0.20879240254886705, decrease = 8.50853218437031e-09
iteration 4, reconstruction error: 0.20879239409393574, decrease = 8.454931310630798e-09
PARAFAC2 reconstruction error=0.8189106332256044, variation=5.523706270160744e-09.
Starting iteration 50
reconstruction error=0.2087936409029296
iteration 1, reconstruction error: 0.20879363241966944, decrease = 8.483260149905192e-09
iteration 2, reconstruction error: 0.20879362399708398, decrease = 8.422585462408705e-09
iteration 3, reconstruction error: 0.20879361562707555, decrease = 8.370008436342502e-09
iteration 4, reconstruction error: 0.20879360730921212, decrease = 8.317863425810756e-09
Accepted line search jump of 7.0710678118654755.
PARAFAC2 reconstruction error=0.8189106112276076, variation=2.7521703138688736e-08.
Starting iteration 51
reconstruction error=0.20879749313743354
iteration 1, reconstruction error: 0.20879748532159284, decrease = 7.815840696867582e-09
iteration 2, reconstruction error: 0.2087974776831992, decrease = 7.63839363981944e-09
iteration 3, reconstruction error: 0.20879747008866542, decrease = 7.594533779631263e-09
iteration 4, reconstruction error: 0.208797462537686, decrease = 7.550979425063886e-09
PARAFAC2 reconstruction error=0.8189106048709609, variation=6.3566466534936694e-09.
Starting iteration 52
reconstruction error=0.20879576479106268
iteration 1, reconstruction error: 0.20879575713860674, decrease = 7.652455946693948e-09
iteration 2, reconstruction error: 0.2087957495507333, decrease = 7.587873440684234e-09
iteration 3, reconstruction error: 0.20879574200600892, decrease = 7.544724373031997e-09
iteration 4, reconstruction error: 0.20879573450412497, decrease = 7.501883947380605e-09
Accepted line search jump of 7.211102550927978.
PARAFAC2 reconstruction error=0.8189105876770811, variation=2.355052641789257e-08.
Starting iteration 53
reconstruction error=0.20878990403423453
iteration 1, reconstruction error: 0.20878989662570696, decrease = 7.4085275691970764e-09
iteration 2, reconstruction error: 0.20878988946714724, decrease = 7.158559717224122e-09
iteration 3, reconstruction error: 0.2087898823465226, decrease = 7.120624645473583e-09
iteration 4, reconstruction error: 0.20878987526354, decrease = 7.082982589334819e-09
PARAFAC2 reconstruction error=0.8189105792940876, variation=8.382993521571791e-09.
Starting iteration 54
reconstruction error=0.20879217999272068
iteration 1, reconstruction error: 0.20879217285272458, decrease = 7.139996094362999e-09
iteration 2, reconstruction error: 0.208792165780751, decrease = 7.07197359006706e-09
iteration 3, reconstruction error: 0.20879215874589593, decrease = 7.034855059595557e-09
iteration 4, reconstruction error: 0.2087921517478926, decrease = 6.9980033434724476e-09
Accepted line search jump of 7.3484692283495345.
PARAFAC2 reconstruction error=0.8189105690613583, variation=1.8615722852111105e-08.
Starting iteration 55
reconstruction error=0.20879972340627817
iteration 1, reconstruction error: 0.2087997163087422, decrease = 7.097535975608693e-09
iteration 2, reconstruction error: 0.20879970966460046, decrease = 6.6441417367890665e-09
iteration 3, reconstruction error: 0.20879970305314374, decrease = 6.611456715432951e-09
iteration 4, reconstruction error: 0.2087996964742055, decrease = 6.578938255286104e-09
PARAFAC2 reconstruction error=0.8189105565192538, variation=1.2542104466106707e-08.
Starting iteration 56
reconstruction error=0.2087964157158116
iteration 1, reconstruction error: 0.20879640896469695, decrease = 6.75111463954714e-09
iteration 2, reconstruction error: 0.20879640231441488, decrease = 6.6502820750269365e-09
iteration 3, reconstruction error: 0.20879639569666725, decrease = 6.6177476276685354e-09
iteration 4, reconstruction error: 0.20879638911127815, decrease = 6.585389095148386e-09
Line search failed for jump of 7.483314773547883.
PARAFAC2 reconstruction error=0.8189105565192538, variation=1.2542104466106707e-08.
Starting iteration 57
reconstruction error=0.2087949007621434
iteration 1, reconstruction error: 0.20879489408703858, decrease = 6.675104829989564e-09
iteration 2, reconstruction error: 0.20879488745583044, decrease = 6.6312081381525445e-09
iteration 3, reconstruction error: 0.20879488085687314, decrease = 6.598957297265784e-09
iteration 4, reconstruction error: 0.20879487428998078, decrease = 6.566892363224497e-09
PARAFAC2 reconstruction error=0.818910544556771, variation=1.1962482782124084e-08.
Starting iteration 58
reconstruction error=0.20879421240803683
iteration 1, reconstruction error: 0.20879420577001956, decrease = 6.638017274740449e-09
iteration 2, reconstruction error: 0.20879419916598335, decrease = 6.604036206780961e-09
iteration 3, reconstruction error: 0.20879419259386872, decrease = 6.572114630287729e-09
iteration 4, reconstruction error: 0.20879418605349287, decrease = 6.540375852015501e-09
Accepted line search jump of 7.615773105863909.
PARAFAC2 reconstruction error=0.8189105230765609, variation=3.3442692948248975e-08.
Starting iteration 59
reconstruction error=0.2087917955858506
iteration 1, reconstruction error: 0.20879178914033927, decrease = 6.4455113191197455e-09
iteration 2, reconstruction error: 0.20879178274293472, decrease = 6.397404550551045e-09
iteration 3, reconstruction error: 0.20879177637508095, decrease = 6.3678537720601724e-09
iteration 4, reconstruction error: 0.20879177003659907, decrease = 6.338481878254143e-09
PARAFAC2 reconstruction error=0.8189105198171711, variation=3.259389758092368e-09.
Starting iteration 60
reconstruction error=0.20879271351344936
iteration 1, reconstruction error: 0.20879270711437725, decrease = 6.399072105534032e-09
iteration 2, reconstruction error: 0.20879270074715986, decrease = 6.367217392222457e-09
iteration 3, reconstruction error: 0.20879269440919387, decrease = 6.337965985370175e-09
iteration 4, reconstruction error: 0.20879268810030802, decrease = 6.308885858175017e-09
Accepted line search jump of 7.745966692414834.
PARAFAC2 reconstruction error=0.8189104994576888, variation=2.3618872080355402e-08.
Starting iteration 61
reconstruction error=0.20879565673137115
iteration 1, reconstruction error: 0.2087956504661787, decrease = 6.265192448173806e-09
iteration 2, reconstruction error: 0.20879564427552547, decrease = 6.190653240034649e-09
iteration 3, reconstruction error: 0.20879563811226495, decrease = 6.1632605130590434e-09
iteration 4, reconstruction error: 0.20879563197626916, decrease = 6.135995794798177e-09
PARAFAC2 reconstruction error=0.8189104957620277, variation=3.6956611104699277e-09.
Starting iteration 62
reconstruction error=0.2087942121084088
iteration 1, reconstruction error: 0.20879420588816305, decrease = 6.220245735155672e-09
iteration 2, reconstruction error: 0.20879419970367952, decrease = 6.184483536397778e-09
iteration 3, reconstruction error: 0.20879419354647943, decrease = 6.157200083123371e-09
iteration 4, reconstruction error: 0.20879418741642622, decrease = 6.130053215036568e-09
Accepted line search jump of 7.874007874011811.
PARAFAC2 reconstruction error=0.818910477228697, variation=2.2228991758410643e-08.
Starting iteration 63
reconstruction error=0.20878917324478102
iteration 1, reconstruction error: 0.20878916702608616, decrease = 6.218694864612573e-09
iteration 2, reconstruction error: 0.2087891609270677, decrease = 6.099018456939831e-09
iteration 3, reconstruction error: 0.2087891548542982, decrease = 6.0727695094797696e-09
iteration 4, reconstruction error: 0.2087891488076234, decrease = 6.046674799753404e-09
PARAFAC2 reconstruction error=0.818910472401416, variation=4.827281019359475e-09.
Starting iteration 64
reconstruction error=0.20879127446922677
iteration 1, reconstruction error: 0.2087912683548467, decrease = 6.114380057820057e-09
iteration 2, reconstruction error: 0.2087912622811846, decrease = 6.0736621010359926e-09
iteration 3, reconstruction error: 0.20879125623355907, decrease = 6.047625539240542e-09
iteration 4, reconstruction error: 0.2087912502118336, decrease = 6.021725479365969e-09
Accepted line search jump of 8.0.
PARAFAC2 reconstruction error=0.8189104578173043, variation=1.9411392715440456e-08.
Starting iteration 65
reconstruction error=0.20879838633719375
iteration 1, reconstruction error: 0.2087983801311712, decrease = 6.206022556964896e-09
iteration 2, reconstruction error: 0.20879837418120742, decrease = 5.949963771678668e-09
iteration 3, reconstruction error: 0.2087983682561469, decrease = 5.925060525546755e-09
iteration 4, reconstruction error: 0.20879836235589785, decrease = 5.900249039347827e-09
PARAFAC2 reconstruction error=0.818910450260663, variation=7.556641312689294e-09.
Starting iteration 66
reconstruction error=0.20879504898985735
iteration 1, reconstruction error: 0.20879504296544954, decrease = 6.024407805949039e-09
iteration 2, reconstruction error: 0.20879503700573715, decrease = 5.959712390257721e-09
iteration 3, reconstruction error: 0.20879503107094236, decrease = 5.9347947944932145e-09
iteration 4, reconstruction error: 0.20879502516096718, decrease = 5.909975175910631e-09
Accepted line search jump of 8.12403840463596.
PARAFAC2 reconstruction error=0.8189104452051166, variation=1.261218773862538e-08.
Starting iteration 67
reconstruction error=0.20878333503029087
iteration 1, reconstruction error: 0.2087833285295522, decrease = 6.5007386695903335e-09
iteration 2, reconstruction error: 0.20878332258191723, decrease = 5.947634967862214e-09
iteration 3, reconstruction error: 0.2087833166588828, decrease = 5.923034424037965e-09
iteration 4, reconstruction error: 0.2087833107602653, decrease = 5.898617511101989e-09
PARAFAC2 reconstruction error=0.818910430849006, variation=1.4356110522584231e-08.
Starting iteration 68
reconstruction error=0.20878846894456388
iteration 1, reconstruction error: 0.20878846292125863, decrease = 6.023305243463284e-09
iteration 2, reconstruction error: 0.2087884570082873, decrease = 5.912971334787187e-09
iteration 3, reconstruction error: 0.20878845111965744, decrease = 5.888629861505734e-09
iteration 4, reconstruction error: 0.20878844525523865, decrease = 5.8644187839185236e-09
Line search failed for jump of 8.246211251235321.
PARAFAC2 reconstruction error=0.818910430849006, variation=1.4356110522584231e-08.
Starting iteration 69
reconstruction error=0.20879065417263665
iteration 1, reconstruction error: 0.20879064823880278, decrease = 5.933833868709826e-09
iteration 2, reconstruction error: 0.20879064234309447, decrease = 5.895708310443837e-09
iteration 3, reconstruction error: 0.2087906364715931, decrease = 5.871501368437393e-09
iteration 4, reconstruction error: 0.20879063062418143, decrease = 5.847411665982349e-09
PARAFAC2 reconstruction error=0.8189104179266593, variation=1.2922346748212021e-08.
Starting iteration 70
reconstruction error=0.2087915650832001
iteration 1, reconstruction error: 0.20879155917197784, decrease = 5.911222261678617e-09
iteration 2, reconstruction error: 0.20879155328709217, decrease = 5.8848856621107615e-09
iteration 3, reconstruction error: 0.20879154742631614, decrease = 5.860776031152426e-09
iteration 4, reconstruction error: 0.208791541589541, decrease = 5.8367751465393525e-09
Accepted line search jump of 8.366600265340756.
PARAFAC2 reconstruction error=0.8189103973486703, variation=3.3500335727687514e-08.
Starting iteration 71
reconstruction error=0.20879463407373125
iteration 1, reconstruction error: 0.20879462819087066, decrease = 5.8828605875582696e-09
iteration 2, reconstruction error: 0.20879462237277274, decrease = 5.818097920107235e-09
iteration 3, reconstruction error: 0.20879461657817472, decrease = 5.794598023634023e-09
iteration 4, reconstruction error: 0.20879461080698328, decrease = 5.771191441406032e-09
PARAFAC2 reconstruction error=0.8189103939872802, variation=3.3613901662121748e-09.
Starting iteration 72
reconstruction error=0.20879307222108331
iteration 1, reconstruction error: 0.20879306637229358, decrease = 5.848789730311665e-09
iteration 2, reconstruction error: 0.20879306055480545, decrease = 5.817488130110959e-09
iteration 3, reconstruction error: 0.2087930547607943, decrease = 5.7940111597432065e-09
iteration 4, reconstruction error: 0.20879304899015516, decrease = 5.770639133206856e-09
Accepted line search jump of 8.48528137423857.
PARAFAC2 reconstruction error=0.8189103752709254, variation=2.2077744965542934e-08.
Starting iteration 73
reconstruction error=0.20878735673840693
iteration 1, reconstruction error: 0.2087873508265114, decrease = 5.911895528676325e-09
iteration 2, reconstruction error: 0.2087873450393012, decrease = 5.787210211050109e-09
iteration 3, reconstruction error: 0.208787339275213, decrease = 5.764088178983329e-09
iteration 4, reconstruction error: 0.20878733353412812, decrease = 5.741084885269032e-09
PARAFAC2 reconstruction error=0.8189103705774986, variation=4.693426758350938e-09.
Starting iteration 74
reconstruction error=0.2087898494672819
iteration 1, reconstruction error: 0.2087898436542478, decrease = 5.8130341096251925e-09
iteration 2, reconstruction error: 0.2087898378811698, decrease = 5.773077987880626e-09
iteration 3, reconstruction error: 0.20878983213111177, decrease = 5.75005804082096e-09
iteration 4, reconstruction error: 0.20878982640395946, decrease = 5.7271523079549524e-09
Accepted line search jump of 8.602325267042627.
PARAFAC2 reconstruction error=0.8189103572901038, variation=1.798082160942016e-08.
Starting iteration 75
reconstruction error=0.2087987387329439
iteration 1, reconstruction error: 0.20879873271367191, decrease = 6.01927199750385e-09
iteration 2, reconstruction error: 0.20879872701367833, decrease = 5.699993588237362e-09
iteration 3, reconstruction error: 0.20879872133613517, decrease = 5.677543157833753e-09
iteration 4, reconstruction error: 0.20879871568096212, decrease = 5.655173052065976e-09
PARAFAC2 reconstruction error=0.8189103488213353, variation=8.468768464275911e-09.
Starting iteration 76
reconstruction error=0.20879445199244998
iteration 1, reconstruction error: 0.2087944462086634, decrease = 5.783786588553497e-09
iteration 2, reconstruction error: 0.20879444050033974, decrease = 5.708323647102276e-09
iteration 3, reconstruction error: 0.20879443481449242, decrease = 5.6858473207466176e-09
iteration 4, reconstruction error: 0.20879442915102653, decrease = 5.663465890703989e-09
Line search failed for jump of 8.717797887081348.
PARAFAC2 reconstruction error=0.8189103488213353, variation=8.468768464275911e-09.
Starting iteration 77
reconstruction error=0.20879263722285865
iteration 1, reconstruction error: 0.2087926314815378, decrease = 5.741320863172916e-09
iteration 2, reconstruction error: 0.20879262577276902, decrease = 5.708768763268424e-09
iteration 3, reconstruction error: 0.20879262008645827, decrease = 5.686310755592672e-09
iteration 4, reconstruction error: 0.2087926144225076, decrease = 5.663950669587692e-09
PARAFAC2 reconstruction error=0.8189103397218969, variation=9.099438424975403e-09.
Starting iteration 78
reconstruction error=0.20879186071066635
iteration 1, reconstruction error: 0.20879185497994088, decrease = 5.730725477492982e-09
iteration 2, reconstruction error: 0.20879184927386343, decrease = 5.706077443878854e-09
iteration 3, reconstruction error: 0.20879184359020556, decrease = 5.68365787767533e-09
iteration 4, reconstruction error: 0.20879183792887235, decrease = 5.6613332077848355e-09
Accepted line search jump of 8.831760866327848.
PARAFAC2 reconstruction error=0.8189103182099406, variation=3.0611394641333334e-08.
Starting iteration 79
reconstruction error=0.20878884887856552
iteration 1, reconstruction error: 0.20878884315952553, decrease = 5.719039991580743e-09
iteration 2, reconstruction error: 0.20878883748740668, decrease = 5.672118857935615e-09
iteration 3, reconstruction error: 0.20878883183735986, decrease = 5.650046819294374e-09
iteration 4, reconstruction error: 0.2087888262092917, decrease = 5.628068150409504e-09
PARAFAC2 reconstruction error=0.8189103152143393, variation=2.995601322552943e-09.
Starting iteration 80
reconstruction error=0.20879011002403794
iteration 1, reconstruction error: 0.20879010433446976, decrease = 5.6895681777024976e-09
iteration 2, reconstruction error: 0.20879009867111487, decrease = 5.663354896157102e-09
iteration 3, reconstruction error: 0.2087900930297748, decrease = 5.641340061757205e-09
iteration 4, reconstruction error: 0.20879008741035773, decrease = 5.61941707055702e-09
Accepted line search jump of 8.94427190999916.
PARAFAC2 reconstruction error=0.8189102951742082, variation=2.303573243267465e-08.
Starting iteration 81
reconstruction error=0.20879466412317393
iteration 1, reconstruction error: 0.20879465840892036, decrease = 5.714253570321404e-09
iteration 2, reconstruction error: 0.20879465280051013, decrease = 5.6084102362241595e-09
iteration 3, reconstruction error: 0.2087946472136907, decrease = 5.586819423752942e-09
iteration 4, reconstruction error: 0.20879464164836561, decrease = 5.565325089662565e-09
PARAFAC2 reconstruction error=0.8189102911511132, variation=4.0230949682751316e-09.
Starting iteration 82
reconstruction error=0.20879236011694938
iteration 1, reconstruction error: 0.20879235446904448, decrease = 5.6479048937685405e-09
iteration 2, reconstruction error: 0.20879234885888523, decrease = 5.610159253821578e-09
iteration 3, reconstruction error: 0.20879234327029855, decrease = 5.588586676763541e-09
iteration 4, reconstruction error: 0.2087923377031957, decrease = 5.567102862036322e-09
Accepted line search jump of 9.055385138137417.
PARAFAC2 reconstruction error=0.8189102760434687, variation=1.9130739548067766e-08.
Starting iteration 83
reconstruction error=0.20878353816510486
iteration 1, reconstruction error: 0.20878353229782848, decrease = 5.867276386961606e-09
iteration 2, reconstruction error: 0.2087835267043132, decrease = 5.593515289836759e-09
iteration 3, reconstruction error: 0.20878352113212384, decrease = 5.572189348823642e-09
iteration 4, reconstruction error: 0.20878351558115393, decrease = 5.550969905954162e-09
PARAFAC2 reconstruction error=0.8189102686733495, variation=7.370119181615564e-09.
Starting iteration 84
reconstruction error=0.20878755270013774
iteration 1, reconstruction error: 0.20878754705668598, decrease = 5.6434517614611934e-09
iteration 2, reconstruction error: 0.20878754147887782, decrease = 5.577808159795694e-09
iteration 3, reconstruction error: 0.20878753592229102, decrease = 5.5565868017914966e-09
iteration 4, reconstruction error: 0.20878753038684378, decrease = 5.535447239468638e-09
Line search failed for jump of 9.16515138991168.
PARAFAC2 reconstruction error=0.8189102686733495, variation=7.370119181615564e-09.
Starting iteration 85
reconstruction error=0.20878921033937278
iteration 1, reconstruction error: 0.20878920474177112, decrease = 5.597601659967921e-09
iteration 2, reconstruction error: 0.20878919917301103, decrease = 5.56876009194518e-09
iteration 3, reconstruction error: 0.20878919362541806, decrease = 5.547592968335735e-09
iteration 4, reconstruction error: 0.20878918809890354, decrease = 5.526514523790382e-09
PARAFAC2 reconstruction error=0.8189102603127467, variation=8.360602765655756e-09.
Starting iteration 86
reconstruction error=0.20878988337967805
iteration 1, reconstruction error: 0.20878987779488162, decrease = 5.5847964308686215e-09
iteration 2, reconstruction error: 0.20878987223247955, decrease = 5.562402066727756e-09
iteration 3, reconstruction error: 0.20878986669119592, decrease = 5.5412836263979415e-09
iteration 4, reconstruction error: 0.20878986117094442, decrease = 5.520251505908291e-09
Accepted line search jump of 9.273618495495704.
PARAFAC2 reconstruction error=0.8189102383270286, variation=3.03463209005983e-08.
Starting iteration 87
reconstruction error=0.20879231988547622
iteration 1, reconstruction error: 0.20879231431925188, decrease = 5.566224342556936e-09
iteration 2, reconstruction error: 0.2087923088044526, decrease = 5.514799283901084e-09
iteration 3, reconstruction error: 0.20879230331039508, decrease = 5.494057514487949e-09
iteration 4, reconstruction error: 0.2087922978369914, decrease = 5.473403674738364e-09
PARAFAC2 reconstruction error=0.8189102353920912, variation=2.934937404219795e-09.
Starting iteration 88
reconstruction error=0.2087910001184247
iteration 1, reconstruction error: 0.20879099457780925, decrease = 5.540615438670571e-09
iteration 2, reconstruction error: 0.20879098906437046, decrease = 5.513438788851133e-09
iteration 3, reconstruction error: 0.2087909835716497, decrease = 5.492720750455149e-09
iteration 4, reconstruction error: 0.2087909780995567, decrease = 5.472093000946643e-09
Accepted line search jump of 9.38083151964686.
PARAFAC2 reconstruction error=0.8189102152721056, variation=2.3054922970722203e-08.
Starting iteration 89
reconstruction error=0.20878570808409871
iteration 1, reconstruction error: 0.20878570248123998, decrease = 5.602858732522975e-09
iteration 2, reconstruction error: 0.20878569699499888, decrease = 5.486241100305378e-09
iteration 3, reconstruction error: 0.20878569152917015, decrease = 5.465828734063649e-09
iteration 4, reconstruction error: 0.2087856860836689, decrease = 5.445501244372153e-09
PARAFAC2 reconstruction error=0.8189102110860434, variation=4.186062163569204e-09.
Starting iteration 90
reconstruction error=0.20878807644506311
iteration 1, reconstruction error: 0.20878807093156637, decrease = 5.513496742493018e-09
iteration 2, reconstruction error: 0.20878806545563103, decrease = 5.4759353440569924e-09
iteration 3, reconstruction error: 0.20878806000004607, decrease = 5.455584956015613e-09
iteration 4, reconstruction error: 0.2087880545647297, decrease = 5.4353163636555735e-09
Accepted line search jump of 9.486832980505138.
PARAFAC2 reconstruction error=0.8189101978964043, variation=1.737570132220867e-08.
Starting iteration 91
reconstruction error=0.20879726889049413
iteration 1, reconstruction error: 0.2087972630972078, decrease = 5.793286322886004e-09
iteration 2, reconstruction error: 0.20879725768572863, decrease = 5.411479181427481e-09
iteration 3, reconstruction error: 0.20879725229421628, decrease = 5.391512347685534e-09
iteration 4, reconstruction error: 0.20879724692254578, decrease = 5.371670497300585e-09
PARAFAC2 reconstruction error=0.8189101891924775, variation=8.70392680152321e-09.
Starting iteration 92
reconstruction error=0.20879270036592687
iteration 1, reconstruction error: 0.20879269485820887, decrease = 5.5077180038942686e-09
iteration 2, reconstruction error: 0.20879268944048224, decrease = 5.417726628431652e-09
iteration 3, reconstruction error: 0.20879268404269363, decrease = 5.397788604977194e-09
iteration 4, reconstruction error: 0.20879267866474732, decrease = 5.3779463105030345e-09
Line search failed for jump of 9.591663046625438.
PARAFAC2 reconstruction error=0.8189101891924775, variation=8.70392680152321e-09.
Starting iteration 93
reconstruction error=0.20879078867458173
iteration 1, reconstruction error: 0.20879078322204875, decrease = 5.452532980676494e-09
iteration 2, reconstruction error: 0.20879077780380065, decrease = 5.418248100186318e-09
iteration 3, reconstruction error: 0.20879077240546756, decrease = 5.398333086104046e-09
iteration 4, reconstruction error: 0.2087907670269585, decrease = 5.378509054798641e-09
PARAFAC2 reconstruction error=0.8189101798280951, variation=9.364382380638858e-09.
Starting iteration 94
reconstruction error=0.208789978309485
iteration 1, reconstruction error: 0.2087899728701295, decrease = 5.4393555215526135e-09
iteration 2, reconstruction error: 0.20878996745397208, decrease = 5.416157411453071e-09
iteration 3, reconstruction error: 0.2087899620576935, decrease = 5.396278562885826e-09
iteration 4, reconstruction error: 0.2087899566812136, decrease = 5.376479900176534e-09
Accepted line search jump of 9.695359714832659.
PARAFAC2 reconstruction error=0.8189101578958926, variation=3.1296584879214606e-08.
Starting iteration 95
reconstruction error=0.20878655891114384
iteration 1, reconstruction error: 0.20878655346139294, decrease = 5.449750900554662e-09
iteration 2, reconstruction error: 0.20878654807622693, decrease = 5.385166007565445e-09
iteration 3, reconstruction error: 0.2087865427106146, decrease = 5.3656123433221126e-09
iteration 4, reconstruction error: 0.20878653736449115, decrease = 5.346123432836691e-09
PARAFAC2 reconstruction error=0.8189101547337865, variation=3.1621061324926814e-09.
Starting iteration 96
reconstruction error=0.20878804275160548
iteration 1, reconstruction error: 0.20878803734763124, decrease = 5.403974240314469e-09
iteration 2, reconstruction error: 0.20878803197124987, decrease = 5.3763813678830985e-09
iteration 3, reconstruction error: 0.20878802661437962, decrease = 5.356870252937185e-09
iteration 4, reconstruction error: 0.2087880212769441, decrease = 5.337435521335365e-09
Accepted line search jump of 9.797958971132712.
PARAFAC2 reconstruction error=0.818910136366174, variation=2.1529718563506606e-08.
Starting iteration 97
reconstruction error=0.2087939253388811
iteration 1, reconstruction error: 0.20879391981217277, decrease = 5.526708340974906e-09
iteration 2, reconstruction error: 0.2087939144952189, decrease = 5.3169538771769e-09
iteration 3, reconstruction error: 0.20879390919741456, decrease = 5.297804334114531e-09
iteration 4, reconstruction error: 0.20879390391865024, decrease = 5.278764314553541e-09
PARAFAC2 reconstruction error=0.8189101309341169, variation=5.432057137433333e-09.
Starting iteration 98
reconstruction error=0.20879092379891717
iteration 1, reconstruction error: 0.20879091842007283, decrease = 5.378844342152078e-09
iteration 2, reconstruction error: 0.2087909130990886, decrease = 5.32098423655647e-09
iteration 3, reconstruction error: 0.20879090779722412, decrease = 5.301864475226736e-09
iteration 4, reconstruction error: 0.20879090251439067, decrease = 5.282833448472246e-09
Accepted line search jump of 9.899494936611665.
PARAFAC2 reconstruction error=0.8189101269399618, variation=9.426212255192468e-09.
Starting iteration 99
reconstruction error=0.20877847157468038
iteration 1, reconstruction error: 0.2087784655173109, decrease = 6.057369467127316e-09
iteration 2, reconstruction error: 0.2087784602004596, decrease = 5.316851320325e-09
iteration 3, reconstruction error: 0.20877845490249475, decrease = 5.297964844608316e-09
iteration 4, reconstruction error: 0.2087784496233493, decrease = 5.279145454117895e-09
PARAFAC2 reconstruction error=0.818910112382806, variation=1.455715581410999e-08.
Starting iteration 100
reconstruction error=0.208784320080877
iteration 1, reconstruction error: 0.2087843146289779, decrease = 5.451899098840585e-09
iteration 2, reconstruction error: 0.2087843093330746, decrease = 5.295903299229465e-09
iteration 3, reconstruction error: 0.20878430405595227, decrease = 5.277122322455696e-09
iteration 4, reconstruction error: 0.20878429879755464, decrease = 5.258397633989276e-09
Line search failed for jump of 10.0.
PARAFAC2 reconstruction error=0.818910112382806, variation=1.455715581410999e-08.
Starting iteration 101
reconstruction error=0.2087867380602714
iteration 1, reconstruction error: 0.20878673273151332, decrease = 5.328758073686046e-09
iteration 2, reconstruction error: 0.2087867274471352, decrease = 5.284378129521983e-09
iteration 3, reconstruction error: 0.20878672218148456, decrease = 5.265650637742425e-09
iteration 4, reconstruction error: 0.20878671693450593, decrease = 5.246978629358523e-09
PARAFAC2 reconstruction error=0.8189100986261135, variation=1.3756692451849517e-08.
Starting iteration 102
reconstruction error=0.2087877275690686
iteration 1, reconstruction error: 0.20878772226888848, decrease = 5.300180128120502e-09
iteration 2, reconstruction error: 0.20878771699192833, decrease = 5.276960146627374e-09
iteration 3, reconstruction error: 0.2087877117336578, decrease = 5.258270541208532e-09
iteration 4, reconstruction error: 0.2087877064940129, decrease = 5.239644884635908e-09
Accepted line search jump of 10.099504938362077.
PARAFAC2 reconstruction error=0.8189100780864826, variation=3.429632333684651e-08.
Starting iteration 103
reconstruction error=0.20879171944867192
iteration 1, reconstruction error: 0.20879171408731653, decrease = 5.361355387423217e-09
iteration 2, reconstruction error: 0.20879170886592813, decrease = 5.221388404974547e-09
iteration 3, reconstruction error: 0.20879170366289726, decrease = 5.20303086726237e-09
iteration 4, reconstruction error: 0.20879169847810822, decrease = 5.184789042544935e-09
PARAFAC2 reconstruction error=0.8189100739438288, variation=4.1426538865962925e-09.
Starting iteration 104
reconstruction error=0.2087896177721822
iteration 1, reconstruction error: 0.2087896125046734, decrease = 5.2675087902631645e-09
iteration 2, reconstruction error: 0.2087896072812607, decrease = 5.223412702370922e-09
iteration 3, reconstruction error: 0.20878960207616798, decrease = 5.205092717952553e-09
iteration 4, reconstruction error: 0.2087895968893065, decrease = 5.186861468109427e-09
Accepted line search jump of 10.198039027185569.
PARAFAC2 reconstruction error=0.8189100630782091, variation=1.5008273512862047e-08.
Starting iteration 105
reconstruction error=0.20878057286089327
iteration 1, reconstruction error: 0.2087805671442732, decrease = 5.7166200662095434e-09
iteration 2, reconstruction error: 0.20878056193274522, decrease = 5.211527986936915e-09
iteration 3, reconstruction error: 0.20878055673925494, decrease = 5.193490276722557e-09
iteration 4, reconstruction error: 0.20878055156375921, decrease = 5.175495726428281e-09
PARAFAC2 reconstruction error=0.8189100529157818, variation=1.016242734408479e-08.
Starting iteration 106
reconstruction error=0.20878480062305468
iteration 1, reconstruction error: 0.20878479531658822, decrease = 5.30646646068611e-09
iteration 2, reconstruction error: 0.20878479012237453, decrease = 5.194213698045402e-09
iteration 3, reconstruction error: 0.20878478494612332, decrease = 5.176251205440963e-09
iteration 4, reconstruction error: 0.20878477978779297, decrease = 5.158330346199946e-09
Line search failed for jump of 10.295630140987.
PARAFAC2 reconstruction error=0.8189100529157818, variation=1.016242734408479e-08.
Starting iteration 107
reconstruction error=0.20878654547568143
iteration 1, reconstruction error: 0.20878654025589302, decrease = 5.219788407062609e-09
iteration 2, reconstruction error: 0.2087865350717625, decrease = 5.184130513757879e-09
iteration 3, reconstruction error: 0.20878652990555113, decrease = 5.1662113753625505e-09
iteration 4, reconstruction error: 0.20878652475721104, decrease = 5.148340087579584e-09
PARAFAC2 reconstruction error=0.8189100423346186, variation=1.0581163167877605e-08.
Starting iteration 108
reconstruction error=0.2087872558369244
iteration 1, reconstruction error: 0.20878725063861836, decrease = 5.198306035625322e-09
iteration 2, reconstruction error: 0.20878724546127678, decrease = 5.177341583229023e-09
iteration 3, reconstruction error: 0.208787240301825, decrease = 5.15945178247712e-09
iteration 4, reconstruction error: 0.20878723516020198, decrease = 5.141623016235997e-09
Accepted line search jump of 10.392304845413264.
PARAFAC2 reconstruction error=0.8189100208164833, variation=3.209929844150139e-08.
Starting iteration 109
reconstruction error=0.20879016089639488
iteration 1, reconstruction error: 0.20879015566169873, decrease = 5.234696148770368e-09
iteration 2, reconstruction error: 0.20879015053845076, decrease = 5.123247964755606e-09
iteration 3, reconstruction error: 0.20879014543276986, decrease = 5.105680905836962e-09
iteration 4, reconstruction error: 0.20879014034455184, decrease = 5.088218013593604e-09
PARAFAC2 reconstruction error=0.8189100172124613, variation=3.6040220807720402e-09.
Starting iteration 110
reconstruction error=0.20878857674463752
iteration 1, reconstruction error: 0.20878857158207656, decrease = 5.162560962057583e-09
iteration 2, reconstruction error: 0.20878856645758292, decrease = 5.124493634989236e-09
iteration 3, reconstruction error: 0.20878856135062332, decrease = 5.106959605205574e-09
iteration 4, reconstruction error: 0.20878855626111134, decrease = 5.0895119785288045e-09
Accepted line search jump of 10.488088481701515.
PARAFAC2 reconstruction error=0.8189100035929747, variation=1.722350861932398e-08.
Starting iteration 111
reconstruction error=0.20878151985234697
iteration 1, reconstruction error: 0.2087815143290647, decrease = 5.52328227598764e-09
iteration 2, reconstruction error: 0.2087815092198322, decrease = 5.1092324815371626e-09
iteration 3, reconstruction error: 0.20878150412782895, decrease = 5.092003263484912e-09
iteration 4, reconstruction error: 0.20878149905302706, decrease = 5.074801884275004e-09
PARAFAC2 reconstruction error=0.8189099951614274, variation=8.431547349196933e-09.
Starting iteration 112
reconstruction error=0.20878480125852172
iteration 1, reconstruction error: 0.20878479607012362, decrease = 5.188398100042235e-09
iteration 2, reconstruction error: 0.2087847909767377, decrease = 5.09338593523978e-09
iteration 3, reconstruction error: 0.2087847859005228, decrease = 5.07621489287402e-09
iteration 4, reconstruction error: 0.20878478084144503, decrease = 5.0590777678216625e-09
Line search failed for jump of 10.583005244258363.
PARAFAC2 reconstruction error=0.8189099951614274, variation=8.431547349196933e-09.
Starting iteration 113
reconstruction error=0.20878615302791614
iteration 1, reconstruction error: 0.20878614791214528, decrease = 5.115770862484936e-09
iteration 2, reconstruction error: 0.20878614282820632, decrease = 5.083938964256518e-09
iteration 3, reconstruction error: 0.20878613776140742, decrease = 5.066798897113145e-09
iteration 4, reconstruction error: 0.2087861327116969, decrease = 5.049710510851568e-09
PARAFAC2 reconstruction error=0.8189099858625565, variation=9.29887089551329e-09.
Starting iteration 114
reconstruction error=0.208786700011404
iteration 1, reconstruction error: 0.20878669491433308, decrease = 5.097070931991965e-09
iteration 2, reconstruction error: 0.20878668983688214, decrease = 5.077450931922911e-09
iteration 3, reconstruction error: 0.20878668477653423, decrease = 5.060347918472985e-09
iteration 4, reconstruction error: 0.20878667973324147, decrease = 5.04329275563542e-09
Accepted line search jump of 10.677078252031311.
PARAFAC2 reconstruction error=0.8189099639249532, variation=3.123647418501463e-08.
Starting iteration 115
reconstruction error=0.208788959279003
iteration 1, reconstruction error: 0.2087889541529706, decrease = 5.126032404101366e-09
iteration 2, reconstruction error: 0.2087889491292856, decrease = 5.023684995775213e-09
iteration 3, reconstruction error: 0.20878894412239954, decrease = 5.0068860724117314e-09
iteration 4, reconstruction error: 0.20878893913220742, decrease = 4.9901921206352284e-09
PARAFAC2 reconstruction error=0.8189099605308816, variation=3.3940715793434606e-09.
Starting iteration 116
reconstruction error=0.20878768055953556
iteration 1, reconstruction error: 0.20878767549895216, decrease = 5.060583396776508e-09
iteration 2, reconstruction error: 0.2087876704742317, decrease = 5.024720473034705e-09
iteration 3, reconstruction error: 0.20878766546626776, decrease = 5.007963932435189e-09
iteration 4, reconstruction error: 0.208787660474984, decrease = 4.991283747424191e-09
Accepted line search jump of 10.770329614269007.
PARAFAC2 reconstruction error=0.8189099462412422, variation=1.7683710940019637e-08.
Starting iteration 117
reconstruction error=0.20878180628203172
iteration 1, reconstruction error: 0.20878180087463177, decrease = 5.407399944479252e-09
iteration 2, reconstruction error: 0.2087817958660634, decrease = 5.00856836560537e-09
iteration 3, reconstruction error: 0.20878179087394125, decrease = 4.9921221600968124e-09
iteration 4, reconstruction error: 0.2087817858982568, decrease = 4.975684447794393e-09
PARAFAC2 reconstruction error=0.8189099382424085, variation=7.998833706501784e-09.
Starting iteration 118
reconstruction error=0.20878452979195095
iteration 1, reconstruction error: 0.20878452470666206, decrease = 5.08528888443216e-09
iteration 2, reconstruction error: 0.20878451971360149, decrease = 4.993060576108377e-09
iteration 3, reconstruction error: 0.2087845147369398, decrease = 4.9766616938562436e-09
iteration 4, reconstruction error: 0.20878450977665158, decrease = 4.960288207955799e-09
Line search failed for jump of 10.862780491200215.
PARAFAC2 reconstruction error=0.8189099382424085, variation=7.998833706501784e-09.
Starting iteration 119
reconstruction error=0.2087856483558956
iteration 1, reconstruction error: 0.20878564334133498, decrease = 5.014560627847331e-09
iteration 2, reconstruction error: 0.20878563835756034, decrease = 4.983774642974836e-09
iteration 3, reconstruction error: 0.2087856333901567, decrease = 4.967403627320621e-09
iteration 4, reconstruction error: 0.20878562843907938, decrease = 4.951077325898723e-09
PARAFAC2 reconstruction error=0.818909929271194, variation=8.97121454901395e-09.
Starting iteration 120
reconstruction error=0.2087860974479282
iteration 1, reconstruction error: 0.2087860924517291, decrease = 4.996199093332265e-09
iteration 2, reconstruction error: 0.20878608747433092, decrease = 4.977398188055204e-09
iteration 3, reconstruction error: 0.20878608251327752, decrease = 4.961053401419946e-09
iteration 4, reconstruction error: 0.20878607756851794, decrease = 4.944759574021518e-09
Accepted line search jump of 10.954451150103322.
PARAFAC2 reconstruction error=0.818909907281679, variation=3.096072953567841e-08.
Starting iteration 121
reconstruction error=0.2087879639098384
iteration 1, reconstruction error: 0.20878795888035198, decrease = 5.02948641067924e-09
iteration 2, reconstruction error: 0.20878795395720381, decrease = 4.923148166913194e-09
iteration 3, reconstruction error: 0.20878794905010173, decrease = 4.907102085782711e-09
iteration 4, reconstruction error: 0.20878794415894855, decrease = 4.891153176922458e-09
PARAFAC2 reconstruction error=0.8189099038963956, variation=3.3852833869474352e-09.
Starting iteration 122
reconstruction error=0.2087868666682549
iteration 1, reconstruction error: 0.20878686170750466, decrease = 4.960750255023072e-09
iteration 2, reconstruction error: 0.2087868567831126, decrease = 4.924392060789984e-09
iteration 3, reconstruction error: 0.2087868518747305, decrease = 4.908382089663377e-09
iteration 4, reconstruction error: 0.20878684698227734, decrease = 4.892453164817567e-09
Accepted line search jump of 11.045361017187261.
PARAFAC2 reconstruction error=0.8189098905127711, variation=1.6768907928899068e-08.
Starting iteration 123
reconstruction error=0.20878169754496106
iteration 1, reconstruction error: 0.20878169219159484, decrease = 5.353366222538014e-09
iteration 2, reconstruction error: 0.20878168728226534, decrease = 4.909329498481441e-09
iteration 3, reconstruction error: 0.2087816823886253, decrease = 4.893640048742043e-09
iteration 4, reconstruction error: 0.2087816775106909, decrease = 4.8779343897464855e-09
PARAFAC2 reconstruction error=0.8189098820054943, variation=8.50727677192964e-09.
Starting iteration 124
reconstruction error=0.20878409919313795
iteration 1, reconstruction error: 0.20878409419835747, decrease = 4.994780478106975e-09
iteration 2, reconstruction error: 0.20878408930506764, decrease = 4.893289828888925e-09
iteration 3, reconstruction error: 0.20878408442743387, decrease = 4.877633769106993e-09
iteration 4, reconstruction error: 0.20878407956543232, decrease = 4.862001551364514e-09
Line search failed for jump of 11.135528725660043.
PARAFAC2 reconstruction error=0.8189098820054943, variation=8.50727677192964e-09.
Starting iteration 125
reconstruction error=0.20878508005216545
iteration 1, reconstruction error: 0.20878507513625597, decrease = 4.915909485037062e-09
iteration 2, reconstruction error: 0.20878507025247553, decrease = 4.883780435616103e-09
iteration 3, reconstruction error: 0.20878506538431715, decrease = 4.8681583764143e-09
iteration 4, reconstruction error: 0.2087850605317562, decrease = 4.8525609641636436e-09
PARAFAC2 reconstruction error=0.8189098726391749, variation=9.366319386749922e-09.
Starting iteration 126
reconstruction error=0.20878546950764706
iteration 1, reconstruction error: 0.20878546461185313, decrease = 4.895793936920967e-09
iteration 2, reconstruction error: 0.20878545973451604, decrease = 4.877337089759237e-09
iteration 3, reconstruction error: 0.20878545487278097, decrease = 4.861735070083029e-09
iteration 4, reconstruction error: 0.20878545002660082, decrease = 4.84618015161864e-09
Accepted line search jump of 11.224972160321824.
PARAFAC2 reconstruction error=0.8189098509635775, variation=3.1041916814800175e-08.
Starting iteration 127
reconstruction error=0.2087870894773039
iteration 1, reconstruction error: 0.20878708453126865, decrease = 4.946035248032388e-09
iteration 2, reconstruction error: 0.20878707970942265, decrease = 4.8218460058091495e-09
iteration 3, reconstruction error: 0.20878707490290158, decrease = 4.806521070044312e-09
iteration 4, reconstruction error: 0.2087870701115913, decrease = 4.7913102652064055e-09
PARAFAC2 reconstruction error=0.8189098473920721, variation=3.5715054247376088e-09.
Starting iteration 128
reconstruction error=0.20878609878209226
iteration 1, reconstruction error: 0.20878609391856665, decrease = 4.8635256100215685e-09
iteration 2, reconstruction error: 0.2087860890948915, decrease = 4.823675153753371e-09
iteration 3, reconstruction error: 0.20878608428649892, decrease = 4.808392572996922e-09
iteration 4, reconstruction error: 0.20878607949330333, decrease = 4.793195590435673e-09
Accepted line search jump of 11.313708498984761.
PARAFAC2 reconstruction error=0.8189098367945091, variation=1.4169068363045767e-08.
Starting iteration 129
reconstruction error=0.20878135097000375
iteration 1, reconstruction error: 0.20878134559304282, decrease = 5.3769609320575285e-09
iteration 2, reconstruction error: 0.20878134078125762, decrease = 4.811785192515572e-09
iteration 3, reconstruction error: 0.20878133598444373, decrease = 4.796813890539653e-09
iteration 4, reconstruction error: 0.20878133120261502, decrease = 4.781828710775926e-09
PARAFAC2 reconstruction error=0.8189098266851164, variation=1.0109392767354564e-08.
Starting iteration 130
reconstruction error=0.20878357927630314
iteration 1, reconstruction error: 0.20878357435557762, decrease = 4.920725521495584e-09
iteration 2, reconstruction error: 0.20878356956127989, decrease = 4.794297736587794e-09
iteration 3, reconstruction error: 0.20878356478191237, decrease = 4.779367512863786e-09
iteration 4, reconstruction error: 0.20878356001746587, decrease = 4.764446503990882e-09
Line search failed for jump of 11.40175425099138.
PARAFAC2 reconstruction error=0.8189098266851164, variation=1.0109392767354564e-08.
Starting iteration 131
reconstruction error=0.20878447977025041
iteration 1, reconstruction error: 0.20878447494941177, decrease = 4.820838644947756e-09
iteration 2, reconstruction error: 0.2087844701652558, decrease = 4.784155960280145e-09
iteration 3, reconstruction error: 0.2087844653960038, decrease = 4.7692520210862455e-09
iteration 4, reconstruction error: 0.20878446064163023, decrease = 4.754373561510761e-09
PARAFAC2 reconstruction error=0.8189098160539016, variation=1.0631214797385269e-08.
Starting iteration 132
reconstruction error=0.2087848310226682
iteration 1, reconstruction error: 0.2087848262264497, decrease = 4.796218505687122e-09
iteration 2, reconstruction error: 0.2087848214489928, decrease = 4.777456902305133e-09
iteration 3, reconstruction error: 0.20878481668641596, decrease = 4.762576832906262e-09
iteration 4, reconstruction error: 0.2087848119386798, decrease = 4.747736176424766e-09
Accepted line search jump of 11.489125293076057.
PARAFAC2 reconstruction error=0.8189097952147281, variation=3.147038829531823e-08.
Starting iteration 133
reconstruction error=0.20878627750952053
iteration 1, reconstruction error: 0.20878627262647623, decrease = 4.883044302239625e-09
iteration 2, reconstruction error: 0.20878626790667534, decrease = 4.719800883457026e-09
iteration 3, reconstruction error: 0.20878626320149754, decrease = 4.705177802932781e-09
iteration 4, reconstruction error: 0.20878625851082008, decrease = 4.690677457563908e-09
PARAFAC2 reconstruction error=0.8189097911728932, variation=4.0418348667969894e-09.
Starting iteration 134
reconstruction error=0.2087853502058866
iteration 1, reconstruction error: 0.20878534543522467, decrease = 4.7706619210607926e-09
iteration 2, reconstruction error: 0.20878534071255692, decrease = 4.722667756862364e-09
iteration 3, reconstruction error: 0.2087853360044621, decrease = 4.708094802907681e-09
iteration 4, reconstruction error: 0.20878533131086083, decrease = 4.693601285410409e-09
Accepted line search jump of 11.575836902790225.
PARAFAC2 reconstruction error=0.8189097864659223, variation=8.748805790936842e-09.
Starting iteration 135
reconstruction error=0.20878088393744892
iteration 1, reconstruction error: 0.20878087840474246, decrease = 5.532706459643322e-09
iteration 2, reconstruction error: 0.2087808736881592, decrease = 4.716583262842633e-09
iteration 3, reconstruction error: 0.20878086898585455, decrease = 4.702304656767353e-09
iteration 4, reconstruction error: 0.20878086429785164, decrease = 4.68800290254201e-09
PARAFAC2 reconstruction error=0.818909772963218, variation=1.3502704288015366e-08.
Starting iteration 136
reconstruction error=0.20878302697261025
iteration 1, reconstruction error: 0.2087830220974306, decrease = 4.875179648866634e-09
iteration 2, reconstruction error: 0.2087830174009575, decrease = 4.696473099308207e-09
iteration 3, reconstruction error: 0.20878301271870886, decrease = 4.6822486443609534e-09
iteration 4, reconstruction error: 0.20878300805068933, decrease = 4.668019526476996e-09
Line search failed for jump of 11.661903789690601.
PARAFAC2 reconstruction error=0.818909772963218, variation=1.3502704288015366e-08.
Starting iteration 137
reconstruction error=0.20878387577300428
iteration 1, reconstruction error: 0.2087838710408752, decrease = 4.73212907747822e-09
iteration 2, reconstruction error: 0.20878386635570928, decrease = 4.68516592189161e-09
iteration 3, reconstruction error: 0.20878386168474464, decrease = 4.670964642849995e-09
iteration 4, reconstruction error: 0.20878385702796506, decrease = 4.65677957306454e-09
PARAFAC2 reconstruction error=0.8189097596167428, variation=1.3346475147280046e-08.
Starting iteration 138
reconstruction error=0.20878419642201956
iteration 1, reconstruction error: 0.20878419172379964, decrease = 4.698219924215152e-09
iteration 2, reconstruction error: 0.2087841870458295, decrease = 4.67797015013538e-09
iteration 3, reconstruction error: 0.20878418238204052, decrease = 4.663788966130511e-09
iteration 4, reconstruction error: 0.2087841777324011, decrease = 4.649639423481844e-09
Accepted line search jump of 11.74734012447073.
PARAFAC2 reconstruction error=0.8189097405562892, variation=3.2406928807127144e-08.
Starting iteration 139
reconstruction error=0.20878546958902897
iteration 1, reconstruction error: 0.20878546472980902, decrease = 4.859219943087467e-09
iteration 2, reconstruction error: 0.2087854601129598, decrease = 4.6168492362497204e-09
iteration 3, reconstruction error: 0.20878545551005864, decrease = 4.602901143568872e-09
iteration 4, reconstruction error: 0.2087854509209676, decrease = 4.589091051609984e-09
PARAFAC2 reconstruction error=0.8189097355186484, variation=5.0376407489949315e-09.
Starting iteration 140
reconstruction error=0.2087845913643523
iteration 1, reconstruction error: 0.20878458667802444, decrease = 4.686327853553607e-09
iteration 2, reconstruction error: 0.20878458205664452, decrease = 4.621379917635338e-09
iteration 3, reconstruction error: 0.20878457744915885, decrease = 4.607485670771183e-09
iteration 4, reconstruction error: 0.2087845728554794, decrease = 4.593679436837306e-09
Line search failed for jump of 11.832159566199232.
PARAFAC2 reconstruction error=0.8189097355186484, variation=5.0376407489949315e-09.
Starting iteration 141
reconstruction error=0.20878423801985108
iteration 1, reconstruction error: 0.20878423337231491, decrease = 4.647536161472843e-09
iteration 2, reconstruction error: 0.20878422875069666, decrease = 4.621618254763149e-09
iteration 3, reconstruction error: 0.20878422414293715, decrease = 4.607759507280207e-09
iteration 4, reconstruction error: 0.20878421954897158, decrease = 4.593965569066327e-09
PARAFAC2 reconstruction error=0.8189097289897813, variation=6.528867113608783e-09.
Starting iteration 142
reconstruction error=0.20878409183855123
iteration 1, reconstruction error: 0.2087840872017401, decrease = 4.636811129499208e-09
iteration 2, reconstruction error: 0.20878408258193115, decrease = 4.619808952055493e-09
iteration 3, reconstruction error: 0.2087840779759493, decrease = 4.605981845928753e-09
iteration 4, reconstruction error: 0.2087840733837414, decrease = 4.592207919484892e-09
Accepted line search jump of 11.916375287812984.
PARAFAC2 reconstruction error=0.8189097061459644, variation=2.9372684062778376e-08.
Starting iteration 143
reconstruction error=0.20878330021841732
iteration 1, reconstruction error: 0.20878329556109307, decrease = 4.657324248480421e-09
iteration 2, reconstruction error: 0.20878329097368042, decrease = 4.587412644196931e-09
iteration 3, reconstruction error: 0.20878328639979177, decrease = 4.573888656711489e-09
iteration 4, reconstruction error: 0.2087832818394194, decrease = 4.5603723575204924e-09
PARAFAC2 reconstruction error=0.8189097033095089, variation=2.8364555149096304e-09.
Starting iteration 144
reconstruction error=0.20878358299395453
iteration 1, reconstruction error: 0.20878357839052536, decrease = 4.603429165639383e-09
iteration 2, reconstruction error: 0.2087835738115231, decrease = 4.5790022606961855e-09
iteration 3, reconstruction error: 0.20878356924602479, decrease = 4.565498312736338e-09
iteration 4, reconstruction error: 0.2087835646940042, decrease = 4.552020593795447e-09
Accepted line search jump of 12.0.
PARAFAC2 reconstruction error=0.818909688141778, variation=1.80041863639957e-08.
Starting iteration 145
reconstruction error=0.2087845844411448
iteration 1, reconstruction error: 0.20878457951638327, decrease = 4.924761543012579e-09
iteration 2, reconstruction error: 0.2087845750053017, decrease = 4.5110815638516044e-09
iteration 3, reconstruction error: 0.20878457050752966, decrease = 4.497772043698944e-09
iteration 4, reconstruction error: 0.20878456602288736, decrease = 4.484642296409547e-09
PARAFAC2 reconstruction error=0.8189096809119369, variation=7.229841059164244e-09.
Starting iteration 146
reconstruction error=0.2087837752686122
iteration 1, reconstruction error: 0.20878377064739986, decrease = 4.6212123294697705e-09
iteration 2, reconstruction error: 0.20878376612841343, decrease = 4.518986435053662e-09
iteration 3, reconstruction error: 0.20878376162265938, decrease = 4.505754047645638e-09
iteration 4, reconstruction error: 0.20878375713004285, decrease = 4.492616528795068e-09
Line search failed for jump of 12.083045973594572.
PARAFAC2 reconstruction error=0.8189096809119369, variation=7.229841059164244e-09.
Starting iteration 147
reconstruction error=0.20878347598448596
iteration 1, reconstruction error: 0.20878347142989964, decrease = 4.554586319205356e-09
iteration 2, reconstruction error: 0.2087834669091636, decrease = 4.520736035518169e-09
iteration 3, reconstruction error: 0.2087834624016245, decrease = 4.507539119735782e-09
iteration 4, reconstruction error: 0.20878345790721597, decrease = 4.49440851202354e-09
PARAFAC2 reconstruction error=0.8189096726336245, variation=8.278312479959027e-09.
Starting iteration 148
reconstruction error=0.20878336599326466
iteration 1, reconstruction error: 0.20878336145524534, decrease = 4.538019321431719e-09
iteration 2, reconstruction error: 0.2087833569356029, decrease = 4.519642438083338e-09
iteration 3, reconstruction error: 0.20878335242912732, decrease = 4.506475581589342e-09
iteration 4, reconstruction error: 0.20878334793576386, decrease = 4.49336345909046e-09
Accepted line search jump of 12.165525060596439.
PARAFAC2 reconstruction error=0.8189096510614253, variation=2.985051161807917e-08.
Starting iteration 149
reconstruction error=0.2087828312767235
iteration 1, reconstruction error: 0.2087828266637507, decrease = 4.612972809292515e-09
iteration 2, reconstruction error: 0.20878282217276825, decrease = 4.4909824470362736e-09
iteration 3, reconstruction error: 0.20878281769465726, decrease = 4.478110993133555e-09
iteration 4, reconstruction error: 0.20878281322942233, decrease = 4.465234931805284e-09
PARAFAC2 reconstruction error=0.8189096475564845, variation=3.5049407820508804e-09.
Starting iteration 150
reconstruction error=0.2087830335670657
iteration 1, reconstruction error: 0.2087830290513024, decrease = 4.5157633188352975e-09
iteration 2, reconstruction error: 0.20878302457033826, decrease = 4.4809641275289636e-09
iteration 3, reconstruction error: 0.2087830201022232, decrease = 4.468115072375767e-09
iteration 4, reconstruction error: 0.20878301564694102, decrease = 4.455282170967578e-09
Accepted line search jump of 12.24744871391589.
PARAFAC2 reconstruction error=0.8189096410892521, variation=9.972173198313783e-09.
Starting iteration 151
reconstruction error=0.20878343043296138
iteration 1, reconstruction error: 0.20878342523158908, decrease = 5.201372305085883e-09
iteration 2, reconstruction error: 0.20878342082807805, decrease = 4.403511028039375e-09
iteration 3, reconstruction error: 0.2087834164372888, decrease = 4.390789259955952e-09
iteration 4, reconstruction error: 0.20878341205897444, decrease = 4.378314349962054e-09
PARAFAC2 reconstruction error=0.8189096289374693, variation=1.2151782802227729e-08.
Starting iteration 152
reconstruction error=0.20878280000143934
iteration 1, reconstruction error: 0.20878279539890807, decrease = 4.602531272768218e-09
iteration 2, reconstruction error: 0.20878279098297323, decrease = 4.415934840018565e-09
iteration 3, reconstruction error: 0.20878278657964222, decrease = 4.403331005375932e-09
iteration 4, reconstruction error: 0.20878278218880855, decrease = 4.390833668876937e-09
Line search failed for jump of 12.328828005937952.
PARAFAC2 reconstruction error=0.8189096289374693, variation=1.2151782802227729e-08.
Starting iteration 153
reconstruction error=0.20878262393316036
iteration 1, reconstruction error: 0.20878261946093887, decrease = 4.4722214820325235e-09
iteration 2, reconstruction error: 0.20878261504112844, decrease = 4.419810434308502e-09
iteration 3, reconstruction error: 0.20878261063387937, decrease = 4.407249065696561e-09
iteration 4, reconstruction error: 0.20878260623911915, decrease = 4.394760222403704e-09
PARAFAC2 reconstruction error=0.8189096166413242, variation=1.2296145102119738e-08.
Starting iteration 154
reconstruction error=0.20878259114697043
iteration 1, reconstruction error: 0.20878258670499014, decrease = 4.4419802835982125e-09
iteration 2, reconstruction error: 0.2087825822852469, decrease = 4.419743238059937e-09
iteration 3, reconstruction error: 0.2087825778780334, decrease = 4.407213510804198e-09
iteration 4, reconstruction error: 0.20878257348329254, decrease = 4.394740849011924e-09
Accepted line search jump of 12.409673645990857.
PARAFAC2 reconstruction error=0.8189095980347596, variation=3.090270972450071e-08.
Starting iteration 155
reconstruction error=0.2087826156975512
iteration 1, reconstruction error: 0.20878261105336057, decrease = 4.644190615410437e-09
iteration 2, reconstruction error: 0.20878260665644327, decrease = 4.396917302473824e-09
iteration 3, reconstruction error: 0.20878260227176487, decrease = 4.3846783981393855e-09
iteration 4, reconstruction error: 0.20878259789934547, decrease = 4.372419398768201e-09
PARAFAC2 reconstruction error=0.8189095929154813, variation=5.119278334575483e-09.
Starting iteration 156
reconstruction error=0.20878262736230377
iteration 1, reconstruction error: 0.20878262291679342, decrease = 4.445510348727311e-09
iteration 2, reconstruction error: 0.20878261853240787, decrease = 4.384385549061065e-09
iteration 3, reconstruction error: 0.20878261416024424, decrease = 4.372163631138903e-09
iteration 4, reconstruction error: 0.20878260980028945, decrease = 4.359954786092857e-09
Line search failed for jump of 12.489995996796797.
PARAFAC2 reconstruction error=0.8189095929154813, variation=5.119278334575483e-09.
Starting iteration 157
reconstruction error=0.20878254428656687
iteration 1, reconstruction error: 0.2087825398878454, decrease = 4.398721470399991e-09
iteration 2, reconstruction error: 0.2087825355110146, decrease = 4.376830786689823e-09
iteration 3, reconstruction error: 0.2087825311463857, decrease = 4.3646289082932554e-09
iteration 4, reconstruction error: 0.20878252679394327, decrease = 4.352442434241155e-09
PARAFAC2 reconstruction error=0.8189095864082173, variation=6.507263949906417e-09.
Starting iteration 158
reconstruction error=0.20878245624322095
iteration 1, reconstruction error: 0.20878245185780722, decrease = 4.38541372660417e-09
iteration 2, reconstruction error: 0.2087824474862786, decrease = 4.371528611324393e-09
iteration 3, reconstruction error: 0.2087824431269357, decrease = 4.35934291442841e-09
iteration 4, reconstruction error: 0.20878243877974761, decrease = 4.3471880817325115e-09
Accepted line search jump of 12.569805089976535.
PARAFAC2 reconstruction error=0.8189095640672186, variation=2.8848262667580116e-08.
Starting iteration 159
reconstruction error=0.20878156243436433
iteration 1, reconstruction error: 0.20878155801624168, decrease = 4.418122645510891e-09
iteration 2, reconstruction error: 0.20878155369763451, decrease = 4.318607166320376e-09
iteration 3, reconstruction error: 0.20878154939098403, decrease = 4.3066504806787975e-09
iteration 4, reconstruction error: 0.20878154509620148, decrease = 4.294782557368038e-09
PARAFAC2 reconstruction error=0.8189095611207918, variation=2.9464267692347335e-09.
Starting iteration 160
reconstruction error=0.20878170262892465
iteration 1, reconstruction error: 0.2087816982762495, decrease = 4.352675136987116e-09
iteration 2, reconstruction error: 0.20878169395638743, decrease = 4.319862079160686e-09
iteration 3, reconstruction error: 0.20878168964844648, decrease = 4.3079409484114706e-09
iteration 4, reconstruction error: 0.2087816853523619, decrease = 4.296084571420167e-09
Accepted line search jump of 12.649110640673518.
PARAFAC2 reconstruction error=0.8189095502449049, variation=1.3822313738032221e-08.
Starting iteration 161
reconstruction error=0.20878298222471575
iteration 1, reconstruction error: 0.2087829773362307, decrease = 4.888485061194103e-09
iteration 2, reconstruction error: 0.20878297303056842, decrease = 4.305662271164579e-09
iteration 3, reconstruction error: 0.2087829687365418, decrease = 4.29402660651057e-09
iteration 4, reconstruction error: 0.2087829644541848, decrease = 4.28235702454316e-09
PARAFAC2 reconstruction error=0.818909540842305, variation=9.402599809860135e-09.
Starting iteration 162
reconstruction error=0.20878254026827467
iteration 1, reconstruction error: 0.20878253584461032, decrease = 4.423664351493883e-09
iteration 2, reconstruction error: 0.2087825315550713, decrease = 4.289539029533884e-09
iteration 3, reconstruction error: 0.20878252727713942, decrease = 4.277931869856033e-09
iteration 4, reconstruction error: 0.20878252301082703, decrease = 4.266312386702609e-09
Line search failed for jump of 12.727922061357855.
PARAFAC2 reconstruction error=0.818909540842305, variation=9.402599809860135e-09.
Starting iteration 163
reconstruction error=0.2087821968341642
iteration 1, reconstruction error: 0.208782192516676, decrease = 4.317488200289432e-09
iteration 2, reconstruction error: 0.2087821882364209, decrease = 4.280255122557364e-09
iteration 3, reconstruction error: 0.2087821839677644, decrease = 4.268656483841227e-09
iteration 4, reconstruction error: 0.208782179710692, decrease = 4.257072416802288e-09
PARAFAC2 reconstruction error=0.8189095307752111, variation=1.006709393625016e-08.
Starting iteration 164
reconstruction error=0.20878196305412042
iteration 1, reconstruction error: 0.20878195876333977, decrease = 4.290780647453474e-09
iteration 2, reconstruction error: 0.20878195448918432, decrease = 4.274155446237771e-09
iteration 3, reconstruction error: 0.2087819502266091, decrease = 4.262575237223842e-09
iteration 4, reconstruction error: 0.20878194597559008, decrease = 4.251019009027246e-09
Accepted line search jump of 12.806248474865697.
PARAFAC2 reconstruction error=0.8189095114011714, variation=2.9441133642116313e-08.
Starting iteration 165
reconstruction error=0.20878003175905624
iteration 1, reconstruction error: 0.20878002731258255, decrease = 4.446473689245778e-09
iteration 2, reconstruction error: 0.2087800230965687, decrease = 4.2160138435942685e-09
iteration 3, reconstruction error: 0.20878001889194847, decrease = 4.204620235315204e-09
iteration 4, reconstruction error: 0.20878001469859458, decrease = 4.193353886350337e-09
PARAFAC2 reconstruction error=0.8189095068928685, variation=4.508302953176724e-09.
Starting iteration 166
reconstruction error=0.2087805648328805
iteration 1, reconstruction error: 0.20878056055035318, decrease = 4.2825273049995616e-09
iteration 2, reconstruction error: 0.20878055633056047, decrease = 4.219792709703185e-09
iteration 3, reconstruction error: 0.20878055212210658, decrease = 4.208453890930386e-09
iteration 4, reconstruction error: 0.2087805479249136, decrease = 4.19719298205834e-09
Line search failed for jump of 12.884098726725126.
PARAFAC2 reconstruction error=0.8189095068928685, variation=4.508302953176724e-09.
Starting iteration 167
reconstruction error=0.20878088383510318
iteration 1, reconstruction error: 0.20878087959125596, decrease = 4.243847218088348e-09
iteration 2, reconstruction error: 0.20878087537137544, decrease = 4.219880528344433e-09
iteration 3, reconstruction error: 0.2087808711627967, decrease = 4.208578735509505e-09
iteration 4, reconstruction error: 0.20878086696546957, decrease = 4.19732712475529e-09
PARAFAC2 reconstruction error=0.8189095009042584, variation=5.988610052298782e-09.
Starting iteration 168
reconstruction error=0.20878106126795837
iteration 1, reconstruction error: 0.20878105703506908, decrease = 4.232889289079722e-09
iteration 2, reconstruction error: 0.20878105281686415, decrease = 4.2182049242445174e-09
iteration 3, reconstruction error: 0.2087810486099417, decrease = 4.206922449290218e-09
iteration 4, reconstruction error: 0.20878104441425313, decrease = 4.1956885743488215e-09
Accepted line search jump of 12.96148139681572.
PARAFAC2 reconstruction error=0.8189094786100618, variation=2.8282806652235593e-08.
Starting iteration 169
reconstruction error=0.20878223849396638
iteration 1, reconstruction error: 0.20878223422183628, decrease = 4.272130094129523e-09
iteration 2, reconstruction error: 0.2087822300357542, decrease = 4.186082092072496e-09
iteration 3, reconstruction error: 0.2087822258606822, decrease = 4.175071982581713e-09
iteration 4, reconstruction error: 0.20878222169662036, decrease = 4.164061845335354e-09
PARAFAC2 reconstruction error=0.8189094757813151, variation=2.8287466813381457e-09.
Starting iteration 170
reconstruction error=0.20878167693687774
iteration 1, reconstruction error: 0.20878167273171522, decrease = 4.205162523751582e-09
iteration 2, reconstruction error: 0.20878166855352623, decrease = 4.178188989234499e-09
iteration 3, reconstruction error: 0.20878166438633347, decrease = 4.167192757531524e-09
iteration 4, reconstruction error: 0.20878166023012235, decrease = 4.156211125261322e-09
Accepted line search jump of 13.038404810405298.
PARAFAC2 reconstruction error=0.8189094654863527, variation=1.3123709119433613e-08.
Starting iteration 171
reconstruction error=0.2087774152893835
iteration 1, reconstruction error: 0.20877741054307433, decrease = 4.74630917901564e-09
iteration 2, reconstruction error: 0.20877740643371662, decrease = 4.109357715220696e-09
iteration 3, reconstruction error: 0.20877740233523892, decrease = 4.098477696112823e-09
iteration 4, reconstruction error: 0.2087773982474422, decrease = 4.08779671223769e-09
PARAFAC2 reconstruction error=0.8189094560511917, variation=9.435160985837854e-09.
Starting iteration 172
reconstruction error=0.20877885254040066
iteration 1, reconstruction error: 0.20877884826516002, decrease = 4.2752406337331905e-09
iteration 2, reconstruction error: 0.2087788441468803, decrease = 4.1182797172467644e-09
iteration 3, reconstruction error: 0.20877884003938796, decrease = 4.1074923462502966e-09
iteration 4, reconstruction error: 0.20877883594258037, decrease = 4.09680758761688e-09
Line search failed for jump of 13.114877048604.
PARAFAC2 reconstruction error=0.8189094560511917, variation=9.435160985837854e-09.
Starting iteration 173
reconstruction error=0.20877966287894592
iteration 1, reconstruction error: 0.20877965871218293, decrease = 4.166762990198691e-09
iteration 2, reconstruction error: 0.20877965459139974, decrease = 4.120783186900567e-09
iteration 3, reconstruction error: 0.2087796504813553, decrease = 4.110044443672578e-09
iteration 4, reconstruction error: 0.20877964638199556, decrease = 4.099359740550312e-09
PARAFAC2 reconstruction error=0.8189094458279359, variation=1.0223255797470188e-08.
Starting iteration 174
reconstruction error=0.2087801043195589
iteration 1, reconstruction error: 0.20878010017960583, decrease = 4.1399530747998625e-09
iteration 2, reconstruction error: 0.20878009605933284, decrease = 4.120272983909601e-09
iteration 3, reconstruction error: 0.20878009194977465, decrease = 4.109558193743368e-09
iteration 4, reconstruction error: 0.20878008785088648, decrease = 4.098888173320603e-09
Accepted line search jump of 13.19090595827292.
PARAFAC2 reconstruction error=0.818909427489263, variation=2.8561928711035023e-08.
Starting iteration 175
reconstruction error=0.20878315691143357
iteration 1, reconstruction error: 0.2087831525635964, decrease = 4.3478371736238586e-09
iteration 2, reconstruction error: 0.2087831484682432, decrease = 4.095353195454621e-09
iteration 3, reconstruction error: 0.20878314438334308, decrease = 4.0849001126108675e-09
iteration 4, reconstruction error: 0.20878314030890996, decrease = 4.074433124223731e-09
PARAFAC2 reconstruction error=0.8189094226044682, variation=4.884794790882552e-09.
Starting iteration 176
reconstruction error=0.20878185250749678
iteration 1, reconstruction error: 0.208781848358542, decrease = 4.148954790839099e-09
iteration 2, reconstruction error: 0.2087818442741349, decrease = 4.084407090321207e-09
iteration 3, reconstruction error: 0.20878184020016477, decrease = 4.0739701334668865e-09
iteration 4, reconstruction error: 0.2087818361366239, decrease = 4.0635408649070115e-09
Line search failed for jump of 13.2664991614216.
PARAFAC2 reconstruction error=0.8189094226044682, variation=4.884794790882552e-09.
Starting iteration 177
reconstruction error=0.208781129131447
iteration 1, reconstruction error: 0.20878112503159726, decrease = 4.099849737482231e-09
iteration 2, reconstruction error: 0.20878112095394, decrease = 4.0776572673983935e-09
iteration 3, reconstruction error: 0.20878111688670506, decrease = 4.067234937732422e-09
iteration 4, reconstruction error: 0.20878111282987785, decrease = 4.056827207499225e-09
PARAFAC2 reconstruction error=0.8189094162945789, variation=6.3098892777446736e-09.
Starting iteration 178
reconstruction error=0.20878072841376513
iteration 1, reconstruction error: 0.20878072432811848, decrease = 4.085646654328201e-09
iteration 2, reconstruction error: 0.2087807202552809, decrease = 4.072837567203891e-09
iteration 3, reconstruction error: 0.20878071619285418, decrease = 4.0624267283462245e-09
iteration 4, reconstruction error: 0.2087807121408097, decrease = 4.052044477731442e-09
Accepted line search jump of 13.341664064126334.
PARAFAC2 reconstruction error=0.8189093948407775, variation=2.776369067980511e-08.
Starting iteration 179
reconstruction error=0.2087777432343404
iteration 1, reconstruction error: 0.20877773908900296, decrease = 4.14533743442469e-09
iteration 2, reconstruction error: 0.2087777350678143, decrease = 4.021188659830699e-09
iteration 3, reconstruction error: 0.20877773105683917, decrease = 4.010975135360084e-09
iteration 4, reconstruction error: 0.20877772705599495, decrease = 4.0008442114825016e-09
PARAFAC2 reconstruction error=0.8189093917374743, variation=3.10330316999341e-09.
Starting iteration 180
reconstruction error=0.2087787852058784
iteration 1, reconstruction error: 0.2087787811449485, decrease = 4.060929897908849e-09
iteration 2, reconstruction error: 0.2087787771224889, decrease = 4.022459587638139e-09
iteration 3, reconstruction error: 0.20877877311020882, decrease = 4.012280091503229e-09
iteration 4, reconstruction error: 0.2087787691080496, decrease = 4.002159215144019e-09
Accepted line search jump of 13.416407864998739.
PARAFAC2 reconstruction error=0.818909387931647, variation=6.909130489951565e-09.
Starting iteration 181
reconstruction error=0.20878613941243795
iteration 1, reconstruction error: 0.20878613452180753, decrease = 4.890630428411313e-09
iteration 2, reconstruction error: 0.20878613051190587, decrease = 4.009901660717574e-09
iteration 3, reconstruction error: 0.2087861265119411, decrease = 3.99996477606912e-09
iteration 4, reconstruction error: 0.20878612252193712, decrease = 3.990003966114486e-09
PARAFAC2 reconstruction error=0.8189093752662537, variation=1.2665393289701399e-08.
Starting iteration 182
reconstruction error=0.2087831041829572
iteration 1, reconstruction error: 0.20878309997772568, decrease = 4.205231524112563e-09
iteration 2, reconstruction error: 0.2087830959840178, decrease = 3.993707864413665e-09
iteration 3, reconstruction error: 0.2087830920002107, decrease = 3.9838071175246625e-09
iteration 4, reconstruction error: 0.20878308802631132, decrease = 3.973899376230605e-09
Line search failed for jump of 13.490737563232042.
PARAFAC2 reconstruction error=0.8189093752662537, variation=1.2665393289701399e-08.
Starting iteration 183
reconstruction error=0.2087814700377577
iteration 1, reconstruction error: 0.20878146599708683, decrease = 4.040670881222397e-09
iteration 2, reconstruction error: 0.20878146201262487, decrease = 3.984461954820162e-09
iteration 3, reconstruction error: 0.20878145803804685, decrease = 3.974578027809983e-09
iteration 4, reconstruction error: 0.20878145407334964, decrease = 3.964697209424273e-09
PARAFAC2 reconstruction error=0.8189093620203816, variation=1.3245872176881335e-08.
Starting iteration 184
reconstruction error=0.2087805922784725
iteration 1, reconstruction error: 0.20878058827972837, decrease = 3.998744141364696e-09
iteration 2, reconstruction error: 0.2087805843012474, decrease = 3.9784809613419014e-09
iteration 3, reconstruction error: 0.2087805803326342, decrease = 3.968613215832306e-09
iteration 4, reconstruction error: 0.20878057637388642, decrease = 3.958747774035487e-09
Accepted line search jump of 13.564659966250536.
PARAFAC2 reconstruction error=0.8189093477325375, variation=2.753371619590439e-08.
Starting iteration 185
reconstruction error=0.20877419431145858
iteration 1, reconstruction error: 0.20877418996018413, decrease = 4.351274451863674e-09
iteration 2, reconstruction error: 0.20877418604091366, decrease = 3.919270463725866e-09
iteration 3, reconstruction error: 0.2087741821313863, decrease = 3.90952736850636e-09
iteration 4, reconstruction error: 0.20877417823145858, decrease = 3.899927714101636e-09
PARAFAC2 reconstruction error=0.8189093409045147, variation=6.828022813820667e-09.
Starting iteration 186
reconstruction error=0.2087766242739907
iteration 1, reconstruction error: 0.20877662023659302, decrease = 4.037397693945621e-09
iteration 2, reconstruction error: 0.20877661631246772, decrease = 3.924125302479098e-09
iteration 3, reconstruction error: 0.20877661239801446, decrease = 3.9144532615331684e-09
iteration 4, reconstruction error: 0.2087766084931576, decrease = 3.9048568545307916e-09
Line search failed for jump of 13.638181696985855.
PARAFAC2 reconstruction error=0.8189093409045147, variation=6.828022813820667e-09.
Starting iteration 187
reconstruction error=0.20877789895683485
iteration 1, reconstruction error: 0.20877789499613827, decrease = 3.960696576266187e-09
iteration 2, reconstruction error: 0.20877789107120684, decrease = 3.924931435417278e-09
iteration 3, reconstruction error: 0.20877788715591186, decrease = 3.915294977119288e-09
iteration 4, reconstruction error: 0.20877788325020474, decrease = 3.905707118834201e-09
PARAFAC2 reconstruction error=0.8189093327990372, variation=8.105477511399783e-09.
Starting iteration 188
reconstruction error=0.2087785588561988
iteration 1, reconstruction error: 0.20877855491591907, decrease = 3.940279741376784e-09
iteration 2, reconstruction error: 0.20877855099216064, decrease = 3.9237584292806105e-09
iteration 3, reconstruction error: 0.20877854707801163, decrease = 3.91414900491327e-09
iteration 4, reconstruction error: 0.20877854317344274, decrease = 3.9045688904337794e-09
Accepted line search jump of 13.711309200802088.
PARAFAC2 reconstruction error=0.8189093138579498, variation=2.7046564876620494e-08.
Starting iteration 189
reconstruction error=0.2087831483308304
iteration 1, reconstruction error: 0.2087831442288809, decrease = 4.101949502288704e-09
iteration 2, reconstruction error: 0.20878314033378406, decrease = 3.8950968284101606e-09
iteration 3, reconstruction error: 0.20878313644806504, decrease = 3.8857190243213324e-09
iteration 4, reconstruction error: 0.20878313257171913, decrease = 3.876345910924783e-09
PARAFAC2 reconstruction error=0.8189093096129575, variation=4.244992357627098e-09.
Starting iteration 190
reconstruction error=0.20878114806785303
iteration 1, reconstruction error: 0.20878114412541163, decrease = 3.942441401116881e-09
iteration 2, reconstruction error: 0.2087811402389856, decrease = 3.886426014343414e-09
iteration 3, reconstruction error: 0.20878113636191897, decrease = 3.877066639956794e-09
iteration 4, reconstruction error: 0.2087811324942048, decrease = 3.867714176708503e-09
Line search failed for jump of 13.784048752090222.
PARAFAC2 reconstruction error=0.8189093096129575, variation=4.244992357627098e-09.
Starting iteration 191
reconstruction error=0.20878009277664553
iteration 1, reconstruction error: 0.2087800888757243, decrease = 3.900921224930798e-09
iteration 2, reconstruction error: 0.20878008499495138, decrease = 3.880772925235476e-09
iteration 3, reconstruction error: 0.20878008112352012, decrease = 3.8714312589060995e-09
iteration 4, reconstruction error: 0.20878007726143055, decrease = 3.862089564821147e-09
PARAFAC2 reconstruction error=0.8189093038506177, variation=5.762339827519725e-09.
Starting iteration 192
reconstruction error=0.2087795333943058
iteration 1, reconstruction error: 0.20877952950603973, decrease = 3.888266070228852e-09
iteration 2, reconstruction error: 0.20877952562950364, decrease = 3.876536092128902e-09
iteration 3, reconstruction error: 0.2087795217623031, decrease = 3.8672005320261604e-09
iteration 4, reconstruction error: 0.20877951790441804, decrease = 3.857885066960165e-09
Accepted line search jump of 13.856406460551018.
PARAFAC2 reconstruction error=0.818909282740347, variation=2.687261047018552e-08.
Starting iteration 193
reconstruction error=0.20877538388111908
iteration 1, reconstruction error: 0.20877537993462203, decrease = 3.946497045825836e-09
iteration 2, reconstruction error: 0.20877537610693703, decrease = 3.827685002288916e-09
iteration 3, reconstruction error: 0.20877537228840873, decrease = 3.818528299115442e-09
iteration 4, reconstruction error: 0.20877536847896164, decrease = 3.809447091107643e-09
PARAFAC2 reconstruction error=0.818909279725927, variation=3.0144200469095495e-09.
Starting iteration 194
reconstruction error=0.20877694843406627
iteration 1, reconstruction error: 0.20877694456865317, decrease = 3.8654131007120895e-09
iteration 2, reconstruction error: 0.2087769407404865, decrease = 3.82816667254815e-09
iteration 3, reconstruction error: 0.20877693692143562, decrease = 3.819050881093133e-09
iteration 4, reconstruction error: 0.20877693311146275, decrease = 3.80997286497653e-09
Accepted line search jump of 13.92838827718412.
PARAFAC2 reconstruction error=0.818909278495052, variation=4.24529500442361e-09.
Starting iteration 195
reconstruction error=0.20878812675592784
iteration 1, reconstruction error: 0.2087881220113892, decrease = 4.744538650847119e-09
iteration 2, reconstruction error: 0.20878811819969384, decrease = 3.81169534824366e-09
iteration 3, reconstruction error: 0.20878811439691167, decrease = 3.8027821724906374e-09
iteration 4, reconstruction error: 0.20878811060304187, decrease = 3.793869801649308e-09
PARAFAC2 reconstruction error=0.8189092650007579, variation=1.3494294126559225e-08.
Starting iteration 196
reconstruction error=0.20878340219120423
iteration 1, reconstruction error: 0.20878339815987315, decrease = 4.0313310745165865e-09
iteration 2, reconstruction error: 0.20878339436198134, decrease = 3.797891806600617e-09
iteration 3, reconstruction error: 0.2087833905729543, decrease = 3.7890270365714684e-09
iteration 4, reconstruction error: 0.20878338679280364, decrease = 3.780150664711712e-09
Line search failed for jump of 14.0.
PARAFAC2 reconstruction error=0.8189092650007579, variation=1.3494294126559225e-08.
Starting iteration 197
reconstruction error=0.20878094077119969
iteration 1, reconstruction error: 0.2087809369182511, decrease = 3.852948599059047e-09
iteration 2, reconstruction error: 0.20878093312844803, decrease = 3.789803054710106e-09
iteration 3, reconstruction error: 0.20878092934750062, decrease = 3.7809474162653345e-09
iteration 4, reconstruction error: 0.20878092557540426, decrease = 3.77209635749054e-09
PARAFAC2 reconstruction error=0.818909250647642, variation=1.435311591801991e-08.
Starting iteration 198
reconstruction error=0.20877965685004737
iteration 1, reconstruction error: 0.20877965304385818, decrease = 3.8061891971530315e-09
iteration 2, reconstruction error: 0.20877964925943732, decrease = 3.784420860020177e-09
iteration 3, reconstruction error: 0.20877964548386135, decrease = 3.775575962983169e-09
iteration 4, reconstruction error: 0.20877964171711644, decrease = 3.766744915978393e-09
Accepted line search jump of 14.071247279470288.
PARAFAC2 reconstruction error=0.8189092397564757, variation=2.52442822201715e-08.
Starting iteration 199
reconstruction error=0.20877021694212364
iteration 1, reconstruction error: 0.20877021268219148, decrease = 4.259932157024693e-09
iteration 2, reconstruction error: 0.20877020895421383, decrease = 3.7279776488041705e-09
iteration 3, reconstruction error: 0.20877020523496662, decrease = 3.7192472157610013e-09
iteration 4, reconstruction error: 0.20877020152432713, decrease = 3.7106394901176287e-09
PARAFAC2 reconstruction error=0.8189092315075527, variation=8.248922989118057e-09.
Starting iteration 200
reconstruction error=0.2087739798193898
iteration 1, reconstruction error: 0.20877397594645491, decrease = 3.872934889459501e-09
iteration 2, reconstruction error: 0.20877397221442046, decrease = 3.732034459247302e-09
iteration 3, reconstruction error: 0.20877396849104837, decrease = 3.7233720828755423e-09
iteration 4, reconstruction error: 0.20877396477627153, decrease = 3.714776847241197e-09
Line search failed for jump of 14.142135623730951.
PARAFAC2 reconstruction error=0.8189092315075527, variation=8.248922989118057e-09.
Starting iteration 201
reconstruction error=0.20877591622740976
iteration 1, reconstruction error: 0.2087759124521556, decrease = 3.775254164839481e-09
iteration 2, reconstruction error: 0.2087759087195357, decrease = 3.7326199076037625e-09
iteration 3, reconstruction error: 0.2087759049955464, decrease = 3.723989283610507e-09
iteration 4, reconstruction error: 0.20877590128014453, decrease = 3.715401875048485e-09
PARAFAC2 reconstruction error=0.8189092219907982, variation=9.516754495564328e-09.
Starting iteration 202
reconstruction error=0.20877690556125994
iteration 1, reconstruction error: 0.20877690181217035, decrease = 3.749089594329291e-09
iteration 2, reconstruction error: 0.2087768980807099, decrease = 3.731460446187995e-09
iteration 3, reconstruction error: 0.2087768943578608, decrease = 3.7228491123197927e-09
iteration 4, reconstruction error: 0.20877689064358515, decrease = 3.71427563705673e-09
Accepted line search jump of 14.212670403551895.
PARAFAC2 reconstruction error=0.8189092059949398, variation=2.5512612911171573e-08.
Starting iteration 203
reconstruction error=0.20878399920011642
iteration 1, reconstruction error: 0.20878399519807178, decrease = 4.0020446401278775e-09
iteration 2, reconstruction error: 0.2087839914947508, decrease = 3.7033209832060265e-09
iteration 3, reconstruction error: 0.20878398779982635, decrease = 3.6949244497375133e-09
iteration 4, reconstruction error: 0.20878398411329072, decrease = 3.6865356323190213e-09
PARAFAC2 reconstruction error=0.8189092005168098, variation=5.478129949665345e-09.
Starting iteration 204
reconstruction error=0.2087809141068962
iteration 1, reconstruction error: 0.20878091033192706, decrease = 3.774969142833484e-09
iteration 2, reconstruction error: 0.20878090663688298, decrease = 3.6950440762684167e-09
iteration 3, reconstruction error: 0.20878090295021864, decrease = 3.686664334923151e-09
iteration 4, reconstruction error: 0.20878089927191856, decrease = 3.6783000811890787e-09
Line search failed for jump of 14.2828568570857.
PARAFAC2 reconstruction error=0.8189092005168098, variation=5.478129949665345e-09.
Starting iteration 205
reconstruction error=0.2087793173813648
iteration 1, reconstruction error: 0.208779313665951, decrease = 3.7154137821904243e-09
iteration 2, reconstruction error: 0.20877930997631924, decrease = 3.6896317667789447e-09
iteration 3, reconstruction error: 0.20877930629505567, decrease = 3.681263571753135e-09
iteration 4, reconstruction error: 0.20877930262214334, decrease = 3.6729123353840265e-09
PARAFAC2 reconstruction error=0.8189091936110807, variation=6.905729099671021e-09.
Starting iteration 206
reconstruction error=0.20877848754292394
iteration 1, reconstruction error: 0.20877848384485398, decrease = 3.698069961366457e-09
iteration 2, reconstruction error: 0.20877848015927855, decrease = 3.6855754281805986e-09
iteration 3, reconstruction error: 0.20877847648206133, decrease = 3.6772172251620105e-09
iteration 4, reconstruction error: 0.20877847281318146, decrease = 3.66887986658071e-09
Accepted line search jump of 14.352700094407323.
PARAFAC2 reconstruction error=0.8189091748187385, variation=2.569807133756541e-08.
Starting iteration 207
reconstruction error=0.20877225614193257
iteration 1, reconstruction error: 0.2087722523159938, decrease = 3.825938760249059e-09
iteration 2, reconstruction error: 0.20877224867865946, decrease = 3.6373343503814937e-09
iteration 3, reconstruction error: 0.20877224504951694, decrease = 3.6291425142831457e-09
iteration 4, reconstruction error: 0.20877224142850845, decrease = 3.621008493048805e-09
PARAFAC2 reconstruction error=0.8189091708879102, variation=3.9308283295014235e-09.
Starting iteration 208
reconstruction error=0.20877472239153358
iteration 1, reconstruction error: 0.20877471869863623, decrease = 3.6928973490280015e-09
iteration 2, reconstruction error: 0.2087747150605442, decrease = 3.638092022084649e-09
iteration 3, reconstruction error: 0.2087747114306108, decrease = 3.629933409410313e-09
iteration 4, reconstruction error: 0.20877470780880042, decrease = 3.6218103793839163e-09
Line search failed for jump of 14.422205101855956.
PARAFAC2 reconstruction error=0.8189091708879102, variation=3.9308283295014235e-09.
Starting iteration 209
reconstruction error=0.2087759793475589
iteration 1, reconstruction error: 0.20877597569001474, decrease = 3.6575441564323796e-09
iteration 2, reconstruction error: 0.20877597205292098, decrease = 3.6370937650520574e-09
iteration 3, reconstruction error: 0.20877596842396876, decrease = 3.628952222056725e-09
iteration 4, reconstruction error: 0.20877596480312569, decrease = 3.620843069818136e-09
PARAFAC2 reconstruction error=0.8189091654516368, variation=5.436273320391649e-09.
Starting iteration 210
reconstruction error=0.2087766144452535
iteration 1, reconstruction error: 0.2087766107985299, decrease = 3.6467235897674755e-09
iteration 2, reconstruction error: 0.20877660716332588, decrease = 3.6352040266862673e-09
iteration 3, reconstruction error: 0.2087766035362441, decrease = 3.6270817738159877e-09
iteration 4, reconstruction error: 0.20877659991725833, decrease = 3.6189857777202405e-09
Accepted line search jump of 14.491376746189438.
PARAFAC2 reconstruction error=0.8189091450815195, variation=2.5806390691052172e-08.
Starting iteration 211
reconstruction error=0.20878118486610328
iteration 1, reconstruction error: 0.20878118115030322, decrease = 3.715800056536267e-09
iteration 2, reconstruction error: 0.2087811775483768, decrease = 3.6019264237907578e-09
iteration 3, reconstruction error: 0.20878117395437107, decrease = 3.594005731910599e-09
iteration 4, reconstruction error: 0.2087811703682776, decrease = 3.586093477725427e-09
PARAFAC2 reconstruction error=0.8189091420441362, variation=3.0373832338170814e-09.
Starting iteration 212
reconstruction error=0.20877913277854032
iteration 1, reconstruction error: 0.2087791291480702, decrease = 3.6304701189759925e-09
iteration 2, reconstruction error: 0.20877912555180206, decrease = 3.59626814439018e-09
iteration 3, reconstruction error: 0.20877912196344006, decrease = 3.5883619964316438e-09
iteration 4, reconstruction error: 0.2087791183829757, decrease = 3.5804643694348215e-09
Line search failed for jump of 14.560219778561036.
PARAFAC2 reconstruction error=0.8189091420441362, variation=3.0373832338170814e-09.
Starting iteration 213
reconstruction error=0.20877807304899185
iteration 1, reconstruction error: 0.2087780694425544, decrease = 3.606437454228839e-09
iteration 2, reconstruction error: 0.2087780658504158, decrease = 3.59213858658336e-09
iteration 3, reconstruction error: 0.2087780622661703, decrease = 3.5842455115009386e-09
iteration 4, reconstruction error: 0.20877805868981167, decrease = 3.5763586259118796e-09
PARAFAC2 reconstruction error=0.8189091374801015, variation=4.564034705722975e-09.
Starting iteration 214
reconstruction error=0.20877752176529826
iteration 1, reconstruction error: 0.20877751816715628, decrease = 3.5981419788111424e-09
iteration 2, reconstruction error: 0.2087775145784163, decrease = 3.5887399718603774e-09
iteration 3, reconstruction error: 0.20877751099756012, decrease = 3.5808561948957873e-09
iteration 4, reconstruction error: 0.2087775074245731, decrease = 3.572987017363971e-09
Accepted line search jump of 14.628738838327793.
PARAFAC2 reconstruction error=0.8189091162089903, variation=2.5835145911479174e-08.
Starting iteration 215
reconstruction error=0.20877327486604866
iteration 1, reconstruction error: 0.2087732712423753, decrease = 3.623673361374813e-09
iteration 2, reconstruction error: 0.208773267697706, decrease = 3.544669308075399e-09
iteration 3, reconstruction error: 0.20877326416075098, decrease = 3.5369550066555178e-09
iteration 4, reconstruction error: 0.2087732606314717, decrease = 3.5292792854857424e-09
PARAFAC2 reconstruction error=0.8189091137153122, variation=2.493678152859502e-09.
Starting iteration 216
reconstruction error=0.2087749266939228
iteration 1, reconstruction error: 0.20877492312351234, decrease = 3.5704104672795722e-09
iteration 2, reconstruction error: 0.20877491957960578, decrease = 3.5439065571019057e-09
iteration 3, reconstruction error: 0.208774916043398, decrease = 3.536207771048794e-09
iteration 4, reconstruction error: 0.2087749125148551, decrease = 3.528542902309084e-09
Accepted line search jump of 14.696938456699069.
PARAFAC2 reconstruction error=0.8189091088992567, variation=7.30973359619469e-09.
Starting iteration 217
reconstruction error=0.20878719263309964
iteration 1, reconstruction error: 0.20878718841939434, decrease = 4.213705301348014e-09
iteration 2, reconstruction error: 0.20878718489977754, decrease = 3.5196167924578248e-09
iteration 3, reconstruction error: 0.20878718138767546, decrease = 3.5121020813821957e-09
iteration 4, reconstruction error: 0.20878717788307885, decrease = 3.5045966129132466e-09
PARAFAC2 reconstruction error=0.8189090979427419, variation=1.0956514806537143e-08.
Starting iteration 218
reconstruction error=0.20878189074858491
iteration 1, reconstruction error: 0.20878188705757458, decrease = 3.6910103307086217e-09
iteration 2, reconstruction error: 0.20878188354721905, decrease = 3.5103555340310066e-09
iteration 3, reconstruction error: 0.2087818800443445, decrease = 3.5028745459797506e-09
iteration 4, reconstruction error: 0.20878187654895247, decrease = 3.4953920313718356e-09
Line search failed for jump of 14.7648230602334.
PARAFAC2 reconstruction error=0.8189090979427419, variation=1.0956514806537143e-08.
Starting iteration 219
reconstruction error=0.208779173411579
iteration 1, reconstruction error: 0.20877916985621206, decrease = 3.5553669452959014e-09
iteration 2, reconstruction error: 0.20877916635172195, decrease = 3.5044901147696095e-09
iteration 3, reconstruction error: 0.20877916285470133, decrease = 3.4970206175266583e-09
iteration 4, reconstruction error: 0.20877915936514943, decrease = 3.4895518974398243e-09
PARAFAC2 reconstruction error=0.8189090858422838, variation=1.2100458079977727e-08.
Starting iteration 220
reconstruction error=0.20877777691335683
iteration 1, reconstruction error: 0.2087777733948801, decrease = 3.518476732189413e-09
iteration 2, reconstruction error: 0.20877776989461105, decrease = 3.5002690468299846e-09
iteration 3, reconstruction error: 0.20877776640180157, decrease = 3.492809486083104e-09
iteration 4, reconstruction error: 0.20877776291644468, decrease = 3.4853568919857025e-09
Accepted line search jump of 14.832396974191326.
PARAFAC2 reconstruction error=0.8189090751541983, variation=2.278854360771021e-08.
Starting iteration 221
reconstruction error=0.20876710209404922
iteration 1, reconstruction error: 0.2087670981727928, decrease = 3.921256430672315e-09
iteration 2, reconstruction error: 0.2087670947222846, decrease = 3.4505081847324703e-09
iteration 3, reconstruction error: 0.2087670912791299, decrease = 3.4431547057955925e-09
iteration 4, reconstruction error: 0.20876708784323456, decrease = 3.435895346015627e-09
PARAFAC2 reconstruction error=0.8189090673441626, variation=7.810035729249876e-09.
Starting iteration 222
reconstruction error=0.20877147474350052
iteration 1, reconstruction error: 0.20877147116404005, decrease = 3.57946047802038e-09
iteration 2, reconstruction error: 0.2087714677115665, decrease = 3.452473557041813e-09
iteration 3, reconstruction error: 0.20877146426638993, decrease = 3.445176560701313e-09
iteration 4, reconstruction error: 0.20877146082846645, decrease = 3.437923473681437e-09
Line search failed for jump of 14.89966442575134.
PARAFAC2 reconstruction error=0.8189090673441626, variation=7.810035729249876e-09.
Starting iteration 223
reconstruction error=0.20877369911305452
iteration 1, reconstruction error: 0.2087736956223196, decrease = 3.4907349233392893e-09
iteration 2, reconstruction error: 0.20877369217009914, decrease = 3.452220453947774e-09
iteration 3, reconstruction error: 0.2087736887251525, decrease = 3.444946633512913e-09
iteration 4, reconstruction error: 0.20877368528744644, decrease = 3.4377060642576396e-09
PARAFAC2 reconstruction error=0.8189090582574368, variation=9.086725816231933e-09.
Starting iteration 224
reconstruction error=0.20877482525294005
iteration 1, reconstruction error: 0.20877482178653803, decrease = 3.4664020265307016e-09
iteration 2, reconstruction error: 0.20877481833573036, decrease = 3.450807667393363e-09
iteration 3, reconstruction error: 0.20877481489217403, decrease = 3.4435563289747506e-09
iteration 4, reconstruction error: 0.20877481145585292, decrease = 3.436321116545571e-09
Accepted line search jump of 14.966629547095765.
PARAFAC2 reconstruction error=0.8189090438671092, variation=2.347705341243511e-08.
Starting iteration 225
reconstruction error=0.20878327539418837
iteration 1, reconstruction error: 0.20878327165839156, decrease = 3.735796810788727e-09
iteration 2, reconstruction error: 0.20878326823697319, decrease = 3.4214183708414225e-09
iteration 3, reconstruction error: 0.20878326482262768, decrease = 3.4143455007740187e-09
iteration 4, reconstruction error: 0.20878326141535117, decrease = 3.407276516487201e-09
PARAFAC2 reconstruction error=0.8189090380567443, variation=5.8103648559182375e-09.
Starting iteration 226
reconstruction error=0.20877956275971693
iteration 1, reconstruction error: 0.20877955926019506, decrease = 3.499521866734412e-09
iteration 2, reconstruction error: 0.20877955584545868, decrease = 3.4147363825454136e-09
iteration 3, reconstruction error: 0.20877955243777988, decrease = 3.407678805800174e-09
iteration 4, reconstruction error: 0.2087795490371509, decrease = 3.400628972860531e-09
Line search failed for jump of 15.033296378372908.
PARAFAC2 reconstruction error=0.8189090380567443, variation=5.8103648559182375e-09.
Starting iteration 227
reconstruction error=0.20877766188043836
iteration 1, reconstruction error: 0.20877765844374682, decrease = 3.436691542457737e-09
iteration 2, reconstruction error: 0.2087776550335688, decrease = 3.4101780288509076e-09
iteration 3, reconstruction error: 0.208777651630443, decrease = 3.403125781176186e-09
iteration 4, reconstruction error: 0.20877764823435865, decrease = 3.3960843581759548e-09
PARAFAC2 reconstruction error=0.8189090309101825, variation=7.146561786797179e-09.
Starting iteration 228
reconstruction error=0.20877668457360563
iteration 1, reconstruction error: 0.20877668115512985, decrease = 3.4184757802258048e-09
iteration 2, reconstruction error: 0.2087766777484961, decrease = 3.4066337528670942e-09
iteration 3, reconstruction error: 0.20877667434889996, decrease = 3.3995961323807222e-09
iteration 4, reconstruction error: 0.20877667095632754, decrease = 3.3925724174377336e-09
Accepted line search jump of 15.0996688705415.
PARAFAC2 reconstruction error=0.8189090141475368, variation=2.390920750272585e-08.
Starting iteration 229
reconstruction error=0.20876905481397226
iteration 1, reconstruction error: 0.20876905122628542, decrease = 3.5876868420547936e-09
iteration 2, reconstruction error: 0.20876904786491834, decrease = 3.3613670735732626e-09
iteration 3, reconstruction error: 0.2087690445104565, decrease = 3.354461847182577e-09
iteration 4, reconstruction error: 0.20876904116284276, decrease = 3.3476137417665086e-09
PARAFAC2 reconstruction error=0.8189090096513166, variation=4.496220173955123e-09.
Starting iteration 230
reconstruction error=0.2087721596965947
iteration 1, reconstruction error: 0.20877215627082862, decrease = 3.4257660874725815e-09
iteration 2, reconstruction error: 0.2087721529090672, decrease = 3.3617614247916094e-09
iteration 3, reconstruction error: 0.20877214955418233, decrease = 3.354884869910535e-09
iteration 4, reconstruction error: 0.20877214620613466, decrease = 3.3480476724356834e-09
Line search failed for jump of 15.165750888103101.
PARAFAC2 reconstruction error=0.8189090096513166, variation=4.496220173955123e-09.
Starting iteration 231
reconstruction error=0.20877373327161677
iteration 1, reconstruction error: 0.20877372988895412, decrease = 3.3826626499866563e-09
iteration 2, reconstruction error: 0.20877372652821632, decrease = 3.360737799162905e-09
iteration 3, reconstruction error: 0.20877372317433338, decrease = 3.353882949141962e-09
iteration 4, reconstruction error: 0.20877371982728296, decrease = 3.347050414603814e-09
PARAFAC2 reconstruction error=0.8189090037795381, variation=5.871778507859915e-09.
Starting iteration 232
reconstruction error=0.20877452601995644
iteration 1, reconstruction error: 0.2087745226500395, decrease = 3.3699169288414765e-09
iteration 2, reconstruction error: 0.2087745192910583, decrease = 3.358981204293343e-09
iteration 3, reconstruction error: 0.2087745159389173, decrease = 3.352141009216325e-09
iteration 4, reconstruction error: 0.2087745125936003, decrease = 3.345316995639891e-09
Accepted line search jump of 15.231546211727817.
PARAFAC2 reconstruction error=0.8189089854757844, variation=2.417553224276503e-08.
Starting iteration 233
reconstruction error=0.2087805317699659
iteration 1, reconstruction error: 0.2087805282848941, decrease = 3.4850717867129788e-09
iteration 2, reconstruction error: 0.20878052495795635, decrease = 3.3269377530675825e-09
iteration 3, reconstruction error: 0.2087805216376827, decrease = 3.32027363936227e-09
iteration 4, reconstruction error: 0.20878051832406858, decrease = 3.3136141330825097e-09
PARAFAC2 reconstruction error=0.8189089818553918, variation=3.620392541314743e-09.
Starting iteration 234
reconstruction error=0.2087778446351688
iteration 1, reconstruction error: 0.20877784126839327, decrease = 3.366775525037724e-09
iteration 2, reconstruction error: 0.20877783794661206, decrease = 3.3217812112074085e-09
iteration 3, reconstruction error: 0.2087778346314804, decrease = 3.3151316691792942e-09
iteration 4, reconstruction error: 0.20877783132299751, decrease = 3.3084828765517216e-09
Line search failed for jump of 15.297058540778355.
PARAFAC2 reconstruction error=0.8189089818553918, variation=3.620392541314743e-09.
Starting iteration 235
reconstruction error=0.20877646864714433
iteration 1, reconstruction error: 0.20877646531292485, decrease = 3.334219483841494e-09
iteration 2, reconstruction error: 0.20877646199492675, decrease = 3.3179980984954227e-09
iteration 3, reconstruction error: 0.2087764586835767, decrease = 3.3113500552683917e-09
iteration 4, reconstruction error: 0.20877645537885772, decrease = 3.3047189706980618e-09
PARAFAC2 reconstruction error=0.8189089768490646, variation=5.006327241652286e-09.
Starting iteration 236
reconstruction error=0.20877575996836997
iteration 1, reconstruction error: 0.2087757566445015, decrease = 3.323868486004855e-09
iteration 2, reconstruction error: 0.20877575332962692, decrease = 3.3148745692823667e-09
iteration 3, reconstruction error: 0.20877575002138582, decrease = 3.308241097732534e-09
iteration 4, reconstruction error: 0.20877574671976734, decrease = 3.3016184786127667e-09
Accepted line search jump of 15.362291495737216.
PARAFAC2 reconstruction error=0.8189089575393222, variation=2.43160696022926e-08.
Starting iteration 237
reconstruction error=0.2087701037349736
iteration 1, reconstruction error: 0.2087701003421046, decrease = 3.3928689857631866e-09
iteration 2, reconstruction error: 0.2087700970696299, decrease = 3.272474707882722e-09
iteration 3, reconstruction error: 0.20877009380365763, decrease = 3.2659722704053706e-09
iteration 4, reconstruction error: 0.20877009054414541, decrease = 3.2595122156919842e-09
PARAFAC2 reconstruction error=0.8189089545232044, variation=3.0161177999588062e-09.
Starting iteration 238
reconstruction error=0.20877238241214513
iteration 1, reconstruction error: 0.20877237910378824, decrease = 3.3083568939940022e-09
iteration 2, reconstruction error: 0.2087723758318046, decrease = 3.2719836284833548e-09
iteration 3, reconstruction error: 0.2087723725662979, decrease = 3.265506698379994e-09
iteration 4, reconstruction error: 0.20877236930723958, decrease = 3.259058328763942e-09
Line search failed for jump of 15.427248620541512.
PARAFAC2 reconstruction error=0.8189089545232044, variation=3.0161177999588062e-09.
Starting iteration 239
reconstruction error=0.20877353352434203
iteration 1, reconstruction error: 0.20877353023935405, decrease = 3.284987976082121e-09
iteration 2, reconstruction error: 0.20877352696880339, decrease = 3.270550663625471e-09
iteration 3, reconstruction error: 0.20877352370471186, decrease = 3.26409152484608e-09
iteration 4, reconstruction error: 0.20877352044705794, decrease = 3.2576539243933667e-09
PARAFAC2 reconstruction error=0.8189089501143552, variation=4.408849285653105e-09.
Starting iteration 240
reconstruction error=0.20877411061465637
iteration 1, reconstruction error: 0.2087741073373602, decrease = 3.2772961566784886e-09
iteration 2, reconstruction error: 0.20877410406873104, decrease = 3.2686291728811767e-09
iteration 3, reconstruction error: 0.2087741008065479, decrease = 3.2621831347334762e-09
iteration 4, reconstruction error: 0.2087740975507961, decrease = 3.255751807040852e-09
Accepted line search jump of 15.491933384829668.
PARAFAC2 reconstruction error=0.8189089301475581, variation=2.4375646390240036e-08.
Starting iteration 241
reconstruction error=0.20877851888674148
iteration 1, reconstruction error: 0.20877851556373322, decrease = 3.3230082574498e-09
iteration 2, reconstruction error: 0.20877851232840597, decrease = 3.235327256101428e-09
iteration 3, reconstruction error: 0.20877850909935644, decrease = 3.2290495277642606e-09
iteration 4, reconstruction error: 0.2087785058765823, decrease = 3.222774130895445e-09
PARAFAC2 reconstruction error=0.8189089275517287, variation=2.595829329266053e-09.
Starting iteration 242
reconstruction error=0.2087765058447263
iteration 1, reconstruction error: 0.20877650258676558, decrease = 3.257960706770646e-09
iteration 2, reconstruction error: 0.20877649935567802, decrease = 3.231087564170565e-09
iteration 3, reconstruction error: 0.20877649613086205, decrease = 3.2248159698156087e-09
iteration 4, reconstruction error: 0.2087764929123146, decrease = 3.2185474563295458e-09
Line search failed for jump of 15.556349186104045.
PARAFAC2 reconstruction error=0.8189089275517287, variation=2.595829329266053e-09.
Starting iteration 243
reconstruction error=0.20877547410461506
iteration 1, reconstruction error: 0.2087754708654387, decrease = 3.239176343816652e-09
iteration 2, reconstruction error: 0.2087754676376555, decrease = 3.227783207382373e-09
iteration 3, reconstruction error: 0.2087754644161362, decrease = 3.2215193013218624e-09
iteration 4, reconstruction error: 0.2087754612008693, decrease = 3.215266913825232e-09
PARAFAC2 reconstruction error=0.8189089235702349, variation=3.981493801319402e-09.
Starting iteration 244
reconstruction error=0.208774941277813
iteration 1, reconstruction error: 0.20877493804535988, decrease = 3.2324531107352783e-09
iteration 2, reconstruction error: 0.20877493482041967, decrease = 3.2249402037720643e-09
iteration 3, reconstruction error: 0.20877493160173108, decrease = 3.2186885934315512e-09
iteration 4, reconstruction error: 0.20877492838928788, decrease = 3.212443200339976e-09
Accepted line search jump of 15.620499351813308.
PARAFAC2 reconstruction error=0.8189089031808077, variation=2.4370921059002626e-08.
Starting iteration 245
reconstruction error=0.2087705906141637
iteration 1, reconstruction error: 0.20877058735923085, decrease = 3.2549328510267372e-09
iteration 2, reconstruction error: 0.20877058417472544, decrease = 3.1845054093704306e-09
iteration 3, reconstruction error: 0.20877058099633752, decrease = 3.1783879139712923e-09
iteration 4, reconstruction error: 0.20877057782403782, decrease = 3.1722997007044285e-09
PARAFAC2 reconstruction error=0.8189089008888286, variation=2.2919790509945415e-09.
Starting iteration 246
reconstruction error=0.20877232083265124
iteration 1, reconstruction error: 0.20877231762599277, decrease = 3.2066584665368936e-09
iteration 2, reconstruction error: 0.20877231444246197, decrease = 3.1835308000882634e-09
iteration 3, reconstruction error: 0.2087723112650332, decrease = 3.177428764544743e-09
iteration 4, reconstruction error: 0.20877230809368486, decrease = 3.171348350594627e-09
Accepted line search jump of 15.684387141358123.
PARAFAC2 reconstruction error=0.8189088991915344, variation=3.989273245075253e-09.
Starting iteration 247
reconstruction error=0.20878597463805162
iteration 1, reconstruction error: 0.20878597074586852, decrease = 3.892183103593183e-09
iteration 2, reconstruction error: 0.20878596758731563, decrease = 3.158552891457944e-09
iteration 3, reconstruction error: 0.2087859644347232, decrease = 3.152592437105639e-09
iteration 4, reconstruction error: 0.20878596128807186, decrease = 3.146651328389538e-09
PARAFAC2 reconstruction error=0.8189088873769562, variation=1.1814578204649706e-08.
Starting iteration 248
reconstruction error=0.20877999980890802
iteration 1, reconstruction error: 0.20877999646608725, decrease = 3.3428207701913237e-09
iteration 2, reconstruction error: 0.2087799933150674, decrease = 3.151019833946833e-09
iteration 3, reconstruction error: 0.20877999016998042, decrease = 3.1450869963922656e-09
iteration 4, reconstruction error: 0.20877998703081546, decrease = 3.1391649557566126e-09
Line search failed for jump of 15.748015748023622.
PARAFAC2 reconstruction error=0.8189088873769562, variation=1.1814578204649706e-08.
Starting iteration 249
reconstruction error=0.2087769566992916
iteration 1, reconstruction error: 0.20877695350001813, decrease = 3.199273485021692e-09
iteration 2, reconstruction error: 0.208776950353883, decrease = 3.1461351301942386e-09
iteration 3, reconstruction error: 0.20877694721366613, decrease = 3.1402168643168693e-09
iteration 4, reconstruction error: 0.20877694407936218, decrease = 3.134303955265594e-09
PARAFAC2 reconstruction error=0.8189088745720497, variation=1.2804906468488753e-08.
Starting iteration 250
reconstruction error=0.20877540251359392
iteration 1, reconstruction error: 0.20877539935325684, decrease = 3.160337075369668e-09
iteration 2, reconstruction error: 0.20877539621071495, decrease = 3.1425418933750393e-09
iteration 3, reconstruction error: 0.20877539307408366, decrease = 3.13663128803654e-09
iteration 4, reconstruction error: 0.20877538994335218, decrease = 3.130731479616955e-09
Accepted line search jump of 15.811388300841896.
PARAFAC2 reconstruction error=0.818908868615225, variation=1.8761731168659423e-08.
Starting iteration 251
reconstruction error=0.20876282480370498
iteration 1, reconstruction error: 0.20876282112578562, decrease = 3.677919357958359e-09
iteration 2, reconstruction error: 0.20876281802904811, decrease = 3.096737505314806e-09
iteration 3, reconstruction error: 0.20876281493814913, decrease = 3.0908989812061805e-09
iteration 4, reconstruction error: 0.2087628118530053, decrease = 3.085143834846704e-09
PARAFAC2 reconstruction error=0.8189088590923288, variation=9.522896249336554e-09.
Starting iteration 252
reconstruction error=0.20876808402353053
iteration 1, reconstruction error: 0.20876808077022913, decrease = 3.253301406047626e-09
iteration 2, reconstruction error: 0.208768077671882, decrease = 3.0983471344114832e-09
iteration 3, reconstruction error: 0.20876807457931768, decrease = 3.092564315743118e-09
iteration 4, reconstruction error: 0.20876807149249985, decrease = 3.086817829123234e-09
Line search failed for jump of 15.874507866387544.
PARAFAC2 reconstruction error=0.8189088590923288, variation=9.522896249336554e-09.
Starting iteration 253
reconstruction error=0.20877075003574402
iteration 1, reconstruction error: 0.20877074689293174, decrease = 3.1428122881926868e-09
iteration 2, reconstruction error: 0.2087707437948153, decrease = 3.098116430066966e-09
iteration 3, reconstruction error: 0.2087707407024584, decrease = 3.0923568983265426e-09
iteration 4, reconstruction error: 0.20877073761584333, decrease = 3.086615074643362e-09
PARAFAC2 reconstruction error=0.8189088485030347, variation=1.0589294108243053e-08.
Starting iteration 254
reconstruction error=0.20877209697104174
iteration 1, reconstruction error: 0.2087720938580777, decrease = 3.1129640254423663e-09
iteration 2, reconstruction error: 0.2087720907611827, decrease = 3.0968950182064248e-09
iteration 3, reconstruction error: 0.20877208767003716, decrease = 3.091145533984374e-09
iteration 4, reconstruction error: 0.20877208458461413, decrease = 3.0854230281818218e-09
Accepted line search jump of 15.937377450509228.
PARAFAC2 reconstruction error=0.8189088394698166, variation=1.9622512170691664e-08.
Starting iteration 255
reconstruction error=0.20878286317476408
iteration 1, reconstruction error: 0.20878285964843996, decrease = 3.526324121594371e-09
iteration 2, reconstruction error: 0.2087828565786573, decrease = 3.0697826503001124e-09
iteration 3, reconstruction error: 0.20878285351447956, decrease = 3.0641777448714436e-09
iteration 4, reconstruction error: 0.20878285045589284, decrease = 3.0585867172305825e-09
PARAFAC2 reconstruction error=0.8189088316181731, variation=7.851643557543753e-09.
Starting iteration 256
reconstruction error=0.20877811309983008
iteration 1, reconstruction error: 0.20877810991553672, decrease = 3.184293356772727e-09
iteration 2, reconstruction error: 0.20877810685197964, decrease = 3.063557074689527e-09
iteration 3, reconstruction error: 0.20877810379400447, decrease = 3.0579751786330434e-09
iteration 4, reconstruction error: 0.2087781007416166, decrease = 3.052387870239315e-09
Line search failed for jump of 16.0.
PARAFAC2 reconstruction error=0.8189088316181731, variation=7.851643557543753e-09.
Starting iteration 257
reconstruction error=0.2087756933336527
iteration 1, reconstruction error: 0.20877569023951398, decrease = 3.094138723014339e-09
iteration 2, reconstruction error: 0.2087756871801587, decrease = 3.0593552691193793e-09
iteration 3, reconstruction error: 0.20877568412637926, decrease = 3.0537794515339556e-09
iteration 4, reconstruction error: 0.20877568107816943, decrease = 3.048209823441894e-09
PARAFAC2 reconstruction error=0.8189088226617364, variation=8.956436703400072e-09.
Starting iteration 258
reconstruction error=0.20877445657782157
iteration 1, reconstruction error: 0.20877445350878446, decrease = 3.069037107783501e-09
iteration 2, reconstruction error: 0.20877445045264403, decrease = 3.056140424062548e-09
iteration 3, reconstruction error: 0.20877444740206869, decrease = 3.0505753478848874e-09
iteration 4, reconstruction error: 0.20877444435705295, decrease = 3.0450157395556232e-09
Accepted line search jump of 16.06237840420901.
PARAFAC2 reconstruction error=0.8189088113872901, variation=2.0230882968874653e-08.
Starting iteration 259
reconstruction error=0.2087642682781739
iteration 1, reconstruction error: 0.20876426488849276, decrease = 3.389681146881429e-09
iteration 2, reconstruction error: 0.20876426187545385, decrease = 3.01303890171134e-09
iteration 3, reconstruction error: 0.20876425886790315, decrease = 3.007550708478135e-09
iteration 4, reconstruction error: 0.20876425586577274, decrease = 3.0021304053828857e-09
PARAFAC2 reconstruction error=0.8189088047837687, variation=6.603521396364442e-09.
Starting iteration 260
reconstruction error=0.20876851817357084
iteration 1, reconstruction error: 0.20876851505775357, decrease = 3.1158172708600773e-09
iteration 2, reconstruction error: 0.2087685120438467, decrease = 3.013906874071992e-09
iteration 3, reconstruction error: 0.20876850903538316, decrease = 3.008463533848982e-09
iteration 4, reconstruction error: 0.20876850603233205, decrease = 3.0030511133372073e-09
Line search failed for jump of 16.1245154965971.
PARAFAC2 reconstruction error=0.8189088047837687, variation=6.603521396364442e-09.
Starting iteration 261
reconstruction error=0.2087706699815737
iteration 1, reconstruction error: 0.20877066693757051, decrease = 3.0440031884015895e-09
iteration 2, reconstruction error: 0.2087706639242615, decrease = 3.0133090189732314e-09
iteration 3, reconstruction error: 0.2087706609163741, decrease = 3.0078873836103526e-09
iteration 4, reconstruction error: 0.20877065791389607, decrease = 3.0024780439674714e-09
PARAFAC2 reconstruction error=0.8189087970415587, variation=7.742209984229476e-09.
Starting iteration 262
reconstruction error=0.20877175528894715
iteration 1, reconstruction error: 0.20877175226484818, decrease = 3.0240989712382316e-09
iteration 2, reconstruction error: 0.208771749252914, decrease = 3.011934174290687e-09
iteration 3, reconstruction error: 0.20877174624639527, decrease = 3.0065187284211703e-09
iteration 4, reconstruction error: 0.2087717432452681, decrease = 3.0011271801022588e-09
Accepted line search jump of 16.186414056238647.
PARAFAC2 reconstruction error=0.8189087841224774, variation=2.066129134448147e-08.
Starting iteration 263
reconstruction error=0.20878053943388752
iteration 1, reconstruction error: 0.20878053614416203, decrease = 3.289725492017226e-09
iteration 2, reconstruction error: 0.20878053316057815, decrease = 2.983583879956342e-09
iteration 3, reconstruction error: 0.208780530182266, decrease = 2.978312152457363e-09
iteration 4, reconstruction error: 0.20878052720922638, decrease = 2.9730396200466913e-09
PARAFAC2 reconstruction error=0.8189087784529029, variation=5.669574476563355e-09.
Starting iteration 264
reconstruction error=0.2087766322937253
iteration 1, reconstruction error: 0.20877662923338453, decrease = 3.0603407863427634e-09
iteration 2, reconstruction error: 0.20877662625509733, decrease = 2.9782872001948846e-09
iteration 3, reconstruction error: 0.20877662328206653, decrease = 2.9730307937736455e-09
iteration 4, reconstruction error: 0.20877662031429214, decrease = 2.9677743873524065e-09
Line search failed for jump of 16.24807680927192.
PARAFAC2 reconstruction error=0.8189087784529029, variation=5.669574476563355e-09.
Starting iteration 265
reconstruction error=0.2087746412774753
iteration 1, reconstruction error: 0.20877463827820597, decrease = 2.999269332892851e-09
iteration 2, reconstruction error: 0.20877463530362844, decrease = 2.9745775287359777e-09
iteration 3, reconstruction error: 0.20877463233429813, decrease = 2.9693303094102674e-09
iteration 4, reconstruction error: 0.20877462937021812, decrease = 2.964080009215664e-09
PARAFAC2 reconstruction error=0.8189087716331281, variation=6.8197747449261215e-09.
Starting iteration 266
reconstruction error=0.2087736227559461
iteration 1, reconstruction error: 0.20877361977419703, decrease = 2.981749069874695e-09
iteration 2, reconstruction error: 0.20877361680254825, decrease = 2.971648788152592e-09
iteration 3, reconstruction error: 0.20877361383614979, decrease = 2.966398460202413e-09
iteration 4, reconstruction error: 0.20877361087498778, decrease = 2.9611620100400415e-09
Accepted line search jump of 16.30950643030009.
PARAFAC2 reconstruction error=0.8189087575038682, variation=2.0949034729156324e-08.
Starting iteration 267
reconstruction error=0.20876508535726646
iteration 1, reconstruction error: 0.20876508216412473, decrease = 3.1931417232566872e-09
iteration 2, reconstruction error: 0.20876507923350596, decrease = 2.9306187754318813e-09
iteration 3, reconstruction error: 0.2087650763080452, decrease = 2.9254607625261997e-09
iteration 4, reconstruction error: 0.20876507338769146, decrease = 2.920353736612924e-09
PARAFAC2 reconstruction error=0.818908752550992, variation=4.9528761092432205e-09.
Starting iteration 268
reconstruction error=0.208768637153495
iteration 1, reconstruction error: 0.2087686341503302, decrease = 3.003164800174929e-09
iteration 2, reconstruction error: 0.20876863121933772, decrease = 2.93099247650197e-09
iteration 3, reconstruction error: 0.20876862829346693, decrease = 2.9258707956447694e-09
iteration 4, reconstruction error: 0.2087686253726961, decrease = 2.9207708196477e-09
Line search failed for jump of 16.3707055437449.
PARAFAC2 reconstruction error=0.818908752550992, variation=4.9528761092432205e-09.
Starting iteration 269
reconstruction error=0.20877043374088522
iteration 1, reconstruction error: 0.2087704307879797, decrease = 2.9529055312060848e-09
iteration 2, reconstruction error: 0.20877042785781094, decrease = 2.9301687465288495e-09
iteration 3, reconstruction error: 0.20877042493274983, decrease = 2.9250611099929102e-09
iteration 4, reconstruction error: 0.20877042201277715, decrease = 2.919972680315297e-09
PARAFAC2 reconstruction error=0.8189087464352791, variation=6.115712936072271e-09.
Starting iteration 270
reconstruction error=0.20877133852655425
iteration 1, reconstruction error: 0.20877133558800456, decrease = 2.9385496813638667e-09
iteration 2, reconstruction error: 0.20877133265929151, decrease = 2.9287130498545366e-09
iteration 3, reconstruction error: 0.20877132973567608, decrease = 2.9236154330813946e-09
iteration 4, reconstruction error: 0.20877132681714208, decrease = 2.9185339978088365e-09
Accepted line search jump of 16.431676725154983.
PARAFAC2 reconstruction error=0.8189087314153854, variation=2.1135606598221557e-08.
Starting iteration 271
reconstruction error=0.20877875208863086
iteration 1, reconstruction error: 0.20877874896843854, decrease = 3.1201923267332177e-09
iteration 2, reconstruction error: 0.2087787460686645, decrease = 2.8997740320058085e-09
iteration 3, reconstruction error: 0.20877874317386066, decrease = 2.894803841080318e-09
iteration 4, reconstruction error: 0.20877874028400767, decrease = 2.8898529957910313e-09
PARAFAC2 reconstruction error=0.8189087270097395, variation=4.405645959160154e-09.
Starting iteration 272
reconstruction error=0.20877542906162033
iteration 1, reconstruction error: 0.20877542610657981, decrease = 2.9550405178380146e-09
iteration 2, reconstruction error: 0.20877542321145653, decrease = 2.895123280000078e-09
iteration 3, reconstruction error: 0.20877542032127883, decrease = 2.8901777082701585e-09
iteration 4, reconstruction error: 0.20877541743605516, decrease = 2.885223671089676e-09
Line search failed for jump of 16.492422502470642.
PARAFAC2 reconstruction error=0.8189087270097395, variation=4.405645959160154e-09.
Starting iteration 273
reconstruction error=0.2087737350614238
iteration 1, reconstruction error: 0.2087737321508201, decrease = 2.9106037024995146e-09
iteration 2, reconstruction error: 0.2087737292590532, decrease = 2.8917669092631826e-09
iteration 3, reconstruction error: 0.20877372637223188, decrease = 2.8868213097776874e-09
iteration 4, reconstruction error: 0.20877372349034842, decrease = 2.881883454097789e-09
PARAFAC2 reconstruction error=0.818908721443292, variation=5.566447525140461e-09.
Starting iteration 274
reconstruction error=0.20877286770555967
iteration 1, reconstruction error: 0.2087728648081158, decrease = 2.8974438681661496e-09
iteration 2, reconstruction error: 0.20877286191906513, decrease = 2.8890506653667103e-09
iteration 3, reconstruction error: 0.2087728590349624, decrease = 2.8841027344128634e-09
iteration 4, reconstruction error: 0.20877285615578756, decrease = 2.879174842984611e-09
Accepted line search jump of 16.55294535724685.
PARAFAC2 reconstruction error=0.8189087057727827, variation=2.123695674871584e-08.
Starting iteration 275
reconstruction error=0.20876547432956294
iteration 1, reconstruction error: 0.20876547128379133, decrease = 3.0457716071463636e-09
iteration 2, reconstruction error: 0.20876546843412594, decrease = 2.8496653925458304e-09
iteration 3, reconstruction error: 0.2087654655893138, decrease = 2.8448121358604084e-09
iteration 4, reconstruction error: 0.20876546274930474, decrease = 2.8400090612556994e-09
PARAFAC2 reconstruction error=0.8189087017964621, variation=3.976320606113859e-09.
Starting iteration 276
reconstruction error=0.2087685425727974
iteration 1, reconstruction error: 0.20876853966831135, decrease = 2.9044860405669226e-09
iteration 2, reconstruction error: 0.20876853681858293, decrease = 2.8497284254580535e-09
iteration 3, reconstruction error: 0.2087685339736807, decrease = 2.8449022304588567e-09
iteration 4, reconstruction error: 0.20876853113357607, decrease = 2.840104623702544e-09
Line search failed for jump of 16.61324772583615.
PARAFAC2 reconstruction error=0.8189087017964621, variation=3.976320606113859e-09.
Starting iteration 277
reconstruction error=0.20877009334284552
iteration 1, reconstruction error: 0.20877009047609363, decrease = 2.8667518914282653e-09
iteration 2, reconstruction error: 0.2087700876273195, decrease = 2.848774133257237e-09
iteration 3, reconstruction error: 0.20877008478336298, decrease = 2.8439565147309054e-09
iteration 4, reconstruction error: 0.20877008194418706, decrease = 2.839175922142445e-09
PARAFAC2 reconstruction error=0.8189086966580669, variation=5.138395264836504e-09.
Starting iteration 278
reconstruction error=0.20877087333859348
iteration 1, reconstruction error: 0.20877087048294124, decrease = 2.855652242450546e-09
iteration 2, reconstruction error: 0.20877086763565833, decrease = 2.847282909446136e-09
iteration 3, reconstruction error: 0.2087708647931753, decrease = 2.842483026732623e-09
iteration 4, reconstruction error: 0.20877086195547673, decrease = 2.837698576119152e-09
Accepted line search jump of 16.673332000533065.
PARAFAC2 reconstruction error=0.8189086805188714, variation=2.1277590689372516e-08.
Starting iteration 279
reconstruction error=0.20877734290969346
iteration 1, reconstruction error: 0.20877733992166886, decrease = 2.988024605521389e-09
iteration 2, reconstruction error: 0.20877733710348234, decrease = 2.8181865174836673e-09
iteration 3, reconstruction error: 0.2087773342899737, decrease = 2.8135086482805605e-09
iteration 4, reconstruction error: 0.2087773314811305, decrease = 2.8088431858197538e-09
PARAFAC2 reconstruction error=0.8189086768743442, variation=3.6445272355578595e-09.
Starting iteration 280
reconstruction error=0.20877442278013036
iteration 1, reconstruction error: 0.20877441991935744, decrease = 2.8607729241070246e-09
iteration 2, reconstruction error: 0.20877441710535694, decrease = 2.814000504836045e-09
iteration 3, reconstruction error: 0.20877441429602353, decrease = 2.809333404796277e-09
iteration 4, reconstruction error: 0.20877441149134565, decrease = 2.8046778788315407e-09
Line search failed for jump of 16.73320053068151.
PARAFAC2 reconstruction error=0.8189086768743442, variation=3.6445272355578595e-09.
Starting iteration 281
reconstruction error=0.20877293364130814
iteration 1, reconstruction error: 0.20877293081512646, decrease = 2.826181677573203e-09
iteration 2, reconstruction error: 0.20877292800422606, decrease = 2.8109004013288086e-09
iteration 3, reconstruction error: 0.20877292519797894, decrease = 2.806247123565697e-09
iteration 4, reconstruction error: 0.20877292239638817, decrease = 2.8015907649336924e-09
PARAFAC2 reconstruction error=0.8189086720769827, variation=4.797361508046549e-09.
Starting iteration 282
reconstruction error=0.2087721705743646
iteration 1, reconstruction error: 0.20877216775873186, decrease = 2.8156327269712733e-09
iteration 2, reconstruction error: 0.2087721649503876, decrease = 2.8083442515924872e-09
iteration 3, reconstruction error: 0.20877216214668895, decrease = 2.8036986621238214e-09
iteration 4, reconstruction error: 0.20877215934764431, decrease = 2.7990446349601683e-09
Accepted line search jump of 16.792855623746664.
PARAFAC2 reconstruction error=0.8189086556103733, variation=2.1263970917395625e-08.
Starting iteration 283
reconstruction error=0.20876556078126735
iteration 1, reconstruction error: 0.20876555785447226, decrease = 2.9267950840683454e-09
iteration 2, reconstruction error: 0.20876555508415084, decrease = 2.7703214167118517e-09
iteration 3, reconstruction error: 0.20876555231839336, decrease = 2.765757484146647e-09
iteration 4, reconstruction error: 0.20876554955716356, decrease = 2.7612298003631963e-09
PARAFAC2 reconstruction error=0.8189086522298655, variation=3.38050776260701e-09.
Starting iteration 284
reconstruction error=0.20876829866984842
iteration 1, reconstruction error: 0.2087682958553779, decrease = 2.81447051775352e-09
iteration 2, reconstruction error: 0.20876829308518566, decrease = 2.7701922422629366e-09
iteration 3, reconstruction error: 0.2087682903195326, decrease = 2.765653067671181e-09
iteration 4, reconstruction error: 0.20876828755840252, decrease = 2.7611300745800094e-09
Line search failed for jump of 16.852299546352718.
PARAFAC2 reconstruction error=0.8189086522298655, variation=3.38050776260701e-09.
Starting iteration 285
reconstruction error=0.20876968164121373
iteration 1, reconstruction error: 0.20876967885700898, decrease = 2.7842047556347893e-09
iteration 2, reconstruction error: 0.20876967608783734, decrease = 2.7691716419919743e-09
iteration 3, reconstruction error: 0.20876967332319404, decrease = 2.764643292074709e-09
iteration 4, reconstruction error: 0.20876967056306447, decrease = 2.7601295693457928e-09
PARAFAC2 reconstruction error=0.8189086477016484, variation=4.528217134591728e-09.
Starting iteration 286
reconstruction error=0.20877037654786743
iteration 1, reconstruction error: 0.20877037377280822, decrease = 2.7750592102027127e-09
iteration 2, reconstruction error: 0.20877037100512474, decrease = 2.767683471294191e-09
iteration 3, reconstruction error: 0.20877036824196266, decrease = 2.763162088026405e-09
iteration 4, reconstruction error: 0.20877036548330732, decrease = 2.7586553319469687e-09
Accepted line search jump of 16.911534525287763.
PARAFAC2 reconstruction error=0.8189086310184723, variation=2.121139319744003e-08.
Starting iteration 287
reconstruction error=0.20877621165220292
iteration 1, reconstruction error: 0.2087762087738374, decrease = 2.8783655181552348e-09
iteration 2, reconstruction error: 0.20877620603512365, decrease = 2.738713755778832e-09
iteration 3, reconstruction error: 0.20877620330080082, decrease = 2.7343228237164396e-09
iteration 4, reconstruction error: 0.2087762005708789, decrease = 2.729921927402401e-09
PARAFAC2 reconstruction error=0.818908627841645, variation=3.1768273567323035e-09.
Starting iteration 288
reconstruction error=0.20877356244212125
iteration 1, reconstruction error: 0.20877355966839758, decrease = 2.77372366741524e-09
iteration 2, reconstruction error: 0.20877355693353478, decrease = 2.7348628084400417e-09
iteration 3, reconstruction error: 0.2087735542030598, decrease = 2.730474985002118e-09
iteration 4, reconstruction error: 0.20877355147697346, decrease = 2.726086328896926e-09
Line search failed for jump of 16.97056274847714.
PARAFAC2 reconstruction error=0.818908627841645, variation=3.1768273567323035e-09.
Starting iteration 289
reconstruction error=0.208772211092852
iteration 1, reconstruction error: 0.2087722083478255, decrease = 2.7450264838968508e-09
iteration 2, reconstruction error: 0.20877220561586018, decrease = 2.7319653206347994e-09
iteration 3, reconstruction error: 0.20877220288827583, decrease = 2.727584352824053e-09
iteration 4, reconstruction error: 0.20877220016507553, decrease = 2.723200304144413e-09
PARAFAC2 reconstruction error=0.8189086235303946, variation=4.3112503567144245e-09.
Starting iteration 290
reconstruction error=0.20877151821919268
iteration 1, reconstruction error: 0.20877151548311657, decrease = 2.7360761156725033e-09
iteration 2, reconstruction error: 0.2087715127535714, decrease = 2.7295451732189946e-09
iteration 3, reconstruction error: 0.20877151002840877, decrease = 2.725162623340438e-09
iteration 4, reconstruction error: 0.20877150730762167, decrease = 2.720787095622512e-09
Accepted line search jump of 17.029386365926403.
PARAFAC2 reconstruction error=0.8189086067202016, variation=2.112144337207411e-08.
Starting iteration 291
reconstruction error=0.2087654243067729
iteration 1, reconstruction error: 0.20876542148112387, decrease = 2.8256490203215634e-09
iteration 2, reconstruction error: 0.2087654187884575, decrease = 2.692666367654084e-09
iteration 3, reconstruction error: 0.20876541610008123, decrease = 2.688376271597903e-09
iteration 4, reconstruction error: 0.20876541341596724, decrease = 2.684113986628489e-09
PARAFAC2 reconstruction error=0.818908603705341, variation=3.0148605834057207e-09.
Starting iteration 292
reconstruction error=0.20876794611060964
iteration 1, reconstruction error: 0.20876794338018453, decrease = 2.730425108232737e-09
iteration 2, reconstruction error: 0.20876794068774732, decrease = 2.6924372176218014e-09
iteration 3, reconstruction error: 0.2087679379995847, decrease = 2.688162609176814e-09
iteration 4, reconstruction error: 0.20876793531567353, decrease = 2.6839111766374657e-09
Line search failed for jump of 17.08800749063506.
PARAFAC2 reconstruction error=0.818908603705341, variation=3.0148605834057207e-09.
Starting iteration 293
reconstruction error=0.20876921942022061
iteration 1, reconstruction error: 0.20876921671562715, decrease = 2.7045934658520565e-09
iteration 2, reconstruction error: 0.20876921402423623, decrease = 2.691390915687819e-09
iteration 3, reconstruction error: 0.20876921133709983, decrease = 2.6871364022795774e-09
iteration 4, reconstruction error: 0.20876920865421714, decrease = 2.6828826937830286e-09
PARAFAC2 reconstruction error=0.8189085995649814, variation=4.140359610715905e-09.
Starting iteration 294
reconstruction error=0.2087698587970662
iteration 1, reconstruction error: 0.20876985610043847, decrease = 2.6966277266726735e-09
iteration 2, reconstruction error: 0.20876985341051227, decrease = 2.689926198451431e-09
iteration 3, reconstruction error: 0.20876985072483364, decrease = 2.6856786239370933e-09
iteration 4, reconstruction error: 0.20876984804340024, decrease = 2.681433408646683e-09
Accepted line search jump of 17.146428199482248.
PARAFAC2 reconstruction error=0.8189085827012409, variation=2.1004100125843195e-08.
Starting iteration 295
reconstruction error=0.20877529525739236
iteration 1, reconstruction error: 0.20877529247388657, decrease = 2.783505786974061e-09
iteration 2, reconstruction error: 0.20877528981257665, decrease = 2.6613099224359615e-09
iteration 3, reconstruction error: 0.20877528715540541, decrease = 2.657171233044764e-09
iteration 4, reconstruction error: 0.20877528450237207, decrease = 2.653033348565259e-09
PARAFAC2 reconstruction error=0.8189085798075825, variation=2.893658423985812e-09.
Starting iteration 296
reconstruction error=0.20877281599572842
iteration 1, reconstruction error: 0.20877281330382141, decrease = 2.691907002860816e-09
iteration 2, reconstruction error: 0.20877281064612208, decrease = 2.6576993383820025e-09
iteration 3, reconstruction error: 0.20877280799255454, decrease = 2.6535675323735575e-09
iteration 4, reconstruction error: 0.20877280534311646, decrease = 2.64943808558904e-09
Line search failed for jump of 17.204650534085253.
PARAFAC2 reconstruction error=0.8189085798075825, variation=2.893658423985812e-09.
Starting iteration 297
reconstruction error=0.20877155114734258
iteration 1, reconstruction error: 0.20877154848069865, decrease = 2.666643933446622e-09
iteration 2, reconstruction error: 0.2087715458257466, decrease = 2.6549520359964163e-09
iteration 3, reconstruction error: 0.2087715431749233, decrease = 2.6508233108568646e-09
iteration 4, reconstruction error: 0.20877154052821786, decrease = 2.6467054381473787e-09
PARAFAC2 reconstruction error=0.8189085758041481, variation=4.003434361798952e-09.
Starting iteration 298
reconstruction error=0.2087709024070767
iteration 1, reconstruction error: 0.20877089974844212, decrease = 2.6586345902579467e-09
iteration 2, reconstruction error: 0.2087708970958016, decrease = 2.652640523903571e-09
iteration 3, reconstruction error: 0.20877089444728208, decrease = 2.6485195148140406e-09
iteration 4, reconstruction error: 0.20877089180288513, decrease = 2.6443969514122756e-09
Accepted line search jump of 17.26267650163207.
PARAFAC2 reconstruction error=0.818908558949353, variation=2.085822947694993e-08.
Starting iteration 299
reconstruction error=0.20876511436763456
iteration 1, reconstruction error: 0.2087651116308105, decrease = 2.7368240729241933e-09
iteration 2, reconstruction error: 0.208765109014041, decrease = 2.6167694955336884e-09
iteration 3, reconstruction error: 0.208765106401314, decrease = 2.6127270069675745e-09
iteration 4, reconstruction error: 0.20876510379259852, decrease = 2.608715465868272e-09
PARAFAC2 reconstruction error=0.8189085561486915, variation=2.8006614805065055e-09.
Starting iteration 300
reconstruction error=0.20876751014914333
iteration 1, reconstruction error: 0.20876750749820341, decrease = 2.650939912030026e-09
iteration 2, reconstruction error: 0.20876750488170667, decrease = 2.6164967414921136e-09
iteration 3, reconstruction error: 0.2087675022692292, decrease = 2.61247748434279e-09
iteration 4, reconstruction error: 0.2087674996607578, decrease = 2.6084713833363082e-09
Line search failed for jump of 17.320508075688775.
PARAFAC2 reconstruction error=0.8189085561486915, variation=2.8006614805065055e-09.
Starting iteration 301
reconstruction error=0.2087687195841872
iteration 1, reconstruction error: 0.20876871695663593, decrease = 2.627551259903882e-09
iteration 2, reconstruction error: 0.20876871434117172, decrease = 2.6154642063236366e-09
iteration 3, reconstruction error: 0.20876871172971598, decrease = 2.6114557460932275e-09
iteration 4, reconstruction error: 0.20876870912226092, decrease = 2.6074550574239908e-09
PARAFAC2 reconstruction error=0.8189085522495867, variation=3.899104816795784e-09.
Starting iteration 302
reconstruction error=0.20876932669659906
iteration 1, reconstruction error: 0.20876932407634172, decrease = 2.620257344432275e-09
iteration 2, reconstruction error: 0.208769321462303, decrease = 2.6140387077155935e-09
iteration 3, reconstruction error: 0.2087693188522642, decrease = 2.610038796202474e-09
iteration 4, reconstruction error: 0.2087693162462238, decrease = 2.6060404112460134e-09
Accepted line search jump of 17.378147196982766.
PARAFAC2 reconstruction error=0.8189085354582409, variation=2.0690450575067132e-08.
Starting iteration 303
reconstruction error=0.2087745555518675
iteration 1, reconstruction error: 0.20877455285240012, decrease = 2.699467371858333e-09
iteration 2, reconstruction error: 0.20877455026647676, decrease = 2.585923364328835e-09
iteration 3, reconstruction error: 0.2087745476844437, decrease = 2.5820330595838215e-09
iteration 4, reconstruction error: 0.20877454510630628, decrease = 2.57813742576829e-09
PARAFAC2 reconstruction error=0.8189085327197472, variation=2.7384937650865027e-09.
Starting iteration 304
reconstruction error=0.20877216405211751
iteration 1, reconstruction error: 0.20877216143781083, decrease = 2.6143066877981624e-09
iteration 2, reconstruction error: 0.20877215885532663, decrease = 2.582484198709878e-09
iteration 3, reconstruction error: 0.2087721562767328, decrease = 2.5785938384537133e-09
iteration 4, reconstruction error: 0.20877215370202537, decrease = 2.574707419489286e-09
Line search failed for jump of 17.435595774162696.
PARAFAC2 reconstruction error=0.8189085327197472, variation=2.7384937650865027e-09.
Starting iteration 305
reconstruction error=0.20877094397352167
iteration 1, reconstruction error: 0.20877094138276125, decrease = 2.5907604117580973e-09
iteration 2, reconstruction error: 0.20877093880290204, decrease = 2.5798592151460298e-09
iteration 3, reconstruction error: 0.20877093622693316, decrease = 2.5759688826454408e-09
iteration 4, reconstruction error: 0.20877093365484387, decrease = 2.572089291552615e-09
PARAFAC2 reconstruction error=0.8189085289001804, variation=3.819566773977101e-09.
Starting iteration 306
reconstruction error=0.2087703181706024
iteration 1, reconstruction error: 0.20877031558735434, decrease = 2.5832480599063956e-09
iteration 2, reconstruction error: 0.2087703130097185, decrease = 2.57763585476134e-09
iteration 3, reconstruction error: 0.20877031043596758, decrease = 2.5737509068424202e-09
iteration 4, reconstruction error: 0.20877030786608933, decrease = 2.5698782546434984e-09
Accepted line search jump of 17.4928556845359.
PARAFAC2 reconstruction error=0.8189085122219059, variation=2.0497841313193987e-08.
Starting iteration 307
reconstruction error=0.20876465964290636
iteration 1, reconstruction error: 0.20876465698535773, decrease = 2.6575486256064096e-09
iteration 2, reconstruction error: 0.20876465444271136, decrease = 2.542646371228585e-09
iteration 3, reconstruction error: 0.2087646519038683, decrease = 2.538843052457551e-09
iteration 4, reconstruction error: 0.20876464936880387, decrease = 2.535064436148815e-09
PARAFAC2 reconstruction error=0.8189085095237184, variation=2.6981874512443937e-09.
Starting iteration 308
reconstruction error=0.20876700542638835
iteration 1, reconstruction error: 0.20876700285107652, decrease = 2.575311824903892e-09
iteration 2, reconstruction error: 0.2087670003086905, decrease = 2.5423860239293106e-09
iteration 3, reconstruction error: 0.20876699777009228, decrease = 2.5385982205250457e-09
iteration 4, reconstruction error: 0.20876699523526107, decrease = 2.534831206046917e-09
Line search failed for jump of 17.549928774784245.
PARAFAC2 reconstruction error=0.8189085095237184, variation=2.6981874512443937e-09.
Starting iteration 309
reconstruction error=0.20876818961619772
iteration 1, reconstruction error: 0.20876818706329714, decrease = 2.5529005853730524e-09
iteration 2, reconstruction error: 0.2087681845219066, decrease = 2.5413905424542804e-09
iteration 3, reconstruction error: 0.20876818198429153, decrease = 2.537615062525589e-09
iteration 4, reconstruction error: 0.20876817945043954, decrease = 2.5338519893391975e-09
PARAFAC2 reconstruction error=0.8189085057574823, variation=3.766236100766207e-09.
Starting iteration 310
reconstruction error=0.20876878408316182
iteration 1, reconstruction error: 0.20876878153725542, decrease = 2.545906402362519e-09
iteration 2, reconstruction error: 0.20876877899724214, decrease = 2.5400132830366573e-09
iteration 3, reconstruction error: 0.20876877646099734, decrease = 2.536244797513021e-09
iteration 4, reconstruction error: 0.20876877392850715, decrease = 2.5324901897771923e-09
Accepted line search jump of 17.60681686165901.
PARAFAC2 reconstruction error=0.8189084892391427, variation=2.0284575685813877e-08.
Starting iteration 311
reconstruction error=0.20877397210586485
iteration 1, reconstruction error: 0.20877396948149238, decrease = 2.624372469339775e-09
iteration 2, reconstruction error: 0.2087739669689532, decrease = 2.5125391767133465e-09
iteration 3, reconstruction error: 0.20877396446008598, decrease = 2.5088672250817012e-09
iteration 4, reconstruction error: 0.20877396195487843, decrease = 2.505207541414478e-09
PARAFAC2 reconstruction error=0.8189084865544354, variation=2.684707345324e-09.
Starting iteration 312
reconstruction error=0.20877159623765618
iteration 1, reconstruction error: 0.20877159369722922, decrease = 2.5404269521356326e-09
iteration 2, reconstruction error: 0.20877159118802235, decrease = 2.5092068700605097e-09
iteration 3, reconstruction error: 0.20877158868247206, decrease = 2.5055502950177555e-09
iteration 4, reconstruction error: 0.20877158618058608, decrease = 2.5018859761694046e-09
Line search failed for jump of 17.663521732655695.
PARAFAC2 reconstruction error=0.8189084865544354, variation=2.684707345324e-09.
Starting iteration 313
reconstruction error=0.20877038431497452
iteration 1, reconstruction error: 0.20877038179772414, decrease = 2.5172503803627677e-09
iteration 2, reconstruction error: 0.20877037929105488, decrease = 2.5066692610486996e-09
iteration 3, reconstruction error: 0.20877037678804763, decrease = 2.5030072459131247e-09
iteration 4, reconstruction error: 0.20877037428868772, decrease = 2.4993599134770506e-09
PARAFAC2 reconstruction error=0.818908482820387, variation=3.734048403813972e-09.
Starting iteration 314
reconstruction error=0.20876976285768437
iteration 1, reconstruction error: 0.20876976034779546, decrease = 2.5098889078201125e-09
iteration 2, reconstruction error: 0.20876975784327115, decrease = 2.5045243101651238e-09
iteration 3, reconstruction error: 0.20876975534240275, decrease = 2.5008684012561844e-09
iteration 4, reconstruction error: 0.20876975284518398, decrease = 2.497218765107334e-09
Accepted line search jump of 17.72004514666935.
PARAFAC2 reconstruction error=0.8189084665082577, variation=2.0046177717780722e-08.
Starting iteration 315
reconstruction error=0.20876407332606123
iteration 1, reconstruction error: 0.20876407073934752, decrease = 2.58671370434449e-09
iteration 2, reconstruction error: 0.20876406826903382, decrease = 2.470313703595295e-09
iteration 3, reconstruction error: 0.20876406580230283, decrease = 2.466730986139254e-09
iteration 4, reconstruction error: 0.20876406333912287, decrease = 2.463179965550566e-09
PARAFAC2 reconstruction error=0.8189084638167423, variation=2.691515343933304e-09.
Starting iteration 316
reconstruction error=0.2087664386845416
iteration 1, reconstruction error: 0.20876643618129556, decrease = 2.503246027130146e-09
iteration 2, reconstruction error: 0.2087664337111868, decrease = 2.470108756424949e-09
iteration 3, reconstruction error: 0.20876643124464214, decrease = 2.466544662960146e-09
iteration 4, reconstruction error: 0.20876642878165083, decrease = 2.4629913109031065e-09
Line search failed for jump of 17.776388834631177.
PARAFAC2 reconstruction error=0.8189084638167423, variation=2.691515343933304e-09.
Starting iteration 317
reconstruction error=0.20876763296738002
iteration 1, reconstruction error: 0.2087676304868096, decrease = 2.4805704157415676e-09
iteration 2, reconstruction error: 0.2087676280176428, decrease = 2.4691668154552815e-09
iteration 3, reconstruction error: 0.20876762555202308, decrease = 2.4656197084027554e-09
iteration 4, reconstruction error: 0.2087676230899536, decrease = 2.4620694649701846e-09
PARAFAC2 reconstruction error=0.8189084600903122, variation=3.726430164441297e-09.
Starting iteration 318
reconstruction error=0.20876823273047446
iteration 1, reconstruction error: 0.2087682302569228, decrease = 2.473551669046614e-09
iteration 2, reconstruction error: 0.2087682277890706, decrease = 2.467852200371823e-09
iteration 3, reconstruction error: 0.20876822532476083, decrease = 2.464309756256e-09
iteration 4, reconstruction error: 0.20876822286399435, decrease = 2.460766479472909e-09
Accepted line search jump of 17.832554500127006.
PARAFAC2 reconstruction error=0.8189084440321226, variation=1.978461972029777e-08.
Starting iteration 319
reconstruction error=0.2087735383893082
iteration 1, reconstruction error: 0.20877353583158278, decrease = 2.557725420349044e-09
iteration 2, reconstruction error: 0.208773533390456, decrease = 2.441126772945168e-09
iteration 3, reconstruction error: 0.2087735309527829, decrease = 2.4376731189157397e-09
iteration 4, reconstruction error: 0.20877352851855574, decrease = 2.434227153180757e-09
PARAFAC2 reconstruction error=0.8189084413065324, variation=2.7255901979827968e-09.
Starting iteration 320
reconstruction error=0.2087711092318537
iteration 1, reconstruction error: 0.20877110676171914, decrease = 2.4701345691102716e-09
iteration 2, reconstruction error: 0.20877110432386087, decrease = 2.4378582763606715e-09
iteration 3, reconstruction error: 0.2087711018894501, decrease = 2.4344107563134543e-09
iteration 4, reconstruction error: 0.20877109945847996, decrease = 2.4309701474045653e-09
Line search failed for jump of 17.88854381999832.
PARAFAC2 reconstruction error=0.8189084413065324, variation=2.7255901979827968e-09.
Starting iteration 321
reconstruction error=0.20876987048925488
iteration 1, reconstruction error: 0.20876986804318118, decrease = 2.4460737046982928e-09
iteration 2, reconstruction error: 0.20876986560780197, decrease = 2.435379203857835e-09
iteration 3, reconstruction error: 0.20876986317586727, decrease = 2.4319347091683596e-09
iteration 4, reconstruction error: 0.2087698607473716, decrease = 2.428495654571705e-09
PARAFAC2 reconstruction error=0.8189084375661062, variation=3.740426191001234e-09.
Starting iteration 322
reconstruction error=0.20876923562162483
iteration 1, reconstruction error: 0.20876923318309934, decrease = 2.4385254926428956e-09
iteration 2, reconstruction error: 0.2087692307498058, decrease = 2.433293538883774e-09
iteration 3, reconstruction error: 0.2087692283199475, decrease = 2.4298583145565544e-09
iteration 4, reconstruction error: 0.20876922589351898, decrease = 2.42642850256658e-09
Accepted line search jump of 17.944358444926362.
PARAFAC2 reconstruction error=0.8189084218129434, variation=1.9493588965247e-08.
Starting iteration 323
reconstruction error=0.20876335572260962
iteration 1, reconstruction error: 0.20876335319817776, decrease = 2.5244318579975555e-09
iteration 2, reconstruction error: 0.2087633507984111, decrease = 2.3997666631636605e-09
iteration 3, reconstruction error: 0.20876334840201574, decrease = 2.3963953599270837e-09
iteration 4, reconstruction error: 0.20876334600897084, decrease = 2.3930449011277943e-09
PARAFAC2 reconstruction error=0.8189084190305045, variation=2.782438945914123e-09.
Starting iteration 324
reconstruction error=0.20876581009845152
iteration 1, reconstruction error: 0.20876580766367359, decrease = 2.4347779348232734e-09
iteration 2, reconstruction error: 0.2087658052640218, decrease = 2.3996517828361874e-09
iteration 3, reconstruction error: 0.20876580286772048, decrease = 2.396301324036898e-09
iteration 4, reconstruction error: 0.20876580047476265, decrease = 2.392957831887088e-09
Line search failed for jump of 18.0.
PARAFAC2 reconstruction error=0.8189084190305045, variation=2.782438945914123e-09.
Starting iteration 325
reconstruction error=0.20876704973875196
iteration 1, reconstruction error: 0.20876704732819812, decrease = 2.410553839871099e-09
iteration 2, reconstruction error: 0.20876704492940357, decrease = 2.3987945518832987e-09
iteration 3, reconstruction error: 0.2087670425339548, decrease = 2.3954487560207127e-09
iteration 4, reconstruction error: 0.2087670401418418, decrease = 2.3921130076764996e-09
PARAFAC2 reconstruction error=0.8189084152490969, variation=3.781407631464617e-09.
Starting iteration 326
reconstruction error=0.20876767269860574
iteration 1, reconstruction error: 0.20876767029541715, decrease = 2.40318859257016e-09
iteration 2, reconstruction error: 0.2087676678978717, decrease = 2.397545439958293e-09
iteration 3, reconstruction error: 0.2087676655036566, decrease = 2.394215103951325e-09
iteration 4, reconstruction error: 0.20876766311278033, decrease = 2.3908762747382184e-09
Accepted line search jump of 18.05547008526779.
PARAFAC2 reconstruction error=0.8189083998579819, variation=1.917252256955493e-08.
Starting iteration 327
reconstruction error=0.2087732602342319
iteration 1, reconstruction error: 0.208773257734012, decrease = 2.500219892231925e-09
iteration 2, reconstruction error: 0.20877325536233424, decrease = 2.3716777708404635e-09
iteration 3, reconstruction error: 0.20877325299389954, decrease = 2.368434698363231e-09
iteration 4, reconstruction error: 0.208773250628711, decrease = 2.365188545017105e-09
PARAFAC2 reconstruction error=0.8189083969866126, variation=2.8713693644988325e-09.
Starting iteration 328
reconstruction error=0.20877070598128172
iteration 1, reconstruction error: 0.20877070357768016, decrease = 2.403601567779745e-09
iteration 2, reconstruction error: 0.20877070120926017, decrease = 2.3684199879081547e-09
iteration 3, reconstruction error: 0.20877069884408408, decrease = 2.3651760827636537e-09
iteration 4, reconstruction error: 0.2087706964821465, decrease = 2.3619375899563977e-09
Line search failed for jump of 18.110770276274835.
PARAFAC2 reconstruction error=0.8189083969866126, variation=2.8713693644988325e-09.
Starting iteration 329
reconstruction error=0.2087694039866363
iteration 1, reconstruction error: 0.20876940160938182, decrease = 2.377254476604307e-09
iteration 2, reconstruction error: 0.2087693992434059, decrease = 2.3659759151861692e-09
iteration 3, reconstruction error: 0.20876939688066923, decrease = 2.3627366729783716e-09
iteration 4, reconstruction error: 0.20876939452116877, decrease = 2.359500456128316e-09
PARAFAC2 reconstruction error=0.8189083931380766, variation=3.848535934380948e-09.
Starting iteration 330
reconstruction error=0.20876873721696193
iteration 1, reconstruction error: 0.20876873484779015, decrease = 2.3691717754292796e-09
iteration 2, reconstruction error: 0.2087687324838488, decrease = 2.3639413482268168e-09
iteration 3, reconstruction error: 0.20876873012314595, decrease = 2.360702855419561e-09
iteration 4, reconstruction error: 0.2087687277656739, decrease = 2.3574720509067504e-09
Accepted line search jump of 18.16590212458495.
PARAFAC2 reconstruction error=0.8189083781741978, variation=1.8812414737112704e-08.
Starting iteration 331
reconstruction error=0.2087624948296476
iteration 1, reconstruction error: 0.20876249235762587, decrease = 2.4720217262075295e-09
iteration 2, reconstruction error: 0.20876249002663444, decrease = 2.3309914276570254e-09
iteration 3, reconstruction error: 0.20876248769881914, decrease = 2.3278153016281777e-09
iteration 4, reconstruction error: 0.20876248537414913, decrease = 2.324670012043839e-09
PARAFAC2 reconstruction error=0.8189083751840186, variation=2.990179215345279e-09.
Starting iteration 332
reconstruction error=0.20876511357609856
iteration 1, reconstruction error: 0.20876511120586846, decrease = 2.3702300955275035e-09
iteration 2, reconstruction error: 0.20876510887486036, decrease = 2.3310081087579704e-09
iteration 3, reconstruction error: 0.20876510654700828, decrease = 2.3278520777658684e-09
iteration 4, reconstruction error: 0.20876510422229835, decrease = 2.3247099245615743e-09
Line search failed for jump of 18.2208671582886.
PARAFAC2 reconstruction error=0.8189083751840186, variation=2.990179215345279e-09.
Starting iteration 333
reconstruction error=0.20876643683713003
iteration 1, reconstruction error: 0.20876643449420051, decrease = 2.3429295170629416e-09
iteration 2, reconstruction error: 0.20876643216395072, decrease = 2.3302497986765758e-09
iteration 3, reconstruction error: 0.20876642983684995, decrease = 2.327100762089529e-09
iteration 4, reconstruction error: 0.20876642751288438, decrease = 2.3239655755347144e-09
PARAFAC2 reconstruction error=0.8189083712343684, variation=3.949650162482499e-09.
Starting iteration 334
reconstruction error=0.2087671024151212
iteration 1, reconstruction error: 0.2087671000803017, decrease = 2.3348195044015085e-09
iteration 2, reconstruction error: 0.20876709775121408, decrease = 2.329087617214398e-09
iteration 3, reconstruction error: 0.20876709542527092, decrease = 2.325943160297328e-09
iteration 4, reconstruction error: 0.20876709310246214, decrease = 2.3228087786542062e-09
Accepted line search jump of 18.275666882497067.
PARAFAC2 reconstruction error=0.8189083567749097, variation=1.840910890393843e-08.
Starting iteration 335
reconstruction error=0.20877315616399172
iteration 1, reconstruction error: 0.20877315371009858, decrease = 2.453893144238606e-09
iteration 2, reconstruction error: 0.20877315140591032, decrease = 2.304188256863071e-09
iteration 3, reconstruction error: 0.20877314910477768, decrease = 2.3011326455435466e-09
iteration 4, reconstruction error: 0.2087731468066983, decrease = 2.2980793656923737e-09
PARAFAC2 reconstruction error=0.818908353623426, variation=3.1514837406376728e-09.
Starting iteration 336
reconstruction error=0.20877039586303955
iteration 1, reconstruction error: 0.2087703935216978, decrease = 2.3413417593598496e-09
iteration 2, reconstruction error: 0.20877039122081745, decrease = 2.3008803473612005e-09
iteration 3, reconstruction error: 0.20877038892298427, decrease = 2.297833173736663e-09
iteration 4, reconstruction error: 0.20877038662820366, decrease = 2.294780615530456e-09
Line search failed for jump of 18.33030277982336.
PARAFAC2 reconstruction error=0.818908353623426, variation=3.1514837406376728e-09.
Starting iteration 337
reconstruction error=0.20876898955206494
iteration 1, reconstruction error: 0.20876898724113502, decrease = 2.3109299196466537e-09
iteration 2, reconstruction error: 0.20876898494269097, decrease = 2.2984440462003874e-09
iteration 3, reconstruction error: 0.20876898264729182, decrease = 2.2953991485330505e-09
iteration 4, reconstruction error: 0.20876898035493988, decrease = 2.2923519471529374e-09
PARAFAC2 reconstruction error=0.8189083495367433, variation=4.08668265894363e-09.
Starting iteration 338
reconstruction error=0.20876827004104354
iteration 1, reconstruction error: 0.20876826773920806, decrease = 2.3018354722292855e-09
iteration 2, reconstruction error: 0.2087682654427627, decrease = 2.296445367200306e-09
iteration 3, reconstruction error: 0.208768263149363, decrease = 2.293399692376852e-09
iteration 4, reconstruction error: 0.20876826085900588, decrease = 2.2903571261778666e-09
Accepted line search jump of 18.384776310850235.
PARAFAC2 reconstruction error=0.8189083356742248, variation=1.7949201125411207e-08.
Starting iteration 339
reconstruction error=0.20876146512323196
iteration 1, reconstruction error: 0.20876146269088702, decrease = 2.4323449365759586e-09
iteration 2, reconstruction error: 0.20876146042691965, decrease = 2.263967374682707e-09
iteration 3, reconstruction error: 0.2087614581659487, decrease = 2.260970938250395e-09
iteration 4, reconstruction error: 0.20876145590794562, decrease = 2.258003090060967e-09
PARAFAC2 reconstruction error=0.8189083323178572, variation=3.356367628271073e-09.
Starting iteration 340
reconstruction error=0.20876433614560352
iteration 1, reconstruction error: 0.20876433383528495, decrease = 2.310318575338144e-09
iteration 2, reconstruction error: 0.20876433157112634, decrease = 2.264158610598699e-09
iteration 3, reconstruction error: 0.20876432930993785, decrease = 2.2611884864520704e-09
iteration 4, reconstruction error: 0.2087643270517164, decrease = 2.2582214431743353e-09
Line search failed for jump of 18.439088914585774.
PARAFAC2 reconstruction error=0.8189083323178572, variation=3.356367628271073e-09.
Starting iteration 341
reconstruction error=0.2087657876658489
iteration 1, reconstruction error: 0.20876578538797783, decrease = 2.2778710861981466e-09
iteration 2, reconstruction error: 0.20876578312446128, decrease = 2.2635165408679825e-09
iteration 3, reconstruction error: 0.2087657808639033, decrease = 2.2605579907963858e-09
iteration 4, reconstruction error: 0.20876577860630227, decrease = 2.257601022792599e-09
PARAFAC2 reconstruction error=0.8189083280466558, variation=4.271201392569424e-09.
Starting iteration 342
reconstruction error=0.2087665185194941
iteration 1, reconstruction error: 0.20876651625101342, decrease = 2.268480681077989e-09
iteration 2, reconstruction error: 0.20876651398856555, decrease = 2.262447867940054e-09
iteration 3, reconstruction error: 0.20876651172907848, decrease = 2.2594870696668323e-09
iteration 4, reconstruction error: 0.2087665094725399, decrease = 2.2565385671136085e-09
Accepted line search jump of 18.49324200890693.
PARAFAC2 reconstruction error=0.8189083148951334, variation=1.7422723819215946e-08.
Starting iteration 343
reconstruction error=0.2087732595535672
iteration 1, reconstruction error: 0.2087732571309112, decrease = 2.422656020240055e-09
iteration 2, reconstruction error: 0.2087732548922562, decrease = 2.238654983610644e-09
iteration 3, reconstruction error: 0.20877325265647634, decrease = 2.235779866799348e-09
iteration 4, reconstruction error: 0.20877325042357311, decrease = 2.232903223431393e-09
PARAFAC2 reconstruction error=0.8189083112724201, variation=3.622713240503117e-09.
Starting iteration 344
reconstruction error=0.2087701957776755
iteration 1, reconstruction error: 0.20877019349332837, decrease = 2.2843471281230876e-09
iteration 2, reconstruction error: 0.20877019125809443, decrease = 2.235233942382564e-09
iteration 3, reconstruction error: 0.2087701890257256, decrease = 2.2323688175784895e-09
iteration 4, reconstruction error: 0.2087701867962296, decrease = 2.2294960044799694e-09
Line search failed for jump of 18.547236990991408.
PARAFAC2 reconstruction error=0.8189083112724201, variation=3.622713240503117e-09.
Starting iteration 345
reconstruction error=0.20876863573908852
iteration 1, reconstruction error: 0.20876863349175473, decrease = 2.247333791283168e-09
iteration 2, reconstruction error: 0.20876863125897815, decrease = 2.2327765747398587e-09
iteration 3, reconstruction error: 0.20876862902907212, decrease = 2.229906037598539e-09
iteration 4, reconstruction error: 0.20876862680202893, decrease = 2.227043188751665e-09
PARAFAC2 reconstruction error=0.8189083067629519, variation=4.50946824326337e-09.
Starting iteration 346
reconstruction error=0.20876783841541777
iteration 1, reconstruction error: 0.20876783617885028, decrease = 2.2365674867685925e-09
iteration 2, reconstruction error: 0.20876783394805246, decrease = 2.2307978242430693e-09
iteration 3, reconstruction error: 0.2087678317201298, decrease = 2.227922651920622e-09
iteration 4, reconstruction error: 0.20876782949506692, decrease = 2.225062883942641e-09
Accepted line search jump of 18.601075237738275.
PARAFAC2 reconstruction error=0.8189082944637653, variation=1.680865480135907e-08.
Starting iteration 347
reconstruction error=0.20876022440990788
iteration 1, reconstruction error: 0.2087602219992634, decrease = 2.4106444895810597e-09
iteration 2, reconstruction error: 0.20876021980061724, decrease = 2.1986461540279834e-09
iteration 3, reconstruction error: 0.20876021760479088, decrease = 2.195826354078889e-09
iteration 4, reconstruction error: 0.20876021541176187, decrease = 2.193029008390468e-09
PARAFAC2 reconstruction error=0.8189082905066818, variation=3.957083549721574e-09.
Starting iteration 348
reconstruction error=0.2087634563566163
iteration 1, reconstruction error: 0.2087634541002296, decrease = 2.2563867163594153e-09
iteration 2, reconstruction error: 0.20876345190116086, decrease = 2.1990687326667313e-09
iteration 3, reconstruction error: 0.20876344970489796, decrease = 2.1962628937721718e-09
iteration 4, reconstruction error: 0.20876344751141615, decrease = 2.1934818128510614e-09
Line search failed for jump of 18.65475810617763.
PARAFAC2 reconstruction error=0.8189082905066818, variation=3.957083549721574e-09.
Starting iteration 349
reconstruction error=0.20876509131416715
iteration 1, reconstruction error: 0.20876508909846747, decrease = 2.215699679286587e-09
iteration 2, reconstruction error: 0.20876508689988893, decrease = 2.1985785414457837e-09
iteration 3, reconstruction error: 0.20876508470410843, decrease = 2.195780501867972e-09
iteration 4, reconstruction error: 0.20876508251110135, decrease = 2.1930070814857316e-09
PARAFAC2 reconstruction error=0.8189082856874418, variation=4.8192400070590224e-09.
Starting iteration 350
reconstruction error=0.2087659154526424
iteration 1, reconstruction error: 0.20876591324840618, decrease = 2.204236210223698e-09
iteration 2, reconstruction error: 0.20876591105079756, decrease = 2.1976086228558955e-09
iteration 3, reconstruction error: 0.20876590885597313, decrease = 2.194824433310316e-09
iteration 4, reconstruction error: 0.20876590666392747, decrease = 2.192045656101982e-09
Accepted line search jump of 18.708286933869708.
PARAFAC2 reconstruction error=0.8189082744197846, variation=1.6086897147715717e-08.
Starting iteration 351
reconstruction error=0.20877362295482754
iteration 1, reconstruction error: 0.20877362054128953, decrease = 2.413538008338989e-09
iteration 2, reconstruction error: 0.2087736183662043, decrease = 2.1750852230439932e-09
iteration 3, reconstruction error: 0.20877361619382373, decrease = 2.1723805809781283e-09
iteration 4, reconstruction error: 0.2087736140241539, decrease = 2.169669832685628e-09
PARAFAC2 reconstruction error=0.8189082700334939, variation=4.386290775038049e-09.
Starting iteration 352
reconstruction error=0.20877013233927447
iteration 1, reconstruction error: 0.2087701301048665, decrease = 2.2344079642078185e-09
iteration 2, reconstruction error: 0.20877012793338748, decrease = 2.1714790243709814e-09
iteration 3, reconstruction error: 0.20877012576461468, decrease = 2.1687728002373063e-09
iteration 4, reconstruction error: 0.2087701235985419, decrease = 2.1660727655969936e-09
Line search failed for jump of 18.76166303929372.
PARAFAC2 reconstruction error=0.8189082700334939, variation=4.386290775038049e-09.
Starting iteration 353
reconstruction error=0.20876835602035582
iteration 1, reconstruction error: 0.20876835383344464, decrease = 2.1869111799244223e-09
iteration 2, reconstruction error: 0.2087683516644936, decrease = 2.16895104654391e-09
iteration 3, reconstruction error: 0.20876834949824108, decrease = 2.1662525107046804e-09
iteration 4, reconstruction error: 0.20876834733468935, decrease = 2.163551726663826e-09
PARAFAC2 reconstruction error=0.8189082648192468, variation=5.214247034146524e-09.
Starting iteration 354
reconstruction error=0.2087674491495922
iteration 1, reconstruction error: 0.2087674469761179, decrease = 2.173474289435262e-09
iteration 2, reconstruction error: 0.20876744480915313, decrease = 2.1669647742861287e-09
iteration 3, reconstruction error: 0.2087674426448861, decrease = 2.164267043358592e-09
iteration 4, reconstruction error: 0.20876744048331758, decrease = 2.1615685075193625e-09
Accepted line search jump of 18.81488772222678.
PARAFAC2 reconstruction error=0.8189082548107681, variation=1.5222725746610877e-08.
Starting iteration 355
reconstruction error=0.20875870821668263
iteration 1, reconstruction error: 0.2087587058004779, decrease = 2.416204736288563e-09
iteration 2, reconstruction error: 0.2087587036654789, decrease = 2.1349989831609406e-09
iteration 3, reconstruction error: 0.20875870153315546, decrease = 2.1323234566938964e-09
iteration 4, reconstruction error: 0.2087586994034635, decrease = 2.1296919505697787e-09
PARAFAC2 reconstruction error=0.8189082498840033, variation=4.9267647739270615e-09.
Starting iteration 356
reconstruction error=0.20876244142862938
iteration 1, reconstruction error: 0.20876243921782844, decrease = 2.210800931212731e-09
iteration 2, reconstruction error: 0.20876243708212977, decrease = 2.135698673466635e-09
iteration 3, reconstruction error: 0.208762434949068, decrease = 2.1330617827608478e-09
iteration 4, reconstruction error: 0.20876243281863077, decrease = 2.130437215530634e-09
Line search failed for jump of 18.867962264113206.
PARAFAC2 reconstruction error=0.8189082498840033, variation=4.9267647739270615e-09.
Starting iteration 357
reconstruction error=0.20876433110958406
iteration 1, reconstruction error: 0.20876432895257624, decrease = 2.1570078223565048e-09
iteration 2, reconstruction error: 0.20876432681718798, decrease = 2.13538825510895e-09
iteration 3, reconstruction error: 0.2087643246844281, decrease = 2.1327598853648766e-09
iteration 4, reconstruction error: 0.20876432255428656, decrease = 2.1301415353836006e-09
PARAFAC2 reconstruction error=0.8189082441609161, variation=5.7230872263502874e-09.
Starting iteration 358
reconstruction error=0.2087652847227279
iteration 1, reconstruction error: 0.2087652825805005, decrease = 2.1422273954740945e-09
iteration 2, reconstruction error: 0.20876528044595455, decrease = 2.1345459566557423e-09
iteration 3, reconstruction error: 0.20876527831403693, decrease = 2.1319176146672447e-09
iteration 4, reconstruction error: 0.20876527618472918, decrease = 2.129307757892107e-09
Accepted line search jump of 18.920887928424502.
PARAFAC2 reconstruction error=0.818908235706476, variation=1.4177527374314991e-08.
Starting iteration 359
reconstruction error=0.20877432535211551
iteration 1, reconstruction error: 0.2087743229131845, decrease = 2.43893100160264e-09
iteration 2, reconstruction error: 0.20877432079967453, decrease = 2.1135099781410815e-09
iteration 3, reconstruction error: 0.2087743186887203, decrease = 2.1109542447383944e-09
iteration 4, reconstruction error: 0.20877431658031093, decrease = 2.108409363765773e-09
PARAFAC2 reconstruction error=0.8189082300853409, variation=5.621135112932052e-09.
Starting iteration 360
reconstruction error=0.20877024554877746
iteration 1, reconstruction error: 0.20877024335406202, decrease = 2.1947154371648736e-09
iteration 2, reconstruction error: 0.20877024124446686, decrease = 2.1095951652227996e-09
iteration 3, reconstruction error: 0.208770239137412, decrease = 2.1070548639201547e-09
iteration 4, reconstruction error: 0.20877023703290523, decrease = 2.104506763300762e-09
Line search failed for jump of 18.973665961010276.
PARAFAC2 reconstruction error=0.8189082300853409, variation=5.621135112932052e-09.
Starting iteration 361
reconstruction error=0.20876817064986872
iteration 1, reconstruction error: 0.20876816851940375, decrease = 2.1304649711062495e-09
iteration 2, reconstruction error: 0.2087681664124457, decrease = 2.1069580524724074e-09
iteration 3, reconstruction error: 0.2087681643080326, decrease = 2.104413088233059e-09
iteration 4, reconstruction error: 0.20876816220615993, decrease = 2.101872675908112e-09
PARAFAC2 reconstruction error=0.8189082237122507, variation=6.373090166711393e-09.
Starting iteration 362
reconstruction error=0.20876711248601867
iteration 1, reconstruction error: 0.20876711037328233, decrease = 2.112736346981947e-09
iteration 2, reconstruction error: 0.20876710826834388, decrease = 2.104938445768312e-09
iteration 3, reconstruction error: 0.2087671061659427, decrease = 2.102401169823409e-09
iteration 4, reconstruction error: 0.2087671040660827, decrease = 2.09986000809792e-09
Accepted line search jump of 19.026297590440446.
PARAFAC2 reconstruction error=0.8189082171942087, variation=1.289113216174087e-08.
Starting iteration 363
reconstruction error=0.20875682070357374
iteration 1, reconstruction error: 0.20875681823802458, decrease = 2.4655491537295404e-09
iteration 2, reconstruction error: 0.20875681616508815, decrease = 2.0729364336169454e-09
iteration 3, reconstruction error: 0.20875681409467445, decrease = 2.0704137015936652e-09
iteration 4, reconstruction error: 0.2087568120267419, decrease = 2.0679325474226573e-09
PARAFAC2 reconstruction error=0.8189082106898388, variation=6.504369931548126e-09.
Starting iteration 364
reconstruction error=0.20876124262833592
iteration 1, reconstruction error: 0.20876124045054784, decrease = 2.1777880887530188e-09
iteration 2, reconstruction error: 0.20876123837653607, decrease = 2.0740117678830217e-09
iteration 3, reconstruction error: 0.20876123630502388, decrease = 2.071512184009805e-09
iteration 4, reconstruction error: 0.2087612342359781, decrease = 2.0690457958050246e-09
Line search failed for jump of 19.078784028338912.
PARAFAC2 reconstruction error=0.8189082106898388, variation=6.504369931548126e-09.
Starting iteration 365
reconstruction error=0.20876348226966168
iteration 1, reconstruction error: 0.2087634801667981, decrease = 2.1028635777131655e-09
iteration 2, reconstruction error: 0.20876347809287618, decrease = 2.073921923084754e-09
iteration 3, reconstruction error: 0.20876347602143072, decrease = 2.071445459606025e-09
iteration 4, reconstruction error: 0.20876347395245315, decrease = 2.0689775726001614e-09
PARAFAC2 reconstruction error=0.8189082034772319, variation=7.2126068451083825e-09.
Starting iteration 366
reconstruction error=0.20876461371336086
iteration 1, reconstruction error: 0.20876461163065654, decrease = 2.0827043145654756e-09
iteration 2, reconstruction error: 0.20876460955743817, decrease = 2.073218374754049e-09
iteration 3, reconstruction error: 0.20876460748669157, decrease = 2.070746601967599e-09
iteration 4, reconstruction error: 0.20876460541840666, decrease = 2.0682849044550977e-09
Accepted line search jump of 19.131126469708992.
PARAFAC2 reconstruction error=0.8189081993999668, variation=1.1289871926223327e-08.
Starting iteration 367
reconstruction error=0.20877548371645901
iteration 1, reconstruction error: 0.20877548119534747, decrease = 2.5211115417533847e-09
iteration 2, reconstruction error: 0.2087754791413813, decrease = 2.0539661638174778e-09
iteration 3, reconstruction error: 0.20877547708982278, decrease = 2.0515585341662756e-09
iteration 4, reconstruction error: 0.20877547504067104, decrease = 2.049151737182342e-09
PARAFAC2 reconstruction error=0.8189081917518007, variation=7.648166100437948e-09.
Starting iteration 368
reconstruction error=0.20877059464068615
iteration 1, reconstruction error: 0.20877059246970395, decrease = 2.1709821995674616e-09
iteration 2, reconstruction error: 0.20877059042010496, decrease = 2.0495989905278122e-09
iteration 3, reconstruction error: 0.20877058837289436, decrease = 2.0472105954905118e-09
iteration 4, reconstruction error: 0.20877058632807907, decrease = 2.044815289314883e-09
Line search failed for jump of 19.183326093250876.
PARAFAC2 reconstruction error=0.8189081917518007, variation=7.648166100437948e-09.
Starting iteration 369
reconstruction error=0.20876810962603742
iteration 1, reconstruction error: 0.2087681075465883, decrease = 2.079449112901699e-09
iteration 2, reconstruction error: 0.20876810549980865, decrease = 2.0467796624235035e-09
iteration 3, reconstruction error: 0.208768103455422, decrease = 2.044386659960651e-09
iteration 4, reconstruction error: 0.20876810141342683, decrease = 2.0419951562988814e-09
PARAFAC2 reconstruction error=0.8189081834571484, variation=8.29465229834625e-09.
Starting iteration 370
reconstruction error=0.2087668436031275
iteration 1, reconstruction error: 0.20876684154841224, decrease = 2.054715259047768e-09
iteration 2, reconstruction error: 0.2087668395037143, decrease = 2.04469793874118e-09
iteration 3, reconstruction error: 0.2087668374614071, decrease = 2.042307212235528e-09
iteration 4, reconstruction error: 0.20876683542148444, decrease = 2.0399226474676624e-09
Accepted line search jump of 19.235384061671343.
PARAFAC2 reconstruction error=0.818908182486925, variation=9.264875755476965e-09.
Starting iteration 371
reconstruction error=0.20875442036402464
iteration 1, reconstruction error: 0.2087544177753534, decrease = 2.588671249581509e-09
iteration 2, reconstruction error: 0.20875441576294998, decrease = 2.0124034105784006e-09
iteration 3, reconstruction error: 0.20875441375294285, decrease = 2.0100071329576252e-09
iteration 4, reconstruction error: 0.20875441174527645, decrease = 2.0076663942436568e-09
PARAFAC2 reconstruction error=0.8189081733635338, variation=9.123391153664784e-09.
Starting iteration 372
reconstruction error=0.20875978799002354
iteration 1, reconstruction error: 0.20875978582496582, decrease = 2.1650577164411544e-09
iteration 2, reconstruction error: 0.20875978381103508, decrease = 2.0139307443933774e-09
iteration 3, reconstruction error: 0.20875978179945734, decrease = 2.011577737714987e-09
iteration 4, reconstruction error: 0.20875977979020102, decrease = 2.009256316881647e-09
Line search failed for jump of 19.28730152198591.
PARAFAC2 reconstruction error=0.8189081733635338, variation=9.123391153664784e-09.
Starting iteration 373
reconstruction error=0.2087625082022309
iteration 1, reconstruction error: 0.20876250614700947, decrease = 2.05522143748027e-09
iteration 2, reconstruction error: 0.20876250413287906, decrease = 2.0141304180043562e-09
iteration 3, reconstruction error: 0.20876250212108693, decrease = 2.011792121781042e-09
iteration 4, reconstruction error: 0.20876250011161848, decrease = 2.009468452746077e-09
PARAFAC2 reconstruction error=0.8189081636587299, variation=9.704803960453035e-09.
Starting iteration 374
reconstruction error=0.20876388380498961
iteration 1, reconstruction error: 0.20876388177884497, decrease = 2.026144640954186e-09
iteration 2, reconstruction error: 0.20876387976524902, decrease = 2.0135959566403017e-09
iteration 3, reconstruction error: 0.20876387775397823, decrease = 2.0112707888042536e-09
iteration 4, reconstruction error: 0.2087638757450234, decrease = 2.00895483581931e-09
Line search failed for jump of 19.339079605813716.
PARAFAC2 reconstruction error=0.8189081636587299, variation=9.704803960453035e-09.
Starting iteration 375
reconstruction error=0.2087645767712818
iteration 1, reconstruction error: 0.2087645747535118, decrease = 2.0177700066348336e-09
iteration 2, reconstruction error: 0.20876457274082652, decrease = 2.0126852684487773e-09
iteration 3, reconstruction error: 0.20876457073045718, decrease = 2.010369343219409e-09
iteration 4, reconstruction error: 0.20876456872240914, decrease = 2.0080480334083717e-09
PARAFAC2 reconstruction error=0.8189081613609993, variation=2.297730561373612e-09.
Starting iteration 376
reconstruction error=0.20876492324723564
iteration 1, reconstruction error: 0.20876492123254822, decrease = 2.0146874168958107e-09
iteration 2, reconstruction error: 0.2087649192209667, decrease = 2.0115815124732705e-09
iteration 3, reconstruction error: 0.20876491721170265, decrease = 2.0092640606872436e-09
iteration 4, reconstruction error: 0.20876491520475143, decrease = 2.006951216326769e-09
Accepted line search jump of 19.390719429665317.
PARAFAC2 reconstruction error=0.8189081455937268, variation=1.8065003049017037e-08.
Starting iteration 377
reconstruction error=0.20876822626778202
iteration 1, reconstruction error: 0.20876822423133065, decrease = 2.036451368647718e-09
iteration 2, reconstruction error: 0.20876822224307645, decrease = 1.988254200169237e-09
iteration 3, reconstruction error: 0.20876822025707795, decrease = 1.985998504538955e-09
iteration 4, reconstruction error: 0.20876821827332745, decrease = 1.9837504972031184e-09
PARAFAC2 reconstruction error=0.8189081440466224, variation=1.5471044445547477e-09.
Starting iteration 378
reconstruction error=0.20876666925278645
iteration 1, reconstruction error: 0.2087666672527321, decrease = 2.0000543443643437e-09
iteration 2, reconstruction error: 0.20876666526659637, decrease = 1.9861357281047987e-09
iteration 3, reconstruction error: 0.2087666632827233, decrease = 1.983873065825037e-09
iteration 4, reconstruction error: 0.20876666130108898, decrease = 1.981634328851456e-09
Line search failed for jump of 19.44222209522358.
PARAFAC2 reconstruction error=0.8189081440466224, variation=1.5471044445547477e-09.
Starting iteration 379
reconstruction error=0.2087658740908999
iteration 1, reconstruction error: 0.20876587210132755, decrease = 1.989572340210799e-09
iteration 2, reconstruction error: 0.2087658701169178, decrease = 1.9844097476351408e-09
iteration 3, reconstruction error: 0.20876586813474912, decrease = 1.982168679193208e-09
iteration 4, reconstruction error: 0.20876586615483464, decrease = 1.979914482364009e-09
PARAFAC2 reconstruction error=0.8189081416472268, variation=2.3993955711176795e-09.
Starting iteration 380
reconstruction error=0.20876546546176705
iteration 1, reconstruction error: 0.20876546347590275, decrease = 1.9858643063308534e-09
iteration 2, reconstruction error: 0.20876546149299854, decrease = 1.9829042019470222e-09
iteration 3, reconstruction error: 0.2087654595123354, decrease = 1.9806631335050895e-09
iteration 4, reconstruction error: 0.20876545753391798, decrease = 1.978417429882029e-09
Accepted line search jump of 19.493588689617926.
PARAFAC2 reconstruction error=0.8189081263853843, variation=1.766123802759978e-08.
Starting iteration 381
reconstruction error=0.2087613326696147
iteration 1, reconstruction error: 0.2087613306516612, decrease = 2.0179534987452286e-09
iteration 2, reconstruction error: 0.2087613286959012, decrease = 1.9557599983954788e-09
iteration 3, reconstruction error: 0.20876132674233994, decrease = 1.95356125720636e-09
iteration 4, reconstruction error: 0.2087613247909658, decrease = 1.951374145603424e-09
PARAFAC2 reconstruction error=0.8189081246765754, variation=1.708808983202914e-09.
Starting iteration 382
reconstruction error=0.20876305578471416
iteration 1, reconstruction error: 0.20876305381121488, decrease = 1.9734992806608176e-09
iteration 2, reconstruction error: 0.20876305185572402, decrease = 1.955490852578734e-09
iteration 3, reconstruction error: 0.20876304990242875, decrease = 1.9532952755252353e-09
iteration 4, reconstruction error: 0.20876304795131906, decrease = 1.9511096904789582e-09
Line search failed for jump of 19.544820285692065.
PARAFAC2 reconstruction error=0.8189081246765754, variation=1.708808983202914e-09.
Starting iteration 383
reconstruction error=0.20876392527944512
iteration 1, reconstruction error: 0.20876392331829832, decrease = 1.96114680051096e-09
iteration 2, reconstruction error: 0.20876392136357008, decrease = 1.954728240383119e-09
iteration 3, reconstruction error: 0.20876391941102743, decrease = 1.952542655336842e-09
iteration 4, reconstruction error: 0.2087639174606618, decrease = 1.9503656190078544e-09
PARAFAC2 reconstruction error=0.81890812213345, variation=2.5431253769525597e-09.
Starting iteration 384
reconstruction error=0.20876436149514588
iteration 1, reconstruction error: 0.20876435953806532, decrease = 1.957080553172119e-09
iteration 2, reconstruction error: 0.20876435758433984, decrease = 1.9537254869472775e-09
iteration 3, reconstruction error: 0.20876435563279758, decrease = 1.9515422611249278e-09
iteration 4, reconstruction error: 0.20876435368343702, decrease = 1.949360561859237e-09
Accepted line search jump of 19.595917942265423.
PARAFAC2 reconstruction error=0.8189081074912489, variation=1.7185326495194886e-08.
Starting iteration 385
reconstruction error=0.20876859357412092
iteration 1, reconstruction error: 0.2087685915663579, decrease = 2.0077630114023748e-09
iteration 2, reconstruction error: 0.20876858963473927, decrease = 1.9316186428142146e-09
iteration 3, reconstruction error: 0.2087685877052382, decrease = 1.9295010589281958e-09
iteration 4, reconstruction error: 0.2087685857778594, decrease = 1.9273788121054736e-09
PARAFAC2 reconstruction error=0.8189081055606646, variation=1.9305842480221713e-09.
Starting iteration 386
reconstruction error=0.20876662640273502
iteration 1, reconstruction error: 0.20876662445246813, decrease = 1.9502668924253896e-09
iteration 2, reconstruction error: 0.20876662252316175, decrease = 1.9293063813208278e-09
iteration 3, reconstruction error: 0.2087666205959761, decrease = 1.9271856610547644e-09
iteration 4, reconstruction error: 0.20876661867090496, decrease = 1.9250711302820633e-09
Line search failed for jump of 19.6468827043885.
PARAFAC2 reconstruction error=0.8189081055606646, variation=1.9305842480221713e-09.
Starting iteration 387
reconstruction error=0.20876562333735146
iteration 1, reconstruction error: 0.20876562140299582, decrease = 1.9343556478812474e-09
iteration 2, reconstruction error: 0.20876561947547606, decrease = 1.9275197549184497e-09
iteration 3, reconstruction error: 0.20876561755007317, decrease = 1.925402892677397e-09
iteration 4, reconstruction error: 0.20876561562679025, decrease = 1.9232829218118752e-09
PARAFAC2 reconstruction error=0.8189081028188743, variation=2.741790350313522e-09.
Starting iteration 388
reconstruction error=0.2087651093750763
iteration 1, reconstruction error: 0.20876510744579707, decrease = 1.9292792363678757e-09
iteration 2, reconstruction error: 0.2087651055197935, decrease = 1.9260035788448704e-09
iteration 3, reconstruction error: 0.20876510359590675, decrease = 1.9238867443593932e-09
iteration 4, reconstruction error: 0.20876510167412995, decrease = 1.9217767932566687e-09
Accepted line search jump of 19.697715603592208.
PARAFAC2 reconstruction error=0.8189080889530393, variation=1.660762527500026e-08.
Starting iteration 389
reconstruction error=0.2087598861213386
iteration 1, reconstruction error: 0.20875988412217747, decrease = 1.999161142185457e-09
iteration 2, reconstruction error: 0.2087598822231828, decrease = 1.8989946559688775e-09
iteration 3, reconstruction error: 0.2087598803262688, decrease = 1.896914014754003e-09
iteration 4, reconstruction error: 0.2087598784314131, decrease = 1.8948556890219237e-09
PARAFAC2 reconstruction error=0.8189080867231768, variation=2.229862516855974e-09.
Starting iteration 390
reconstruction error=0.20876209474684068
iteration 1, reconstruction error: 0.20876209282005706, decrease = 1.926783621541972e-09
iteration 2, reconstruction error: 0.20876209092105039, decrease = 1.899006674133119e-09
iteration 3, reconstruction error: 0.2087620890241043, decrease = 1.896946072443839e-09
iteration 4, reconstruction error: 0.2087620871292196, decrease = 1.8948847213540176e-09
Line search failed for jump of 19.748417658131498.
PARAFAC2 reconstruction error=0.8189080867231768, variation=2.229862516855974e-09.
Starting iteration 391
reconstruction error=0.2087632108656469
iteration 1, reconstruction error: 0.2087632089583526, decrease = 1.9072942947229166e-09
iteration 2, reconstruction error: 0.20876320705992327, decrease = 1.8984293304047384e-09
iteration 3, reconstruction error: 0.20876320516355915, decrease = 1.8963641212899063e-09
iteration 4, reconstruction error: 0.2087632032692502, decrease = 1.8943089319378714e-09
PARAFAC2 reconstruction error=0.8189080837045485, variation=3.018628347284391e-09.
Starting iteration 392
reconstruction error=0.20876377240625144
iteration 1, reconstruction error: 0.20876377050480358, decrease = 1.9014478602752405e-09
iteration 2, reconstruction error: 0.2087637686072693, decrease = 1.8975342686022856e-09
iteration 3, reconstruction error: 0.20876376671179256, decrease = 1.895476747781899e-09
iteration 4, reconstruction error: 0.2087637648183648, decrease = 1.8934277479232264e-09
Accepted line search jump of 19.79898987322333.
PARAFAC2 reconstruction error=0.8189080708340007, variation=1.588917608597029e-08.
Starting iteration 393
reconstruction error=0.20876930895496815
iteration 1, reconstruction error: 0.20876930695140272, decrease = 2.0035654246797208e-09
iteration 2, reconstruction error: 0.20876930507456667, decrease = 1.8768360476872914e-09
iteration 3, reconstruction error: 0.20876930319973017, decrease = 1.874836508264366e-09
iteration 4, reconstruction error: 0.20876930132689017, decrease = 1.8728399941991825e-09
PARAFAC2 reconstruction error=0.8189080681914006, variation=2.6426001387136466e-09.
Starting iteration 394
reconstruction error=0.20876676469373062
iteration 1, reconstruction error: 0.20876676278568812, decrease = 1.908042501774787e-09
iteration 2, reconstruction error: 0.20876676091145238, decrease = 1.8742357388301656e-09
iteration 3, reconstruction error: 0.20876675903920858, decrease = 1.8722438044349587e-09
iteration 4, reconstruction error: 0.20876675716896123, decrease = 1.8702473458809266e-09
Line search failed for jump of 19.849433241279208.
PARAFAC2 reconstruction error=0.8189080681914006, variation=2.6426001387136466e-09.
Starting iteration 395
reconstruction error=0.20876546906585125
iteration 1, reconstruction error: 0.20876546718349945, decrease = 1.882351802207083e-09
iteration 2, reconstruction error: 0.20876546531116272, decrease = 1.87233673010212e-09
iteration 3, reconstruction error: 0.20876546344081556, decrease = 1.8703471549308404e-09
iteration 4, reconstruction error: 0.20876546157246265, decrease = 1.8683529168228574e-09
PARAFAC2 reconstruction error=0.8189080647904784, variation=3.40092221051691e-09.
Starting iteration 396
reconstruction error=0.20876480681895174
iteration 1, reconstruction error: 0.2087648049441823, decrease = 1.8747694507936785e-09
iteration 2, reconstruction error: 0.208764803073389, decrease = 1.870793298053286e-09
iteration 3, reconstruction error: 0.20876480120459373, decrease = 1.8687952574314437e-09
iteration 4, reconstruction error: 0.20876479933778266, decrease = 1.8668110668418336e-09
Accepted line search jump of 19.8997487421324.
PARAFAC2 reconstruction error=0.8189080532210242, variation=1.4970376382983375e-08.
Starting iteration 397
reconstruction error=0.20875803968030185
iteration 1, reconstruction error: 0.20875803766673964, decrease = 2.013562205860353e-09
iteration 2, reconstruction error: 0.20875803582303137, decrease = 1.843708269388955e-09
iteration 3, reconstruction error: 0.2087580339812935, decrease = 1.841737873320426e-09
iteration 4, reconstruction error: 0.2087580321414905, decrease = 1.8398030043886848e-09
PARAFAC2 reconstruction error=0.8189080500135321, variation=3.2074921607616602e-09.
Starting iteration 398
reconstruction error=0.20876093520575342
iteration 1, reconstruction error: 0.2087609333159301, decrease = 1.889823325607054e-09
iteration 2, reconstruction error: 0.20876093147183705, decrease = 1.8440930449337145e-09
iteration 3, reconstruction error: 0.2087609296296958, decrease = 1.8421412451008479e-09
iteration 4, reconstruction error: 0.2087609277894933, decrease = 1.8402025181440962e-09
Line search failed for jump of 19.949937343260004.
PARAFAC2 reconstruction error=0.8189080500135321, variation=3.2074921607616602e-09.
Starting iteration 399
reconstruction error=0.20876240023305992
iteration 1, reconstruction error: 0.20876239837587596, decrease = 1.8571839621728259e-09
iteration 2, reconstruction error: 0.20876239653215423, decrease = 1.8437217308431286e-09
iteration 3, reconstruction error: 0.20876239469037042, decrease = 1.8417838087980698e-09
iteration 4, reconstruction error: 0.20876239285052142, decrease = 1.83984899537748e-09
PARAFAC2 reconstruction error=0.8189080460793646, variation=3.934167436270286e-09.
Starting iteration 400
reconstruction error=0.20876313902399438
iteration 1, reconstruction error: 0.2087631371759927, decrease = 1.8480016683586342e-09
iteration 2, reconstruction error: 0.20876313533302565, decrease = 1.8429670567421397e-09
iteration 3, reconstruction error: 0.208763133491995, decrease = 1.8410306612537397e-09
iteration 4, reconstruction error: 0.2087631316528945, decrease = 1.8391004830142776e-09
Accepted line search jump of 20.0.
PARAFAC2 reconstruction error=0.8189080362449555, variation=1.3768576612172012e-08.
Starting iteration 401
reconstruction error=0.20877053198538825
iteration 1, reconstruction error: 0.20877052993987036, decrease = 2.045517893956017e-09
iteration 2, reconstruction error: 0.2087705281159035, decrease = 1.8239668664321584e-09
iteration 3, reconstruction error: 0.2087705262938251, decrease = 1.8220784048228467e-09
iteration 4, reconstruction error: 0.20877052447362512, decrease = 1.8201999629763321e-09
PARAFAC2 reconstruction error=0.8189080322499054, variation=3.995050068539285e-09.
Starting iteration 402
reconstruction error=0.20876716495622852
iteration 1, reconstruction error: 0.20876716307727808, decrease = 1.8789504396821144e-09
iteration 2, reconstruction error: 0.2087671612563341, decrease = 1.8209439789362847e-09
iteration 3, reconstruction error: 0.2087671594372717, decrease = 1.8190624007097256e-09
iteration 4, reconstruction error: 0.2087671576200893, decrease = 1.8171824045509766e-09
Line search failed for jump of 20.049937655763422.
PARAFAC2 reconstruction error=0.8189080322499054, variation=3.995050068539285e-09.
Starting iteration 403
reconstruction error=0.20876545221283027
iteration 1, reconstruction error: 0.20876545037786798, decrease = 1.834962293223441e-09
iteration 2, reconstruction error: 0.20876544855900608, decrease = 1.8188618944314783e-09
iteration 3, reconstruction error: 0.2087654467420227, decrease = 1.8169833970738125e-09
iteration 4, reconstruction error: 0.20876544492692012, decrease = 1.815102568247795e-09
PARAFAC2 reconstruction error=0.818908027573151, variation=4.67675442816784e-09.
Starting iteration 404
reconstruction error=0.20876457850203983
iteration 1, reconstruction error: 0.20876457667936865, decrease = 1.8226711806512697e-09
iteration 2, reconstruction error: 0.20876457486211855, decrease = 1.817250100399903e-09
iteration 3, reconstruction error: 0.20876457304675392, decrease = 1.8153646363927578e-09
iteration 4, reconstruction error: 0.2087645712332608, decrease = 1.8134931056845716e-09
Accepted line search jump of 20.09975124224178.
PARAFAC2 reconstruction error=0.8189080200908267, variation=1.2159078632834053e-08.
Starting iteration 405
reconstruction error=0.20875559601498256
iteration 1, reconstruction error: 0.20875559392274273, decrease = 2.0922398258349517e-09
iteration 2, reconstruction error: 0.2087555921329523, decrease = 1.7897904269759124e-09
iteration 3, reconstruction error: 0.20875559034503124, decrease = 1.7879210612026242e-09
iteration 4, reconstruction error: 0.20875558855894324, decrease = 1.7860879997222412e-09
PARAFAC2 reconstruction error=0.8189080149999258, variation=5.090900923043762e-09.
Starting iteration 406
reconstruction error=0.20875947684422452
iteration 1, reconstruction error: 0.20875947497362418, decrease = 1.870600341291606e-09
iteration 2, reconstruction error: 0.20875947318297286, decrease = 1.7906513216647824e-09
iteration 3, reconstruction error: 0.20875947139416154, decrease = 1.7888113212904955e-09
iteration 4, reconstruction error: 0.20875946960718017, decrease = 1.7869813684345814e-09
Line search failed for jump of 20.149441679609886.
PARAFAC2 reconstruction error=0.8189080149999258, variation=5.090900923043762e-09.
Starting iteration 407
reconstruction error=0.20876144238186226
iteration 1, reconstruction error: 0.20876144056903473, decrease = 1.8128275269813088e-09
iteration 2, reconstruction error: 0.20876143877846895, decrease = 1.790565778980735e-09
iteration 3, reconstruction error: 0.20876143698973235, decrease = 1.7887366032809382e-09
iteration 4, reconstruction error: 0.20876143520282026, decrease = 1.7869120905178448e-09
PARAFAC2 reconstruction error=0.8189080092780581, variation=5.721867757380039e-09.
Starting iteration 408
reconstruction error=0.2087624353978084
iteration 1, reconstruction error: 0.20876243360057944, decrease = 1.7972289489964766e-09
iteration 2, reconstruction error: 0.20876243181059928, decrease = 1.7899801640908208e-09
iteration 3, reconstruction error: 0.2087624300224444, decrease = 1.7881548741716102e-09
iteration 4, reconstruction error: 0.20876242823610863, decrease = 1.786335773745762e-09
Accepted line search jump of 20.199009876724155.
PARAFAC2 reconstruction error=0.8189080050377193, variation=9.962206504177118e-09.
Starting iteration 409
reconstruction error=0.20877250922961996
iteration 1, reconstruction error: 0.20877250705068023, decrease = 2.1789397230964624e-09
iteration 2, reconstruction error: 0.20877250527754374, decrease = 1.7731364987394471e-09
iteration 3, reconstruction error: 0.20877250350619853, decrease = 1.7713452094003657e-09
iteration 4, reconstruction error: 0.208772501736626, decrease = 1.7695725162969467e-09
PARAFAC2 reconstruction error=0.8189079983973615, variation=6.640357819165388e-09.
Starting iteration 410
reconstruction error=0.2087679520777088
iteration 1, reconstruction error: 0.20876795020306035, decrease = 1.8746484364839944e-09
iteration 2, reconstruction error: 0.20876794843361007, decrease = 1.7694502807419354e-09
iteration 3, reconstruction error: 0.20876794666592877, decrease = 1.767681306885649e-09
iteration 4, reconstruction error: 0.20876794490002176, decrease = 1.7659070039588443e-09
Line search failed for jump of 20.248456731316587.
PARAFAC2 reconstruction error=0.8189079983973615, variation=6.640357819165388e-09.
Starting iteration 411
reconstruction error=0.20876563604706988
iteration 1, reconstruction error: 0.20876563425189934, decrease = 1.7951705399976703e-09
iteration 2, reconstruction error: 0.20876563248482, decrease = 1.7670793439616972e-09
iteration 3, reconstruction error: 0.2087656307195073, decrease = 1.7653127015737624e-09
iteration 4, reconstruction error: 0.20876562895596734, decrease = 1.7635399529591922e-09
PARAFAC2 reconstruction error=0.8189079912005702, variation=7.196791274033387e-09.
Starting iteration 412
reconstruction error=0.208764456456551
iteration 1, reconstruction error: 0.2087644546828154, decrease = 1.7737356028391105e-09
iteration 2, reconstruction error: 0.20876445291746867, decrease = 1.7653467299094672e-09
iteration 3, reconstruction error: 0.20876445115388706, decrease = 1.7635816140781913e-09
iteration 4, reconstruction error: 0.2087644493920767, decrease = 1.7618103642647043e-09
Line search failed for jump of 20.29778313018444.
PARAFAC2 reconstruction error=0.8189079912005702, variation=7.196791274033387e-09.
Starting iteration 413
reconstruction error=0.2087638533531671
iteration 1, reconstruction error: 0.2087638515858376, decrease = 1.7673295049647209e-09
iteration 2, reconstruction error: 0.20876384982190868, decrease = 1.7639289195958696e-09
iteration 3, reconstruction error: 0.20876384805974332, decrease = 1.7621653580768282e-09
iteration 4, reconstruction error: 0.20876384629934772, decrease = 1.7603956070644244e-09
PARAFAC2 reconstruction error=0.8189079892749362, variation=1.9256339855999727e-09.
Starting iteration 414
reconstruction error=0.2087635427453293
iteration 1, reconstruction error: 0.20876354098050184, decrease = 1.7648274508452744e-09
iteration 2, reconstruction error: 0.20876353921783453, decrease = 1.7626673176618368e-09
iteration 3, reconstruction error: 0.20876353745692997, decrease = 1.7609045610544882e-09
iteration 4, reconstruction error: 0.20876353569778436, decrease = 1.759145606960999e-09
Accepted line search jump of 20.346989949375804.
PARAFAC2 reconstruction error=0.8189079746183526, variation=1.6582217599037108e-08.
Starting iteration 415
reconstruction error=0.20876025009828572
iteration 1, reconstruction error: 0.20876024831997184, decrease = 1.7783138850369085e-09
iteration 2, reconstruction error: 0.20876024658126047, decrease = 1.738711369325685e-09
iteration 3, reconstruction error: 0.20876024484427028, decrease = 1.7369901905706087e-09
iteration 4, reconstruction error: 0.20876024310900354, decrease = 1.7352667358583318e-09
PARAFAC2 reconstruction error=0.8189079733208168, variation=1.2975358565370243e-09.
Starting iteration 416
reconstruction error=0.20876161700861645
iteration 1, reconstruction error: 0.20876161525842485, decrease = 1.7501916027562459e-09
iteration 2, reconstruction error: 0.20876161351999978, decrease = 1.7384250705632098e-09
iteration 3, reconstruction error: 0.20876161178329972, decrease = 1.7367000615386985e-09
iteration 4, reconstruction error: 0.20876161004831775, decrease = 1.7349819636525154e-09
Line search failed for jump of 20.396078054371138.
PARAFAC2 reconstruction error=0.8189079733208168, variation=1.2975358565370243e-09.
Starting iteration 417
reconstruction error=0.20876230624536596
iteration 1, reconstruction error: 0.20876230450320632, decrease = 1.742159638773444e-09
iteration 2, reconstruction error: 0.20876230276547184, decrease = 1.7377344840863174e-09
iteration 3, reconstruction error: 0.20876230102945076, decrease = 1.7360210768924134e-09
iteration 4, reconstruction error: 0.20876229929514387, decrease = 1.7343068925423921e-09
PARAFAC2 reconstruction error=0.8189079712735641, variation=2.0472527006987207e-09.
Starting iteration 418
reconstruction error=0.20876265153564916
iteration 1, reconstruction error: 0.20876264979631548, decrease = 1.739333677086563e-09
iteration 2, reconstruction error: 0.20876264805946051, decrease = 1.7368549654062093e-09
iteration 3, reconstruction error: 0.20876264632432284, decrease = 1.7351376724317191e-09
iteration 4, reconstruction error: 0.20876264459088936, decrease = 1.7334334800889195e-09
Accepted line search jump of 20.445048300260872.
PARAFAC2 reconstruction error=0.8189079571958742, variation=1.612494260339048e-08.
Starting iteration 419
reconstruction error=0.20876613652647025
iteration 1, reconstruction error: 0.20876613475683922, decrease = 1.7696310250503444e-09
iteration 2, reconstruction error: 0.20876613303998062, decrease = 1.7168585997318075e-09
iteration 3, reconstruction error: 0.20876613132478372, decrease = 1.7151969011752755e-09
iteration 4, reconstruction error: 0.20876612961125546, decrease = 1.7135282637248395e-09
PARAFAC2 reconstruction error=0.8189079556936728, variation=1.5022013633014808e-09.
Starting iteration 420
reconstruction error=0.20876449902343547
iteration 1, reconstruction error: 0.20876449729380755, decrease = 1.7296279131162606e-09
iteration 2, reconstruction error: 0.20876449557884055, decrease = 1.7149670017424512e-09
iteration 3, reconstruction error: 0.20876449386553989, decrease = 1.7133006680047913e-09
iteration 4, reconstruction error: 0.20876449215390175, decrease = 1.7116381367809907e-09
Line search failed for jump of 20.493901531919196.
PARAFAC2 reconstruction error=0.8189079556936728, variation=1.5022013633014808e-09.
Starting iteration 421
reconstruction error=0.20876366372864041
iteration 1, reconstruction error: 0.20876366201025218, decrease = 1.7183882372595605e-09
iteration 2, reconstruction error: 0.20876366029676433, decrease = 1.7134878516067431e-09
iteration 3, reconstruction error: 0.20876365858494747, decrease = 1.7118168549323798e-09
iteration 4, reconstruction error: 0.20876365687478537, decrease = 1.7101620952697516e-09
PARAFAC2 reconstruction error=0.8189079534623706, variation=2.2313022540743077e-09.
Starting iteration 422
reconstruction error=0.20876323543797767
iteration 1, reconstruction error: 0.20876323372331723, decrease = 1.7146604414097766e-09
iteration 2, reconstruction error: 0.2087632320111054, decrease = 1.7122118445289658e-09
iteration 3, reconstruction error: 0.20876323030055532, decrease = 1.7105500627057069e-09
iteration 4, reconstruction error: 0.2087632285916662, decrease = 1.7088891135497164e-09
Accepted line search jump of 20.54263858417414.
PARAFAC2 reconstruction error=0.8189079401543222, variation=1.5539350584070633e-08.
Starting iteration 423
reconstruction error=0.20875869007994236
iteration 1, reconstruction error: 0.20875868831531053, decrease = 1.7646318295483354e-09
iteration 2, reconstruction error: 0.20875868662697894, decrease = 1.6883315856475178e-09
iteration 3, reconstruction error: 0.20875868494027672, decrease = 1.686702222336578e-09
iteration 4, reconstruction error: 0.2087586832552, decrease = 1.6850767170506487e-09
PARAFAC2 reconstruction error=0.8189079383523334, variation=1.8019887804143764e-09.
Starting iteration 424
reconstruction error=0.2087606160653183
iteration 1, reconstruction error: 0.20876061435576176, decrease = 1.7095565241209698e-09
iteration 2, reconstruction error: 0.20876061266744025, decrease = 1.6883215103735694e-09
iteration 3, reconstruction error: 0.20876061098074036, decrease = 1.6866998908682262e-09
iteration 4, reconstruction error: 0.20876060929565904, decrease = 1.6850813244762008e-09
Line search failed for jump of 20.591260281974.
PARAFAC2 reconstruction error=0.8189079383523334, variation=1.8019887804143764e-09.
Starting iteration 425
reconstruction error=0.20876158923993088
iteration 1, reconstruction error: 0.208761587545298, decrease = 1.6946328784683828e-09
iteration 2, reconstruction error: 0.20876158585748808, decrease = 1.687809919603822e-09
iteration 3, reconstruction error: 0.2087615841713021, decrease = 1.6861859686301273e-09
iteration 4, reconstruction error: 0.20876158248672697, decrease = 1.6845751460436986e-09
PARAFAC2 reconstruction error=0.8189079358425755, variation=2.509757957014358e-09.
Starting iteration 426
reconstruction error=0.20876207877338013
iteration 1, reconstruction error: 0.20876207708330255, decrease = 1.6900775778871946e-09
iteration 2, reconstruction error: 0.20876207539626376, decrease = 1.687038786446493e-09
iteration 3, reconstruction error: 0.20876207371084743, decrease = 1.6854163342738815e-09
iteration 4, reconstruction error: 0.20876207202703803, decrease = 1.683809397468039e-09
Accepted line search jump of 20.639767440550294.
PARAFAC2 reconstruction error=0.8189079235909581, variation=1.4761375344285455e-08.
Starting iteration 427
reconstruction error=0.20876710855929234
iteration 1, reconstruction error: 0.20876710678525173, decrease = 1.7740406088595506e-09
iteration 2, reconstruction error: 0.20876710511678778, decrease = 1.6684639503328214e-09
iteration 3, reconstruction error: 0.20876710344989297, decrease = 1.6668948166209674e-09
iteration 4, reconstruction error: 0.20876710178456495, decrease = 1.6653280143774651e-09
PARAFAC2 reconstruction error=0.8189079213420244, variation=2.24893370592838e-09.
Starting iteration 428
reconstruction error=0.2087647851043178
iteration 1, reconstruction error: 0.20876478340997878, decrease = 1.6943390301893402e-09
iteration 2, reconstruction error: 0.20876478174372334, decrease = 1.6662554391810858e-09
iteration 3, reconstruction error: 0.20876478007903398, decrease = 1.6646893585825495e-09
iteration 4, reconstruction error: 0.20876477841591762, decrease = 1.663116366845685e-09
Line search failed for jump of 20.688160865577203.
PARAFAC2 reconstruction error=0.8189079213420244, variation=2.24893370592838e-09.
Starting iteration 429
reconstruction error=0.20876360199430072
iteration 1, reconstruction error: 0.20876360032142274, decrease = 1.672877975034126e-09
iteration 2, reconstruction error: 0.20876359865678715, decrease = 1.664635596032582e-09
iteration 3, reconstruction error: 0.20876359699371527, decrease = 1.6630718746579731e-09
iteration 4, reconstruction error: 0.20876359533221256, decrease = 1.6615027131905435e-09
PARAFAC2 reconstruction error=0.8189079184152778, variation=2.9267466228333205e-09.
Starting iteration 430
reconstruction error=0.20876299736543186
iteration 1, reconstruction error: 0.20876299569889936, decrease = 1.666532495336881e-09
iteration 2, reconstruction error: 0.20876299403558077, decrease = 1.6633185939696205e-09
iteration 3, reconstruction error: 0.20876299237382906, decrease = 1.6617517084593914e-09
iteration 4, reconstruction error: 0.20876299071364726, decrease = 1.6601817975914201e-09
Accepted line search jump of 20.73644135332772.
PARAFAC2 reconstruction error=0.8189079076515727, variation=1.3690451661219072e-08.
Starting iteration 431
reconstruction error=0.20875656124164624
iteration 1, reconstruction error: 0.20875655944736882, decrease = 1.7942774210855106e-09
iteration 2, reconstruction error: 0.20875655780816155, decrease = 1.6392072699211724e-09
iteration 3, reconstruction error: 0.20875655617051117, decrease = 1.637650376418165e-09
iteration 4, reconstruction error: 0.20875655453438832, decrease = 1.6361228483141588e-09
PARAFAC2 reconstruction error=0.8189079047399486, variation=2.911624163992599e-09.
Starting iteration 432
reconstruction error=0.2087593306168387
iteration 1, reconstruction error: 0.2087593289356671, decrease = 1.6811716185838321e-09
iteration 2, reconstruction error: 0.20875932729607083, decrease = 1.6395962643134254e-09
iteration 3, reconstruction error: 0.20875932565800673, decrease = 1.6380641010282915e-09
iteration 4, reconstruction error: 0.20875932402146247, decrease = 1.6365442612187309e-09
Line search failed for jump of 20.784609690826528.
PARAFAC2 reconstruction error=0.8189079047399486, variation=2.911624163992599e-09.
Starting iteration 433
reconstruction error=0.2087607321223748
iteration 1, reconstruction error: 0.2087607304709939, decrease = 1.6513809208973385e-09
iteration 2, reconstruction error: 0.20876072883167043, decrease = 1.6393234547606994e-09
iteration 3, reconstruction error: 0.20876072719387523, decrease = 1.6377952050117273e-09
iteration 4, reconstruction error: 0.20876072555760214, decrease = 1.6362730892449662e-09
PARAFAC2 reconstruction error=0.8189079011847193, variation=3.5552292221296966e-09.
Starting iteration 434
reconstruction error=0.20876143920111384
iteration 1, reconstruction error: 0.2087614375580648, decrease = 1.643049030164434e-09
iteration 2, reconstruction error: 0.20876143591937155, decrease = 1.6386932644163466e-09
iteration 3, reconstruction error: 0.20876143428220345, decrease = 1.6371680955362677e-09
iteration 4, reconstruction error: 0.20876143264655128, decrease = 1.635652169262869e-09
Accepted line search jump of 20.83266665599966.
PARAFAC2 reconstruction error=0.8189078925675988, variation=1.2172349794781212e-08.
Starting iteration 435
reconstruction error=0.20876881637919617
iteration 1, reconstruction error: 0.20876881453569354, decrease = 1.8435026283292189e-09
iteration 2, reconstruction error: 0.20876881291371985, decrease = 1.6219736942435503e-09
iteration 3, reconstruction error: 0.20876881129323044, decrease = 1.6204894093263533e-09
iteration 4, reconstruction error: 0.2087688096742214, decrease = 1.6190090379453181e-09
PARAFAC2 reconstruction error=0.8189078886580268, variation=3.90957199947195e-09.
Starting iteration 436
reconstruction error=0.20876544861487517
iteration 1, reconstruction error: 0.20876544693791252, decrease = 1.6769626520751757e-09
iteration 2, reconstruction error: 0.2087654453186837, decrease = 1.6192288065930427e-09
iteration 3, reconstruction error: 0.2087654437009338, decrease = 1.6177499062575151e-09
iteration 4, reconstruction error: 0.20876544208466044, decrease = 1.616273365145915e-09
Line search failed for jump of 20.8806130178211.
PARAFAC2 reconstruction error=0.8189078886580268, variation=3.90957199947195e-09.
Starting iteration 437
reconstruction error=0.20876373600840142
iteration 1, reconstruction error: 0.2087637343752856, decrease = 1.6331158370075372e-09
iteration 2, reconstruction error: 0.20876373275791005, decrease = 1.6173755390536115e-09
iteration 3, reconstruction error: 0.20876373114200875, decrease = 1.6159013016547874e-09
iteration 4, reconstruction error: 0.20876372952758557, decrease = 1.614423178475377e-09
PARAFAC2 reconstruction error=0.8189078841561785, variation=4.501848227533856e-09.
Starting iteration 438
reconstruction error=0.20876286288457052
iteration 1, reconstruction error: 0.20876286126356938, decrease = 1.6210011388739787e-09
iteration 2, reconstruction error: 0.208762859647606, decrease = 1.6159633908774396e-09
iteration 3, reconstruction error: 0.20876285803312378, decrease = 1.6144822145847115e-09
iteration 4, reconstruction error: 0.20876285642011044, decrease = 1.6130133340119812e-09
Accepted line search jump of 20.92844953645635.
PARAFAC2 reconstruction error=0.8189078786943579, variation=9.963668889945154e-09.
Starting iteration 439
reconstruction error=0.2087535270699244
iteration 1, reconstruction error: 0.2087535251481909, decrease = 1.9217334945587083e-09
iteration 2, reconstruction error: 0.2087535235570021, decrease = 1.5911887918385048e-09
iteration 3, reconstruction error: 0.2087535219672969, decrease = 1.5897052008106982e-09
iteration 4, reconstruction error: 0.20875352037903594, decrease = 1.5882609671891146e-09
PARAFAC2 reconstruction error=0.8189078732814616, variation=5.412896242340537e-09.
Starting iteration 440
reconstruction error=0.20875758960903973
iteration 1, reconstruction error: 0.2087575879299924, decrease = 1.6790473178485144e-09
iteration 2, reconstruction error: 0.2087575863378399, decrease = 1.5921525209350307e-09
iteration 3, reconstruction error: 0.20875758474714318, decrease = 1.5906967132384153e-09
iteration 4, reconstruction error: 0.20875758315788298, decrease = 1.5892601956668528e-09
Line search failed for jump of 20.97617696340303.
PARAFAC2 reconstruction error=0.8189078732814616, variation=5.412896242340537e-09.
Starting iteration 441
reconstruction error=0.208759647959905
iteration 1, reconstruction error: 0.2087596463439408, decrease = 1.6159641957891324e-09
iteration 2, reconstruction error: 0.208759644751736, decrease = 1.5922048124394905e-09
iteration 3, reconstruction error: 0.20875964316097156, decrease = 1.5907644368429175e-09
iteration 4, reconstruction error: 0.20875964157164437, decrease = 1.589327197626389e-09
PARAFAC2 reconstruction error=0.8189078673412319, variation=5.940229752532389e-09.
Starting iteration 442
reconstruction error=0.208760688615253
iteration 1, reconstruction error: 0.20876068701613204, decrease = 1.599120946771393e-09
iteration 2, reconstruction error: 0.20876068542436177, decrease = 1.5917702711476522e-09
iteration 3, reconstruction error: 0.20876068383403185, decrease = 1.5903299233066548e-09
iteration 4, reconstruction error: 0.20876068224513145, decrease = 1.5889004001401474e-09
Accepted line search jump of 21.02379604162864.
PARAFAC2 reconstruction error=0.8189078665994705, variation=6.681991182588831e-09.
Starting iteration 443
reconstruction error=0.20877169340593435
iteration 1, reconstruction error: 0.20877169134279408, decrease = 2.063140269736863e-09
iteration 2, reconstruction error: 0.2087716897652049, decrease = 1.5775891704095102e-09
iteration 3, reconstruction error: 0.20877168818902514, decrease = 1.5761797700353242e-09
iteration 4, reconstruction error: 0.20877168661424786, decrease = 1.5747772807994664e-09
PARAFAC2 reconstruction error=0.8189078588905936, variation=7.708876870182735e-09.
Starting iteration 444
reconstruction error=0.20876670910503653
iteration 1, reconstruction error: 0.20876670740565664, decrease = 1.6993798868103482e-09
iteration 2, reconstruction error: 0.20876670583168547, decrease = 1.5739711756168617e-09
iteration 3, reconstruction error: 0.20876670425910981, decrease = 1.5725756530304835e-09
iteration 4, reconstruction error: 0.20876670268793512, decrease = 1.5711746903512847e-09
Line search failed for jump of 21.071307505705477.
PARAFAC2 reconstruction error=0.8189078588905936, variation=7.708876870182735e-09.
Starting iteration 445
reconstruction error=0.20876417702868835
iteration 1, reconstruction error: 0.20876417542397271, decrease = 1.6047156381482353e-09
iteration 2, reconstruction error: 0.20876417385224957, decrease = 1.5717231405254495e-09
iteration 3, reconstruction error: 0.2087641722819228, decrease = 1.5703267852718028e-09
iteration 4, reconstruction error: 0.20876417071298156, decrease = 1.5689412269370706e-09
PARAFAC2 reconstruction error=0.8189078507559607, variation=8.13463285620486e-09.
Starting iteration 446
reconstruction error=0.20876288835984136
iteration 1, reconstruction error: 0.20876288678034588, decrease = 1.5794954788539428e-09
iteration 2, reconstruction error: 0.2087628852102099, decrease = 1.570135993445021e-09
iteration 3, reconstruction error: 0.2087628836414672, decrease = 1.568742691304692e-09
iteration 4, reconstruction error: 0.20876288207411697, decrease = 1.5673502218316315e-09
Line search failed for jump of 21.118712081942874.
PARAFAC2 reconstruction error=0.8189078507559607, variation=8.13463285620486e-09.
Starting iteration 447
reconstruction error=0.20876223042024222
iteration 1, reconstruction error: 0.20876222884801016, decrease = 1.5722320667599377e-09
iteration 2, reconstruction error: 0.20876222727913862, decrease = 1.5688715326866998e-09
iteration 3, reconstruction error: 0.20876222571166114, decrease = 1.5674774811458292e-09
iteration 4, reconstruction error: 0.20876222414557075, decrease = 1.5660903962544381e-09
PARAFAC2 reconstruction error=0.8189078489286398, variation=1.8273209612118535e-09.
Starting iteration 448
reconstruction error=0.20876189249246907
iteration 1, reconstruction error: 0.20876189092283876, decrease = 1.5696303146128798e-09
iteration 2, reconstruction error: 0.20876188935507153, decrease = 1.5677672215996807e-09
iteration 3, reconstruction error: 0.2087618877886937, decrease = 1.5663778329955136e-09
iteration 4, reconstruction error: 0.2087618862237053, decrease = 1.5649883888801952e-09
Accepted line search jump of 21.166010488516726.
PARAFAC2 reconstruction error=0.8189078357812932, variation=1.4974667505995853e-08.
Starting iteration 449
reconstruction error=0.20875818513649055
iteration 1, reconstruction error: 0.2087581835395207, decrease = 1.596969861905606e-09
iteration 2, reconstruction error: 0.20875818199332416, decrease = 1.5461965319207849e-09
iteration 3, reconstruction error: 0.2087581804484916, decrease = 1.5448325674238816e-09
iteration 4, reconstruction error: 0.20875817890501067, decrease = 1.5434809264025517e-09
PARAFAC2 reconstruction error=0.8189078344028867, variation=1.378406500052165e-09.
Starting iteration 450
reconstruction error=0.20875974982591952
iteration 1, reconstruction error: 0.20875974826542232, decrease = 1.560497203678679e-09
iteration 2, reconstruction error: 0.20875974671931097, decrease = 1.5461113500592205e-09
iteration 3, reconstruction error: 0.20875974517456125, decrease = 1.544749717030669e-09
iteration 4, reconstruction error: 0.20875974363115932, decrease = 1.5434019340343497e-09
Line search failed for jump of 21.213203435596427.
PARAFAC2 reconstruction error=0.8189078344028867, variation=1.378406500052165e-09.
Starting iteration 451
reconstruction error=0.20876053995924573
iteration 1, reconstruction error: 0.20876053840880274, decrease = 1.550442996212098e-09
iteration 2, reconstruction error: 0.2087605368631969, decrease = 1.545605837760533e-09
iteration 3, reconstruction error: 0.20876053531894426, decrease = 1.5442526424269687e-09
iteration 4, reconstruction error: 0.2087605337760409, decrease = 1.5429033606295661e-09
PARAFAC2 reconstruction error=0.8189078323662943, variation=2.0365924502385724e-09.
Starting iteration 452
reconstruction error=0.20876093695940484
iteration 1, reconstruction error: 0.2087609354121883, decrease = 1.5472165493246592e-09
iteration 2, reconstruction error: 0.20876093386729236, decrease = 1.5448959334030121e-09
iteration 3, reconstruction error: 0.2087609323237496, decrease = 1.5435427658250234e-09
iteration 4, reconstruction error: 0.2087609307815515, decrease = 1.542198091453173e-09
Accepted line search jump of 21.2602916254693.
PARAFAC2 reconstruction error=0.8189078200987777, variation=1.4304109008378418e-08.
Starting iteration 453
reconstruction error=0.20876512881459652
iteration 1, reconstruction error: 0.2087651272124843, decrease = 1.6021122206666405e-09
iteration 2, reconstruction error: 0.20876512568488842, decrease = 1.5275958831217906e-09
iteration 3, reconstruction error: 0.20876512415860476, decrease = 1.526283655017835e-09
iteration 4, reconstruction error: 0.20876512263363106, decrease = 1.5249737028710797e-09
PARAFAC2 reconstruction error=0.8189078183593542, variation=1.7394234941292552e-09.
Starting iteration 454
reconstruction error=0.20876317672023847
iteration 1, reconstruction error: 0.20876317517454376, decrease = 1.5456947111136543e-09
iteration 2, reconstruction error: 0.2087631736487977, decrease = 1.5257460572737358e-09
iteration 3, reconstruction error: 0.20876317212437087, decrease = 1.524426834764725e-09
iteration 4, reconstruction error: 0.20876317060124394, decrease = 1.5231269301363426e-09
Line search failed for jump of 21.307275752662516.
PARAFAC2 reconstruction error=0.8189078183593542, variation=1.7394234941292552e-09.
Starting iteration 455
reconstruction error=0.2087621823244456
iteration 1, reconstruction error: 0.2087621807940975, decrease = 1.5303480982442608e-09
iteration 2, reconstruction error: 0.2087621792697345, decrease = 1.524362996940809e-09
iteration 3, reconstruction error: 0.20876217774668224, decrease = 1.5230522676379366e-09
iteration 4, reconstruction error: 0.20876217622493914, decrease = 1.5217430926472986e-09
PARAFAC2 reconstruction error=0.8189078159870786, variation=2.3722755981836485e-09.
Starting iteration 456
reconstruction error=0.20876167379762228
iteration 1, reconstruction error: 0.20876167227194609, decrease = 1.5256761964899113e-09
iteration 2, reconstruction error: 0.2087616707487316, decrease = 1.52321449897741e-09
iteration 3, reconstruction error: 0.20876166922681938, decrease = 1.5219122073695246e-09
iteration 4, reconstruction error: 0.20876166770622095, decrease = 1.5205984249533344e-09
Accepted line search jump of 21.354156504062622.
PARAFAC2 reconstruction error=0.8189078050155945, variation=1.3343759763806418e-08.
Starting iteration 457
reconstruction error=0.20875609201938947
iteration 1, reconstruction error: 0.20875609040094623, decrease = 1.6184432405363935e-09
iteration 2, reconstruction error: 0.2087560888995139, decrease = 1.5014323395678986e-09
iteration 3, reconstruction error: 0.2087560873993746, decrease = 1.5001392905666933e-09
iteration 4, reconstruction error: 0.20875608590051364, decrease = 1.4988609520205642e-09
PARAFAC2 reconstruction error=0.8189078027068549, variation=2.308739532885795e-09.
Starting iteration 458
reconstruction error=0.20875849492043091
iteration 1, reconstruction error: 0.20875849338720126, decrease = 1.5332296543490997e-09
iteration 2, reconstruction error: 0.20875849188548307, decrease = 1.501718194241164e-09
iteration 3, reconstruction error: 0.20875849038504554, decrease = 1.5004375242266832e-09
iteration 4, reconstruction error: 0.2087584888858786, decrease = 1.499166929486151e-09
Line search failed for jump of 21.400934559032695.
PARAFAC2 reconstruction error=0.8189078027068549, variation=2.308739532885795e-09.
Starting iteration 459
reconstruction error=0.2087597107146145
iteration 1, reconstruction error: 0.20875970920393583, decrease = 1.5106786654950355e-09
iteration 2, reconstruction error: 0.20875970770249333, decrease = 1.5014424981085739e-09
iteration 3, reconstruction error: 0.20875970620233766, decrease = 1.5001556663563065e-09
iteration 4, reconstruction error: 0.20875970470344876, decrease = 1.4988889018852092e-09
PARAFAC2 reconstruction error=0.8189077997952888, variation=2.911566099328411e-09.
Starting iteration 460
reconstruction error=0.20876032388565555
iteration 1, reconstruction error: 0.20876032238136805, decrease = 1.504287500120327e-09
iteration 2, reconstruction error: 0.20876032088051127, decrease = 1.5008567721963573e-09
iteration 3, reconstruction error: 0.2087603193809267, decrease = 1.4995845676324393e-09
iteration 4, reconstruction error: 0.20876031788261198, decrease = 1.4983147222924487e-09
Accepted line search jump of 21.447610589527216.
PARAFAC2 reconstruction error=0.8189077907918154, variation=1.1915039510590475e-08.
Starting iteration 461
reconstruction error=0.20876690552215624
iteration 1, reconstruction error: 0.20876690385898847, decrease = 1.6631677701717251e-09
iteration 2, reconstruction error: 0.208766902373675, decrease = 1.4853134555625758e-09
iteration 3, reconstruction error: 0.20876690088960054, decrease = 1.4840744744226697e-09
iteration 4, reconstruction error: 0.2087668994067619, decrease = 1.4828386296628082e-09
PARAFAC2 reconstruction error=0.8189077875726525, variation=3.2191629362188223e-09.
Starting iteration 462
reconstruction error=0.208763887509079
iteration 1, reconstruction error: 0.20876388597976697, decrease = 1.5293120381176806e-09
iteration 2, reconstruction error: 0.20876388449680855, decrease = 1.4829584227271653e-09
iteration 3, reconstruction error: 0.20876388301509374, decrease = 1.4817148064061314e-09
iteration 4, reconstruction error: 0.2087638815346117, decrease = 1.4804820425151632e-09
Line search failed for jump of 21.494185260204677.
PARAFAC2 reconstruction error=0.8189077875726525, variation=3.2191629362188223e-09.
Starting iteration 463
reconstruction error=0.20876235260386541
iteration 1, reconstruction error: 0.20876235110985608, decrease = 1.4940093329141035e-09
iteration 2, reconstruction error: 0.20876234962851437, decrease = 1.4813417159587061e-09
iteration 3, reconstruction error: 0.20876234814840777, decrease = 1.4801065928438106e-09
iteration 4, reconstruction error: 0.20876234666953164, decrease = 1.4788761326656186e-09
PARAFAC2 reconstruction error=0.8189077837972817, variation=3.775370793768218e-09.
Starting iteration 464
reconstruction error=0.2087615699728114
iteration 1, reconstruction error: 0.20876156848862076, decrease = 1.4841906315066211e-09
iteration 2, reconstruction error: 0.20876156700852277, decrease = 1.4800979886153698e-09
iteration 3, reconstruction error: 0.20876156552965142, decrease = 1.4788713587066127e-09
iteration 4, reconstruction error: 0.20876156405201984, decrease = 1.4776315726550138e-09
Accepted line search jump of 21.540659228538015.
PARAFAC2 reconstruction error=0.8189077778500911, variation=9.722561422620402e-09.
Starting iteration 465
reconstruction error=0.20875295444987405
iteration 1, reconstruction error: 0.20875295270920943, decrease = 1.7406646124484837e-09
iteration 2, reconstruction error: 0.20875295125159304, decrease = 1.4576163887003446e-09
iteration 3, reconstruction error: 0.20875294979521417, decrease = 1.4563788786059462e-09
iteration 4, reconstruction error: 0.2087529483400512, decrease = 1.4551629623493767e-09
PARAFAC2 reconstruction error=0.8189077731751809, variation=4.674910125679332e-09.
Starting iteration 466
reconstruction error=0.20875671363983603
iteration 1, reconstruction error: 0.2087567121069472, decrease = 1.5328888158805398e-09
iteration 2, reconstruction error: 0.20875671064847848, decrease = 1.458468734671925e-09
iteration 3, reconstruction error: 0.20875670919122402, decrease = 1.4572544559943168e-09
iteration 4, reconstruction error: 0.2087567077351793, decrease = 1.4560447292311096e-09
Line search failed for jump of 21.587033144922902.
PARAFAC2 reconstruction error=0.8189077731751809, variation=4.674910125679332e-09.
Starting iteration 467
reconstruction error=0.2087586182777637
iteration 1, reconstruction error: 0.20875861679891058, decrease = 1.4788531232934332e-09
iteration 2, reconstruction error: 0.2087586153403954, decrease = 1.4585151975055055e-09
iteration 3, reconstruction error: 0.20875861388309144, decrease = 1.4573039441856395e-09
iteration 4, reconstruction error: 0.2087586124269833, decrease = 1.4561081507213913e-09
PARAFAC2 reconstruction error=0.8189077680066039, variation=5.168577010827846e-09.
Starting iteration 468
reconstruction error=0.20875958124696076
iteration 1, reconstruction error: 0.2087595797825611, decrease = 1.464399657091775e-09
iteration 2, reconstruction error: 0.20875957832443592, decrease = 1.4581251761569547e-09
iteration 3, reconstruction error: 0.2087595768675081, decrease = 1.456927828380472e-09
iteration 4, reconstruction error: 0.20875957541178763, decrease = 1.4557204608411922e-09
Accepted line search jump of 21.633307652783937.
PARAFAC2 reconstruction error=0.8189077668999621, variation=6.275218789042469e-09.
Starting iteration 469
reconstruction error=0.20877006046353838
iteration 1, reconstruction error: 0.20877005857569564, decrease = 1.887842743242274e-09
iteration 2, reconstruction error: 0.2087700571305674, decrease = 1.4451282392968778e-09
iteration 3, reconstruction error: 0.20877005568662024, decrease = 1.443947156287706e-09
iteration 4, reconstruction error: 0.20877005424384257, decrease = 1.4427776751091415e-09
PARAFAC2 reconstruction error=0.8189077598676652, variation=7.032296966968943e-09.
Starting iteration 470
reconstruction error=0.20876530109660643
iteration 1, reconstruction error: 0.2087652995404776, decrease = 1.556128836899262e-09
iteration 2, reconstruction error: 0.20876529809861916, decrease = 1.4418584382003274e-09
iteration 3, reconstruction error: 0.20876529665792254, decrease = 1.4406966175606328e-09
iteration 4, reconstruction error: 0.20876529521839546, decrease = 1.439527080870917e-09
Line search failed for jump of 21.6794833886788.
PARAFAC2 reconstruction error=0.8189077598676652, variation=7.032296966968943e-09.
Starting iteration 471
reconstruction error=0.20876288337088647
iteration 1, reconstruction error: 0.20876288190106948, decrease = 1.4698169903404334e-09
iteration 2, reconstruction error: 0.20876288046122493, decrease = 1.4398445491448086e-09
iteration 3, reconstruction error: 0.20876287902255294, decrease = 1.4386719870973508e-09
iteration 4, reconstruction error: 0.20876287758503898, decrease = 1.4375139689715155e-09
PARAFAC2 reconstruction error=0.8189077524442558, variation=7.4234093316860594e-09.
Starting iteration 472
reconstruction error=0.20876165303472907
iteration 1, reconstruction error: 0.20876165158788026, decrease = 1.4468488074292907e-09
iteration 2, reconstruction error: 0.20876165014946446, decrease = 1.4384158031344185e-09
iteration 3, reconstruction error: 0.20876164871220743, decrease = 1.4372570356080416e-09
iteration 4, reconstruction error: 0.20876164727611837, decrease = 1.4360890532305604e-09
Line search failed for jump of 21.72556098240043.
PARAFAC2 reconstruction error=0.8189077524442558, variation=7.4234093316860594e-09.
Starting iteration 473
reconstruction error=0.20876102502738222
iteration 1, reconstruction error: 0.2087610235871256, decrease = 1.4402566361759739e-09
iteration 2, reconstruction error: 0.2087610221498376, decrease = 1.437287983074853e-09
iteration 3, reconstruction error: 0.20876102071371147, decrease = 1.4361261346795828e-09
iteration 4, reconstruction error: 0.2087610192787495, decrease = 1.4349619825715365e-09
PARAFAC2 reconstruction error=0.8189077507722974, variation=1.6719584605695559e-09.
Starting iteration 474
reconstruction error=0.20876070262689228
iteration 1, reconstruction error: 0.208760701188987, decrease = 1.4379052670765446e-09
iteration 2, reconstruction error: 0.20876069975267794, decrease = 1.4363090716784654e-09
iteration 3, reconstruction error: 0.20876069831753458, decrease = 1.4351433652581846e-09
iteration 4, reconstruction error: 0.20876069688355534, decrease = 1.433979240905714e-09
Accepted line search jump of 21.77154105707724.
PARAFAC2 reconstruction error=0.8189077384263355, variation=1.4017920380027249e-08.
Starting iteration 475
reconstruction error=0.2087570676416175
iteration 1, reconstruction error: 0.20875706617594672, decrease = 1.465670779188244e-09
iteration 2, reconstruction error: 0.20875706475938077, decrease = 1.4165659478759807e-09
iteration 3, reconstruction error: 0.20875706334395583, decrease = 1.4154249439179978e-09
iteration 4, reconstruction error: 0.20875706192966578, decrease = 1.4142900461866503e-09
PARAFAC2 reconstruction error=0.8189077371252342, variation=1.3011012267583055e-09.
Starting iteration 476
reconstruction error=0.2087586098440335
iteration 1, reconstruction error: 0.20875860841371638, decrease = 1.4303171147478366e-09
iteration 2, reconstruction error: 0.20875860699717652, decrease = 1.416539857634902e-09
iteration 3, reconstruction error: 0.2087586055817823, decrease = 1.4153942184957913e-09
iteration 4, reconstruction error: 0.2087586041675168, decrease = 1.4142655102578061e-09
Line search failed for jump of 21.817424229271428.
PARAFAC2 reconstruction error=0.8189077371252342, variation=1.3011012267583055e-09.
Starting iteration 477
reconstruction error=0.20875938889913667
iteration 1, reconstruction error: 0.20875938747851605, decrease = 1.4206206211397898e-09
iteration 2, reconstruction error: 0.2087593860624078, decrease = 1.416108258434079e-09
iteration 3, reconstruction error: 0.2087593846474298, decrease = 1.4149779958838593e-09
iteration 4, reconstruction error: 0.2087593832335812, decrease = 1.4138485937564838e-09
PARAFAC2 reconstruction error=0.8189077352226664, variation=1.902567881018058e-09.
Starting iteration 478
reconstruction error=0.20875978061365166
iteration 1, reconstruction error: 0.2087597791960921, decrease = 1.4175595697274446e-09
iteration 2, reconstruction error: 0.20875977778059931, decrease = 1.4154927785448024e-09
iteration 3, reconstruction error: 0.20875977636623907, decrease = 1.4143602400373823e-09
iteration 4, reconstruction error: 0.20875977495300752, decrease = 1.4132315595549727e-09
Accepted line search jump of 21.863211109075447.
PARAFAC2 reconstruction error=0.8189077238615002, variation=1.3263734000013017e-08.
Starting iteration 479
reconstruction error=0.2087640402509119
iteration 1, reconstruction error: 0.20876403877432667, decrease = 1.4765852152098802e-09
iteration 2, reconstruction error: 0.20876403737450466, decrease = 1.399822008307794e-09
iteration 3, reconstruction error: 0.20876403597578047, decrease = 1.398724192025469e-09
iteration 4, reconstruction error: 0.2087640345781602, decrease = 1.3976202695165085e-09
PARAFAC2 reconstruction error=0.8189077221429497, variation=1.718550524110185e-09.
Starting iteration 480
reconstruction error=0.208762057332443
iteration 1, reconstruction error: 0.20876205591396768, decrease = 1.418475309433731e-09
iteration 2, reconstruction error: 0.20876205451587396, decrease = 1.39809372412536e-09
iteration 3, reconstruction error: 0.20876205311887414, decrease = 1.3969998213791968e-09
iteration 4, reconstruction error: 0.20876205172297368, decrease = 1.3959004507846373e-09
Line search failed for jump of 21.908902300206645.
PARAFAC2 reconstruction error=0.8189077221429497, variation=1.718550524110185e-09.
Starting iteration 481
reconstruction error=0.20876104762359055
iteration 1, reconstruction error: 0.20876104622081507, decrease = 1.402775479109053e-09
iteration 2, reconstruction error: 0.20876104482398689, decrease = 1.3968281808995897e-09
iteration 3, reconstruction error: 0.2087610434282534, decrease = 1.3957334732417337e-09
iteration 4, reconstruction error: 0.2087610420336201, decrease = 1.394633325491057e-09
PARAFAC2 reconstruction error=0.8189077198494238, variation=2.2935259247347517e-09.
Starting iteration 482
reconstruction error=0.20876053165471473
iteration 1, reconstruction error: 0.20876053025662994, decrease = 1.3980847868300117e-09
iteration 2, reconstruction error: 0.2087605288608364, decrease = 1.395793536307366e-09
iteration 3, reconstruction error: 0.2087605274661353, decrease = 1.3947011046067104e-09
iteration 4, reconstruction error: 0.20876052607253817, decrease = 1.3935971265865987e-09
Accepted line search jump of 21.95449840010015.
PARAFAC2 reconstruction error=0.8189077100311601, variation=1.2111789571278564e-08.
Starting iteration 483
reconstruction error=0.2087547173645274
iteration 1, reconstruction error: 0.20875471586075967, decrease = 1.5037677214557732e-09
iteration 2, reconstruction error: 0.20875471448504848, decrease = 1.375711183859707e-09
iteration 3, reconstruction error: 0.20875471311043364, decrease = 1.3746148386228896e-09
iteration 4, reconstruction error: 0.20875471173688417, decrease = 1.3735494686084593e-09
PARAFAC2 reconstruction error=0.8189077076156889, variation=2.4154712674473444e-09.
Starting iteration 484
reconstruction error=0.20875723614208005
iteration 1, reconstruction error: 0.20875723473178706, decrease = 1.4102929934978192e-09
iteration 2, reconstruction error: 0.2087572333557067, decrease = 1.3760803607709704e-09
iteration 3, reconstruction error: 0.20875723198069795, decrease = 1.3750087457520266e-09
iteration 4, reconstruction error: 0.20875723060675772, decrease = 1.3739402393575517e-09
Line search failed for jump of 22.0.
PARAFAC2 reconstruction error=0.8189077076156889, variation=2.4154712674473444e-09.
Starting iteration 485
reconstruction error=0.20875851110267787
iteration 1, reconstruction error: 0.2087585097169909, decrease = 1.3856869818251738e-09
iteration 2, reconstruction error: 0.20875850834109405, decrease = 1.3758968409049999e-09
iteration 3, reconstruction error: 0.2087585069662627, decrease = 1.374831359868267e-09
iteration 4, reconstruction error: 0.2087585055925052, decrease = 1.3737574966476984e-09
PARAFAC2 reconstruction error=0.8189077046592222, variation=2.9564666270687212e-09.
Starting iteration 486
reconstruction error=0.20875915463594305
iteration 1, reconstruction error: 0.2087591532571069, decrease = 1.378836156362695e-09
iteration 2, reconstruction error: 0.20875915188168842, decrease = 1.3754184735592645e-09
iteration 3, reconstruction error: 0.20875915050733768, decrease = 1.3743507443209069e-09
iteration 4, reconstruction error: 0.20875914913405386, decrease = 1.373283819994242e-09
Accepted line search jump of 22.045407685048602.
PARAFAC2 reconstruction error=0.8189076973349335, variation=1.0280755358138549e-08.
Starting iteration 487
reconstruction error=0.20876626658848943
iteration 1, reconstruction error: 0.20876626501951642, decrease = 1.5689730070711505e-09
iteration 2, reconstruction error: 0.20876626365788187, decrease = 1.361634555108182e-09
iteration 3, reconstruction error: 0.2087662622972841, decrease = 1.3605977733366359e-09
iteration 4, reconstruction error: 0.20876626093772704, decrease = 1.3595570502733523e-09
PARAFAC2 reconstruction error=0.8189076937415523, variation=3.593381259214823e-09.
Starting iteration 488
reconstruction error=0.20876300785097515
iteration 1, reconstruction error: 0.20876300643787732, decrease = 1.4130978331916566e-09
iteration 2, reconstruction error: 0.20876300507856793, decrease = 1.359309387272134e-09
iteration 3, reconstruction error: 0.2087630037202892, decrease = 1.3582787394827989e-09
iteration 4, reconstruction error: 0.20876300236305195, decrease = 1.357237239263398e-09
Line search failed for jump of 22.090722034374522.
PARAFAC2 reconstruction error=0.8189076937415523, variation=3.593381259214823e-09.
Starting iteration 489
reconstruction error=0.2087613511785227
iteration 1, reconstruction error: 0.20876134980633718, decrease = 1.3721855318671317e-09
iteration 2, reconstruction error: 0.20876134844856437, decrease = 1.3577728108504772e-09
iteration 3, reconstruction error: 0.20876134709182378, decrease = 1.356740580993332e-09
iteration 4, reconstruction error: 0.20876134573612007, decrease = 1.355703715955059e-09
PARAFAC2 reconstruction error=0.8189076896630982, variation=4.078454018952016e-09.
Starting iteration 490
reconstruction error=0.20876050709069782
iteration 1, reconstruction error: 0.20876050572969349, decrease = 1.3610043370082536e-09
iteration 2, reconstruction error: 0.20876050437307733, decrease = 1.356616152747847e-09
iteration 3, reconstruction error: 0.20876050301749496, decrease = 1.3555823685784674e-09
iteration 4, reconstruction error: 0.20876050166294324, decrease = 1.3545517207891322e-09
Accepted line search jump of 22.135943621178654.
PARAFAC2 reconstruction error=0.8189076864594177, variation=7.282134562025533e-09.
Starting iteration 491
reconstruction error=0.20875097228095077
iteration 1, reconstruction error: 0.2087509705953793, decrease = 1.6855714601859972e-09
iteration 2, reconstruction error: 0.20875096925978584, decrease = 1.3355934691539062e-09
iteration 3, reconstruction error: 0.20875096792525552, decrease = 1.3345303195855251e-09
iteration 4, reconstruction error: 0.208750966591732, decrease = 1.3335235138356438e-09
PARAFAC2 reconstruction error=0.818907680872986, variation=5.586431650606016e-09.
Starting iteration 492
reconstruction error=0.20875515788463725
iteration 1, reconstruction error: 0.20875515645648043, decrease = 1.4281568150309454e-09
iteration 2, reconstruction error: 0.2087551551198747, decrease = 1.3366057427521838e-09
iteration 3, reconstruction error: 0.20875515378429657, decrease = 1.3355781203205908e-09
iteration 4, reconstruction error: 0.20875515244972445, decrease = 1.3345721194824023e-09
Line search failed for jump of 22.181073012818835.
PARAFAC2 reconstruction error=0.818907680872986, variation=5.586431650606016e-09.
Starting iteration 493
reconstruction error=0.2087572794294642
iteration 1, reconstruction error: 0.2087572780680497, decrease = 1.3614145089047014e-09
iteration 2, reconstruction error: 0.2087572767312605, decrease = 1.3367892071070031e-09
iteration 3, reconstruction error: 0.20875727539548428, decrease = 1.3357762118637595e-09
iteration 4, reconstruction error: 0.20875727406072409, decrease = 1.3347601912627738e-09
PARAFAC2 reconstruction error=0.8189076748834179, variation=5.989568174769033e-09.
Starting iteration 494
reconstruction error=0.20875835284295458
iteration 1, reconstruction error: 0.20875835149918243, decrease = 1.3437721491094123e-09
iteration 2, reconstruction error: 0.20875835016266459, decrease = 1.3365178408442091e-09
iteration 3, reconstruction error: 0.208758348827152, decrease = 1.3355125894065623e-09
iteration 4, reconstruction error: 0.20875834749265312, decrease = 1.3344988725183526e-09
Line search failed for jump of 22.22611077089287.
PARAFAC2 reconstruction error=0.8189076748834179, variation=5.989568174769033e-09.
Starting iteration 495
reconstruction error=0.20875889418089474
iteration 1, reconstruction error: 0.20875889284217888, decrease = 1.338715860388362e-09
iteration 2, reconstruction error: 0.2087588915061632, decrease = 1.3360156869701711e-09
iteration 3, reconstruction error: 0.20875889017115892, decrease = 1.3350042737947376e-09
iteration 4, reconstruction error: 0.20875888883715066, decrease = 1.3340082649637708e-09
PARAFAC2 reconstruction error=0.8189076733891882, variation=1.4942296289177648e-09.
Starting iteration 496
reconstruction error=0.20875916545800796
iteration 1, reconstruction error: 0.20875916412112708, decrease = 1.3368808837732615e-09
iteration 2, reconstruction error: 0.20875916278574283, decrease = 1.3353842476249156e-09
iteration 3, reconstruction error: 0.20875916145135762, decrease = 1.3343852134362066e-09
iteration 4, reconstruction error: 0.2087591601179777, decrease = 1.3333799064874086e-09
Accepted line search jump of 22.271057451320086.
PARAFAC2 reconstruction error=0.8189076614719263, variation=1.3411491583958934e-08.
Starting iteration 497
reconstruction error=0.20876214985448088
iteration 1, reconstruction error: 0.2087621484954449, decrease = 1.35903599485232e-09
iteration 2, reconstruction error: 0.20876214717542077, decrease = 1.3200241177901972e-09
iteration 3, reconstruction error: 0.20876214585637412, decrease = 1.3190466496837416e-09
iteration 4, reconstruction error: 0.2087621445383072, decrease = 1.3180669333756612e-09
PARAFAC2 reconstruction error=0.8189076603352216, variation=1.1367047303423305e-09.
Starting iteration 498
reconstruction error=0.20876073738047368
iteration 1, reconstruction error: 0.2087607360511165, decrease = 1.329357179891133e-09
iteration 2, reconstruction error: 0.2087607347324011, decrease = 1.3187154146443447e-09
iteration 3, reconstruction error: 0.2087607334146678, decrease = 1.3177332836011857e-09
iteration 4, reconstruction error: 0.2087607320979135, decrease = 1.3167543166936468e-09
Line search failed for jump of 22.315913604421397.
PARAFAC2 reconstruction error=0.8189076603352216, variation=1.1367047303423305e-09.
Starting iteration 499
reconstruction error=0.20876001724517293
iteration 1, reconstruction error: 0.20876001592411578, decrease = 1.3210571525590353e-09
iteration 2, reconstruction error: 0.2087600146064338, decrease = 1.3176819635418724e-09
iteration 3, reconstruction error: 0.20876001328973784, decrease = 1.3166959744737028e-09
iteration 4, reconstruction error: 0.2087600119740162, decrease = 1.3157216427472918e-09
PARAFAC2 reconstruction error=0.8189076586374865, variation=1.6977350636437905e-09.
Starting iteration 500
reconstruction error=0.20875964840331798
iteration 1, reconstruction error: 0.20875964708497388, decrease = 1.3183441005537588e-09
iteration 2, reconstruction error: 0.20875964576818357, decrease = 1.3167903156752203e-09
iteration 3, reconstruction error: 0.2087596444523846, decrease = 1.3157989697809569e-09
iteration 4, reconstruction error: 0.2087596431375461, decrease = 1.314838488086778e-09
Accepted line search jump of 22.360679774997898.
PARAFAC2 reconstruction error=0.8189076476406811, variation=1.2694540418856093e-08.
Starting iteration 501
reconstruction error=0.20875539616114433
iteration 1, reconstruction error: 0.20875539479454758, decrease = 1.3665967524278955e-09
iteration 2, reconstruction error: 0.2087553934960134, decrease = 1.2985341690807672e-09
iteration 3, reconstruction error: 0.2087553921984336, decrease = 1.2975798213687995e-09
iteration 4, reconstruction error: 0.20875539090181117, decrease = 1.296622420543514e-09
PARAFAC2 reconstruction error=0.8189076461171819, variation=1.523499215672075e-09.
Starting iteration 502
reconstruction error=0.20875722376784098
iteration 1, reconstruction error: 0.2087572224506568, decrease = 1.317184167293206e-09
iteration 2, reconstruction error: 0.20875722115202783, decrease = 1.2986289821270702e-09
iteration 3, reconstruction error: 0.2087572198543601, decrease = 1.2976677232767742e-09
iteration 4, reconstruction error: 0.2087572185576413, decrease = 1.296718815657627e-09
Line search failed for jump of 22.40535650240808.
PARAFAC2 reconstruction error=0.8189076461171819, variation=1.523499215672075e-09.
Starting iteration 503
reconstruction error=0.20875814801419626
iteration 1, reconstruction error: 0.20875814671025336, decrease = 1.3039428981009848e-09
iteration 2, reconstruction error: 0.20875814541193383, decrease = 1.2983195352145316e-09
iteration 3, reconstruction error: 0.20875814411456864, decrease = 1.2973651875025638e-09
iteration 4, reconstruction error: 0.20875814281815158, decrease = 1.296417057039534e-09
PARAFAC2 reconstruction error=0.8189076440548231, variation=2.0623588392609804e-09.
Starting iteration 504
reconstruction error=0.20875861372738197
iteration 1, reconstruction error: 0.2087586124273398, decrease = 1.30004215725954e-09
iteration 2, reconstruction error: 0.20875861112953803, decrease = 1.2978017827069976e-09
iteration 3, reconstruction error: 0.20875860983267977, decrease = 1.29685825966952e-09
iteration 4, reconstruction error: 0.20875860853677508, decrease = 1.2959046891136694e-09
Accepted line search jump of 22.44994432064365.
PARAFAC2 reconstruction error=0.8189076345624687, variation=1.1554713186257004e-08.
Starting iteration 505
reconstruction error=0.2087638367835359
iteration 1, reconstruction error: 0.20876383538577367, decrease = 1.3977622392857825e-09
iteration 2, reconstruction error: 0.208763834101775, decrease = 1.2839986851531648e-09
iteration 3, reconstruction error: 0.20876383281870206, decrease = 1.2830729256840812e-09
iteration 4, reconstruction error: 0.20876383153655179, decrease = 1.2821502748394664e-09
PARAFAC2 reconstruction error=0.8189076323566021, variation=2.2058666004909355e-09.
Starting iteration 506
reconstruction error=0.20876142175198445
iteration 1, reconstruction error: 0.20876142044003596, decrease = 1.311948494286952e-09
iteration 2, reconstruction error: 0.20876141915780935, decrease = 1.2822266026724094e-09
iteration 3, reconstruction error: 0.20876141787650007, decrease = 1.2813092808983129e-09
iteration 4, reconstruction error: 0.20876141659612035, decrease = 1.2803797189153698e-09
Line search failed for jump of 22.494443758403985.
PARAFAC2 reconstruction error=0.8189076323566021, variation=2.2058666004909355e-09.
Starting iteration 507
reconstruction error=0.20876019316472091
iteration 1, reconstruction error: 0.20876019187554198, decrease = 1.2891789302749146e-09
iteration 2, reconstruction error: 0.20876019059455542, decrease = 1.28098656682063e-09
iteration 3, reconstruction error: 0.20876018931449772, decrease = 1.2800576987270773e-09
iteration 4, reconstruction error: 0.20876018803535343, decrease = 1.2791442904891426e-09
PARAFAC2 reconstruction error=0.8189076296477195, variation=2.7088826737298177e-09.
Starting iteration 508
reconstruction error=0.20875956644803662
iteration 1, reconstruction error: 0.20875956516530847, decrease = 1.2827281459237838e-09
iteration 2, reconstruction error: 0.2087595638853006, decrease = 1.2800078774688473e-09
iteration 3, reconstruction error: 0.2087595626062185, decrease = 1.279082090244188e-09
iteration 4, reconstruction error: 0.2087595613280552, decrease = 1.2781632974245838e-09
Accepted line search jump of 22.538855339169288.
PARAFAC2 reconstruction error=0.8189076226959805, variation=9.660621635987354e-09.
Starting iteration 509
reconstruction error=0.2087523409180134
iteration 1, reconstruction error: 0.20875233945647959, decrease = 1.4615338106427345e-09
iteration 2, reconstruction error: 0.20875233819540806, decrease = 1.261071524982782e-09
iteration 3, reconstruction error: 0.2087523369352654, decrease = 1.2601426568892293e-09
iteration 4, reconstruction error: 0.2087523356760231, decrease = 1.259242293771834e-09
PARAFAC2 reconstruction error=0.8189076192887709, variation=3.4072096255499673e-09.
Starting iteration 510
reconstruction error=0.20875550322723943
iteration 1, reconstruction error: 0.2087555019127454, decrease = 1.314494041393388e-09
iteration 2, reconstruction error: 0.20875550065104823, decrease = 1.2616971634127339e-09
iteration 3, reconstruction error: 0.20875549939026677, decrease = 1.260781451462023e-09
iteration 4, reconstruction error: 0.20875549813037875, decrease = 1.2598880272385315e-09
Line search failed for jump of 22.58317958127243.
PARAFAC2 reconstruction error=0.8189076192887709, variation=3.4072096255499673e-09.
Starting iteration 511
reconstruction error=0.2087571052603268
iteration 1, reconstruction error: 0.20875710398415306, decrease = 1.2761737222533043e-09
iteration 2, reconstruction error: 0.20875710272246412, decrease = 1.2616889477623516e-09
iteration 3, reconstruction error: 0.20875710146167395, decrease = 1.2607901667127663e-09
iteration 4, reconstruction error: 0.2087571002017849, decrease = 1.2598890541948293e-09
PARAFAC2 reconstruction error=0.8189076154305972, variation=3.858173669435416e-09.
Starting iteration 512
reconstruction error=0.20875791512398761
iteration 1, reconstruction error: 0.20875791385812334, decrease = 1.265864274513362e-09
iteration 2, reconstruction error: 0.20875791259676918, decrease = 1.261354160009276e-09
iteration 3, reconstruction error: 0.2087579113363207, decrease = 1.2604484678213623e-09
iteration 4, reconstruction error: 0.20875791007676567, decrease = 1.2595550435978708e-09
Accepted line search jump of 22.627416997969522.
PARAFAC2 reconstruction error=0.8189076128790111, variation=6.409759722991737e-09.
Starting iteration 513
reconstruction error=0.20876713074765013
iteration 1, reconstruction error: 0.20876712915205972, decrease = 1.5955904097975093e-09
iteration 2, reconstruction error: 0.20876712790214144, decrease = 1.2499182799885489e-09
iteration 3, reconstruction error: 0.20876712665310956, decrease = 1.2490318779256881e-09
iteration 4, reconstruction error: 0.2087671254049625, decrease = 1.2481470579306375e-09
PARAFAC2 reconstruction error=0.81890760733351, variation=5.545501169379463e-09.
Starting iteration 514
reconstruction error=0.20876292470315788
iteration 1, reconstruction error: 0.20876292336671257, decrease = 1.3364453155251255e-09
iteration 2, reconstruction error: 0.20876292211943767, decrease = 1.2472748944780676e-09
iteration 3, reconstruction error: 0.20876292087303067, decrease = 1.2464070053841425e-09
iteration 4, reconstruction error: 0.20876291962749774, decrease = 1.2455329267968551e-09
Line search failed for jump of 22.67156809750927.
PARAFAC2 reconstruction error=0.81890760733351, variation=5.545501169379463e-09.
Starting iteration 515
reconstruction error=0.2087607879770543
iteration 1, reconstruction error: 0.20876078670806686, decrease = 1.268987442903935e-09
iteration 2, reconstruction error: 0.20876078546242824, decrease = 1.2456386200287994e-09
iteration 3, reconstruction error: 0.2087607842176606, decrease = 1.244767650065981e-09
iteration 4, reconstruction error: 0.20876078297376163, decrease = 1.243898956060363e-09
PARAFAC2 reconstruction error=0.8189076014290981, variation=5.9044118483342345e-09.
Starting iteration 516
reconstruction error=0.20875970066211846
iteration 1, reconstruction error: 0.20875969941110478, decrease = 1.2510136815357953e-09
iteration 2, reconstruction error: 0.20875969816662557, decrease = 1.2444792141241834e-09
iteration 3, reconstruction error: 0.20875969692301427, decrease = 1.2436112972746827e-09
iteration 4, reconstruction error: 0.20875969568027397, decrease = 1.2427402995562886e-09
Line search failed for jump of 22.715633383201094.
PARAFAC2 reconstruction error=0.8189076014290981, variation=5.9044118483342345e-09.
Starting iteration 517
reconstruction error=0.20875914571377405
iteration 1, reconstruction error: 0.2087591444679442, decrease = 1.2458298559447911e-09
iteration 2, reconstruction error: 0.20875914322438716, decrease = 1.2435570351243541e-09
iteration 3, reconstruction error: 0.20875914198170034, decrease = 1.2426868145620773e-09
iteration 4, reconstruction error: 0.20875914073987836, decrease = 1.24182197858147e-09
PARAFAC2 reconstruction error=0.8189076000171007, variation=1.4119974078852238e-09.
Starting iteration 518
reconstruction error=0.20875886088400364
iteration 1, reconstruction error: 0.2087588596400413, decrease = 1.2439623497950691e-09
iteration 2, reconstruction error: 0.20875885839728242, decrease = 1.2427588680363755e-09
iteration 3, reconstruction error: 0.2087588571554015, decrease = 1.2418809314240775e-09
iteration 4, reconstruction error: 0.20875885591438156, decrease = 1.241019925712905e-09
Accepted line search jump of 22.759613353482084.
PARAFAC2 reconstruction error=0.8189075887965389, variation=1.2632559220904227e-08.
Starting iteration 519
reconstruction error=0.20875550504354815
iteration 1, reconstruction error: 0.208755503775521, decrease = 1.2680271554987854e-09
iteration 2, reconstruction error: 0.20875550254967715, decrease = 1.225843843100094e-09
iteration 3, reconstruction error: 0.20875550132468967, decrease = 1.2249874725700494e-09
iteration 4, reconstruction error: 0.2087555001005516, decrease = 1.2241380686894843e-09
PARAFAC2 reconstruction error=0.8189075876733868, variation=1.1231521268584288e-09.
Starting iteration 520
reconstruction error=0.20875693704568593
iteration 1, reconstruction error: 0.20875693580808755, decrease = 1.237598384884464e-09
iteration 2, reconstruction error: 0.2087569345822336, decrease = 1.225853946129618e-09
iteration 3, reconstruction error: 0.20875693335723833, decrease = 1.2249952718867974e-09
iteration 4, reconstruction error: 0.2087569321330855, decrease = 1.2241528346557118e-09
Line search failed for jump of 22.80350850198276.
PARAFAC2 reconstruction error=0.8189075876733868, variation=1.1231521268584288e-09.
Starting iteration 521
reconstruction error=0.2087576606563023
iteration 1, reconstruction error: 0.2087576594270237, decrease = 1.229278595582528e-09
iteration 2, reconstruction error: 0.2087576582015023, decrease = 1.2255214065781672e-09
iteration 3, reconstruction error: 0.2087576569768303, decrease = 1.2246720026976021e-09
iteration 4, reconstruction error: 0.20875765575300767, decrease = 1.2238226265726126e-09
PARAFAC2 reconstruction error=0.8189075860297935, variation=1.6435932614911053e-09.
Starting iteration 522
reconstruction error=0.20875802472612304
iteration 1, reconstruction error: 0.20875802349944828, decrease = 1.226674761767299e-09
iteration 2, reconstruction error: 0.20875802227442913, decrease = 1.2250191416818268e-09
iteration 3, reconstruction error: 0.2087580210502563, decrease = 1.2241728464257307e-09
iteration 4, reconstruction error: 0.20875801982692824, decrease = 1.2233280499707178e-09
Accepted line search jump of 22.847319317591726.
PARAFAC2 reconstruction error=0.818907575860334, variation=1.1813052758213871e-08.
Starting iteration 523
reconstruction error=0.208762167488478
iteration 1, reconstruction error: 0.20876216620410362, decrease = 1.284374384624698e-09
iteration 2, reconstruction error: 0.20876216499242436, decrease = 1.2116792569294432e-09
iteration 3, reconstruction error: 0.2087621637815737, decrease = 1.2108506697305899e-09
iteration 4, reconstruction error: 0.20876216257154845, decrease = 1.2100252466673567e-09
PARAFAC2 reconstruction error=0.8189075742802101, variation=1.5801239205970319e-09.
Starting iteration 524
reconstruction error=0.20876023627698206
iteration 1, reconstruction error: 0.20876023504765684, decrease = 1.2293252249495623e-09
iteration 2, reconstruction error: 0.20876023383746592, decrease = 1.2101909196982064e-09
iteration 3, reconstruction error: 0.20876023262810664, decrease = 1.2093592793860353e-09
iteration 4, reconstruction error: 0.20876023141956357, decrease = 1.2085430711739065e-09
Line search failed for jump of 22.891046284519195.
PARAFAC2 reconstruction error=0.8189075742802101, variation=1.5801239205970319e-09.
Starting iteration 525
reconstruction error=0.20875925326989225
iteration 1, reconstruction error: 0.20875925205535628, decrease = 1.2145359717941062e-09
iteration 2, reconstruction error: 0.20875925084624306, decrease = 1.2091132262082027e-09
iteration 3, reconstruction error: 0.208759249637953, decrease = 1.2082900513465944e-09
iteration 4, reconstruction error: 0.20875924843048382, decrease = 1.2074691801977622e-09
PARAFAC2 reconstruction error=0.8189075722060977, variation=2.0741124373557795e-09.
Starting iteration 526
reconstruction error=0.2087587513291101
iteration 1, reconstruction error: 0.20875875011891054, decrease = 1.2101995516822228e-09
iteration 2, reconstruction error: 0.20875874891065976, decrease = 1.2082507772070983e-09
iteration 3, reconstruction error: 0.20875874770323913, decrease = 1.2074206356960104e-09
iteration 4, reconstruction error: 0.20875874649663623, decrease = 1.2066029009272228e-09
Accepted line search jump of 22.93468988235943.
PARAFAC2 reconstruction error=0.8189075638454731, variation=1.0434736963382818e-08.
Starting iteration 527
reconstruction error=0.20875285113161846
iteration 1, reconstruction error: 0.20875284980731146, decrease = 1.324306997396718e-09
iteration 2, reconstruction error: 0.2087528486164689, decrease = 1.1908425634477027e-09
iteration 3, reconstruction error: 0.20875284742644873, decrease = 1.1900201657422116e-09
iteration 4, reconstruction error: 0.2087528462372348, decrease = 1.1892139217817288e-09
PARAFAC2 reconstruction error=0.8189075614290441, variation=2.4164290568506885e-09.
Starting iteration 528
reconstruction error=0.20875542734055566
iteration 1, reconstruction error: 0.20875542611389064, decrease = 1.226665019560258e-09
iteration 2, reconstruction error: 0.20875542492260968, decrease = 1.1912809627645515e-09
iteration 3, reconstruction error: 0.2087554237321365, decrease = 1.1904731644918343e-09
iteration 4, reconstruction error: 0.20875542254246646, decrease = 1.189670056911396e-09
Line search failed for jump of 22.978250586152114.
PARAFAC2 reconstruction error=0.8189075614290441, variation=2.4164290568506885e-09.
Starting iteration 529
reconstruction error=0.2087567319534672
iteration 1, reconstruction error: 0.20875673075238485, decrease = 1.2010823446928498e-09
iteration 2, reconstruction error: 0.20875672956118532, decrease = 1.1911995279056953e-09
iteration 3, reconstruction error: 0.2087567283707843, decrease = 1.1904010277508092e-09
iteration 4, reconstruction error: 0.20875672718118715, decrease = 1.1895971430142538e-09
PARAFAC2 reconstruction error=0.8189075585566525, variation=2.872391546837605e-09.
Starting iteration 530
reconstruction error=0.20875739102421495
iteration 1, reconstruction error: 0.20875738983013417, decrease = 1.1940807786992025e-09
iteration 2, reconstruction error: 0.20875738863928978, decrease = 1.1908443953156933e-09
iteration 3, reconstruction error: 0.20875738744924544, decrease = 1.1900443408485728e-09
iteration 4, reconstruction error: 0.2087573862599996, decrease = 1.1892458406936868e-09
Accepted line search jump of 23.021728866442675.
PARAFAC2 reconstruction error=0.8189075534145581, variation=8.014485963769857e-09.
Starting iteration 531
reconstruction error=0.20876501093618213
iteration 1, reconstruction error: 0.20876500951839572, decrease = 1.4177864160469511e-09
iteration 2, reconstruction error: 0.20876500833888606, decrease = 1.1795096566125096e-09
iteration 3, reconstruction error: 0.20876500716015017, decrease = 1.1787358866754971e-09
iteration 4, reconstruction error: 0.20876500598220196, decrease = 1.1779482111951012e-09
PARAFAC2 reconstruction error=0.8189075494517214, variation=3.9628367254351815e-09.
Starting iteration 532
reconstruction error=0.20876151781165395
iteration 1, reconstruction error: 0.2087615165727878, decrease = 1.2388661485562835e-09
iteration 2, reconstruction error: 0.20876151539546692, decrease = 1.1773208796750367e-09
iteration 3, reconstruction error: 0.20876151421892214, decrease = 1.1765447782696725e-09
iteration 4, reconstruction error: 0.20876151304315732, decrease = 1.1757648188392977e-09
Line search failed for jump of 23.065125189341593.
PARAFAC2 reconstruction error=0.8189075494517214, variation=3.9628367254351815e-09.
Starting iteration 533
reconstruction error=0.20875974273209083
iteration 1, reconstruction error: 0.2087597415399512, decrease = 1.1921396370073722e-09
iteration 2, reconstruction error: 0.20875974036402736, decrease = 1.1759238305319997e-09
iteration 3, reconstruction error: 0.2087597391888742, decrease = 1.1751531692194561e-09
iteration 4, reconstruction error: 0.20875973801450257, decrease = 1.1743716277212712e-09
PARAFAC2 reconstruction error=0.8189075451014362, variation=4.350285243148733e-09.
Starting iteration 534
reconstruction error=0.20875883903912384
iteration 1, reconstruction error: 0.20875883785955612, decrease = 1.1795677212766975e-09
iteration 2, reconstruction error: 0.20875883668465126, decrease = 1.1749048678399987e-09
iteration 3, reconstruction error: 0.2087588355105094, decrease = 1.174141867066325e-09
iteration 4, reconstruction error: 0.2087588343371498, decrease = 1.1733595761675986e-09
Line search failed for jump of 23.108440016582687.
PARAFAC2 reconstruction error=0.8189075451014362, variation=4.350285243148733e-09.
Starting iteration 535
reconstruction error=0.20875837743212797
iteration 1, reconstruction error: 0.20875837625631607, decrease = 1.1758118922955418e-09
iteration 2, reconstruction error: 0.20875837508222542, decrease = 1.1740906580293142e-09
iteration 3, reconstruction error: 0.20875837390891083, decrease = 1.1733145843795256e-09
iteration 4, reconstruction error: 0.20875837273637315, decrease = 1.1725376780624686e-09
PARAFAC2 reconstruction error=0.8189075438495692, variation=1.251866943441371e-09.
Starting iteration 536
reconstruction error=0.20875814014488903
iteration 1, reconstruction error: 0.20875813897052378, decrease = 1.1743652439388796e-09
iteration 2, reconstruction error: 0.20875813779716304, decrease = 1.1733607419017744e-09
iteration 3, reconstruction error: 0.2087581366245753, decrease = 1.1725877491208792e-09
iteration 4, reconstruction error: 0.20875813545276675, decrease = 1.171808539091046e-09
Accepted line search jump of 23.15167380558045.
PARAFAC2 reconstruction error=0.8189075327881028, variation=1.231333335294238e-08.
Starting iteration 537
reconstruction error=0.2087552878743917
iteration 1, reconstruction error: 0.2087552866863766, decrease = 1.1880151029597386e-09
iteration 2, reconstruction error: 0.20875528552875094, decrease = 1.1576256619960645e-09
iteration 3, reconstruction error: 0.20875528437188207, decrease = 1.1568688784713288e-09
iteration 4, reconstruction error: 0.20875528321577932, decrease = 1.1561027413176106e-09
PARAFAC2 reconstruction error=0.8189075318617822, variation=9.263205758003323e-10.
converged in 537 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()
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)
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.0413125626903 regularized loss variation=0.4420139116225494.
Feasibility gaps for A: [0.24571171050751403]
Feasibility gaps for the Bi-matrices: [0.058632897396885264, 0.05640766053103389]
Feasibility gaps for C: [0.10936519236829602]
Coupled matrix factorization iteration=100, reconstruction error=0.8334356309284225, regularized loss=357.17205036895007 regularized loss variation=4.3337335917740125e-05.
Feasibility gaps for A: [2.2937812243575964e-07]
Feasibility gaps for the Bi-matrices: [1.5990785846864748e-06, 2.3746014897321633e-06]
Feasibility gaps for C: [2.266023233363537e-06]
Coupled matrix factorization iteration=200, reconstruction error=0.8334221990190355, regularized loss=357.5251500390751 regularized loss variation=6.638804861647611e-07.
Feasibility gaps for A: [3.3646942597044143e-09]
Feasibility gaps for the Bi-matrices: [2.2665057900471617e-08, 3.2956741978313176e-08]
Feasibility gaps for C: [3.271320116536644e-08]
Coupled matrix factorization iteration=300, reconstruction error=0.8334219922418229, regularized loss=357.5306569651166 regularized loss variation=1.0415710652270225e-08.
Feasibility gaps for A: [5.280189981986646e-11]
Feasibility gaps for the Bi-matrices: [3.557187029676874e-10, 5.172401487145199e-10]
Feasibility gaps for C: [5.13330760517459e-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")
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)
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.6706095457399559
Relative SSE with TV regularized PARAFAC2: 0.6945922121734127
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: (0 minutes 45.336 seconds)