Fixel Algorithms

Least Squares with \({L}^{1}\) / \({L}^{2}\) Regularization#

Notebook by:

Revision History#

Version

Date

User

Content / Changes

1.0.000

24/03/2024

Royi Avital

First version

Open In Colab

# Import Packages

# General Tools
import numpy as np
import scipy as sp
import pandas as pd

# Machine Learning
from sklearn.linear_model import Lasso, Ridge
from sklearn.linear_model import lars_path, lasso_path
from sklearn.metrics import r2_score
from sklearn.model_selection import train_test_split
from sklearn.pipeline import Pipeline
from sklearn.preprocessing import PolynomialFeatures

# Miscellaneous
import math
import os
from platform import python_version
import random
import timeit

# Typing
from typing import Callable, Dict, List, Optional, Set, Tuple, Union

# Visualization
import matplotlib as mpl
import matplotlib.pyplot as plt
import seaborn as sns

# Jupyter
from IPython import get_ipython
from IPython.display import Image
from IPython.display import display
from ipywidgets import Dropdown, FloatSlider, interact, IntSlider, Layout, SelectionSlider
from ipywidgets import interact

Notations#

  • (?) Question to answer interactively.

  • (!) Simple task to add code for the notebook.

  • (@) Optional / Extra self practice.

  • (#) Note / Useful resource / Food for thought.

Code Notations:

someVar    = 2; #<! Notation for a variable
vVector    = np.random.rand(4) #<! Notation for 1D array
mMatrix    = np.random.rand(4, 3) #<! Notation for 2D array
tTensor    = np.random.rand(4, 3, 2, 3) #<! Notation for nD array (Tensor)
tuTuple    = (1, 2, 3) #<! Notation for a tuple
lList      = [1, 2, 3] #<! Notation for a list
dDict      = {1: 3, 2: 2, 3: 1} #<! Notation for a dictionary
oObj       = MyClass() #<! Notation for an object
dfData     = pd.DataFrame() #<! Notation for a data frame
dsData     = pd.Series() #<! Notation for a series
hObj       = plt.Axes() #<! Notation for an object / handler / function handler

Code Exercise#

  • Single line fill

vallToFill = ???
  • Multi Line to Fill (At least one)

# You need to start writing
????
  • Section to Fill

#===========================Fill This===========================#
# 1. Explanation about what to do.
# !! Remarks to follow / take under consideration.
mX = ???

???
#===============================================================#
# Configuration
# %matplotlib inline

seedNum = 512
np.random.seed(seedNum)
random.seed(seedNum)

# Matplotlib default color palette
lMatPltLibclr = ['#1f77b4', '#ff7f0e', '#2ca02c', '#d62728', '#9467bd', '#8c564b', '#e377c2', '#7f7f7f', '#bcbd22', '#17becf']
# sns.set_theme() #>! Apply SeaBorn theme

runInGoogleColab = 'google.colab' in str(get_ipython())
# Constants

FIG_SIZE_DEF    = (8, 8)
ELM_SIZE_DEF    = 50
CLASS_COLOR     = ('b', 'r')
EDGE_COLOR      = 'k'
MARKER_SIZE_DEF = 10
LINE_WIDTH_DEF  = 2
# Courses Packages
import sys
sys.path.append('../')
sys.path.append('../../')
sys.path.append('../../../')
from utils.DataVisualization import PlotRegressionData
# General Auxiliary Functions

def PlotPolyFit( vX: np.ndarray, vY: np.ndarray, vP: Optional[np.ndarray] = None, P: int = 1, numGridPts: int = 1001, 
                hA: Optional[plt.Axes] = None, figSize: Tuple[int, int] = FIG_SIZE_DEF, markerSize: int = MARKER_SIZE_DEF, 
                lineWidth: int = LINE_WIDTH_DEF, axisTitle: str = None ) -> None:

    if hA is None:
        hF, hA = plt.subplots(1, 2, figsize = figSize)
    else:
        hF = hA[0].get_figure()

    numSamples = len(vY)

    # Polyfit
    vW    = np.polyfit(vX, vY, P)
    
    # MSE
    vHatY = np.polyval(vW, vX)
    MSE   = (np.linalg.norm(vY - vHatY) ** 2) / numSamples
    
    # Plot
    xx  = np.linspace(np.floor(np.min(vX)), np.ceil(np.max(vX)), numGridPts)
    yy  = np.polyval(vW, xx)

    hA[0].plot(vX, vY, '.r', ms = 10, label = '$y_i$')
    hA[0].plot(xx, yy, 'b',  lw = 2,  label = '$\hat{f}(x)$')
    hA[0].set_title (f'$P = {P}$\nMSE = {MSE}')
    hA[0].set_xlabel('$x$')
    # hA[0].axis(lAxis)
    hA[0].grid()
    hA[0].legend()
    
    hA[1].stem(vW[::-1], label = 'Estimated')
    if vP is not None:
        hA[1].stem(vP[::-1], linefmt = 'C1:', markerfmt = 'D', label = 'Ground Truth')
    numTicks = len(vW) if vP is None else max(len(vW), len(vP))
    hA[1].set_xticks(range(numTicks))
    hA[1].set_title('Coefficients')
    hA[1].set_xlabel('$w$')
    hA[1].legend()

Linear Regression with LASSO (\({L}_{1}\)) / Ridge (\({L}_{2}\)) Regularization#

Regularization is a simple and effective way to balance the adaptation of the model to the data.
It allows us to use complex model yet to tune it to prevent overfit.

The models of optimization:

  • LASSO: \(\arg \min_{\boldsymbol{w}} \frac{1}{2} {\left\| X \boldsymbol{w} - \boldsymbol{y} \right\|}_{2}^{2} + \lambda {\left\| \boldsymbol{w} \right\|}_{1}\).
    Promotes sparsity, modeled by a Laplace prior of the coefficients of \(\boldsymbol{w}\).

  • Ridge: \(\arg \min_{\boldsymbol{w}} \frac{1}{2} {\left\| X \boldsymbol{w} - \boldsymbol{y} \right\|}_{2}^{2} + \lambda {\left\| \boldsymbol{w} \right\|}_{2}^{2}\).
    Promotes damped coefficients, modeled by a Gaussian prior of the coefficients of \(\boldsymbol{w}\).

  • (#) The LASSO model is implemented by the Lasso class in SciKit Learn.

  • (#) The Ridge model is implemented by the Ridge class in SciKit Learn.

  • (#) Both Lasso and Ridge (As well as LinearRegression) have the positive parameter to enforce non negative values for \(\boldsymbol{w}\).

  • (#) The SciKit Learn classes use \(\alpha\) instead of \(\lambda\) in their optimization function.

In this notebook we’ll show the effect of the regularization on the fitness level of the model.

# Parameters

# Data Generation
numSamples  = 30
noiseStd    = 17.5

vP = np.array([0.5, 0.25, 2, 5])

# Model
lPolyDeg = [3, 5, 7, 9]
       = list(np.linspace(0, 200, 1001)) #<! Pay attention that for λ = 0 it is better to use LinearRegression model (Numerical reasons)
       = [1:] #<! Prevent issues with λ = 0
numSamplesTrain = 20
numSamplesTest  = numSamples - numSamplesTrain

maximumIter = 500_000

# Data Visualization
gridNoiseStd = 0.05
numGridPts   = 500

Generate / Load Data#

In the following we’ll generate data according to the following model:

\[ y_{i} = f \left( x_{i} \right) + \epsilon_{i} \]

Where

\[ f \left( x \right) = \frac{1}{2} {x}^{3} + \frac{1}{4} {x}^{2} + 2 x + 5 \]
# The Data Generating Function

def f( vX: np.ndarray, vP: np.ndarray ):
    
    return np.polyval(vP, vX)


hF = lambda vX: f(vX, vP)
# Generate Data

vX = np.linspace(-5, 5, numSamples, endpoint = True) + (gridNoiseStd * np.random.randn(numSamples))
vN = noiseStd * np.random.randn(numSamples)
vY = hF(vX) + vN

print(f'The features data shape: {vX.shape}')
print(f'The labels data shape: {vY.shape}')
The features data shape: (30,)
The labels data shape: (30,)

Plot Data#

# Plot the Data

PlotRegressionData(vX, vY)

plt.show()
../../../../_images/15fb3ffcf48255499a764ec9ae5abd596c58e5085d4f142fc92968bedd5f20b5.png

Train Test Split#

In order to show the importance of the regularization, we’ll apply a split on the data.

# Train Test Split

mX = np.reshape(vX, (-1, 1))
mXTrain, mXTest, vYTrain, vYTest = train_test_split(mX, vY, test_size = numSamplesTest, train_size = numSamplesTrain, shuffle = True)
  • (?) What does stratify mean in the context of splitting data for regression?

Train a Regularized Polyfit Regressor#

The regularized PolyFit optimization problem is given by:

\[ \arg \min_{\boldsymbol{w}} {\left\| \boldsymbol{X} \boldsymbol{w} - \boldsymbol{y} \right|}_{2}^{2} + \lambda R \left( \boldsymbol{w} \right) \]

Where

\[\begin{split} \boldsymbol{X} = \begin{bmatrix} 1 & x_{1} & x_{1}^{2} & \cdots & x_{1}^{p} \\ 1 & x_{2} & x_{2}^{2} & \cdots & x_{2}^{p} \\ \vdots & \vdots & \vdots & & \vdots \\ 1 & x_{N} & x_{N}^{2} & \cdots & x_{N}^{p} \end{bmatrix} \end{split}\]

And \(R \left( \boldsymbol{w} \right)\) is the regularization function.

# Pipelines

# We could use the same instance of polynomial features object for both
pPolyFitL1 = Pipeline([('PolyFeatures', PolynomialFeatures(include_bias = False)), ('Regressor', Lasso(fit_intercept = True, max_iter = maximumIter))])
pPolyFitL2 = Pipeline([('PolyFeatures', PolynomialFeatures(include_bias = False)), ('Regressor', Ridge(fit_intercept = True))])

*** in optuna (optimal tuning of hyper parameters) *** we might do one pipeline with 2 regressors, one with L1 and one with L2 regularization. ????

# Score Data Frame

numComb = len(lPolyDeg) * len()
dData   = {'Poly Degree': [], 'λ': [], 'Train R2 L1 Regularization': [0.0] * numComb, 'Test R2 L1 Regularization': [0.0] * numComb, 'Train R2 L2 Regularization': [0.0] * numComb, 'Test R2 L2 Regularization': [0.0] * numComb}

for ii, polyDeg in enumerate(lPolyDeg):
    for jj, paramλ in enumerate():
        dData['Poly Degree'].append(polyDeg)
        dData['λ'].append(paramλ)
#===============================================================#

dfModelScore = pd.DataFrame(data = dData)
dfModelScore
Poly Degree λ Train R2 L1 Regularization Test R2 L1 Regularization Train R2 L2 Regularization Test R2 L2 Regularization
0 3 0.2 0.0 0.0 0.0 0.0
1 3 0.4 0.0 0.0 0.0 0.0
2 3 0.6 0.0 0.0 0.0 0.0
3 3 0.8 0.0 0.0 0.0 0.0
4 3 1.0 0.0 0.0 0.0 0.0
... ... ... ... ... ... ...
3995 9 199.2 0.0 0.0 0.0 0.0
3996 9 199.4 0.0 0.0 0.0 0.0
3997 9 199.6 0.0 0.0 0.0 0.0
3998 9 199.8 0.0 0.0 0.0 0.0
3999 9 200.0 0.0 0.0 0.0 0.0

4000 rows × 6 columns

# Scoring the Models

for ii in range(numComb):
    polyDeg  = dfModelScore.loc[ii, 'Poly Degree']
    paramλ   = dfModelScore.loc[ii, 'λ']

    print(f'Processing model {ii + 1:03d} out of {numComb} with `degree` = {polyDeg} and `λ` = {paramλ}.')

    # The `__` Trick for Pipelines
    pPolyFitL1.set_params(PolyFeatures__degree = polyDeg)
    pPolyFitL1.set_params(Regressor__alpha = paramλ)
    pPolyFitL2.set_params(PolyFeatures__degree = polyDeg)
    pPolyFitL2.set_params(Regressor__alpha = paramλ)

    pPolyFitL1.fit(mXTrain, vYTrain)
    pPolyFitL2.fit(mXTrain, vYTrain)

    dfModelScore.loc[ii, 'Train R2 L1 Regularization'] = pPolyFitL1.score(mXTrain, vYTrain)
    dfModelScore.loc[ii, 'Test R2 L1 Regularization'] = pPolyFitL1.score(mXTest, vYTest)
    dfModelScore.loc[ii, 'Train R2 L2 Regularization'] = pPolyFitL2.score(mXTrain, vYTrain)
    dfModelScore.loc[ii, 'Test R2 L2 Regularization'] = pPolyFitL2.score(mXTest, vYTest)
Processing model 001 out of 4000 with `degree` = 3 and `λ` = 0.2.
Processing model 002 out of 4000 with `degree` = 3 and `λ` = 0.4.
Processing model 003 out of 4000 with `degree` = 3 and `λ` = 0.6000000000000001.
Processing model 004 out of 4000 with `degree` = 3 and `λ` = 0.8.
Processing model 005 out of 4000 with `degree` = 3 and `λ` = 1.0.
Processing model 006 out of 4000 with `degree` = 3 and `λ` = 1.2000000000000002.
Processing model 007 out of 4000 with `degree` = 3 and `λ` = 1.4000000000000001.
Processing model 008 out of 4000 with `degree` = 3 and `λ` = 1.6.
Processing model 009 out of 4000 with `degree` = 3 and `λ` = 1.8.
Processing model 010 out of 4000 with `degree` = 3 and `λ` = 2.0.
Processing model 011 out of 4000 with `degree` = 3 and `λ` = 2.2.
Processing model 012 out of 4000 with `degree` = 3 and `λ` = 2.4000000000000004.
Processing model 013 out of 4000 with `degree` = 3 and `λ` = 2.6.
Processing model 014 out of 4000 with `degree` = 3 and `λ` = 2.8000000000000003.
Processing model 015 out of 4000 with `degree` = 3 and `λ` = 3.0.
Processing model 016 out of 4000 with `degree` = 3 and `λ` = 3.2.
Processing model 017 out of 4000 with `degree` = 3 and `λ` = 3.4000000000000004.
Processing model 018 out of 4000 with `degree` = 3 and `λ` = 3.6.
Processing model 019 out of 4000 with `degree` = 3 and `λ` = 3.8000000000000003.
Processing model 020 out of 4000 with `degree` = 3 and `λ` = 4.0.
Processing model 021 out of 4000 with `degree` = 3 and `λ` = 4.2.
Processing model 022 out of 4000 with `degree` = 3 and `λ` = 4.4.
Processing model 023 out of 4000 with `degree` = 3 and `λ` = 4.6000000000000005.
Processing model 024 out of 4000 with `degree` = 3 and `λ` = 4.800000000000001.
Processing model 025 out of 4000 with `degree` = 3 and `λ` = 5.0.
Processing model 026 out of 4000 with `degree` = 3 and `λ` = 5.2.
Processing model 027 out of 4000 with `degree` = 3 and `λ` = 5.4.
Processing model 028 out of 4000 with `degree` = 3 and `λ` = 5.6000000000000005.
Processing model 029 out of 4000 with `degree` = 3 and `λ` = 5.800000000000001.
Processing model 030 out of 4000 with `degree` = 3 and `λ` = 6.0.
Processing model 031 out of 4000 with `degree` = 3 and `λ` = 6.2.
Processing model 032 out of 4000 with `degree` = 3 and `λ` = 6.4.
Processing model 033 out of 4000 with `degree` = 3 and `λ` = 6.6000000000000005.
Processing model 034 out of 4000 with `degree` = 3 and `λ` = 6.800000000000001.
Processing model 035 out of 4000 with `degree` = 3 and `λ` = 7.0.
Processing model 036 out of 4000 with `degree` = 3 and `λ` = 7.2.
Processing model 037 out of 4000 with `degree` = 3 and `λ` = 7.4.
Processing model 038 out of 4000 with `degree` = 3 and `λ` = 7.6000000000000005.
Processing model 039 out of 4000 with `degree` = 3 and `λ` = 7.800000000000001.
Processing model 040 out of 4000 with `degree` = 3 and `λ` = 8.0.
Processing model 041 out of 4000 with `degree` = 3 and `λ` = 8.200000000000001.
Processing model 042 out of 4000 with `degree` = 3 and `λ` = 8.4.
Processing model 043 out of 4000 with `degree` = 3 and `λ` = 8.6.
Processing model 044 out of 4000 with `degree` = 3 and `λ` = 8.8.
Processing model 045 out of 4000 with `degree` = 3 and `λ` = 9.0.
Processing model 046 out of 4000 with `degree` = 3 and `λ` = 9.200000000000001.
Processing model 047 out of 4000 with `degree` = 3 and `λ` = 9.4.
Processing model 048 out of 4000 with `degree` = 3 and `λ` = 9.600000000000001.
Processing model 049 out of 4000 with `degree` = 3 and `λ` = 9.8.
Processing model 050 out of 4000 with `degree` = 3 and `λ` = 10.0.
Processing model 051 out of 4000 with `degree` = 3 and `λ` = 10.200000000000001.
Processing model 052 out of 4000 with `degree` = 3 and `λ` = 10.4.
Processing model 053 out of 4000 with `degree` = 3 and `λ` = 10.600000000000001.
Processing model 054 out of 4000 with `degree` = 3 and `λ` = 10.8.
Processing model 055 out of 4000 with `degree` = 3 and `λ` = 11.0.
Processing model 056 out of 4000 with `degree` = 3 and `λ` = 11.200000000000001.
Processing model 057 out of 4000 with `degree` = 3 and `λ` = 11.4.
Processing model 058 out of 4000 with `degree` = 3 and `λ` = 11.600000000000001.
Processing model 059 out of 4000 with `degree` = 3 and `λ` = 11.8.
Processing model 060 out of 4000 with `degree` = 3 and `λ` = 12.0.
Processing model 061 out of 4000 with `degree` = 3 and `λ` = 12.200000000000001.
Processing model 062 out of 4000 with `degree` = 3 and `λ` = 12.4.
Processing model 063 out of 4000 with `degree` = 3 and `λ` = 12.600000000000001.
Processing model 064 out of 4000 with `degree` = 3 and `λ` = 12.8.
Processing model 065 out of 4000 with `degree` = 3 and `λ` = 13.0.
Processing model 066 out of 4000 with `degree` = 3 and `λ` = 13.200000000000001.
Processing model 067 out of 4000 with `degree` = 3 and `λ` = 13.4.
Processing model 068 out of 4000 with `degree` = 3 and `λ` = 13.600000000000001.
Processing model 069 out of 4000 with `degree` = 3 and `λ` = 13.8.
Processing model 070 out of 4000 with `degree` = 3 and `λ` = 14.0.
Processing model 071 out of 4000 with `degree` = 3 and `λ` = 14.200000000000001.
Processing model 072 out of 4000 with `degree` = 3 and `λ` = 14.4.
Processing model 073 out of 4000 with `degree` = 3 and `λ` = 14.600000000000001.
Processing model 074 out of 4000 with `degree` = 3 and `λ` = 14.8.
Processing model 075 out of 4000 with `degree` = 3 and `λ` = 15.0.
Processing model 076 out of 4000 with `degree` = 3 and `λ` = 15.200000000000001.
Processing model 077 out of 4000 with `degree` = 3 and `λ` = 15.4.
Processing model 078 out of 4000 with `degree` = 3 and `λ` = 15.600000000000001.
Processing model 079 out of 4000 with `degree` = 3 and `λ` = 15.8.
Processing model 080 out of 4000 with `degree` = 3 and `λ` = 16.0.
Processing model 081 out of 4000 with `degree` = 3 and `λ` = 16.2.
Processing model 082 out of 4000 with `degree` = 3 and `λ` = 16.400000000000002.
Processing model 083 out of 4000 with `degree` = 3 and `λ` = 16.6.
Processing model 084 out of 4000 with `degree` = 3 and `λ` = 16.8.
Processing model 085 out of 4000 with `degree` = 3 and `λ` = 17.0.
Processing model 086 out of 4000 with `degree` = 3 and `λ` = 17.2.
Processing model 087 out of 4000 with `degree` = 3 and `λ` = 17.400000000000002.
Processing model 088 out of 4000 with `degree` = 3 and `λ` = 17.6.
Processing model 089 out of 4000 with `degree` = 3 and `λ` = 17.8.
Processing model 090 out of 4000 with `degree` = 3 and `λ` = 18.0.
Processing model 091 out of 4000 with `degree` = 3 and `λ` = 18.2.
Processing model 092 out of 4000 with `degree` = 3 and `λ` = 18.400000000000002.
Processing model 093 out of 4000 with `degree` = 3 and `λ` = 18.6.
Processing model 094 out of 4000 with `degree` = 3 and `λ` = 18.8.
Processing model 095 out of 4000 with `degree` = 3 and `λ` = 19.0.
Processing model 096 out of 4000 with `degree` = 3 and `λ` = 19.200000000000003.
Processing model 097 out of 4000 with `degree` = 3 and `λ` = 19.400000000000002.
Processing model 098 out of 4000 with `degree` = 3 and `λ` = 19.6.
Processing model 099 out of 4000 with `degree` = 3 and `λ` = 19.8.
Processing model 100 out of 4000 with `degree` = 3 and `λ` = 20.0.
Processing model 101 out of 4000 with `degree` = 3 and `λ` = 20.200000000000003.
Processing model 102 out of 4000 with `degree` = 3 and `λ` = 20.400000000000002.
Processing model 103 out of 4000 with `degree` = 3 and `λ` = 20.6.
Processing model 104 out of 4000 with `degree` = 3 and `λ` = 20.8.
Processing model 105 out of 4000 with `degree` = 3 and `λ` = 21.0.
Processing model 106 out of 4000 with `degree` = 3 and `λ` = 21.200000000000003.
Processing model 107 out of 4000 with `degree` = 3 and `λ` = 21.400000000000002.
Processing model 108 out of 4000 with `degree` = 3 and `λ` = 21.6.
Processing model 109 out of 4000 with `degree` = 3 and `λ` = 21.8.
Processing model 110 out of 4000 with `degree` = 3 and `λ` = 22.0.
Processing model 111 out of 4000 with `degree` = 3 and `λ` = 22.200000000000003.
Processing model 112 out of 4000 with `degree` = 3 and `λ` = 22.400000000000002.
Processing model 113 out of 4000 with `degree` = 3 and `λ` = 22.6.
Processing model 114 out of 4000 with `degree` = 3 and `λ` = 22.8.
Processing model 115 out of 4000 with `degree` = 3 and `λ` = 23.0.
Processing model 116 out of 4000 with `degree` = 3 and `λ` = 23.200000000000003.
Processing model 117 out of 4000 with `degree` = 3 and `λ` = 23.400000000000002.
Processing model 118 out of 4000 with `degree` = 3 and `λ` = 23.6.
Processing model 119 out of 4000 with `degree` = 3 and `λ` = 23.8.
Processing model 120 out of 4000 with `degree` = 3 and `λ` = 24.0.
Processing model 121 out of 4000 with `degree` = 3 and `λ` = 24.200000000000003.
Processing model 122 out of 4000 with `degree` = 3 and `λ` = 24.400000000000002.
Processing model 123 out of 4000 with `degree` = 3 and `λ` = 24.6.
Processing model 124 out of 4000 with `degree` = 3 and `λ` = 24.8.
Processing model 125 out of 4000 with `degree` = 3 and `λ` = 25.0.
Processing model 126 out of 4000 with `degree` = 3 and `λ` = 25.200000000000003.
Processing model 127 out of 4000 with `degree` = 3 and `λ` = 25.400000000000002.
Processing model 128 out of 4000 with `degree` = 3 and `λ` = 25.6.
Processing model 129 out of 4000 with `degree` = 3 and `λ` = 25.8.
Processing model 130 out of 4000 with `degree` = 3 and `λ` = 26.0.
Processing model 131 out of 4000 with `degree` = 3 and `λ` = 26.200000000000003.
Processing model 132 out of 4000 with `degree` = 3 and `λ` = 26.400000000000002.
Processing model 133 out of 4000 with `degree` = 3 and `λ` = 26.6.
Processing model 134 out of 4000 with `degree` = 3 and `λ` = 26.8.
Processing model 135 out of 4000 with `degree` = 3 and `λ` = 27.0.
Processing model 136 out of 4000 with `degree` = 3 and `λ` = 27.200000000000003.
Processing model 137 out of 4000 with `degree` = 3 and `λ` = 27.400000000000002.
Processing model 138 out of 4000 with `degree` = 3 and `λ` = 27.6.
Processing model 139 out of 4000 with `degree` = 3 and `λ` = 27.8.
Processing model 140 out of 4000 with `degree` = 3 and `λ` = 28.0.
Processing model 141 out of 4000 with `degree` = 3 and `λ` = 28.200000000000003.
Processing model 142 out of 4000 with `degree` = 3 and `λ` = 28.400000000000002.
Processing model 143 out of 4000 with `degree` = 3 and `λ` = 28.6.
Processing model 144 out of 4000 with `degree` = 3 and `λ` = 28.8.
Processing model 145 out of 4000 with `degree` = 3 and `λ` = 29.0.
Processing model 146 out of 4000 with `degree` = 3 and `λ` = 29.200000000000003.
Processing model 147 out of 4000 with `degree` = 3 and `λ` = 29.400000000000002.
Processing model 148 out of 4000 with `degree` = 3 and `λ` = 29.6.
Processing model 149 out of 4000 with `degree` = 3 and `λ` = 29.8.
Processing model 150 out of 4000 with `degree` = 3 and `λ` = 30.0.
Processing model 151 out of 4000 with `degree` = 3 and `λ` = 30.200000000000003.
Processing model 152 out of 4000 with `degree` = 3 and `λ` = 30.400000000000002.
Processing model 153 out of 4000 with `degree` = 3 and `λ` = 30.6.
Processing model 154 out of 4000 with `degree` = 3 and `λ` = 30.8.
Processing model 155 out of 4000 with `degree` = 3 and `λ` = 31.0.
Processing model 156 out of 4000 with `degree` = 3 and `λ` = 31.200000000000003.
Processing model 157 out of 4000 with `degree` = 3 and `λ` = 31.400000000000002.
Processing model 158 out of 4000 with `degree` = 3 and `λ` = 31.6.
Processing model 159 out of 4000 with `degree` = 3 and `λ` = 31.8.
Processing model 160 out of 4000 with `degree` = 3 and `λ` = 32.0.
Processing model 161 out of 4000 with `degree` = 3 and `λ` = 32.2.
Processing model 162 out of 4000 with `degree` = 3 and `λ` = 32.4.
Processing model 163 out of 4000 with `degree` = 3 and `λ` = 32.6.
Processing model 164 out of 4000 with `degree` = 3 and `λ` = 32.800000000000004.
Processing model 165 out of 4000 with `degree` = 3 and `λ` = 33.0.
Processing model 166 out of 4000 with `degree` = 3 and `λ` = 33.2.
Processing model 167 out of 4000 with `degree` = 3 and `λ` = 33.4.
Processing model 168 out of 4000 with `degree` = 3 and `λ` = 33.6.
Processing model 169 out of 4000 with `degree` = 3 and `λ` = 33.800000000000004.
Processing model 170 out of 4000 with `degree` = 3 and `λ` = 34.0.
Processing model 171 out of 4000 with `degree` = 3 and `λ` = 34.2.
Processing model 172 out of 4000 with `degree` = 3 and `λ` = 34.4.
Processing model 173 out of 4000 with `degree` = 3 and `λ` = 34.6.
Processing model 174 out of 4000 with `degree` = 3 and `λ` = 34.800000000000004.
Processing model 175 out of 4000 with `degree` = 3 and `λ` = 35.0.
Processing model 176 out of 4000 with `degree` = 3 and `λ` = 35.2.
Processing model 177 out of 4000 with `degree` = 3 and `λ` = 35.4.
Processing model 178 out of 4000 with `degree` = 3 and `λ` = 35.6.
Processing model 179 out of 4000 with `degree` = 3 and `λ` = 35.800000000000004.
Processing model 180 out of 4000 with `degree` = 3 and `λ` = 36.0.
Processing model 181 out of 4000 with `degree` = 3 and `λ` = 36.2.
Processing model 182 out of 4000 with `degree` = 3 and `λ` = 36.4.
Processing model 183 out of 4000 with `degree` = 3 and `λ` = 36.6.
Processing model 184 out of 4000 with `degree` = 3 and `λ` = 36.800000000000004.
Processing model 185 out of 4000 with `degree` = 3 and `λ` = 37.0.
Processing model 186 out of 4000 with `degree` = 3 and `λ` = 37.2.
Processing model 187 out of 4000 with `degree` = 3 and `λ` = 37.4.
Processing model 188 out of 4000 with `degree` = 3 and `λ` = 37.6.
Processing model 189 out of 4000 with `degree` = 3 and `λ` = 37.800000000000004.
Processing model 190 out of 4000 with `degree` = 3 and `λ` = 38.0.
Processing model 191 out of 4000 with `degree` = 3 and `λ` = 38.2.
Processing model 192 out of 4000 with `degree` = 3 and `λ` = 38.400000000000006.
Processing model 193 out of 4000 with `degree` = 3 and `λ` = 38.6.
Processing model 194 out of 4000 with `degree` = 3 and `λ` = 38.800000000000004.
Processing model 195 out of 4000 with `degree` = 3 and `λ` = 39.0.
Processing model 196 out of 4000 with `degree` = 3 and `λ` = 39.2.
Processing model 197 out of 4000 with `degree` = 3 and `λ` = 39.400000000000006.
Processing model 198 out of 4000 with `degree` = 3 and `λ` = 39.6.
Processing model 199 out of 4000 with `degree` = 3 and `λ` = 39.800000000000004.
Processing model 200 out of 4000 with `degree` = 3 and `λ` = 40.0.
Processing model 201 out of 4000 with `degree` = 3 and `λ` = 40.2.
Processing model 202 out of 4000 with `degree` = 3 and `λ` = 40.400000000000006.
Processing model 203 out of 4000 with `degree` = 3 and `λ` = 40.6.
Processing model 204 out of 4000 with `degree` = 3 and `λ` = 40.800000000000004.
Processing model 205 out of 4000 with `degree` = 3 and `λ` = 41.0.
Processing model 206 out of 4000 with `degree` = 3 and `λ` = 41.2.
Processing model 207 out of 4000 with `degree` = 3 and `λ` = 41.400000000000006.
Processing model 208 out of 4000 with `degree` = 3 and `λ` = 41.6.
Processing model 209 out of 4000 with `degree` = 3 and `λ` = 41.800000000000004.
Processing model 210 out of 4000 with `degree` = 3 and `λ` = 42.0.
Processing model 211 out of 4000 with `degree` = 3 and `λ` = 42.2.
Processing model 212 out of 4000 with `degree` = 3 and `λ` = 42.400000000000006.
Processing model 213 out of 4000 with `degree` = 3 and `λ` = 42.6.
Processing model 214 out of 4000 with `degree` = 3 and `λ` = 42.800000000000004.
Processing model 215 out of 4000 with `degree` = 3 and `λ` = 43.0.
Processing model 216 out of 4000 with `degree` = 3 and `λ` = 43.2.
Processing model 217 out of 4000 with `degree` = 3 and `λ` = 43.400000000000006.
Processing model 218 out of 4000 with `degree` = 3 and `λ` = 43.6.
Processing model 219 out of 4000 with `degree` = 3 and `λ` = 43.800000000000004.
Processing model 220 out of 4000 with `degree` = 3 and `λ` = 44.0.
Processing model 221 out of 4000 with `degree` = 3 and `λ` = 44.2.
Processing model 222 out of 4000 with `degree` = 3 and `λ` = 44.400000000000006.
Processing model 223 out of 4000 with `degree` = 3 and `λ` = 44.6.
Processing model 224 out of 4000 with `degree` = 3 and `λ` = 44.800000000000004.
Processing model 225 out of 4000 with `degree` = 3 and `λ` = 45.0.
Processing model 226 out of 4000 with `degree` = 3 and `λ` = 45.2.
Processing model 227 out of 4000 with `degree` = 3 and `λ` = 45.400000000000006.
Processing model 228 out of 4000 with `degree` = 3 and `λ` = 45.6.
Processing model 229 out of 4000 with `degree` = 3 and `λ` = 45.800000000000004.
Processing model 230 out of 4000 with `degree` = 3 and `λ` = 46.0.
Processing model 231 out of 4000 with `degree` = 3 and `λ` = 46.2.
Processing model 232 out of 4000 with `degree` = 3 and `λ` = 46.400000000000006.
Processing model 233 out of 4000 with `degree` = 3 and `λ` = 46.6.
Processing model 234 out of 4000 with `degree` = 3 and `λ` = 46.800000000000004.
Processing model 235 out of 4000 with `degree` = 3 and `λ` = 47.0.
Processing model 236 out of 4000 with `degree` = 3 and `λ` = 47.2.
Processing model 237 out of 4000 with `degree` = 3 and `λ` = 47.400000000000006.
Processing model 238 out of 4000 with `degree` = 3 and `λ` = 47.6.
Processing model 239 out of 4000 with `degree` = 3 and `λ` = 47.800000000000004.
Processing model 240 out of 4000 with `degree` = 3 and `λ` = 48.0.
Processing model 241 out of 4000 with `degree` = 3 and `λ` = 48.2.
Processing model 242 out of 4000 with `degree` = 3 and `λ` = 48.400000000000006.
Processing model 243 out of 4000 with `degree` = 3 and `λ` = 48.6.
Processing model 244 out of 4000 with `degree` = 3 and `λ` = 48.800000000000004.
Processing model 245 out of 4000 with `degree` = 3 and `λ` = 49.0.
Processing model 246 out of 4000 with `degree` = 3 and `λ` = 49.2.
Processing model 247 out of 4000 with `degree` = 3 and `λ` = 49.400000000000006.
Processing model 248 out of 4000 with `degree` = 3 and `λ` = 49.6.
Processing model 249 out of 4000 with `degree` = 3 and `λ` = 49.800000000000004.
Processing model 250 out of 4000 with `degree` = 3 and `λ` = 50.0.
Processing model 251 out of 4000 with `degree` = 3 and `λ` = 50.2.
Processing model 252 out of 4000 with `degree` = 3 and `λ` = 50.400000000000006.
Processing model 253 out of 4000 with `degree` = 3 and `λ` = 50.6.
Processing model 254 out of 4000 with `degree` = 3 and `λ` = 50.800000000000004.
Processing model 255 out of 4000 with `degree` = 3 and `λ` = 51.0.
Processing model 256 out of 4000 with `degree` = 3 and `λ` = 51.2.
Processing model 257 out of 4000 with `degree` = 3 and `λ` = 51.400000000000006.
Processing model 258 out of 4000 with `degree` = 3 and `λ` = 51.6.
Processing model 259 out of 4000 with `degree` = 3 and `λ` = 51.800000000000004.
Processing model 260 out of 4000 with `degree` = 3 and `λ` = 52.0.
Processing model 261 out of 4000 with `degree` = 3 and `λ` = 52.2.
Processing model 262 out of 4000 with `degree` = 3 and `λ` = 52.400000000000006.
Processing model 263 out of 4000 with `degree` = 3 and `λ` = 52.6.
Processing model 264 out of 4000 with `degree` = 3 and `λ` = 52.800000000000004.
Processing model 265 out of 4000 with `degree` = 3 and `λ` = 53.0.
Processing model 266 out of 4000 with `degree` = 3 and `λ` = 53.2.
Processing model 267 out of 4000 with `degree` = 3 and `λ` = 53.400000000000006.
Processing model 268 out of 4000 with `degree` = 3 and `λ` = 53.6.
Processing model 269 out of 4000 with `degree` = 3 and `λ` = 53.800000000000004.
Processing model 270 out of 4000 with `degree` = 3 and `λ` = 54.0.
Processing model 271 out of 4000 with `degree` = 3 and `λ` = 54.2.
Processing model 272 out of 4000 with `degree` = 3 and `λ` = 54.400000000000006.
Processing model 273 out of 4000 with `degree` = 3 and `λ` = 54.6.
Processing model 274 out of 4000 with `degree` = 3 and `λ` = 54.800000000000004.
Processing model 275 out of 4000 with `degree` = 3 and `λ` = 55.0.
Processing model 276 out of 4000 with `degree` = 3 and `λ` = 55.2.
Processing model 277 out of 4000 with `degree` = 3 and `λ` = 55.400000000000006.
Processing model 278 out of 4000 with `degree` = 3 and `λ` = 55.6.
Processing model 279 out of 4000 with `degree` = 3 and `λ` = 55.800000000000004.
Processing model 280 out of 4000 with `degree` = 3 and `λ` = 56.0.
Processing model 281 out of 4000 with `degree` = 3 and `λ` = 56.2.
Processing model 282 out of 4000 with `degree` = 3 and `λ` = 56.400000000000006.
Processing model 283 out of 4000 with `degree` = 3 and `λ` = 56.6.
Processing model 284 out of 4000 with `degree` = 3 and `λ` = 56.800000000000004.
Processing model 285 out of 4000 with `degree` = 3 and `λ` = 57.0.
Processing model 286 out of 4000 with `degree` = 3 and `λ` = 57.2.
Processing model 287 out of 4000 with `degree` = 3 and `λ` = 57.400000000000006.
Processing model 288 out of 4000 with `degree` = 3 and `λ` = 57.6.
Processing model 289 out of 4000 with `degree` = 3 and `λ` = 57.800000000000004.
Processing model 290 out of 4000 with `degree` = 3 and `λ` = 58.0.
Processing model 291 out of 4000 with `degree` = 3 and `λ` = 58.2.
Processing model 292 out of 4000 with `degree` = 3 and `λ` = 58.400000000000006.
Processing model 293 out of 4000 with `degree` = 3 and `λ` = 58.6.
Processing model 294 out of 4000 with `degree` = 3 and `λ` = 58.800000000000004.
Processing model 295 out of 4000 with `degree` = 3 and `λ` = 59.0.
Processing model 296 out of 4000 with `degree` = 3 and `λ` = 59.2.
Processing model 297 out of 4000 with `degree` = 3 and `λ` = 59.400000000000006.
Processing model 298 out of 4000 with `degree` = 3 and `λ` = 59.6.
Processing model 299 out of 4000 with `degree` = 3 and `λ` = 59.800000000000004.
Processing model 300 out of 4000 with `degree` = 3 and `λ` = 60.0.
Processing model 301 out of 4000 with `degree` = 3 and `λ` = 60.2.
Processing model 302 out of 4000 with `degree` = 3 and `λ` = 60.400000000000006.
Processing model 303 out of 4000 with `degree` = 3 and `λ` = 60.6.
Processing model 304 out of 4000 with `degree` = 3 and `λ` = 60.800000000000004.
Processing model 305 out of 4000 with `degree` = 3 and `λ` = 61.0.
Processing model 306 out of 4000 with `degree` = 3 and `λ` = 61.2.
Processing model 307 out of 4000 with `degree` = 3 and `λ` = 61.400000000000006.
Processing model 308 out of 4000 with `degree` = 3 and `λ` = 61.6.
Processing model 309 out of 4000 with `degree` = 3 and `λ` = 61.800000000000004.
Processing model 310 out of 4000 with `degree` = 3 and `λ` = 62.0.
Processing model 311 out of 4000 with `degree` = 3 and `λ` = 62.2.
Processing model 312 out of 4000 with `degree` = 3 and `λ` = 62.400000000000006.
Processing model 313 out of 4000 with `degree` = 3 and `λ` = 62.6.
Processing model 314 out of 4000 with `degree` = 3 and `λ` = 62.800000000000004.
Processing model 315 out of 4000 with `degree` = 3 and `λ` = 63.0.
Processing model 316 out of 4000 with `degree` = 3 and `λ` = 63.2.
Processing model 317 out of 4000 with `degree` = 3 and `λ` = 63.400000000000006.
Processing model 318 out of 4000 with `degree` = 3 and `λ` = 63.6.
Processing model 319 out of 4000 with `degree` = 3 and `λ` = 63.800000000000004.
Processing model 320 out of 4000 with `degree` = 3 and `λ` = 64.0.
Processing model 321 out of 4000 with `degree` = 3 and `λ` = 64.2.
Processing model 322 out of 4000 with `degree` = 3 and `λ` = 64.4.
Processing model 323 out of 4000 with `degree` = 3 and `λ` = 64.60000000000001.
Processing model 324 out of 4000 with `degree` = 3 and `λ` = 64.8.
Processing model 325 out of 4000 with `degree` = 3 and `λ` = 65.0.
Processing model 326 out of 4000 with `degree` = 3 and `λ` = 65.2.
Processing model 327 out of 4000 with `degree` = 3 and `λ` = 65.4.
Processing model 328 out of 4000 with `degree` = 3 and `λ` = 65.60000000000001.
Processing model 329 out of 4000 with `degree` = 3 and `λ` = 65.8.
Processing model 330 out of 4000 with `degree` = 3 and `λ` = 66.0.
Processing model 331 out of 4000 with `degree` = 3 and `λ` = 66.2.
Processing model 332 out of 4000 with `degree` = 3 and `λ` = 66.4.
Processing model 333 out of 4000 with `degree` = 3 and `λ` = 66.60000000000001.
Processing model 334 out of 4000 with `degree` = 3 and `λ` = 66.8.
Processing model 335 out of 4000 with `degree` = 3 and `λ` = 67.0.
Processing model 336 out of 4000 with `degree` = 3 and `λ` = 67.2.
Processing model 337 out of 4000 with `degree` = 3 and `λ` = 67.4.
Processing model 338 out of 4000 with `degree` = 3 and `λ` = 67.60000000000001.
Processing model 339 out of 4000 with `degree` = 3 and `λ` = 67.8.
Processing model 340 out of 4000 with `degree` = 3 and `λ` = 68.0.
Processing model 341 out of 4000 with `degree` = 3 and `λ` = 68.2.
Processing model 342 out of 4000 with `degree` = 3 and `λ` = 68.4.
Processing model 343 out of 4000 with `degree` = 3 and `λ` = 68.60000000000001.
Processing model 344 out of 4000 with `degree` = 3 and `λ` = 68.8.
Processing model 345 out of 4000 with `degree` = 3 and `λ` = 69.0.
Processing model 346 out of 4000 with `degree` = 3 and `λ` = 69.2.
Processing model 347 out of 4000 with `degree` = 3 and `λ` = 69.4.
Processing model 348 out of 4000 with `degree` = 3 and `λ` = 69.60000000000001.
Processing model 349 out of 4000 with `degree` = 3 and `λ` = 69.8.
Processing model 350 out of 4000 with `degree` = 3 and `λ` = 70.0.
Processing model 351 out of 4000 with `degree` = 3 and `λ` = 70.2.
Processing model 352 out of 4000 with `degree` = 3 and `λ` = 70.4.
Processing model 353 out of 4000 with `degree` = 3 and `λ` = 70.60000000000001.
Processing model 354 out of 4000 with `degree` = 3 and `λ` = 70.8.
Processing model 355 out of 4000 with `degree` = 3 and `λ` = 71.0.
Processing model 356 out of 4000 with `degree` = 3 and `λ` = 71.2.
Processing model 357 out of 4000 with `degree` = 3 and `λ` = 71.4.
Processing model 358 out of 4000 with `degree` = 3 and `λ` = 71.60000000000001.
Processing model 359 out of 4000 with `degree` = 3 and `λ` = 71.8.
Processing model 360 out of 4000 with `degree` = 3 and `λ` = 72.0.
Processing model 361 out of 4000 with `degree` = 3 and `λ` = 72.2.
Processing model 362 out of 4000 with `degree` = 3 and `λ` = 72.4.
Processing model 363 out of 4000 with `degree` = 3 and `λ` = 72.60000000000001.
Processing model 364 out of 4000 with `degree` = 3 and `λ` = 72.8.
Processing model 365 out of 4000 with `degree` = 3 and `λ` = 73.0.
Processing model 366 out of 4000 with `degree` = 3 and `λ` = 73.2.
Processing model 367 out of 4000 with `degree` = 3 and `λ` = 73.4.
Processing model 368 out of 4000 with `degree` = 3 and `λ` = 73.60000000000001.
Processing model 369 out of 4000 with `degree` = 3 and `λ` = 73.8.
Processing model 370 out of 4000 with `degree` = 3 and `λ` = 74.0.
Processing model 371 out of 4000 with `degree` = 3 and `λ` = 74.2.
Processing model 372 out of 4000 with `degree` = 3 and `λ` = 74.4.
Processing model 373 out of 4000 with `degree` = 3 and `λ` = 74.60000000000001.
Processing model 374 out of 4000 with `degree` = 3 and `λ` = 74.8.
Processing model 375 out of 4000 with `degree` = 3 and `λ` = 75.0.
Processing model 376 out of 4000 with `degree` = 3 and `λ` = 75.2.
Processing model 377 out of 4000 with `degree` = 3 and `λ` = 75.4.
Processing model 378 out of 4000 with `degree` = 3 and `λ` = 75.60000000000001.
Processing model 379 out of 4000 with `degree` = 3 and `λ` = 75.8.
Processing model 380 out of 4000 with `degree` = 3 and `λ` = 76.0.
Processing model 381 out of 4000 with `degree` = 3 and `λ` = 76.2.
Processing model 382 out of 4000 with `degree` = 3 and `λ` = 76.4.
Processing model 383 out of 4000 with `degree` = 3 and `λ` = 76.60000000000001.
Processing model 384 out of 4000 with `degree` = 3 and `λ` = 76.80000000000001.
Processing model 385 out of 4000 with `degree` = 3 and `λ` = 77.0.
Processing model 386 out of 4000 with `degree` = 3 and `λ` = 77.2.
Processing model 387 out of 4000 with `degree` = 3 and `λ` = 77.4.
Processing model 388 out of 4000 with `degree` = 3 and `λ` = 77.60000000000001.
Processing model 389 out of 4000 with `degree` = 3 and `λ` = 77.80000000000001.
Processing model 390 out of 4000 with `degree` = 3 and `λ` = 78.0.
Processing model 391 out of 4000 with `degree` = 3 and `λ` = 78.2.
Processing model 392 out of 4000 with `degree` = 3 and `λ` = 78.4.
Processing model 393 out of 4000 with `degree` = 3 and `λ` = 78.60000000000001.
Processing model 394 out of 4000 with `degree` = 3 and `λ` = 78.80000000000001.
Processing model 395 out of 4000 with `degree` = 3 and `λ` = 79.0.
Processing model 396 out of 4000 with `degree` = 3 and `λ` = 79.2.
Processing model 397 out of 4000 with `degree` = 3 and `λ` = 79.4.
Processing model 398 out of 4000 with `degree` = 3 and `λ` = 79.60000000000001.
Processing model 399 out of 4000 with `degree` = 3 and `λ` = 79.80000000000001.
Processing model 400 out of 4000 with `degree` = 3 and `λ` = 80.0.
Processing model 401 out of 4000 with `degree` = 3 and `λ` = 80.2.
Processing model 402 out of 4000 with `degree` = 3 and `λ` = 80.4.
Processing model 403 out of 4000 with `degree` = 3 and `λ` = 80.60000000000001.
Processing model 404 out of 4000 with `degree` = 3 and `λ` = 80.80000000000001.
Processing model 405 out of 4000 with `degree` = 3 and `λ` = 81.0.
Processing model 406 out of 4000 with `degree` = 3 and `λ` = 81.2.
Processing model 407 out of 4000 with `degree` = 3 and `λ` = 81.4.
Processing model 408 out of 4000 with `degree` = 3 and `λ` = 81.60000000000001.
Processing model 409 out of 4000 with `degree` = 3 and `λ` = 81.80000000000001.
Processing model 410 out of 4000 with `degree` = 3 and `λ` = 82.0.
Processing model 411 out of 4000 with `degree` = 3 and `λ` = 82.2.
Processing model 412 out of 4000 with `degree` = 3 and `λ` = 82.4.
Processing model 413 out of 4000 with `degree` = 3 and `λ` = 82.60000000000001.
Processing model 414 out of 4000 with `degree` = 3 and `λ` = 82.80000000000001.
Processing model 415 out of 4000 with `degree` = 3 and `λ` = 83.0.
Processing model 416 out of 4000 with `degree` = 3 and `λ` = 83.2.
Processing model 417 out of 4000 with `degree` = 3 and `λ` = 83.4.
Processing model 418 out of 4000 with `degree` = 3 and `λ` = 83.60000000000001.
Processing model 419 out of 4000 with `degree` = 3 and `λ` = 83.80000000000001.
Processing model 420 out of 4000 with `degree` = 3 and `λ` = 84.0.
Processing model 421 out of 4000 with `degree` = 3 and `λ` = 84.2.
Processing model 422 out of 4000 with `degree` = 3 and `λ` = 84.4.
Processing model 423 out of 4000 with `degree` = 3 and `λ` = 84.60000000000001.
Processing model 424 out of 4000 with `degree` = 3 and `λ` = 84.80000000000001.
Processing model 425 out of 4000 with `degree` = 3 and `λ` = 85.0.
Processing model 426 out of 4000 with `degree` = 3 and `λ` = 85.2.
Processing model 427 out of 4000 with `degree` = 3 and `λ` = 85.4.
Processing model 428 out of 4000 with `degree` = 3 and `λ` = 85.60000000000001.
Processing model 429 out of 4000 with `degree` = 3 and `λ` = 85.80000000000001.
Processing model 430 out of 4000 with `degree` = 3 and `λ` = 86.0.
Processing model 431 out of 4000 with `degree` = 3 and `λ` = 86.2.
Processing model 432 out of 4000 with `degree` = 3 and `λ` = 86.4.
Processing model 433 out of 4000 with `degree` = 3 and `λ` = 86.60000000000001.
Processing model 434 out of 4000 with `degree` = 3 and `λ` = 86.80000000000001.
Processing model 435 out of 4000 with `degree` = 3 and `λ` = 87.0.
Processing model 436 out of 4000 with `degree` = 3 and `λ` = 87.2.
Processing model 437 out of 4000 with `degree` = 3 and `λ` = 87.4.
Processing model 438 out of 4000 with `degree` = 3 and `λ` = 87.60000000000001.
Processing model 439 out of 4000 with `degree` = 3 and `λ` = 87.80000000000001.
Processing model 440 out of 4000 with `degree` = 3 and `λ` = 88.0.
Processing model 441 out of 4000 with `degree` = 3 and `λ` = 88.2.
Processing model 442 out of 4000 with `degree` = 3 and `λ` = 88.4.
Processing model 443 out of 4000 with `degree` = 3 and `λ` = 88.60000000000001.
Processing model 444 out of 4000 with `degree` = 3 and `λ` = 88.80000000000001.
Processing model 445 out of 4000 with `degree` = 3 and `λ` = 89.0.
Processing model 446 out of 4000 with `degree` = 3 and `λ` = 89.2.
Processing model 447 out of 4000 with `degree` = 3 and `λ` = 89.4.
Processing model 448 out of 4000 with `degree` = 3 and `λ` = 89.60000000000001.
Processing model 449 out of 4000 with `degree` = 3 and `λ` = 89.80000000000001.
Processing model 450 out of 4000 with `degree` = 3 and `λ` = 90.0.
Processing model 451 out of 4000 with `degree` = 3 and `λ` = 90.2.
Processing model 452 out of 4000 with `degree` = 3 and `λ` = 90.4.
Processing model 453 out of 4000 with `degree` = 3 and `λ` = 90.60000000000001.
Processing model 454 out of 4000 with `degree` = 3 and `λ` = 90.80000000000001.
Processing model 455 out of 4000 with `degree` = 3 and `λ` = 91.0.
Processing model 456 out of 4000 with `degree` = 3 and `λ` = 91.2.
Processing model 457 out of 4000 with `degree` = 3 and `λ` = 91.4.
Processing model 458 out of 4000 with `degree` = 3 and `λ` = 91.60000000000001.
Processing model 459 out of 4000 with `degree` = 3 and `λ` = 91.80000000000001.
Processing model 460 out of 4000 with `degree` = 3 and `λ` = 92.0.
Processing model 461 out of 4000 with `degree` = 3 and `λ` = 92.2.
Processing model 462 out of 4000 with `degree` = 3 and `λ` = 92.4.
Processing model 463 out of 4000 with `degree` = 3 and `λ` = 92.60000000000001.
Processing model 464 out of 4000 with `degree` = 3 and `λ` = 92.80000000000001.
Processing model 465 out of 4000 with `degree` = 3 and `λ` = 93.0.
Processing model 466 out of 4000 with `degree` = 3 and `λ` = 93.2.
Processing model 467 out of 4000 with `degree` = 3 and `λ` = 93.4.
Processing model 468 out of 4000 with `degree` = 3 and `λ` = 93.60000000000001.
Processing model 469 out of 4000 with `degree` = 3 and `λ` = 93.80000000000001.
Processing model 470 out of 4000 with `degree` = 3 and `λ` = 94.0.
Processing model 471 out of 4000 with `degree` = 3 and `λ` = 94.2.
Processing model 472 out of 4000 with `degree` = 3 and `λ` = 94.4.
Processing model 473 out of 4000 with `degree` = 3 and `λ` = 94.60000000000001.
Processing model 474 out of 4000 with `degree` = 3 and `λ` = 94.80000000000001.
Processing model 475 out of 4000 with `degree` = 3 and `λ` = 95.0.
Processing model 476 out of 4000 with `degree` = 3 and `λ` = 95.2.
Processing model 477 out of 4000 with `degree` = 3 and `λ` = 95.4.
Processing model 478 out of 4000 with `degree` = 3 and `λ` = 95.60000000000001.
Processing model 479 out of 4000 with `degree` = 3 and `λ` = 95.80000000000001.
Processing model 480 out of 4000 with `degree` = 3 and `λ` = 96.0.
Processing model 481 out of 4000 with `degree` = 3 and `λ` = 96.2.
Processing model 482 out of 4000 with `degree` = 3 and `λ` = 96.4.
Processing model 483 out of 4000 with `degree` = 3 and `λ` = 96.60000000000001.
Processing model 484 out of 4000 with `degree` = 3 and `λ` = 96.80000000000001.
Processing model 485 out of 4000 with `degree` = 3 and `λ` = 97.0.
Processing model 486 out of 4000 with `degree` = 3 and `λ` = 97.2.
Processing model 487 out of 4000 with `degree` = 3 and `λ` = 97.4.
Processing model 488 out of 4000 with `degree` = 3 and `λ` = 97.60000000000001.
Processing model 489 out of 4000 with `degree` = 3 and `λ` = 97.80000000000001.
Processing model 490 out of 4000 with `degree` = 3 and `λ` = 98.0.
Processing model 491 out of 4000 with `degree` = 3 and `λ` = 98.2.
Processing model 492 out of 4000 with `degree` = 3 and `λ` = 98.4.
Processing model 493 out of 4000 with `degree` = 3 and `λ` = 98.60000000000001.
Processing model 494 out of 4000 with `degree` = 3 and `λ` = 98.80000000000001.
Processing model 495 out of 4000 with `degree` = 3 and `λ` = 99.0.
Processing model 496 out of 4000 with `degree` = 3 and `λ` = 99.2.
Processing model 497 out of 4000 with `degree` = 3 and `λ` = 99.4.
Processing model 498 out of 4000 with `degree` = 3 and `λ` = 99.60000000000001.
Processing model 499 out of 4000 with `degree` = 3 and `λ` = 99.80000000000001.
Processing model 500 out of 4000 with `degree` = 3 and `λ` = 100.0.
Processing model 501 out of 4000 with `degree` = 3 and `λ` = 100.2.
Processing model 502 out of 4000 with `degree` = 3 and `λ` = 100.4.
Processing model 503 out of 4000 with `degree` = 3 and `λ` = 100.60000000000001.
Processing model 504 out of 4000 with `degree` = 3 and `λ` = 100.80000000000001.
Processing model 505 out of 4000 with `degree` = 3 and `λ` = 101.0.
Processing model 506 out of 4000 with `degree` = 3 and `λ` = 101.2.
Processing model 507 out of 4000 with `degree` = 3 and `λ` = 101.4.
Processing model 508 out of 4000 with `degree` = 3 and `λ` = 101.60000000000001.
Processing model 509 out of 4000 with `degree` = 3 and `λ` = 101.80000000000001.
Processing model 510 out of 4000 with `degree` = 3 and `λ` = 102.0.
Processing model 511 out of 4000 with `degree` = 3 and `λ` = 102.2.
Processing model 512 out of 4000 with `degree` = 3 and `λ` = 102.4.
Processing model 513 out of 4000 with `degree` = 3 and `λ` = 102.60000000000001.
Processing model 514 out of 4000 with `degree` = 3 and `λ` = 102.80000000000001.
Processing model 515 out of 4000 with `degree` = 3 and `λ` = 103.0.
Processing model 516 out of 4000 with `degree` = 3 and `λ` = 103.2.
Processing model 517 out of 4000 with `degree` = 3 and `λ` = 103.4.
Processing model 518 out of 4000 with `degree` = 3 and `λ` = 103.60000000000001.
Processing model 519 out of 4000 with `degree` = 3 and `λ` = 103.80000000000001.
Processing model 520 out of 4000 with `degree` = 3 and `λ` = 104.0.
Processing model 521 out of 4000 with `degree` = 3 and `λ` = 104.2.
Processing model 522 out of 4000 with `degree` = 3 and `λ` = 104.4.
Processing model 523 out of 4000 with `degree` = 3 and `λ` = 104.60000000000001.
Processing model 524 out of 4000 with `degree` = 3 and `λ` = 104.80000000000001.
Processing model 525 out of 4000 with `degree` = 3 and `λ` = 105.0.
Processing model 526 out of 4000 with `degree` = 3 and `λ` = 105.2.
Processing model 527 out of 4000 with `degree` = 3 and `λ` = 105.4.
Processing model 528 out of 4000 with `degree` = 3 and `λ` = 105.60000000000001.
Processing model 529 out of 4000 with `degree` = 3 and `λ` = 105.80000000000001.
Processing model 530 out of 4000 with `degree` = 3 and `λ` = 106.0.
Processing model 531 out of 4000 with `degree` = 3 and `λ` = 106.2.
Processing model 532 out of 4000 with `degree` = 3 and `λ` = 106.4.
Processing model 533 out of 4000 with `degree` = 3 and `λ` = 106.60000000000001.
Processing model 534 out of 4000 with `degree` = 3 and `λ` = 106.80000000000001.
Processing model 535 out of 4000 with `degree` = 3 and `λ` = 107.0.
Processing model 536 out of 4000 with `degree` = 3 and `λ` = 107.2.
Processing model 537 out of 4000 with `degree` = 3 and `λ` = 107.4.
Processing model 538 out of 4000 with `degree` = 3 and `λ` = 107.60000000000001.
Processing model 539 out of 4000 with `degree` = 3 and `λ` = 107.80000000000001.
Processing model 540 out of 4000 with `degree` = 3 and `λ` = 108.0.
Processing model 541 out of 4000 with `degree` = 3 and `λ` = 108.2.
Processing model 542 out of 4000 with `degree` = 3 and `λ` = 108.4.
Processing model 543 out of 4000 with `degree` = 3 and `λ` = 108.60000000000001.
Processing model 544 out of 4000 with `degree` = 3 and `λ` = 108.80000000000001.
Processing model 545 out of 4000 with `degree` = 3 and `λ` = 109.0.
Processing model 546 out of 4000 with `degree` = 3 and `λ` = 109.2.
Processing model 547 out of 4000 with `degree` = 3 and `λ` = 109.4.
Processing model 548 out of 4000 with `degree` = 3 and `λ` = 109.60000000000001.
Processing model 549 out of 4000 with `degree` = 3 and `λ` = 109.80000000000001.
Processing model 550 out of 4000 with `degree` = 3 and `λ` = 110.0.
Processing model 551 out of 4000 with `degree` = 3 and `λ` = 110.2.
Processing model 552 out of 4000 with `degree` = 3 and `λ` = 110.4.
Processing model 553 out of 4000 with `degree` = 3 and `λ` = 110.60000000000001.
Processing model 554 out of 4000 with `degree` = 3 and `λ` = 110.80000000000001.
Processing model 555 out of 4000 with `degree` = 3 and `λ` = 111.0.
Processing model 556 out of 4000 with `degree` = 3 and `λ` = 111.2.
Processing model 557 out of 4000 with `degree` = 3 and `λ` = 111.4.
Processing model 558 out of 4000 with `degree` = 3 and `λ` = 111.60000000000001.
Processing model 559 out of 4000 with `degree` = 3 and `λ` = 111.80000000000001.
Processing model 560 out of 4000 with `degree` = 3 and `λ` = 112.0.
Processing model 561 out of 4000 with `degree` = 3 and `λ` = 112.2.
Processing model 562 out of 4000 with `degree` = 3 and `λ` = 112.4.
Processing model 563 out of 4000 with `degree` = 3 and `λ` = 112.60000000000001.
Processing model 564 out of 4000 with `degree` = 3 and `λ` = 112.80000000000001.
Processing model 565 out of 4000 with `degree` = 3 and `λ` = 113.0.
Processing model 566 out of 4000 with `degree` = 3 and `λ` = 113.2.
Processing model 567 out of 4000 with `degree` = 3 and `λ` = 113.4.
Processing model 568 out of 4000 with `degree` = 3 and `λ` = 113.60000000000001.
Processing model 569 out of 4000 with `degree` = 3 and `λ` = 113.80000000000001.
Processing model 570 out of 4000 with `degree` = 3 and `λ` = 114.0.
Processing model 571 out of 4000 with `degree` = 3 and `λ` = 114.2.
Processing model 572 out of 4000 with `degree` = 3 and `λ` = 114.4.
Processing model 573 out of 4000 with `degree` = 3 and `λ` = 114.60000000000001.
Processing model 574 out of 4000 with `degree` = 3 and `λ` = 114.80000000000001.
Processing model 575 out of 4000 with `degree` = 3 and `λ` = 115.0.
Processing model 576 out of 4000 with `degree` = 3 and `λ` = 115.2.
Processing model 577 out of 4000 with `degree` = 3 and `λ` = 115.4.
Processing model 578 out of 4000 with `degree` = 3 and `λ` = 115.60000000000001.
Processing model 579 out of 4000 with `degree` = 3 and `λ` = 115.80000000000001.
Processing model 580 out of 4000 with `degree` = 3 and `λ` = 116.0.
Processing model 581 out of 4000 with `degree` = 3 and `λ` = 116.2.
Processing model 582 out of 4000 with `degree` = 3 and `λ` = 116.4.
Processing model 583 out of 4000 with `degree` = 3 and `λ` = 116.60000000000001.
Processing model 584 out of 4000 with `degree` = 3 and `λ` = 116.80000000000001.
Processing model 585 out of 4000 with `degree` = 3 and `λ` = 117.0.
Processing model 586 out of 4000 with `degree` = 3 and `λ` = 117.2.
Processing model 587 out of 4000 with `degree` = 3 and `λ` = 117.4.
Processing model 588 out of 4000 with `degree` = 3 and `λ` = 117.60000000000001.
Processing model 589 out of 4000 with `degree` = 3 and `λ` = 117.80000000000001.
Processing model 590 out of 4000 with `degree` = 3 and `λ` = 118.0.
Processing model 591 out of 4000 with `degree` = 3 and `λ` = 118.2.
Processing model 592 out of 4000 with `degree` = 3 and `λ` = 118.4.
Processing model 593 out of 4000 with `degree` = 3 and `λ` = 118.60000000000001.
Processing model 594 out of 4000 with `degree` = 3 and `λ` = 118.80000000000001.
Processing model 595 out of 4000 with `degree` = 3 and `λ` = 119.0.
Processing model 596 out of 4000 with `degree` = 3 and `λ` = 119.2.
Processing model 597 out of 4000 with `degree` = 3 and `λ` = 119.4.
Processing model 598 out of 4000 with `degree` = 3 and `λ` = 119.60000000000001.
Processing model 599 out of 4000 with `degree` = 3 and `λ` = 119.80000000000001.
Processing model 600 out of 4000 with `degree` = 3 and `λ` = 120.0.
Processing model 601 out of 4000 with `degree` = 3 and `λ` = 120.2.
Processing model 602 out of 4000 with `degree` = 3 and `λ` = 120.4.
Processing model 603 out of 4000 with `degree` = 3 and `λ` = 120.60000000000001.
Processing model 604 out of 4000 with `degree` = 3 and `λ` = 120.80000000000001.
Processing model 605 out of 4000 with `degree` = 3 and `λ` = 121.0.
Processing model 606 out of 4000 with `degree` = 3 and `λ` = 121.2.
Processing model 607 out of 4000 with `degree` = 3 and `λ` = 121.4.
Processing model 608 out of 4000 with `degree` = 3 and `λ` = 121.60000000000001.
Processing model 609 out of 4000 with `degree` = 3 and `λ` = 121.80000000000001.
Processing model 610 out of 4000 with `degree` = 3 and `λ` = 122.0.
Processing model 611 out of 4000 with `degree` = 3 and `λ` = 122.2.
Processing model 612 out of 4000 with `degree` = 3 and `λ` = 122.4.
Processing model 613 out of 4000 with `degree` = 3 and `λ` = 122.60000000000001.
Processing model 614 out of 4000 with `degree` = 3 and `λ` = 122.80000000000001.
Processing model 615 out of 4000 with `degree` = 3 and `λ` = 123.0.
Processing model 616 out of 4000 with `degree` = 3 and `λ` = 123.2.
Processing model 617 out of 4000 with `degree` = 3 and `λ` = 123.4.
Processing model 618 out of 4000 with `degree` = 3 and `λ` = 123.60000000000001.
Processing model 619 out of 4000 with `degree` = 3 and `λ` = 123.80000000000001.
Processing model 620 out of 4000 with `degree` = 3 and `λ` = 124.0.
Processing model 621 out of 4000 with `degree` = 3 and `λ` = 124.2.
Processing model 622 out of 4000 with `degree` = 3 and `λ` = 124.4.
Processing model 623 out of 4000 with `degree` = 3 and `λ` = 124.60000000000001.
Processing model 624 out of 4000 with `degree` = 3 and `λ` = 124.80000000000001.
Processing model 625 out of 4000 with `degree` = 3 and `λ` = 125.0.
Processing model 626 out of 4000 with `degree` = 3 and `λ` = 125.2.
Processing model 627 out of 4000 with `degree` = 3 and `λ` = 125.4.
Processing model 628 out of 4000 with `degree` = 3 and `λ` = 125.60000000000001.
Processing model 629 out of 4000 with `degree` = 3 and `λ` = 125.80000000000001.
Processing model 630 out of 4000 with `degree` = 3 and `λ` = 126.0.
Processing model 631 out of 4000 with `degree` = 3 and `λ` = 126.2.
Processing model 632 out of 4000 with `degree` = 3 and `λ` = 126.4.
Processing model 633 out of 4000 with `degree` = 3 and `λ` = 126.60000000000001.
Processing model 634 out of 4000 with `degree` = 3 and `λ` = 126.80000000000001.
Processing model 635 out of 4000 with `degree` = 3 and `λ` = 127.0.
Processing model 636 out of 4000 with `degree` = 3 and `λ` = 127.2.
Processing model 637 out of 4000 with `degree` = 3 and `λ` = 127.4.
Processing model 638 out of 4000 with `degree` = 3 and `λ` = 127.60000000000001.
Processing model 639 out of 4000 with `degree` = 3 and `λ` = 127.80000000000001.
Processing model 640 out of 4000 with `degree` = 3 and `λ` = 128.0.
Processing model 641 out of 4000 with `degree` = 3 and `λ` = 128.20000000000002.
Processing model 642 out of 4000 with `degree` = 3 and `λ` = 128.4.
Processing model 643 out of 4000 with `degree` = 3 and `λ` = 128.6.
Processing model 644 out of 4000 with `degree` = 3 and `λ` = 128.8.
Processing model 645 out of 4000 with `degree` = 3 and `λ` = 129.0.
Processing model 646 out of 4000 with `degree` = 3 and `λ` = 129.20000000000002.
Processing model 647 out of 4000 with `degree` = 3 and `λ` = 129.4.
Processing model 648 out of 4000 with `degree` = 3 and `λ` = 129.6.
Processing model 649 out of 4000 with `degree` = 3 and `λ` = 129.8.
Processing model 650 out of 4000 with `degree` = 3 and `λ` = 130.0.
Processing model 651 out of 4000 with `degree` = 3 and `λ` = 130.20000000000002.
Processing model 652 out of 4000 with `degree` = 3 and `λ` = 130.4.
Processing model 653 out of 4000 with `degree` = 3 and `λ` = 130.6.
Processing model 654 out of 4000 with `degree` = 3 and `λ` = 130.8.
Processing model 655 out of 4000 with `degree` = 3 and `λ` = 131.0.
Processing model 656 out of 4000 with `degree` = 3 and `λ` = 131.20000000000002.
Processing model 657 out of 4000 with `degree` = 3 and `λ` = 131.4.
Processing model 658 out of 4000 with `degree` = 3 and `λ` = 131.6.
Processing model 659 out of 4000 with `degree` = 3 and `λ` = 131.8.
Processing model 660 out of 4000 with `degree` = 3 and `λ` = 132.0.
Processing model 661 out of 4000 with `degree` = 3 and `λ` = 132.20000000000002.
Processing model 662 out of 4000 with `degree` = 3 and `λ` = 132.4.
Processing model 663 out of 4000 with `degree` = 3 and `λ` = 132.6.
Processing model 664 out of 4000 with `degree` = 3 and `λ` = 132.8.
Processing model 665 out of 4000 with `degree` = 3 and `λ` = 133.0.
Processing model 666 out of 4000 with `degree` = 3 and `λ` = 133.20000000000002.
Processing model 667 out of 4000 with `degree` = 3 and `λ` = 133.4.
Processing model 668 out of 4000 with `degree` = 3 and `λ` = 133.6.
Processing model 669 out of 4000 with `degree` = 3 and `λ` = 133.8.
Processing model 670 out of 4000 with `degree` = 3 and `λ` = 134.0.
Processing model 671 out of 4000 with `degree` = 3 and `λ` = 134.20000000000002.
Processing model 672 out of 4000 with `degree` = 3 and `λ` = 134.4.
Processing model 673 out of 4000 with `degree` = 3 and `λ` = 134.6.
Processing model 674 out of 4000 with `degree` = 3 and `λ` = 134.8.
Processing model 675 out of 4000 with `degree` = 3 and `λ` = 135.0.
Processing model 676 out of 4000 with `degree` = 3 and `λ` = 135.20000000000002.
Processing model 677 out of 4000 with `degree` = 3 and `λ` = 135.4.
Processing model 678 out of 4000 with `degree` = 3 and `λ` = 135.6.
Processing model 679 out of 4000 with `degree` = 3 and `λ` = 135.8.
Processing model 680 out of 4000 with `degree` = 3 and `λ` = 136.0.
Processing model 681 out of 4000 with `degree` = 3 and `λ` = 136.20000000000002.
Processing model 682 out of 4000 with `degree` = 3 and `λ` = 136.4.
Processing model 683 out of 4000 with `degree` = 3 and `λ` = 136.6.
Processing model 684 out of 4000 with `degree` = 3 and `λ` = 136.8.
Processing model 685 out of 4000 with `degree` = 3 and `λ` = 137.0.
Processing model 686 out of 4000 with `degree` = 3 and `λ` = 137.20000000000002.
Processing model 687 out of 4000 with `degree` = 3 and `λ` = 137.4.
Processing model 688 out of 4000 with `degree` = 3 and `λ` = 137.6.
Processing model 689 out of 4000 with `degree` = 3 and `λ` = 137.8.
Processing model 690 out of 4000 with `degree` = 3 and `λ` = 138.0.
Processing model 691 out of 4000 with `degree` = 3 and `λ` = 138.20000000000002.
Processing model 692 out of 4000 with `degree` = 3 and `λ` = 138.4.
Processing model 693 out of 4000 with `degree` = 3 and `λ` = 138.6.
Processing model 694 out of 4000 with `degree` = 3 and `λ` = 138.8.
Processing model 695 out of 4000 with `degree` = 3 and `λ` = 139.0.
Processing model 696 out of 4000 with `degree` = 3 and `λ` = 139.20000000000002.
Processing model 697 out of 4000 with `degree` = 3 and `λ` = 139.4.
Processing model 698 out of 4000 with `degree` = 3 and `λ` = 139.6.
Processing model 699 out of 4000 with `degree` = 3 and `λ` = 139.8.
Processing model 700 out of 4000 with `degree` = 3 and `λ` = 140.0.
Processing model 701 out of 4000 with `degree` = 3 and `λ` = 140.20000000000002.
Processing model 702 out of 4000 with `degree` = 3 and `λ` = 140.4.
Processing model 703 out of 4000 with `degree` = 3 and `λ` = 140.6.
Processing model 704 out of 4000 with `degree` = 3 and `λ` = 140.8.
Processing model 705 out of 4000 with `degree` = 3 and `λ` = 141.0.
Processing model 706 out of 4000 with `degree` = 3 and `λ` = 141.20000000000002.
Processing model 707 out of 4000 with `degree` = 3 and `λ` = 141.4.
Processing model 708 out of 4000 with `degree` = 3 and `λ` = 141.6.
Processing model 709 out of 4000 with `degree` = 3 and `λ` = 141.8.
Processing model 710 out of 4000 with `degree` = 3 and `λ` = 142.0.
Processing model 711 out of 4000 with `degree` = 3 and `λ` = 142.20000000000002.
Processing model 712 out of 4000 with `degree` = 3 and `λ` = 142.4.
Processing model 713 out of 4000 with `degree` = 3 and `λ` = 142.6.
Processing model 714 out of 4000 with `degree` = 3 and `λ` = 142.8.
Processing model 715 out of 4000 with `degree` = 3 and `λ` = 143.0.
Processing model 716 out of 4000 with `degree` = 3 and `λ` = 143.20000000000002.
Processing model 717 out of 4000 with `degree` = 3 and `λ` = 143.4.
Processing model 718 out of 4000 with `degree` = 3 and `λ` = 143.6.
Processing model 719 out of 4000 with `degree` = 3 and `λ` = 143.8.
Processing model 720 out of 4000 with `degree` = 3 and `λ` = 144.0.
Processing model 721 out of 4000 with `degree` = 3 and `λ` = 144.20000000000002.
Processing model 722 out of 4000 with `degree` = 3 and `λ` = 144.4.
Processing model 723 out of 4000 with `degree` = 3 and `λ` = 144.6.
Processing model 724 out of 4000 with `degree` = 3 and `λ` = 144.8.
Processing model 725 out of 4000 with `degree` = 3 and `λ` = 145.0.
Processing model 726 out of 4000 with `degree` = 3 and `λ` = 145.20000000000002.
Processing model 727 out of 4000 with `degree` = 3 and `λ` = 145.4.
Processing model 728 out of 4000 with `degree` = 3 and `λ` = 145.6.
Processing model 729 out of 4000 with `degree` = 3 and `λ` = 145.8.
Processing model 730 out of 4000 with `degree` = 3 and `λ` = 146.0.
Processing model 731 out of 4000 with `degree` = 3 and `λ` = 146.20000000000002.
Processing model 732 out of 4000 with `degree` = 3 and `λ` = 146.4.
Processing model 733 out of 4000 with `degree` = 3 and `λ` = 146.6.
Processing model 734 out of 4000 with `degree` = 3 and `λ` = 146.8.
Processing model 735 out of 4000 with `degree` = 3 and `λ` = 147.0.
Processing model 736 out of 4000 with `degree` = 3 and `λ` = 147.20000000000002.
Processing model 737 out of 4000 with `degree` = 3 and `λ` = 147.4.
Processing model 738 out of 4000 with `degree` = 3 and `λ` = 147.6.
Processing model 739 out of 4000 with `degree` = 3 and `λ` = 147.8.
Processing model 740 out of 4000 with `degree` = 3 and `λ` = 148.0.
Processing model 741 out of 4000 with `degree` = 3 and `λ` = 148.20000000000002.
Processing model 742 out of 4000 with `degree` = 3 and `λ` = 148.4.
Processing model 743 out of 4000 with `degree` = 3 and `λ` = 148.6.
Processing model 744 out of 4000 with `degree` = 3 and `λ` = 148.8.
Processing model 745 out of 4000 with `degree` = 3 and `λ` = 149.0.
Processing model 746 out of 4000 with `degree` = 3 and `λ` = 149.20000000000002.
Processing model 747 out of 4000 with `degree` = 3 and `λ` = 149.4.
Processing model 748 out of 4000 with `degree` = 3 and `λ` = 149.6.
Processing model 749 out of 4000 with `degree` = 3 and `λ` = 149.8.
Processing model 750 out of 4000 with `degree` = 3 and `λ` = 150.0.
Processing model 751 out of 4000 with `degree` = 3 and `λ` = 150.20000000000002.
Processing model 752 out of 4000 with `degree` = 3 and `λ` = 150.4.
Processing model 753 out of 4000 with `degree` = 3 and `λ` = 150.6.
Processing model 754 out of 4000 with `degree` = 3 and `λ` = 150.8.
Processing model 755 out of 4000 with `degree` = 3 and `λ` = 151.0.
Processing model 756 out of 4000 with `degree` = 3 and `λ` = 151.20000000000002.
Processing model 757 out of 4000 with `degree` = 3 and `λ` = 151.4.
Processing model 758 out of 4000 with `degree` = 3 and `λ` = 151.6.
Processing model 759 out of 4000 with `degree` = 3 and `λ` = 151.8.
Processing model 760 out of 4000 with `degree` = 3 and `λ` = 152.0.
Processing model 761 out of 4000 with `degree` = 3 and `λ` = 152.20000000000002.
Processing model 762 out of 4000 with `degree` = 3 and `λ` = 152.4.
Processing model 763 out of 4000 with `degree` = 3 and `λ` = 152.6.
Processing model 764 out of 4000 with `degree` = 3 and `λ` = 152.8.
Processing model 765 out of 4000 with `degree` = 3 and `λ` = 153.0.
Processing model 766 out of 4000 with `degree` = 3 and `λ` = 153.20000000000002.
Processing model 767 out of 4000 with `degree` = 3 and `λ` = 153.4.
Processing model 768 out of 4000 with `degree` = 3 and `λ` = 153.60000000000002.
Processing model 769 out of 4000 with `degree` = 3 and `λ` = 153.8.
Processing model 770 out of 4000 with `degree` = 3 and `λ` = 154.0.
Processing model 771 out of 4000 with `degree` = 3 and `λ` = 154.20000000000002.
Processing model 772 out of 4000 with `degree` = 3 and `λ` = 154.4.
Processing model 773 out of 4000 with `degree` = 3 and `λ` = 154.60000000000002.
Processing model 774 out of 4000 with `degree` = 3 and `λ` = 154.8.
Processing model 775 out of 4000 with `degree` = 3 and `λ` = 155.0.
Processing model 776 out of 4000 with `degree` = 3 and `λ` = 155.20000000000002.
Processing model 777 out of 4000 with `degree` = 3 and `λ` = 155.4.
Processing model 778 out of 4000 with `degree` = 3 and `λ` = 155.60000000000002.
Processing model 779 out of 4000 with `degree` = 3 and `λ` = 155.8.
Processing model 780 out of 4000 with `degree` = 3 and `λ` = 156.0.
Processing model 781 out of 4000 with `degree` = 3 and `λ` = 156.20000000000002.
Processing model 782 out of 4000 with `degree` = 3 and `λ` = 156.4.
Processing model 783 out of 4000 with `degree` = 3 and `λ` = 156.60000000000002.
Processing model 784 out of 4000 with `degree` = 3 and `λ` = 156.8.
Processing model 785 out of 4000 with `degree` = 3 and `λ` = 157.0.
Processing model 786 out of 4000 with `degree` = 3 and `λ` = 157.20000000000002.
Processing model 787 out of 4000 with `degree` = 3 and `λ` = 157.4.
Processing model 788 out of 4000 with `degree` = 3 and `λ` = 157.60000000000002.
Processing model 789 out of 4000 with `degree` = 3 and `λ` = 157.8.
Processing model 790 out of 4000 with `degree` = 3 and `λ` = 158.0.
Processing model 791 out of 4000 with `degree` = 3 and `λ` = 158.20000000000002.
Processing model 792 out of 4000 with `degree` = 3 and `λ` = 158.4.
Processing model 793 out of 4000 with `degree` = 3 and `λ` = 158.60000000000002.
Processing model 794 out of 4000 with `degree` = 3 and `λ` = 158.8.
Processing model 795 out of 4000 with `degree` = 3 and `λ` = 159.0.
Processing model 796 out of 4000 with `degree` = 3 and `λ` = 159.20000000000002.
Processing model 797 out of 4000 with `degree` = 3 and `λ` = 159.4.
Processing model 798 out of 4000 with `degree` = 3 and `λ` = 159.60000000000002.
Processing model 799 out of 4000 with `degree` = 3 and `λ` = 159.8.
Processing model 800 out of 4000 with `degree` = 3 and `λ` = 160.0.
Processing model 801 out of 4000 with `degree` = 3 and `λ` = 160.20000000000002.
Processing model 802 out of 4000 with `degree` = 3 and `λ` = 160.4.
Processing model 803 out of 4000 with `degree` = 3 and `λ` = 160.60000000000002.
Processing model 804 out of 4000 with `degree` = 3 and `λ` = 160.8.
Processing model 805 out of 4000 with `degree` = 3 and `λ` = 161.0.
Processing model 806 out of 4000 with `degree` = 3 and `λ` = 161.20000000000002.
Processing model 807 out of 4000 with `degree` = 3 and `λ` = 161.4.
Processing model 808 out of 4000 with `degree` = 3 and `λ` = 161.60000000000002.
Processing model 809 out of 4000 with `degree` = 3 and `λ` = 161.8.
Processing model 810 out of 4000 with `degree` = 3 and `λ` = 162.0.
Processing model 811 out of 4000 with `degree` = 3 and `λ` = 162.20000000000002.
Processing model 812 out of 4000 with `degree` = 3 and `λ` = 162.4.
Processing model 813 out of 4000 with `degree` = 3 and `λ` = 162.60000000000002.
Processing model 814 out of 4000 with `degree` = 3 and `λ` = 162.8.
Processing model 815 out of 4000 with `degree` = 3 and `λ` = 163.0.
Processing model 816 out of 4000 with `degree` = 3 and `λ` = 163.20000000000002.
Processing model 817 out of 4000 with `degree` = 3 and `λ` = 163.4.
Processing model 818 out of 4000 with `degree` = 3 and `λ` = 163.60000000000002.
Processing model 819 out of 4000 with `degree` = 3 and `λ` = 163.8.
Processing model 820 out of 4000 with `degree` = 3 and `λ` = 164.0.
Processing model 821 out of 4000 with `degree` = 3 and `λ` = 164.20000000000002.
Processing model 822 out of 4000 with `degree` = 3 and `λ` = 164.4.
Processing model 823 out of 4000 with `degree` = 3 and `λ` = 164.60000000000002.
Processing model 824 out of 4000 with `degree` = 3 and `λ` = 164.8.
Processing model 825 out of 4000 with `degree` = 3 and `λ` = 165.0.
Processing model 826 out of 4000 with `degree` = 3 and `λ` = 165.20000000000002.
Processing model 827 out of 4000 with `degree` = 3 and `λ` = 165.4.
Processing model 828 out of 4000 with `degree` = 3 and `λ` = 165.60000000000002.
Processing model 829 out of 4000 with `degree` = 3 and `λ` = 165.8.
Processing model 830 out of 4000 with `degree` = 3 and `λ` = 166.0.
Processing model 831 out of 4000 with `degree` = 3 and `λ` = 166.20000000000002.
Processing model 832 out of 4000 with `degree` = 3 and `λ` = 166.4.
Processing model 833 out of 4000 with `degree` = 3 and `λ` = 166.60000000000002.
Processing model 834 out of 4000 with `degree` = 3 and `λ` = 166.8.
Processing model 835 out of 4000 with `degree` = 3 and `λ` = 167.0.
Processing model 836 out of 4000 with `degree` = 3 and `λ` = 167.20000000000002.
Processing model 837 out of 4000 with `degree` = 3 and `λ` = 167.4.
Processing model 838 out of 4000 with `degree` = 3 and `λ` = 167.60000000000002.
Processing model 839 out of 4000 with `degree` = 3 and `λ` = 167.8.
Processing model 840 out of 4000 with `degree` = 3 and `λ` = 168.0.
Processing model 841 out of 4000 with `degree` = 3 and `λ` = 168.20000000000002.
Processing model 842 out of 4000 with `degree` = 3 and `λ` = 168.4.
Processing model 843 out of 4000 with `degree` = 3 and `λ` = 168.60000000000002.
Processing model 844 out of 4000 with `degree` = 3 and `λ` = 168.8.
Processing model 845 out of 4000 with `degree` = 3 and `λ` = 169.0.
Processing model 846 out of 4000 with `degree` = 3 and `λ` = 169.20000000000002.
Processing model 847 out of 4000 with `degree` = 3 and `λ` = 169.4.
Processing model 848 out of 4000 with `degree` = 3 and `λ` = 169.60000000000002.
Processing model 849 out of 4000 with `degree` = 3 and `λ` = 169.8.
Processing model 850 out of 4000 with `degree` = 3 and `λ` = 170.0.
Processing model 851 out of 4000 with `degree` = 3 and `λ` = 170.20000000000002.
Processing model 852 out of 4000 with `degree` = 3 and `λ` = 170.4.
Processing model 853 out of 4000 with `degree` = 3 and `λ` = 170.60000000000002.
Processing model 854 out of 4000 with `degree` = 3 and `λ` = 170.8.
Processing model 855 out of 4000 with `degree` = 3 and `λ` = 171.0.
Processing model 856 out of 4000 with `degree` = 3 and `λ` = 171.20000000000002.
Processing model 857 out of 4000 with `degree` = 3 and `λ` = 171.4.
Processing model 858 out of 4000 with `degree` = 3 and `λ` = 171.60000000000002.
Processing model 859 out of 4000 with `degree` = 3 and `λ` = 171.8.
Processing model 860 out of 4000 with `degree` = 3 and `λ` = 172.0.
Processing model 861 out of 4000 with `degree` = 3 and `λ` = 172.20000000000002.
Processing model 862 out of 4000 with `degree` = 3 and `λ` = 172.4.
Processing model 863 out of 4000 with `degree` = 3 and `λ` = 172.60000000000002.
Processing model 864 out of 4000 with `degree` = 3 and `λ` = 172.8.
Processing model 865 out of 4000 with `degree` = 3 and `λ` = 173.0.
Processing model 866 out of 4000 with `degree` = 3 and `λ` = 173.20000000000002.
Processing model 867 out of 4000 with `degree` = 3 and `λ` = 173.4.
Processing model 868 out of 4000 with `degree` = 3 and `λ` = 173.60000000000002.
Processing model 869 out of 4000 with `degree` = 3 and `λ` = 173.8.
Processing model 870 out of 4000 with `degree` = 3 and `λ` = 174.0.
Processing model 871 out of 4000 with `degree` = 3 and `λ` = 174.20000000000002.
Processing model 872 out of 4000 with `degree` = 3 and `λ` = 174.4.
Processing model 873 out of 4000 with `degree` = 3 and `λ` = 174.60000000000002.
Processing model 874 out of 4000 with `degree` = 3 and `λ` = 174.8.
Processing model 875 out of 4000 with `degree` = 3 and `λ` = 175.0.
Processing model 876 out of 4000 with `degree` = 3 and `λ` = 175.20000000000002.
Processing model 877 out of 4000 with `degree` = 3 and `λ` = 175.4.
Processing model 878 out of 4000 with `degree` = 3 and `λ` = 175.60000000000002.
Processing model 879 out of 4000 with `degree` = 3 and `λ` = 175.8.
Processing model 880 out of 4000 with `degree` = 3 and `λ` = 176.0.
Processing model 881 out of 4000 with `degree` = 3 and `λ` = 176.20000000000002.
Processing model 882 out of 4000 with `degree` = 3 and `λ` = 176.4.
Processing model 883 out of 4000 with `degree` = 3 and `λ` = 176.60000000000002.
Processing model 884 out of 4000 with `degree` = 3 and `λ` = 176.8.
Processing model 885 out of 4000 with `degree` = 3 and `λ` = 177.0.
Processing model 886 out of 4000 with `degree` = 3 and `λ` = 177.20000000000002.
Processing model 887 out of 4000 with `degree` = 3 and `λ` = 177.4.
Processing model 888 out of 4000 with `degree` = 3 and `λ` = 177.60000000000002.
Processing model 889 out of 4000 with `degree` = 3 and `λ` = 177.8.
Processing model 890 out of 4000 with `degree` = 3 and `λ` = 178.0.
Processing model 891 out of 4000 with `degree` = 3 and `λ` = 178.20000000000002.
Processing model 892 out of 4000 with `degree` = 3 and `λ` = 178.4.
Processing model 893 out of 4000 with `degree` = 3 and `λ` = 178.60000000000002.
Processing model 894 out of 4000 with `degree` = 3 and `λ` = 178.8.
Processing model 895 out of 4000 with `degree` = 3 and `λ` = 179.0.
Processing model 896 out of 4000 with `degree` = 3 and `λ` = 179.20000000000002.
Processing model 897 out of 4000 with `degree` = 3 and `λ` = 179.4.
Processing model 898 out of 4000 with `degree` = 3 and `λ` = 179.60000000000002.
Processing model 899 out of 4000 with `degree` = 3 and `λ` = 179.8.
Processing model 900 out of 4000 with `degree` = 3 and `λ` = 180.0.
Processing model 901 out of 4000 with `degree` = 3 and `λ` = 180.20000000000002.
Processing model 902 out of 4000 with `degree` = 3 and `λ` = 180.4.
Processing model 903 out of 4000 with `degree` = 3 and `λ` = 180.60000000000002.
Processing model 904 out of 4000 with `degree` = 3 and `λ` = 180.8.
Processing model 905 out of 4000 with `degree` = 3 and `λ` = 181.0.
Processing model 906 out of 4000 with `degree` = 3 and `λ` = 181.20000000000002.
Processing model 907 out of 4000 with `degree` = 3 and `λ` = 181.4.
Processing model 908 out of 4000 with `degree` = 3 and `λ` = 181.60000000000002.
Processing model 909 out of 4000 with `degree` = 3 and `λ` = 181.8.
Processing model 910 out of 4000 with `degree` = 3 and `λ` = 182.0.
Processing model 911 out of 4000 with `degree` = 3 and `λ` = 182.20000000000002.
Processing model 912 out of 4000 with `degree` = 3 and `λ` = 182.4.
Processing model 913 out of 4000 with `degree` = 3 and `λ` = 182.60000000000002.
Processing model 914 out of 4000 with `degree` = 3 and `λ` = 182.8.
Processing model 915 out of 4000 with `degree` = 3 and `λ` = 183.0.
Processing model 916 out of 4000 with `degree` = 3 and `λ` = 183.20000000000002.
Processing model 917 out of 4000 with `degree` = 3 and `λ` = 183.4.
Processing model 918 out of 4000 with `degree` = 3 and `λ` = 183.60000000000002.
Processing model 919 out of 4000 with `degree` = 3 and `λ` = 183.8.
Processing model 920 out of 4000 with `degree` = 3 and `λ` = 184.0.
Processing model 921 out of 4000 with `degree` = 3 and `λ` = 184.20000000000002.
Processing model 922 out of 4000 with `degree` = 3 and `λ` = 184.4.
Processing model 923 out of 4000 with `degree` = 3 and `λ` = 184.60000000000002.
Processing model 924 out of 4000 with `degree` = 3 and `λ` = 184.8.
Processing model 925 out of 4000 with `degree` = 3 and `λ` = 185.0.
Processing model 926 out of 4000 with `degree` = 3 and `λ` = 185.20000000000002.
Processing model 927 out of 4000 with `degree` = 3 and `λ` = 185.4.
Processing model 928 out of 4000 with `degree` = 3 and `λ` = 185.60000000000002.
Processing model 929 out of 4000 with `degree` = 3 and `λ` = 185.8.
Processing model 930 out of 4000 with `degree` = 3 and `λ` = 186.0.
Processing model 931 out of 4000 with `degree` = 3 and `λ` = 186.20000000000002.
Processing model 932 out of 4000 with `degree` = 3 and `λ` = 186.4.
Processing model 933 out of 4000 with `degree` = 3 and `λ` = 186.60000000000002.
Processing model 934 out of 4000 with `degree` = 3 and `λ` = 186.8.
Processing model 935 out of 4000 with `degree` = 3 and `λ` = 187.0.
Processing model 936 out of 4000 with `degree` = 3 and `λ` = 187.20000000000002.
Processing model 937 out of 4000 with `degree` = 3 and `λ` = 187.4.
Processing model 938 out of 4000 with `degree` = 3 and `λ` = 187.60000000000002.
Processing model 939 out of 4000 with `degree` = 3 and `λ` = 187.8.
Processing model 940 out of 4000 with `degree` = 3 and `λ` = 188.0.
Processing model 941 out of 4000 with `degree` = 3 and `λ` = 188.20000000000002.
Processing model 942 out of 4000 with `degree` = 3 and `λ` = 188.4.
Processing model 943 out of 4000 with `degree` = 3 and `λ` = 188.60000000000002.
Processing model 944 out of 4000 with `degree` = 3 and `λ` = 188.8.
Processing model 945 out of 4000 with `degree` = 3 and `λ` = 189.0.
Processing model 946 out of 4000 with `degree` = 3 and `λ` = 189.20000000000002.
Processing model 947 out of 4000 with `degree` = 3 and `λ` = 189.4.
Processing model 948 out of 4000 with `degree` = 3 and `λ` = 189.60000000000002.
Processing model 949 out of 4000 with `degree` = 3 and `λ` = 189.8.
Processing model 950 out of 4000 with `degree` = 3 and `λ` = 190.0.
Processing model 951 out of 4000 with `degree` = 3 and `λ` = 190.20000000000002.
Processing model 952 out of 4000 with `degree` = 3 and `λ` = 190.4.
Processing model 953 out of 4000 with `degree` = 3 and `λ` = 190.60000000000002.
Processing model 954 out of 4000 with `degree` = 3 and `λ` = 190.8.
Processing model 955 out of 4000 with `degree` = 3 and `λ` = 191.0.
Processing model 956 out of 4000 with `degree` = 3 and `λ` = 191.20000000000002.
Processing model 957 out of 4000 with `degree` = 3 and `λ` = 191.4.
Processing model 958 out of 4000 with `degree` = 3 and `λ` = 191.60000000000002.
Processing model 959 out of 4000 with `degree` = 3 and `λ` = 191.8.
Processing model 960 out of 4000 with `degree` = 3 and `λ` = 192.0.
Processing model 961 out of 4000 with `degree` = 3 and `λ` = 192.20000000000002.
Processing model 962 out of 4000 with `degree` = 3 and `λ` = 192.4.
Processing model 963 out of 4000 with `degree` = 3 and `λ` = 192.60000000000002.
Processing model 964 out of 4000 with `degree` = 3 and `λ` = 192.8.
Processing model 965 out of 4000 with `degree` = 3 and `λ` = 193.0.
Processing model 966 out of 4000 with `degree` = 3 and `λ` = 193.20000000000002.
Processing model 967 out of 4000 with `degree` = 3 and `λ` = 193.4.
Processing model 968 out of 4000 with `degree` = 3 and `λ` = 193.60000000000002.
Processing model 969 out of 4000 with `degree` = 3 and `λ` = 193.8.
Processing model 970 out of 4000 with `degree` = 3 and `λ` = 194.0.
Processing model 971 out of 4000 with `degree` = 3 and `λ` = 194.20000000000002.
Processing model 972 out of 4000 with `degree` = 3 and `λ` = 194.4.
Processing model 973 out of 4000 with `degree` = 3 and `λ` = 194.60000000000002.
Processing model 974 out of 4000 with `degree` = 3 and `λ` = 194.8.
Processing model 975 out of 4000 with `degree` = 3 and `λ` = 195.0.
Processing model 976 out of 4000 with `degree` = 3 and `λ` = 195.20000000000002.
Processing model 977 out of 4000 with `degree` = 3 and `λ` = 195.4.
Processing model 978 out of 4000 with `degree` = 3 and `λ` = 195.60000000000002.
Processing model 979 out of 4000 with `degree` = 3 and `λ` = 195.8.
Processing model 980 out of 4000 with `degree` = 3 and `λ` = 196.0.
Processing model 981 out of 4000 with `degree` = 3 and `λ` = 196.20000000000002.
Processing model 982 out of 4000 with `degree` = 3 and `λ` = 196.4.
Processing model 983 out of 4000 with `degree` = 3 and `λ` = 196.60000000000002.
Processing model 984 out of 4000 with `degree` = 3 and `λ` = 196.8.
Processing model 985 out of 4000 with `degree` = 3 and `λ` = 197.0.
Processing model 986 out of 4000 with `degree` = 3 and `λ` = 197.20000000000002.
Processing model 987 out of 4000 with `degree` = 3 and `λ` = 197.4.
Processing model 988 out of 4000 with `degree` = 3 and `λ` = 197.60000000000002.
Processing model 989 out of 4000 with `degree` = 3 and `λ` = 197.8.
Processing model 990 out of 4000 with `degree` = 3 and `λ` = 198.0.
Processing model 991 out of 4000 with `degree` = 3 and `λ` = 198.20000000000002.
Processing model 992 out of 4000 with `degree` = 3 and `λ` = 198.4.
Processing model 993 out of 4000 with `degree` = 3 and `λ` = 198.60000000000002.
Processing model 994 out of 4000 with `degree` = 3 and `λ` = 198.8.
Processing model 995 out of 4000 with `degree` = 3 and `λ` = 199.0.
Processing model 996 out of 4000 with `degree` = 3 and `λ` = 199.20000000000002.
Processing model 997 out of 4000 with `degree` = 3 and `λ` = 199.4.
Processing model 998 out of 4000 with `degree` = 3 and `λ` = 199.60000000000002.
Processing model 999 out of 4000 with `degree` = 3 and `λ` = 199.8.
Processing model 1000 out of 4000 with `degree` = 3 and `λ` = 200.0.
Processing model 1001 out of 4000 with `degree` = 5 and `λ` = 0.2.
Processing model 1002 out of 4000 with `degree` = 5 and `λ` = 0.4.
Processing model 1003 out of 4000 with `degree` = 5 and `λ` = 0.6000000000000001.
Processing model 1004 out of 4000 with `degree` = 5 and `λ` = 0.8.
Processing model 1005 out of 4000 with `degree` = 5 and `λ` = 1.0.
Processing model 1006 out of 4000 with `degree` = 5 and `λ` = 1.2000000000000002.
Processing model 1007 out of 4000 with `degree` = 5 and `λ` = 1.4000000000000001.
Processing model 1008 out of 4000 with `degree` = 5 and `λ` = 1.6.
Processing model 1009 out of 4000 with `degree` = 5 and `λ` = 1.8.
Processing model 1010 out of 4000 with `degree` = 5 and `λ` = 2.0.
Processing model 1011 out of 4000 with `degree` = 5 and `λ` = 2.2.
Processing model 1012 out of 4000 with `degree` = 5 and `λ` = 2.4000000000000004.
Processing model 1013 out of 4000 with `degree` = 5 and `λ` = 2.6.
Processing model 1014 out of 4000 with `degree` = 5 and `λ` = 2.8000000000000003.
Processing model 1015 out of 4000 with `degree` = 5 and `λ` = 3.0.
Processing model 1016 out of 4000 with `degree` = 5 and `λ` = 3.2.
Processing model 1017 out of 4000 with `degree` = 5 and `λ` = 3.4000000000000004.
Processing model 1018 out of 4000 with `degree` = 5 and `λ` = 3.6.
Processing model 1019 out of 4000 with `degree` = 5 and `λ` = 3.8000000000000003.
Processing model 1020 out of 4000 with `degree` = 5 and `λ` = 4.0.
Processing model 1021 out of 4000 with `degree` = 5 and `λ` = 4.2.
Processing model 1022 out of 4000 with `degree` = 5 and `λ` = 4.4.
Processing model 1023 out of 4000 with `degree` = 5 and `λ` = 4.6000000000000005.
Processing model 1024 out of 4000 with `degree` = 5 and `λ` = 4.800000000000001.
Processing model 1025 out of 4000 with `degree` = 5 and `λ` = 5.0.
Processing model 1026 out of 4000 with `degree` = 5 and `λ` = 5.2.
Processing model 1027 out of 4000 with `degree` = 5 and `λ` = 5.4.
Processing model 1028 out of 4000 with `degree` = 5 and `λ` = 5.6000000000000005.
Processing model 1029 out of 4000 with `degree` = 5 and `λ` = 5.800000000000001.
Processing model 1030 out of 4000 with `degree` = 5 and `λ` = 6.0.
Processing model 1031 out of 4000 with `degree` = 5 and `λ` = 6.2.
Processing model 1032 out of 4000 with `degree` = 5 and `λ` = 6.4.
Processing model 1033 out of 4000 with `degree` = 5 and `λ` = 6.6000000000000005.
Processing model 1034 out of 4000 with `degree` = 5 and `λ` = 6.800000000000001.
Processing model 1035 out of 4000 with `degree` = 5 and `λ` = 7.0.
Processing model 1036 out of 4000 with `degree` = 5 and `λ` = 7.2.
Processing model 1037 out of 4000 with `degree` = 5 and `λ` = 7.4.
Processing model 1038 out of 4000 with `degree` = 5 and `λ` = 7.6000000000000005.
Processing model 1039 out of 4000 with `degree` = 5 and `λ` = 7.800000000000001.
Processing model 1040 out of 4000 with `degree` = 5 and `λ` = 8.0.
Processing model 1041 out of 4000 with `degree` = 5 and `λ` = 8.200000000000001.
Processing model 1042 out of 4000 with `degree` = 5 and `λ` = 8.4.
Processing model 1043 out of 4000 with `degree` = 5 and `λ` = 8.6.
Processing model 1044 out of 4000 with `degree` = 5 and `λ` = 8.8.
Processing model 1045 out of 4000 with `degree` = 5 and `λ` = 9.0.
Processing model 1046 out of 4000 with `degree` = 5 and `λ` = 9.200000000000001.
Processing model 1047 out of 4000 with `degree` = 5 and `λ` = 9.4.
Processing model 1048 out of 4000 with `degree` = 5 and `λ` = 9.600000000000001.
Processing model 1049 out of 4000 with `degree` = 5 and `λ` = 9.8.
Processing model 1050 out of 4000 with `degree` = 5 and `λ` = 10.0.
Processing model 1051 out of 4000 with `degree` = 5 and `λ` = 10.200000000000001.
Processing model 1052 out of 4000 with `degree` = 5 and `λ` = 10.4.
Processing model 1053 out of 4000 with `degree` = 5 and `λ` = 10.600000000000001.
Processing model 1054 out of 4000 with `degree` = 5 and `λ` = 10.8.
Processing model 1055 out of 4000 with `degree` = 5 and `λ` = 11.0.
Processing model 1056 out of 4000 with `degree` = 5 and `λ` = 11.200000000000001.
Processing model 1057 out of 4000 with `degree` = 5 and `λ` = 11.4.
Processing model 1058 out of 4000 with `degree` = 5 and `λ` = 11.600000000000001.
Processing model 1059 out of 4000 with `degree` = 5 and `λ` = 11.8.
Processing model 1060 out of 4000 with `degree` = 5 and `λ` = 12.0.
Processing model 1061 out of 4000 with `degree` = 5 and `λ` = 12.200000000000001.
Processing model 1062 out of 4000 with `degree` = 5 and `λ` = 12.4.
Processing model 1063 out of 4000 with `degree` = 5 and `λ` = 12.600000000000001.
Processing model 1064 out of 4000 with `degree` = 5 and `λ` = 12.8.
Processing model 1065 out of 4000 with `degree` = 5 and `λ` = 13.0.
Processing model 1066 out of 4000 with `degree` = 5 and `λ` = 13.200000000000001.
Processing model 1067 out of 4000 with `degree` = 5 and `λ` = 13.4.
Processing model 1068 out of 4000 with `degree` = 5 and `λ` = 13.600000000000001.
Processing model 1069 out of 4000 with `degree` = 5 and `λ` = 13.8.
Processing model 1070 out of 4000 with `degree` = 5 and `λ` = 14.0.
Processing model 1071 out of 4000 with `degree` = 5 and `λ` = 14.200000000000001.
Processing model 1072 out of 4000 with `degree` = 5 and `λ` = 14.4.
Processing model 1073 out of 4000 with `degree` = 5 and `λ` = 14.600000000000001.
Processing model 1074 out of 4000 with `degree` = 5 and `λ` = 14.8.
Processing model 1075 out of 4000 with `degree` = 5 and `λ` = 15.0.
Processing model 1076 out of 4000 with `degree` = 5 and `λ` = 15.200000000000001.
Processing model 1077 out of 4000 with `degree` = 5 and `λ` = 15.4.
Processing model 1078 out of 4000 with `degree` = 5 and `λ` = 15.600000000000001.
Processing model 1079 out of 4000 with `degree` = 5 and `λ` = 15.8.
Processing model 1080 out of 4000 with `degree` = 5 and `λ` = 16.0.
Processing model 1081 out of 4000 with `degree` = 5 and `λ` = 16.2.
Processing model 1082 out of 4000 with `degree` = 5 and `λ` = 16.400000000000002.
Processing model 1083 out of 4000 with `degree` = 5 and `λ` = 16.6.
Processing model 1084 out of 4000 with `degree` = 5 and `λ` = 16.8.
Processing model 1085 out of 4000 with `degree` = 5 and `λ` = 17.0.
Processing model 1086 out of 4000 with `degree` = 5 and `λ` = 17.2.
Processing model 1087 out of 4000 with `degree` = 5 and `λ` = 17.400000000000002.
Processing model 1088 out of 4000 with `degree` = 5 and `λ` = 17.6.
Processing model 1089 out of 4000 with `degree` = 5 and `λ` = 17.8.
Processing model 1090 out of 4000 with `degree` = 5 and `λ` = 18.0.
Processing model 1091 out of 4000 with `degree` = 5 and `λ` = 18.2.
Processing model 1092 out of 4000 with `degree` = 5 and `λ` = 18.400000000000002.
Processing model 1093 out of 4000 with `degree` = 5 and `λ` = 18.6.
Processing model 1094 out of 4000 with `degree` = 5 and `λ` = 18.8.
Processing model 1095 out of 4000 with `degree` = 5 and `λ` = 19.0.
Processing model 1096 out of 4000 with `degree` = 5 and `λ` = 19.200000000000003.
Processing model 1097 out of 4000 with `degree` = 5 and `λ` = 19.400000000000002.
Processing model 1098 out of 4000 with `degree` = 5 and `λ` = 19.6.
Processing model 1099 out of 4000 with `degree` = 5 and `λ` = 19.8.
Processing model 1100 out of 4000 with `degree` = 5 and `λ` = 20.0.
Processing model 1101 out of 4000 with `degree` = 5 and `λ` = 20.200000000000003.
Processing model 1102 out of 4000 with `degree` = 5 and `λ` = 20.400000000000002.
Processing model 1103 out of 4000 with `degree` = 5 and `λ` = 20.6.
Processing model 1104 out of 4000 with `degree` = 5 and `λ` = 20.8.
Processing model 1105 out of 4000 with `degree` = 5 and `λ` = 21.0.
Processing model 1106 out of 4000 with `degree` = 5 and `λ` = 21.200000000000003.
Processing model 1107 out of 4000 with `degree` = 5 and `λ` = 21.400000000000002.
Processing model 1108 out of 4000 with `degree` = 5 and `λ` = 21.6.
Processing model 1109 out of 4000 with `degree` = 5 and `λ` = 21.8.
Processing model 1110 out of 4000 with `degree` = 5 and `λ` = 22.0.
Processing model 1111 out of 4000 with `degree` = 5 and `λ` = 22.200000000000003.
Processing model 1112 out of 4000 with `degree` = 5 and `λ` = 22.400000000000002.
Processing model 1113 out of 4000 with `degree` = 5 and `λ` = 22.6.
Processing model 1114 out of 4000 with `degree` = 5 and `λ` = 22.8.
Processing model 1115 out of 4000 with `degree` = 5 and `λ` = 23.0.
Processing model 1116 out of 4000 with `degree` = 5 and `λ` = 23.200000000000003.
Processing model 1117 out of 4000 with `degree` = 5 and `λ` = 23.400000000000002.
Processing model 1118 out of 4000 with `degree` = 5 and `λ` = 23.6.
Processing model 1119 out of 4000 with `degree` = 5 and `λ` = 23.8.
Processing model 1120 out of 4000 with `degree` = 5 and `λ` = 24.0.
Processing model 1121 out of 4000 with `degree` = 5 and `λ` = 24.200000000000003.
Processing model 1122 out of 4000 with `degree` = 5 and `λ` = 24.400000000000002.
Processing model 1123 out of 4000 with `degree` = 5 and `λ` = 24.6.
Processing model 1124 out of 4000 with `degree` = 5 and `λ` = 24.8.
Processing model 1125 out of 4000 with `degree` = 5 and `λ` = 25.0.
Processing model 1126 out of 4000 with `degree` = 5 and `λ` = 25.200000000000003.
Processing model 1127 out of 4000 with `degree` = 5 and `λ` = 25.400000000000002.
Processing model 1128 out of 4000 with `degree` = 5 and `λ` = 25.6.
Processing model 1129 out of 4000 with `degree` = 5 and `λ` = 25.8.
Processing model 1130 out of 4000 with `degree` = 5 and `λ` = 26.0.
Processing model 1131 out of 4000 with `degree` = 5 and `λ` = 26.200000000000003.
Processing model 1132 out of 4000 with `degree` = 5 and `λ` = 26.400000000000002.
Processing model 1133 out of 4000 with `degree` = 5 and `λ` = 26.6.
Processing model 1134 out of 4000 with `degree` = 5 and `λ` = 26.8.
Processing model 1135 out of 4000 with `degree` = 5 and `λ` = 27.0.
Processing model 1136 out of 4000 with `degree` = 5 and `λ` = 27.200000000000003.
Processing model 1137 out of 4000 with `degree` = 5 and `λ` = 27.400000000000002.
Processing model 1138 out of 4000 with `degree` = 5 and `λ` = 27.6.
Processing model 1139 out of 4000 with `degree` = 5 and `λ` = 27.8.
Processing model 1140 out of 4000 with `degree` = 5 and `λ` = 28.0.
Processing model 1141 out of 4000 with `degree` = 5 and `λ` = 28.200000000000003.
Processing model 1142 out of 4000 with `degree` = 5 and `λ` = 28.400000000000002.
Processing model 1143 out of 4000 with `degree` = 5 and `λ` = 28.6.
Processing model 1144 out of 4000 with `degree` = 5 and `λ` = 28.8.
Processing model 1145 out of 4000 with `degree` = 5 and `λ` = 29.0.
Processing model 1146 out of 4000 with `degree` = 5 and `λ` = 29.200000000000003.
Processing model 1147 out of 4000 with `degree` = 5 and `λ` = 29.400000000000002.
Processing model 1148 out of 4000 with `degree` = 5 and `λ` = 29.6.
Processing model 1149 out of 4000 with `degree` = 5 and `λ` = 29.8.
Processing model 1150 out of 4000 with `degree` = 5 and `λ` = 30.0.
Processing model 1151 out of 4000 with `degree` = 5 and `λ` = 30.200000000000003.
Processing model 1152 out of 4000 with `degree` = 5 and `λ` = 30.400000000000002.
Processing model 1153 out of 4000 with `degree` = 5 and `λ` = 30.6.
Processing model 1154 out of 4000 with `degree` = 5 and `λ` = 30.8.
Processing model 1155 out of 4000 with `degree` = 5 and `λ` = 31.0.
Processing model 1156 out of 4000 with `degree` = 5 and `λ` = 31.200000000000003.
Processing model 1157 out of 4000 with `degree` = 5 and `λ` = 31.400000000000002.
Processing model 1158 out of 4000 with `degree` = 5 and `λ` = 31.6.
Processing model 1159 out of 4000 with `degree` = 5 and `λ` = 31.8.
Processing model 1160 out of 4000 with `degree` = 5 and `λ` = 32.0.
Processing model 1161 out of 4000 with `degree` = 5 and `λ` = 32.2.
Processing model 1162 out of 4000 with `degree` = 5 and `λ` = 32.4.
Processing model 1163 out of 4000 with `degree` = 5 and `λ` = 32.6.
Processing model 1164 out of 4000 with `degree` = 5 and `λ` = 32.800000000000004.
Processing model 1165 out of 4000 with `degree` = 5 and `λ` = 33.0.
Processing model 1166 out of 4000 with `degree` = 5 and `λ` = 33.2.
Processing model 1167 out of 4000 with `degree` = 5 and `λ` = 33.4.
Processing model 1168 out of 4000 with `degree` = 5 and `λ` = 33.6.
Processing model 1169 out of 4000 with `degree` = 5 and `λ` = 33.800000000000004.
Processing model 1170 out of 4000 with `degree` = 5 and `λ` = 34.0.
Processing model 1171 out of 4000 with `degree` = 5 and `λ` = 34.2.
Processing model 1172 out of 4000 with `degree` = 5 and `λ` = 34.4.
Processing model 1173 out of 4000 with `degree` = 5 and `λ` = 34.6.
Processing model 1174 out of 4000 with `degree` = 5 and `λ` = 34.800000000000004.
Processing model 1175 out of 4000 with `degree` = 5 and `λ` = 35.0.
Processing model 1176 out of 4000 with `degree` = 5 and `λ` = 35.2.
Processing model 1177 out of 4000 with `degree` = 5 and `λ` = 35.4.
Processing model 1178 out of 4000 with `degree` = 5 and `λ` = 35.6.
Processing model 1179 out of 4000 with `degree` = 5 and `λ` = 35.800000000000004.
Processing model 1180 out of 4000 with `degree` = 5 and `λ` = 36.0.
Processing model 1181 out of 4000 with `degree` = 5 and `λ` = 36.2.
Processing model 1182 out of 4000 with `degree` = 5 and `λ` = 36.4.
Processing model 1183 out of 4000 with `degree` = 5 and `λ` = 36.6.
Processing model 1184 out of 4000 with `degree` = 5 and `λ` = 36.800000000000004.
Processing model 1185 out of 4000 with `degree` = 5 and `λ` = 37.0.
Processing model 1186 out of 4000 with `degree` = 5 and `λ` = 37.2.
Processing model 1187 out of 4000 with `degree` = 5 and `λ` = 37.4.
Processing model 1188 out of 4000 with `degree` = 5 and `λ` = 37.6.
Processing model 1189 out of 4000 with `degree` = 5 and `λ` = 37.800000000000004.
Processing model 1190 out of 4000 with `degree` = 5 and `λ` = 38.0.
Processing model 1191 out of 4000 with `degree` = 5 and `λ` = 38.2.
Processing model 1192 out of 4000 with `degree` = 5 and `λ` = 38.400000000000006.
Processing model 1193 out of 4000 with `degree` = 5 and `λ` = 38.6.
Processing model 1194 out of 4000 with `degree` = 5 and `λ` = 38.800000000000004.
Processing model 1195 out of 4000 with `degree` = 5 and `λ` = 39.0.
Processing model 1196 out of 4000 with `degree` = 5 and `λ` = 39.2.
Processing model 1197 out of 4000 with `degree` = 5 and `λ` = 39.400000000000006.
Processing model 1198 out of 4000 with `degree` = 5 and `λ` = 39.6.
Processing model 1199 out of 4000 with `degree` = 5 and `λ` = 39.800000000000004.
Processing model 1200 out of 4000 with `degree` = 5 and `λ` = 40.0.
Processing model 1201 out of 4000 with `degree` = 5 and `λ` = 40.2.
Processing model 1202 out of 4000 with `degree` = 5 and `λ` = 40.400000000000006.
Processing model 1203 out of 4000 with `degree` = 5 and `λ` = 40.6.
Processing model 1204 out of 4000 with `degree` = 5 and `λ` = 40.800000000000004.
Processing model 1205 out of 4000 with `degree` = 5 and `λ` = 41.0.
Processing model 1206 out of 4000 with `degree` = 5 and `λ` = 41.2.
Processing model 1207 out of 4000 with `degree` = 5 and `λ` = 41.400000000000006.
Processing model 1208 out of 4000 with `degree` = 5 and `λ` = 41.6.
Processing model 1209 out of 4000 with `degree` = 5 and `λ` = 41.800000000000004.
Processing model 1210 out of 4000 with `degree` = 5 and `λ` = 42.0.
Processing model 1211 out of 4000 with `degree` = 5 and `λ` = 42.2.
Processing model 1212 out of 4000 with `degree` = 5 and `λ` = 42.400000000000006.
Processing model 1213 out of 4000 with `degree` = 5 and `λ` = 42.6.
Processing model 1214 out of 4000 with `degree` = 5 and `λ` = 42.800000000000004.
Processing model 1215 out of 4000 with `degree` = 5 and `λ` = 43.0.
Processing model 1216 out of 4000 with `degree` = 5 and `λ` = 43.2.
Processing model 1217 out of 4000 with `degree` = 5 and `λ` = 43.400000000000006.
Processing model 1218 out of 4000 with `degree` = 5 and `λ` = 43.6.
Processing model 1219 out of 4000 with `degree` = 5 and `λ` = 43.800000000000004.
Processing model 1220 out of 4000 with `degree` = 5 and `λ` = 44.0.
Processing model 1221 out of 4000 with `degree` = 5 and `λ` = 44.2.
Processing model 1222 out of 4000 with `degree` = 5 and `λ` = 44.400000000000006.
Processing model 1223 out of 4000 with `degree` = 5 and `λ` = 44.6.
Processing model 1224 out of 4000 with `degree` = 5 and `λ` = 44.800000000000004.
Processing model 1225 out of 4000 with `degree` = 5 and `λ` = 45.0.
Processing model 1226 out of 4000 with `degree` = 5 and `λ` = 45.2.
Processing model 1227 out of 4000 with `degree` = 5 and `λ` = 45.400000000000006.
Processing model 1228 out of 4000 with `degree` = 5 and `λ` = 45.6.
Processing model 1229 out of 4000 with `degree` = 5 and `λ` = 45.800000000000004.
Processing model 1230 out of 4000 with `degree` = 5 and `λ` = 46.0.
Processing model 1231 out of 4000 with `degree` = 5 and `λ` = 46.2.
Processing model 1232 out of 4000 with `degree` = 5 and `λ` = 46.400000000000006.
Processing model 1233 out of 4000 with `degree` = 5 and `λ` = 46.6.
Processing model 1234 out of 4000 with `degree` = 5 and `λ` = 46.800000000000004.
Processing model 1235 out of 4000 with `degree` = 5 and `λ` = 47.0.
Processing model 1236 out of 4000 with `degree` = 5 and `λ` = 47.2.
Processing model 1237 out of 4000 with `degree` = 5 and `λ` = 47.400000000000006.
Processing model 1238 out of 4000 with `degree` = 5 and `λ` = 47.6.
Processing model 1239 out of 4000 with `degree` = 5 and `λ` = 47.800000000000004.
Processing model 1240 out of 4000 with `degree` = 5 and `λ` = 48.0.
Processing model 1241 out of 4000 with `degree` = 5 and `λ` = 48.2.
Processing model 1242 out of 4000 with `degree` = 5 and `λ` = 48.400000000000006.
Processing model 1243 out of 4000 with `degree` = 5 and `λ` = 48.6.
Processing model 1244 out of 4000 with `degree` = 5 and `λ` = 48.800000000000004.
Processing model 1245 out of 4000 with `degree` = 5 and `λ` = 49.0.
Processing model 1246 out of 4000 with `degree` = 5 and `λ` = 49.2.
Processing model 1247 out of 4000 with `degree` = 5 and `λ` = 49.400000000000006.
Processing model 1248 out of 4000 with `degree` = 5 and `λ` = 49.6.
Processing model 1249 out of 4000 with `degree` = 5 and `λ` = 49.800000000000004.
Processing model 1250 out of 4000 with `degree` = 5 and `λ` = 50.0.
Processing model 1251 out of 4000 with `degree` = 5 and `λ` = 50.2.
Processing model 1252 out of 4000 with `degree` = 5 and `λ` = 50.400000000000006.
Processing model 1253 out of 4000 with `degree` = 5 and `λ` = 50.6.
Processing model 1254 out of 4000 with `degree` = 5 and `λ` = 50.800000000000004.
Processing model 1255 out of 4000 with `degree` = 5 and `λ` = 51.0.
Processing model 1256 out of 4000 with `degree` = 5 and `λ` = 51.2.
Processing model 1257 out of 4000 with `degree` = 5 and `λ` = 51.400000000000006.
Processing model 1258 out of 4000 with `degree` = 5 and `λ` = 51.6.
Processing model 1259 out of 4000 with `degree` = 5 and `λ` = 51.800000000000004.
Processing model 1260 out of 4000 with `degree` = 5 and `λ` = 52.0.
Processing model 1261 out of 4000 with `degree` = 5 and `λ` = 52.2.
Processing model 1262 out of 4000 with `degree` = 5 and `λ` = 52.400000000000006.
Processing model 1263 out of 4000 with `degree` = 5 and `λ` = 52.6.
Processing model 1264 out of 4000 with `degree` = 5 and `λ` = 52.800000000000004.
Processing model 1265 out of 4000 with `degree` = 5 and `λ` = 53.0.
Processing model 1266 out of 4000 with `degree` = 5 and `λ` = 53.2.
Processing model 1267 out of 4000 with `degree` = 5 and `λ` = 53.400000000000006.
Processing model 1268 out of 4000 with `degree` = 5 and `λ` = 53.6.
Processing model 1269 out of 4000 with `degree` = 5 and `λ` = 53.800000000000004.
Processing model 1270 out of 4000 with `degree` = 5 and `λ` = 54.0.
Processing model 1271 out of 4000 with `degree` = 5 and `λ` = 54.2.
Processing model 1272 out of 4000 with `degree` = 5 and `λ` = 54.400000000000006.
Processing model 1273 out of 4000 with `degree` = 5 and `λ` = 54.6.
Processing model 1274 out of 4000 with `degree` = 5 and `λ` = 54.800000000000004.
Processing model 1275 out of 4000 with `degree` = 5 and `λ` = 55.0.
Processing model 1276 out of 4000 with `degree` = 5 and `λ` = 55.2.
Processing model 1277 out of 4000 with `degree` = 5 and `λ` = 55.400000000000006.
Processing model 1278 out of 4000 with `degree` = 5 and `λ` = 55.6.
Processing model 1279 out of 4000 with `degree` = 5 and `λ` = 55.800000000000004.
Processing model 1280 out of 4000 with `degree` = 5 and `λ` = 56.0.
Processing model 1281 out of 4000 with `degree` = 5 and `λ` = 56.2.
Processing model 1282 out of 4000 with `degree` = 5 and `λ` = 56.400000000000006.
Processing model 1283 out of 4000 with `degree` = 5 and `λ` = 56.6.
Processing model 1284 out of 4000 with `degree` = 5 and `λ` = 56.800000000000004.
Processing model 1285 out of 4000 with `degree` = 5 and `λ` = 57.0.
Processing model 1286 out of 4000 with `degree` = 5 and `λ` = 57.2.
Processing model 1287 out of 4000 with `degree` = 5 and `λ` = 57.400000000000006.
Processing model 1288 out of 4000 with `degree` = 5 and `λ` = 57.6.
Processing model 1289 out of 4000 with `degree` = 5 and `λ` = 57.800000000000004.
Processing model 1290 out of 4000 with `degree` = 5 and `λ` = 58.0.
Processing model 1291 out of 4000 with `degree` = 5 and `λ` = 58.2.
Processing model 1292 out of 4000 with `degree` = 5 and `λ` = 58.400000000000006.
Processing model 1293 out of 4000 with `degree` = 5 and `λ` = 58.6.
Processing model 1294 out of 4000 with `degree` = 5 and `λ` = 58.800000000000004.
Processing model 1295 out of 4000 with `degree` = 5 and `λ` = 59.0.
Processing model 1296 out of 4000 with `degree` = 5 and `λ` = 59.2.
Processing model 1297 out of 4000 with `degree` = 5 and `λ` = 59.400000000000006.
Processing model 1298 out of 4000 with `degree` = 5 and `λ` = 59.6.
Processing model 1299 out of 4000 with `degree` = 5 and `λ` = 59.800000000000004.
Processing model 1300 out of 4000 with `degree` = 5 and `λ` = 60.0.
Processing model 1301 out of 4000 with `degree` = 5 and `λ` = 60.2.
Processing model 1302 out of 4000 with `degree` = 5 and `λ` = 60.400000000000006.
Processing model 1303 out of 4000 with `degree` = 5 and `λ` = 60.6.
Processing model 1304 out of 4000 with `degree` = 5 and `λ` = 60.800000000000004.
Processing model 1305 out of 4000 with `degree` = 5 and `λ` = 61.0.
Processing model 1306 out of 4000 with `degree` = 5 and `λ` = 61.2.
Processing model 1307 out of 4000 with `degree` = 5 and `λ` = 61.400000000000006.
Processing model 1308 out of 4000 with `degree` = 5 and `λ` = 61.6.
Processing model 1309 out of 4000 with `degree` = 5 and `λ` = 61.800000000000004.
Processing model 1310 out of 4000 with `degree` = 5 and `λ` = 62.0.
Processing model 1311 out of 4000 with `degree` = 5 and `λ` = 62.2.
Processing model 1312 out of 4000 with `degree` = 5 and `λ` = 62.400000000000006.
Processing model 1313 out of 4000 with `degree` = 5 and `λ` = 62.6.
Processing model 1314 out of 4000 with `degree` = 5 and `λ` = 62.800000000000004.
Processing model 1315 out of 4000 with `degree` = 5 and `λ` = 63.0.
Processing model 1316 out of 4000 with `degree` = 5 and `λ` = 63.2.
Processing model 1317 out of 4000 with `degree` = 5 and `λ` = 63.400000000000006.
Processing model 1318 out of 4000 with `degree` = 5 and `λ` = 63.6.
Processing model 1319 out of 4000 with `degree` = 5 and `λ` = 63.800000000000004.
Processing model 1320 out of 4000 with `degree` = 5 and `λ` = 64.0.
Processing model 1321 out of 4000 with `degree` = 5 and `λ` = 64.2.
Processing model 1322 out of 4000 with `degree` = 5 and `λ` = 64.4.
Processing model 1323 out of 4000 with `degree` = 5 and `λ` = 64.60000000000001.
Processing model 1324 out of 4000 with `degree` = 5 and `λ` = 64.8.
Processing model 1325 out of 4000 with `degree` = 5 and `λ` = 65.0.
Processing model 1326 out of 4000 with `degree` = 5 and `λ` = 65.2.
Processing model 1327 out of 4000 with `degree` = 5 and `λ` = 65.4.
Processing model 1328 out of 4000 with `degree` = 5 and `λ` = 65.60000000000001.
Processing model 1329 out of 4000 with `degree` = 5 and `λ` = 65.8.
Processing model 1330 out of 4000 with `degree` = 5 and `λ` = 66.0.
Processing model 1331 out of 4000 with `degree` = 5 and `λ` = 66.2.
Processing model 1332 out of 4000 with `degree` = 5 and `λ` = 66.4.
Processing model 1333 out of 4000 with `degree` = 5 and `λ` = 66.60000000000001.
Processing model 1334 out of 4000 with `degree` = 5 and `λ` = 66.8.
Processing model 1335 out of 4000 with `degree` = 5 and `λ` = 67.0.
Processing model 1336 out of 4000 with `degree` = 5 and `λ` = 67.2.
Processing model 1337 out of 4000 with `degree` = 5 and `λ` = 67.4.
Processing model 1338 out of 4000 with `degree` = 5 and `λ` = 67.60000000000001.
Processing model 1339 out of 4000 with `degree` = 5 and `λ` = 67.8.
Processing model 1340 out of 4000 with `degree` = 5 and `λ` = 68.0.
Processing model 1341 out of 4000 with `degree` = 5 and `λ` = 68.2.
Processing model 1342 out of 4000 with `degree` = 5 and `λ` = 68.4.
Processing model 1343 out of 4000 with `degree` = 5 and `λ` = 68.60000000000001.
Processing model 1344 out of 4000 with `degree` = 5 and `λ` = 68.8.
Processing model 1345 out of 4000 with `degree` = 5 and `λ` = 69.0.
Processing model 1346 out of 4000 with `degree` = 5 and `λ` = 69.2.
Processing model 1347 out of 4000 with `degree` = 5 and `λ` = 69.4.
Processing model 1348 out of 4000 with `degree` = 5 and `λ` = 69.60000000000001.
Processing model 1349 out of 4000 with `degree` = 5 and `λ` = 69.8.
Processing model 1350 out of 4000 with `degree` = 5 and `λ` = 70.0.
Processing model 1351 out of 4000 with `degree` = 5 and `λ` = 70.2.
Processing model 1352 out of 4000 with `degree` = 5 and `λ` = 70.4.
Processing model 1353 out of 4000 with `degree` = 5 and `λ` = 70.60000000000001.
Processing model 1354 out of 4000 with `degree` = 5 and `λ` = 70.8.
Processing model 1355 out of 4000 with `degree` = 5 and `λ` = 71.0.
Processing model 1356 out of 4000 with `degree` = 5 and `λ` = 71.2.
Processing model 1357 out of 4000 with `degree` = 5 and `λ` = 71.4.
Processing model 1358 out of 4000 with `degree` = 5 and `λ` = 71.60000000000001.
Processing model 1359 out of 4000 with `degree` = 5 and `λ` = 71.8.
Processing model 1360 out of 4000 with `degree` = 5 and `λ` = 72.0.
Processing model 1361 out of 4000 with `degree` = 5 and `λ` = 72.2.
Processing model 1362 out of 4000 with `degree` = 5 and `λ` = 72.4.
Processing model 1363 out of 4000 with `degree` = 5 and `λ` = 72.60000000000001.
Processing model 1364 out of 4000 with `degree` = 5 and `λ` = 72.8.
Processing model 1365 out of 4000 with `degree` = 5 and `λ` = 73.0.
Processing model 1366 out of 4000 with `degree` = 5 and `λ` = 73.2.
Processing model 1367 out of 4000 with `degree` = 5 and `λ` = 73.4.
Processing model 1368 out of 4000 with `degree` = 5 and `λ` = 73.60000000000001.
Processing model 1369 out of 4000 with `degree` = 5 and `λ` = 73.8.
Processing model 1370 out of 4000 with `degree` = 5 and `λ` = 74.0.
Processing model 1371 out of 4000 with `degree` = 5 and `λ` = 74.2.
Processing model 1372 out of 4000 with `degree` = 5 and `λ` = 74.4.
Processing model 1373 out of 4000 with `degree` = 5 and `λ` = 74.60000000000001.
Processing model 1374 out of 4000 with `degree` = 5 and `λ` = 74.8.
Processing model 1375 out of 4000 with `degree` = 5 and `λ` = 75.0.
Processing model 1376 out of 4000 with `degree` = 5 and `λ` = 75.2.
Processing model 1377 out of 4000 with `degree` = 5 and `λ` = 75.4.
Processing model 1378 out of 4000 with `degree` = 5 and `λ` = 75.60000000000001.
Processing model 1379 out of 4000 with `degree` = 5 and `λ` = 75.8.
Processing model 1380 out of 4000 with `degree` = 5 and `λ` = 76.0.
Processing model 1381 out of 4000 with `degree` = 5 and `λ` = 76.2.
Processing model 1382 out of 4000 with `degree` = 5 and `λ` = 76.4.
Processing model 1383 out of 4000 with `degree` = 5 and `λ` = 76.60000000000001.
Processing model 1384 out of 4000 with `degree` = 5 and `λ` = 76.80000000000001.
Processing model 1385 out of 4000 with `degree` = 5 and `λ` = 77.0.
Processing model 1386 out of 4000 with `degree` = 5 and `λ` = 77.2.
Processing model 1387 out of 4000 with `degree` = 5 and `λ` = 77.4.
Processing model 1388 out of 4000 with `degree` = 5 and `λ` = 77.60000000000001.
Processing model 1389 out of 4000 with `degree` = 5 and `λ` = 77.80000000000001.
Processing model 1390 out of 4000 with `degree` = 5 and `λ` = 78.0.
Processing model 1391 out of 4000 with `degree` = 5 and `λ` = 78.2.
Processing model 1392 out of 4000 with `degree` = 5 and `λ` = 78.4.
Processing model 1393 out of 4000 with `degree` = 5 and `λ` = 78.60000000000001.
Processing model 1394 out of 4000 with `degree` = 5 and `λ` = 78.80000000000001.
Processing model 1395 out of 4000 with `degree` = 5 and `λ` = 79.0.
Processing model 1396 out of 4000 with `degree` = 5 and `λ` = 79.2.
Processing model 1397 out of 4000 with `degree` = 5 and `λ` = 79.4.
Processing model 1398 out of 4000 with `degree` = 5 and `λ` = 79.60000000000001.
Processing model 1399 out of 4000 with `degree` = 5 and `λ` = 79.80000000000001.
Processing model 1400 out of 4000 with `degree` = 5 and `λ` = 80.0.
Processing model 1401 out of 4000 with `degree` = 5 and `λ` = 80.2.
Processing model 1402 out of 4000 with `degree` = 5 and `λ` = 80.4.
Processing model 1403 out of 4000 with `degree` = 5 and `λ` = 80.60000000000001.
Processing model 1404 out of 4000 with `degree` = 5 and `λ` = 80.80000000000001.
Processing model 1405 out of 4000 with `degree` = 5 and `λ` = 81.0.
Processing model 1406 out of 4000 with `degree` = 5 and `λ` = 81.2.
Processing model 1407 out of 4000 with `degree` = 5 and `λ` = 81.4.
Processing model 1408 out of 4000 with `degree` = 5 and `λ` = 81.60000000000001.
Processing model 1409 out of 4000 with `degree` = 5 and `λ` = 81.80000000000001.
Processing model 1410 out of 4000 with `degree` = 5 and `λ` = 82.0.
Processing model 1411 out of 4000 with `degree` = 5 and `λ` = 82.2.
Processing model 1412 out of 4000 with `degree` = 5 and `λ` = 82.4.
Processing model 1413 out of 4000 with `degree` = 5 and `λ` = 82.60000000000001.
Processing model 1414 out of 4000 with `degree` = 5 and `λ` = 82.80000000000001.
Processing model 1415 out of 4000 with `degree` = 5 and `λ` = 83.0.
Processing model 1416 out of 4000 with `degree` = 5 and `λ` = 83.2.
Processing model 1417 out of 4000 with `degree` = 5 and `λ` = 83.4.
Processing model 1418 out of 4000 with `degree` = 5 and `λ` = 83.60000000000001.
Processing model 1419 out of 4000 with `degree` = 5 and `λ` = 83.80000000000001.
Processing model 1420 out of 4000 with `degree` = 5 and `λ` = 84.0.
Processing model 1421 out of 4000 with `degree` = 5 and `λ` = 84.2.
Processing model 1422 out of 4000 with `degree` = 5 and `λ` = 84.4.
Processing model 1423 out of 4000 with `degree` = 5 and `λ` = 84.60000000000001.
Processing model 1424 out of 4000 with `degree` = 5 and `λ` = 84.80000000000001.
Processing model 1425 out of 4000 with `degree` = 5 and `λ` = 85.0.
Processing model 1426 out of 4000 with `degree` = 5 and `λ` = 85.2.
Processing model 1427 out of 4000 with `degree` = 5 and `λ` = 85.4.
Processing model 1428 out of 4000 with `degree` = 5 and `λ` = 85.60000000000001.
Processing model 1429 out of 4000 with `degree` = 5 and `λ` = 85.80000000000001.
Processing model 1430 out of 4000 with `degree` = 5 and `λ` = 86.0.
Processing model 1431 out of 4000 with `degree` = 5 and `λ` = 86.2.
Processing model 1432 out of 4000 with `degree` = 5 and `λ` = 86.4.
Processing model 1433 out of 4000 with `degree` = 5 and `λ` = 86.60000000000001.
Processing model 1434 out of 4000 with `degree` = 5 and `λ` = 86.80000000000001.
Processing model 1435 out of 4000 with `degree` = 5 and `λ` = 87.0.
Processing model 1436 out of 4000 with `degree` = 5 and `λ` = 87.2.
Processing model 1437 out of 4000 with `degree` = 5 and `λ` = 87.4.
Processing model 1438 out of 4000 with `degree` = 5 and `λ` = 87.60000000000001.
Processing model 1439 out of 4000 with `degree` = 5 and `λ` = 87.80000000000001.
Processing model 1440 out of 4000 with `degree` = 5 and `λ` = 88.0.
Processing model 1441 out of 4000 with `degree` = 5 and `λ` = 88.2.
Processing model 1442 out of 4000 with `degree` = 5 and `λ` = 88.4.
Processing model 1443 out of 4000 with `degree` = 5 and `λ` = 88.60000000000001.
Processing model 1444 out of 4000 with `degree` = 5 and `λ` = 88.80000000000001.
Processing model 1445 out of 4000 with `degree` = 5 and `λ` = 89.0.
Processing model 1446 out of 4000 with `degree` = 5 and `λ` = 89.2.
Processing model 1447 out of 4000 with `degree` = 5 and `λ` = 89.4.
Processing model 1448 out of 4000 with `degree` = 5 and `λ` = 89.60000000000001.
Processing model 1449 out of 4000 with `degree` = 5 and `λ` = 89.80000000000001.
Processing model 1450 out of 4000 with `degree` = 5 and `λ` = 90.0.
Processing model 1451 out of 4000 with `degree` = 5 and `λ` = 90.2.
Processing model 1452 out of 4000 with `degree` = 5 and `λ` = 90.4.
Processing model 1453 out of 4000 with `degree` = 5 and `λ` = 90.60000000000001.
Processing model 1454 out of 4000 with `degree` = 5 and `λ` = 90.80000000000001.
Processing model 1455 out of 4000 with `degree` = 5 and `λ` = 91.0.
Processing model 1456 out of 4000 with `degree` = 5 and `λ` = 91.2.
Processing model 1457 out of 4000 with `degree` = 5 and `λ` = 91.4.
Processing model 1458 out of 4000 with `degree` = 5 and `λ` = 91.60000000000001.
Processing model 1459 out of 4000 with `degree` = 5 and `λ` = 91.80000000000001.
Processing model 1460 out of 4000 with `degree` = 5 and `λ` = 92.0.
Processing model 1461 out of 4000 with `degree` = 5 and `λ` = 92.2.
Processing model 1462 out of 4000 with `degree` = 5 and `λ` = 92.4.
Processing model 1463 out of 4000 with `degree` = 5 and `λ` = 92.60000000000001.
Processing model 1464 out of 4000 with `degree` = 5 and `λ` = 92.80000000000001.
Processing model 1465 out of 4000 with `degree` = 5 and `λ` = 93.0.
Processing model 1466 out of 4000 with `degree` = 5 and `λ` = 93.2.
Processing model 1467 out of 4000 with `degree` = 5 and `λ` = 93.4.
Processing model 1468 out of 4000 with `degree` = 5 and `λ` = 93.60000000000001.
Processing model 1469 out of 4000 with `degree` = 5 and `λ` = 93.80000000000001.
Processing model 1470 out of 4000 with `degree` = 5 and `λ` = 94.0.
Processing model 1471 out of 4000 with `degree` = 5 and `λ` = 94.2.
Processing model 1472 out of 4000 with `degree` = 5 and `λ` = 94.4.
Processing model 1473 out of 4000 with `degree` = 5 and `λ` = 94.60000000000001.
Processing model 1474 out of 4000 with `degree` = 5 and `λ` = 94.80000000000001.
Processing model 1475 out of 4000 with `degree` = 5 and `λ` = 95.0.
Processing model 1476 out of 4000 with `degree` = 5 and `λ` = 95.2.
Processing model 1477 out of 4000 with `degree` = 5 and `λ` = 95.4.
Processing model 1478 out of 4000 with `degree` = 5 and `λ` = 95.60000000000001.
Processing model 1479 out of 4000 with `degree` = 5 and `λ` = 95.80000000000001.
Processing model 1480 out of 4000 with `degree` = 5 and `λ` = 96.0.
Processing model 1481 out of 4000 with `degree` = 5 and `λ` = 96.2.
Processing model 1482 out of 4000 with `degree` = 5 and `λ` = 96.4.
Processing model 1483 out of 4000 with `degree` = 5 and `λ` = 96.60000000000001.
Processing model 1484 out of 4000 with `degree` = 5 and `λ` = 96.80000000000001.
Processing model 1485 out of 4000 with `degree` = 5 and `λ` = 97.0.
Processing model 1486 out of 4000 with `degree` = 5 and `λ` = 97.2.
Processing model 1487 out of 4000 with `degree` = 5 and `λ` = 97.4.
Processing model 1488 out of 4000 with `degree` = 5 and `λ` = 97.60000000000001.
Processing model 1489 out of 4000 with `degree` = 5 and `λ` = 97.80000000000001.
Processing model 1490 out of 4000 with `degree` = 5 and `λ` = 98.0.
Processing model 1491 out of 4000 with `degree` = 5 and `λ` = 98.2.
Processing model 1492 out of 4000 with `degree` = 5 and `λ` = 98.4.
Processing model 1493 out of 4000 with `degree` = 5 and `λ` = 98.60000000000001.
Processing model 1494 out of 4000 with `degree` = 5 and `λ` = 98.80000000000001.
Processing model 1495 out of 4000 with `degree` = 5 and `λ` = 99.0.
Processing model 1496 out of 4000 with `degree` = 5 and `λ` = 99.2.
Processing model 1497 out of 4000 with `degree` = 5 and `λ` = 99.4.
Processing model 1498 out of 4000 with `degree` = 5 and `λ` = 99.60000000000001.
Processing model 1499 out of 4000 with `degree` = 5 and `λ` = 99.80000000000001.
Processing model 1500 out of 4000 with `degree` = 5 and `λ` = 100.0.
Processing model 1501 out of 4000 with `degree` = 5 and `λ` = 100.2.
Processing model 1502 out of 4000 with `degree` = 5 and `λ` = 100.4.
Processing model 1503 out of 4000 with `degree` = 5 and `λ` = 100.60000000000001.
Processing model 1504 out of 4000 with `degree` = 5 and `λ` = 100.80000000000001.
Processing model 1505 out of 4000 with `degree` = 5 and `λ` = 101.0.
Processing model 1506 out of 4000 with `degree` = 5 and `λ` = 101.2.
Processing model 1507 out of 4000 with `degree` = 5 and `λ` = 101.4.
Processing model 1508 out of 4000 with `degree` = 5 and `λ` = 101.60000000000001.
Processing model 1509 out of 4000 with `degree` = 5 and `λ` = 101.80000000000001.
Processing model 1510 out of 4000 with `degree` = 5 and `λ` = 102.0.
Processing model 1511 out of 4000 with `degree` = 5 and `λ` = 102.2.
Processing model 1512 out of 4000 with `degree` = 5 and `λ` = 102.4.
Processing model 1513 out of 4000 with `degree` = 5 and `λ` = 102.60000000000001.
Processing model 1514 out of 4000 with `degree` = 5 and `λ` = 102.80000000000001.
Processing model 1515 out of 4000 with `degree` = 5 and `λ` = 103.0.
Processing model 1516 out of 4000 with `degree` = 5 and `λ` = 103.2.
Processing model 1517 out of 4000 with `degree` = 5 and `λ` = 103.4.
Processing model 1518 out of 4000 with `degree` = 5 and `λ` = 103.60000000000001.
Processing model 1519 out of 4000 with `degree` = 5 and `λ` = 103.80000000000001.
Processing model 1520 out of 4000 with `degree` = 5 and `λ` = 104.0.
Processing model 1521 out of 4000 with `degree` = 5 and `λ` = 104.2.
Processing model 1522 out of 4000 with `degree` = 5 and `λ` = 104.4.
Processing model 1523 out of 4000 with `degree` = 5 and `λ` = 104.60000000000001.
Processing model 1524 out of 4000 with `degree` = 5 and `λ` = 104.80000000000001.
Processing model 1525 out of 4000 with `degree` = 5 and `λ` = 105.0.
Processing model 1526 out of 4000 with `degree` = 5 and `λ` = 105.2.
Processing model 1527 out of 4000 with `degree` = 5 and `λ` = 105.4.
Processing model 1528 out of 4000 with `degree` = 5 and `λ` = 105.60000000000001.
Processing model 1529 out of 4000 with `degree` = 5 and `λ` = 105.80000000000001.
Processing model 1530 out of 4000 with `degree` = 5 and `λ` = 106.0.
Processing model 1531 out of 4000 with `degree` = 5 and `λ` = 106.2.
Processing model 1532 out of 4000 with `degree` = 5 and `λ` = 106.4.
Processing model 1533 out of 4000 with `degree` = 5 and `λ` = 106.60000000000001.
Processing model 1534 out of 4000 with `degree` = 5 and `λ` = 106.80000000000001.
Processing model 1535 out of 4000 with `degree` = 5 and `λ` = 107.0.
Processing model 1536 out of 4000 with `degree` = 5 and `λ` = 107.2.
Processing model 1537 out of 4000 with `degree` = 5 and `λ` = 107.4.
Processing model 1538 out of 4000 with `degree` = 5 and `λ` = 107.60000000000001.
Processing model 1539 out of 4000 with `degree` = 5 and `λ` = 107.80000000000001.
Processing model 1540 out of 4000 with `degree` = 5 and `λ` = 108.0.
Processing model 1541 out of 4000 with `degree` = 5 and `λ` = 108.2.
Processing model 1542 out of 4000 with `degree` = 5 and `λ` = 108.4.
Processing model 1543 out of 4000 with `degree` = 5 and `λ` = 108.60000000000001.
Processing model 1544 out of 4000 with `degree` = 5 and `λ` = 108.80000000000001.
Processing model 1545 out of 4000 with `degree` = 5 and `λ` = 109.0.
Processing model 1546 out of 4000 with `degree` = 5 and `λ` = 109.2.
Processing model 1547 out of 4000 with `degree` = 5 and `λ` = 109.4.
Processing model 1548 out of 4000 with `degree` = 5 and `λ` = 109.60000000000001.
Processing model 1549 out of 4000 with `degree` = 5 and `λ` = 109.80000000000001.
Processing model 1550 out of 4000 with `degree` = 5 and `λ` = 110.0.
Processing model 1551 out of 4000 with `degree` = 5 and `λ` = 110.2.
Processing model 1552 out of 4000 with `degree` = 5 and `λ` = 110.4.
Processing model 1553 out of 4000 with `degree` = 5 and `λ` = 110.60000000000001.
Processing model 1554 out of 4000 with `degree` = 5 and `λ` = 110.80000000000001.
Processing model 1555 out of 4000 with `degree` = 5 and `λ` = 111.0.
Processing model 1556 out of 4000 with `degree` = 5 and `λ` = 111.2.
Processing model 1557 out of 4000 with `degree` = 5 and `λ` = 111.4.
Processing model 1558 out of 4000 with `degree` = 5 and `λ` = 111.60000000000001.
Processing model 1559 out of 4000 with `degree` = 5 and `λ` = 111.80000000000001.
Processing model 1560 out of 4000 with `degree` = 5 and `λ` = 112.0.
Processing model 1561 out of 4000 with `degree` = 5 and `λ` = 112.2.
Processing model 1562 out of 4000 with `degree` = 5 and `λ` = 112.4.
Processing model 1563 out of 4000 with `degree` = 5 and `λ` = 112.60000000000001.
Processing model 1564 out of 4000 with `degree` = 5 and `λ` = 112.80000000000001.
Processing model 1565 out of 4000 with `degree` = 5 and `λ` = 113.0.
Processing model 1566 out of 4000 with `degree` = 5 and `λ` = 113.2.
Processing model 1567 out of 4000 with `degree` = 5 and `λ` = 113.4.
Processing model 1568 out of 4000 with `degree` = 5 and `λ` = 113.60000000000001.
Processing model 1569 out of 4000 with `degree` = 5 and `λ` = 113.80000000000001.
Processing model 1570 out of 4000 with `degree` = 5 and `λ` = 114.0.
Processing model 1571 out of 4000 with `degree` = 5 and `λ` = 114.2.
Processing model 1572 out of 4000 with `degree` = 5 and `λ` = 114.4.
Processing model 1573 out of 4000 with `degree` = 5 and `λ` = 114.60000000000001.
Processing model 1574 out of 4000 with `degree` = 5 and `λ` = 114.80000000000001.
Processing model 1575 out of 4000 with `degree` = 5 and `λ` = 115.0.
Processing model 1576 out of 4000 with `degree` = 5 and `λ` = 115.2.
Processing model 1577 out of 4000 with `degree` = 5 and `λ` = 115.4.
Processing model 1578 out of 4000 with `degree` = 5 and `λ` = 115.60000000000001.
Processing model 1579 out of 4000 with `degree` = 5 and `λ` = 115.80000000000001.
Processing model 1580 out of 4000 with `degree` = 5 and `λ` = 116.0.
Processing model 1581 out of 4000 with `degree` = 5 and `λ` = 116.2.
Processing model 1582 out of 4000 with `degree` = 5 and `λ` = 116.4.
Processing model 1583 out of 4000 with `degree` = 5 and `λ` = 116.60000000000001.
Processing model 1584 out of 4000 with `degree` = 5 and `λ` = 116.80000000000001.
Processing model 1585 out of 4000 with `degree` = 5 and `λ` = 117.0.
Processing model 1586 out of 4000 with `degree` = 5 and `λ` = 117.2.
Processing model 1587 out of 4000 with `degree` = 5 and `λ` = 117.4.
Processing model 1588 out of 4000 with `degree` = 5 and `λ` = 117.60000000000001.
Processing model 1589 out of 4000 with `degree` = 5 and `λ` = 117.80000000000001.
Processing model 1590 out of 4000 with `degree` = 5 and `λ` = 118.0.
Processing model 1591 out of 4000 with `degree` = 5 and `λ` = 118.2.
Processing model 1592 out of 4000 with `degree` = 5 and `λ` = 118.4.
Processing model 1593 out of 4000 with `degree` = 5 and `λ` = 118.60000000000001.
Processing model 1594 out of 4000 with `degree` = 5 and `λ` = 118.80000000000001.
Processing model 1595 out of 4000 with `degree` = 5 and `λ` = 119.0.
Processing model 1596 out of 4000 with `degree` = 5 and `λ` = 119.2.
Processing model 1597 out of 4000 with `degree` = 5 and `λ` = 119.4.
Processing model 1598 out of 4000 with `degree` = 5 and `λ` = 119.60000000000001.
Processing model 1599 out of 4000 with `degree` = 5 and `λ` = 119.80000000000001.
Processing model 1600 out of 4000 with `degree` = 5 and `λ` = 120.0.
Processing model 1601 out of 4000 with `degree` = 5 and `λ` = 120.2.
Processing model 1602 out of 4000 with `degree` = 5 and `λ` = 120.4.
Processing model 1603 out of 4000 with `degree` = 5 and `λ` = 120.60000000000001.
Processing model 1604 out of 4000 with `degree` = 5 and `λ` = 120.80000000000001.
Processing model 1605 out of 4000 with `degree` = 5 and `λ` = 121.0.
Processing model 1606 out of 4000 with `degree` = 5 and `λ` = 121.2.
Processing model 1607 out of 4000 with `degree` = 5 and `λ` = 121.4.
Processing model 1608 out of 4000 with `degree` = 5 and `λ` = 121.60000000000001.
Processing model 1609 out of 4000 with `degree` = 5 and `λ` = 121.80000000000001.
Processing model 1610 out of 4000 with `degree` = 5 and `λ` = 122.0.
Processing model 1611 out of 4000 with `degree` = 5 and `λ` = 122.2.
Processing model 1612 out of 4000 with `degree` = 5 and `λ` = 122.4.
Processing model 1613 out of 4000 with `degree` = 5 and `λ` = 122.60000000000001.
Processing model 1614 out of 4000 with `degree` = 5 and `λ` = 122.80000000000001.
Processing model 1615 out of 4000 with `degree` = 5 and `λ` = 123.0.
Processing model 1616 out of 4000 with `degree` = 5 and `λ` = 123.2.
Processing model 1617 out of 4000 with `degree` = 5 and `λ` = 123.4.
Processing model 1618 out of 4000 with `degree` = 5 and `λ` = 123.60000000000001.
Processing model 1619 out of 4000 with `degree` = 5 and `λ` = 123.80000000000001.
Processing model 1620 out of 4000 with `degree` = 5 and `λ` = 124.0.
Processing model 1621 out of 4000 with `degree` = 5 and `λ` = 124.2.
Processing model 1622 out of 4000 with `degree` = 5 and `λ` = 124.4.
Processing model 1623 out of 4000 with `degree` = 5 and `λ` = 124.60000000000001.
Processing model 1624 out of 4000 with `degree` = 5 and `λ` = 124.80000000000001.
Processing model 1625 out of 4000 with `degree` = 5 and `λ` = 125.0.
Processing model 1626 out of 4000 with `degree` = 5 and `λ` = 125.2.
Processing model 1627 out of 4000 with `degree` = 5 and `λ` = 125.4.
Processing model 1628 out of 4000 with `degree` = 5 and `λ` = 125.60000000000001.
Processing model 1629 out of 4000 with `degree` = 5 and `λ` = 125.80000000000001.
Processing model 1630 out of 4000 with `degree` = 5 and `λ` = 126.0.
Processing model 1631 out of 4000 with `degree` = 5 and `λ` = 126.2.
Processing model 1632 out of 4000 with `degree` = 5 and `λ` = 126.4.
Processing model 1633 out of 4000 with `degree` = 5 and `λ` = 126.60000000000001.
Processing model 1634 out of 4000 with `degree` = 5 and `λ` = 126.80000000000001.
Processing model 1635 out of 4000 with `degree` = 5 and `λ` = 127.0.
Processing model 1636 out of 4000 with `degree` = 5 and `λ` = 127.2.
Processing model 1637 out of 4000 with `degree` = 5 and `λ` = 127.4.
Processing model 1638 out of 4000 with `degree` = 5 and `λ` = 127.60000000000001.
Processing model 1639 out of 4000 with `degree` = 5 and `λ` = 127.80000000000001.
Processing model 1640 out of 4000 with `degree` = 5 and `λ` = 128.0.
Processing model 1641 out of 4000 with `degree` = 5 and `λ` = 128.20000000000002.
Processing model 1642 out of 4000 with `degree` = 5 and `λ` = 128.4.
Processing model 1643 out of 4000 with `degree` = 5 and `λ` = 128.6.
Processing model 1644 out of 4000 with `degree` = 5 and `λ` = 128.8.
Processing model 1645 out of 4000 with `degree` = 5 and `λ` = 129.0.
Processing model 1646 out of 4000 with `degree` = 5 and `λ` = 129.20000000000002.
Processing model 1647 out of 4000 with `degree` = 5 and `λ` = 129.4.
Processing model 1648 out of 4000 with `degree` = 5 and `λ` = 129.6.
Processing model 1649 out of 4000 with `degree` = 5 and `λ` = 129.8.
Processing model 1650 out of 4000 with `degree` = 5 and `λ` = 130.0.
Processing model 1651 out of 4000 with `degree` = 5 and `λ` = 130.20000000000002.
Processing model 1652 out of 4000 with `degree` = 5 and `λ` = 130.4.
Processing model 1653 out of 4000 with `degree` = 5 and `λ` = 130.6.
Processing model 1654 out of 4000 with `degree` = 5 and `λ` = 130.8.
Processing model 1655 out of 4000 with `degree` = 5 and `λ` = 131.0.
Processing model 1656 out of 4000 with `degree` = 5 and `λ` = 131.20000000000002.
Processing model 1657 out of 4000 with `degree` = 5 and `λ` = 131.4.
Processing model 1658 out of 4000 with `degree` = 5 and `λ` = 131.6.
Processing model 1659 out of 4000 with `degree` = 5 and `λ` = 131.8.
Processing model 1660 out of 4000 with `degree` = 5 and `λ` = 132.0.
Processing model 1661 out of 4000 with `degree` = 5 and `λ` = 132.20000000000002.
Processing model 1662 out of 4000 with `degree` = 5 and `λ` = 132.4.
Processing model 1663 out of 4000 with `degree` = 5 and `λ` = 132.6.
Processing model 1664 out of 4000 with `degree` = 5 and `λ` = 132.8.
Processing model 1665 out of 4000 with `degree` = 5 and `λ` = 133.0.
Processing model 1666 out of 4000 with `degree` = 5 and `λ` = 133.20000000000002.
Processing model 1667 out of 4000 with `degree` = 5 and `λ` = 133.4.
Processing model 1668 out of 4000 with `degree` = 5 and `λ` = 133.6.
Processing model 1669 out of 4000 with `degree` = 5 and `λ` = 133.8.
Processing model 1670 out of 4000 with `degree` = 5 and `λ` = 134.0.
Processing model 1671 out of 4000 with `degree` = 5 and `λ` = 134.20000000000002.
Processing model 1672 out of 4000 with `degree` = 5 and `λ` = 134.4.
Processing model 1673 out of 4000 with `degree` = 5 and `λ` = 134.6.
Processing model 1674 out of 4000 with `degree` = 5 and `λ` = 134.8.
Processing model 1675 out of 4000 with `degree` = 5 and `λ` = 135.0.
Processing model 1676 out of 4000 with `degree` = 5 and `λ` = 135.20000000000002.
Processing model 1677 out of 4000 with `degree` = 5 and `λ` = 135.4.
Processing model 1678 out of 4000 with `degree` = 5 and `λ` = 135.6.
Processing model 1679 out of 4000 with `degree` = 5 and `λ` = 135.8.
Processing model 1680 out of 4000 with `degree` = 5 and `λ` = 136.0.
Processing model 1681 out of 4000 with `degree` = 5 and `λ` = 136.20000000000002.
Processing model 1682 out of 4000 with `degree` = 5 and `λ` = 136.4.
Processing model 1683 out of 4000 with `degree` = 5 and `λ` = 136.6.
Processing model 1684 out of 4000 with `degree` = 5 and `λ` = 136.8.
Processing model 1685 out of 4000 with `degree` = 5 and `λ` = 137.0.
Processing model 1686 out of 4000 with `degree` = 5 and `λ` = 137.20000000000002.
Processing model 1687 out of 4000 with `degree` = 5 and `λ` = 137.4.
Processing model 1688 out of 4000 with `degree` = 5 and `λ` = 137.6.
Processing model 1689 out of 4000 with `degree` = 5 and `λ` = 137.8.
Processing model 1690 out of 4000 with `degree` = 5 and `λ` = 138.0.
Processing model 1691 out of 4000 with `degree` = 5 and `λ` = 138.20000000000002.
Processing model 1692 out of 4000 with `degree` = 5 and `λ` = 138.4.
Processing model 1693 out of 4000 with `degree` = 5 and `λ` = 138.6.
Processing model 1694 out of 4000 with `degree` = 5 and `λ` = 138.8.
Processing model 1695 out of 4000 with `degree` = 5 and `λ` = 139.0.
Processing model 1696 out of 4000 with `degree` = 5 and `λ` = 139.20000000000002.
Processing model 1697 out of 4000 with `degree` = 5 and `λ` = 139.4.
Processing model 1698 out of 4000 with `degree` = 5 and `λ` = 139.6.
Processing model 1699 out of 4000 with `degree` = 5 and `λ` = 139.8.
Processing model 1700 out of 4000 with `degree` = 5 and `λ` = 140.0.
Processing model 1701 out of 4000 with `degree` = 5 and `λ` = 140.20000000000002.
Processing model 1702 out of 4000 with `degree` = 5 and `λ` = 140.4.
Processing model 1703 out of 4000 with `degree` = 5 and `λ` = 140.6.
Processing model 1704 out of 4000 with `degree` = 5 and `λ` = 140.8.
Processing model 1705 out of 4000 with `degree` = 5 and `λ` = 141.0.
Processing model 1706 out of 4000 with `degree` = 5 and `λ` = 141.20000000000002.
Processing model 1707 out of 4000 with `degree` = 5 and `λ` = 141.4.
Processing model 1708 out of 4000 with `degree` = 5 and `λ` = 141.6.
Processing model 1709 out of 4000 with `degree` = 5 and `λ` = 141.8.
Processing model 1710 out of 4000 with `degree` = 5 and `λ` = 142.0.
Processing model 1711 out of 4000 with `degree` = 5 and `λ` = 142.20000000000002.
Processing model 1712 out of 4000 with `degree` = 5 and `λ` = 142.4.
Processing model 1713 out of 4000 with `degree` = 5 and `λ` = 142.6.
Processing model 1714 out of 4000 with `degree` = 5 and `λ` = 142.8.
Processing model 1715 out of 4000 with `degree` = 5 and `λ` = 143.0.
Processing model 1716 out of 4000 with `degree` = 5 and `λ` = 143.20000000000002.
Processing model 1717 out of 4000 with `degree` = 5 and `λ` = 143.4.
Processing model 1718 out of 4000 with `degree` = 5 and `λ` = 143.6.
Processing model 1719 out of 4000 with `degree` = 5 and `λ` = 143.8.
Processing model 1720 out of 4000 with `degree` = 5 and `λ` = 144.0.
Processing model 1721 out of 4000 with `degree` = 5 and `λ` = 144.20000000000002.
Processing model 1722 out of 4000 with `degree` = 5 and `λ` = 144.4.
Processing model 1723 out of 4000 with `degree` = 5 and `λ` = 144.6.
Processing model 1724 out of 4000 with `degree` = 5 and `λ` = 144.8.
Processing model 1725 out of 4000 with `degree` = 5 and `λ` = 145.0.
Processing model 1726 out of 4000 with `degree` = 5 and `λ` = 145.20000000000002.
Processing model 1727 out of 4000 with `degree` = 5 and `λ` = 145.4.
Processing model 1728 out of 4000 with `degree` = 5 and `λ` = 145.6.
Processing model 1729 out of 4000 with `degree` = 5 and `λ` = 145.8.
Processing model 1730 out of 4000 with `degree` = 5 and `λ` = 146.0.
Processing model 1731 out of 4000 with `degree` = 5 and `λ` = 146.20000000000002.
Processing model 1732 out of 4000 with `degree` = 5 and `λ` = 146.4.
Processing model 1733 out of 4000 with `degree` = 5 and `λ` = 146.6.
Processing model 1734 out of 4000 with `degree` = 5 and `λ` = 146.8.
Processing model 1735 out of 4000 with `degree` = 5 and `λ` = 147.0.
Processing model 1736 out of 4000 with `degree` = 5 and `λ` = 147.20000000000002.
Processing model 1737 out of 4000 with `degree` = 5 and `λ` = 147.4.
Processing model 1738 out of 4000 with `degree` = 5 and `λ` = 147.6.
Processing model 1739 out of 4000 with `degree` = 5 and `λ` = 147.8.
Processing model 1740 out of 4000 with `degree` = 5 and `λ` = 148.0.
Processing model 1741 out of 4000 with `degree` = 5 and `λ` = 148.20000000000002.
Processing model 1742 out of 4000 with `degree` = 5 and `λ` = 148.4.
Processing model 1743 out of 4000 with `degree` = 5 and `λ` = 148.6.
Processing model 1744 out of 4000 with `degree` = 5 and `λ` = 148.8.
Processing model 1745 out of 4000 with `degree` = 5 and `λ` = 149.0.
Processing model 1746 out of 4000 with `degree` = 5 and `λ` = 149.20000000000002.
Processing model 1747 out of 4000 with `degree` = 5 and `λ` = 149.4.
Processing model 1748 out of 4000 with `degree` = 5 and `λ` = 149.6.
Processing model 1749 out of 4000 with `degree` = 5 and `λ` = 149.8.
Processing model 1750 out of 4000 with `degree` = 5 and `λ` = 150.0.
Processing model 1751 out of 4000 with `degree` = 5 and `λ` = 150.20000000000002.
Processing model 1752 out of 4000 with `degree` = 5 and `λ` = 150.4.
Processing model 1753 out of 4000 with `degree` = 5 and `λ` = 150.6.
Processing model 1754 out of 4000 with `degree` = 5 and `λ` = 150.8.
Processing model 1755 out of 4000 with `degree` = 5 and `λ` = 151.0.
Processing model 1756 out of 4000 with `degree` = 5 and `λ` = 151.20000000000002.
Processing model 1757 out of 4000 with `degree` = 5 and `λ` = 151.4.
Processing model 1758 out of 4000 with `degree` = 5 and `λ` = 151.6.
Processing model 1759 out of 4000 with `degree` = 5 and `λ` = 151.8.
Processing model 1760 out of 4000 with `degree` = 5 and `λ` = 152.0.
Processing model 1761 out of 4000 with `degree` = 5 and `λ` = 152.20000000000002.
Processing model 1762 out of 4000 with `degree` = 5 and `λ` = 152.4.
Processing model 1763 out of 4000 with `degree` = 5 and `λ` = 152.6.
Processing model 1764 out of 4000 with `degree` = 5 and `λ` = 152.8.
Processing model 1765 out of 4000 with `degree` = 5 and `λ` = 153.0.
Processing model 1766 out of 4000 with `degree` = 5 and `λ` = 153.20000000000002.
Processing model 1767 out of 4000 with `degree` = 5 and `λ` = 153.4.
Processing model 1768 out of 4000 with `degree` = 5 and `λ` = 153.60000000000002.
Processing model 1769 out of 4000 with `degree` = 5 and `λ` = 153.8.
Processing model 1770 out of 4000 with `degree` = 5 and `λ` = 154.0.
Processing model 1771 out of 4000 with `degree` = 5 and `λ` = 154.20000000000002.
Processing model 1772 out of 4000 with `degree` = 5 and `λ` = 154.4.
Processing model 1773 out of 4000 with `degree` = 5 and `λ` = 154.60000000000002.
Processing model 1774 out of 4000 with `degree` = 5 and `λ` = 154.8.
Processing model 1775 out of 4000 with `degree` = 5 and `λ` = 155.0.
Processing model 1776 out of 4000 with `degree` = 5 and `λ` = 155.20000000000002.
Processing model 1777 out of 4000 with `degree` = 5 and `λ` = 155.4.
Processing model 1778 out of 4000 with `degree` = 5 and `λ` = 155.60000000000002.
Processing model 1779 out of 4000 with `degree` = 5 and `λ` = 155.8.
Processing model 1780 out of 4000 with `degree` = 5 and `λ` = 156.0.
Processing model 1781 out of 4000 with `degree` = 5 and `λ` = 156.20000000000002.
Processing model 1782 out of 4000 with `degree` = 5 and `λ` = 156.4.
Processing model 1783 out of 4000 with `degree` = 5 and `λ` = 156.60000000000002.
Processing model 1784 out of 4000 with `degree` = 5 and `λ` = 156.8.
Processing model 1785 out of 4000 with `degree` = 5 and `λ` = 157.0.
Processing model 1786 out of 4000 with `degree` = 5 and `λ` = 157.20000000000002.
Processing model 1787 out of 4000 with `degree` = 5 and `λ` = 157.4.
Processing model 1788 out of 4000 with `degree` = 5 and `λ` = 157.60000000000002.
Processing model 1789 out of 4000 with `degree` = 5 and `λ` = 157.8.
Processing model 1790 out of 4000 with `degree` = 5 and `λ` = 158.0.
Processing model 1791 out of 4000 with `degree` = 5 and `λ` = 158.20000000000002.
Processing model 1792 out of 4000 with `degree` = 5 and `λ` = 158.4.
Processing model 1793 out of 4000 with `degree` = 5 and `λ` = 158.60000000000002.
Processing model 1794 out of 4000 with `degree` = 5 and `λ` = 158.8.
Processing model 1795 out of 4000 with `degree` = 5 and `λ` = 159.0.
Processing model 1796 out of 4000 with `degree` = 5 and `λ` = 159.20000000000002.
Processing model 1797 out of 4000 with `degree` = 5 and `λ` = 159.4.
Processing model 1798 out of 4000 with `degree` = 5 and `λ` = 159.60000000000002.
Processing model 1799 out of 4000 with `degree` = 5 and `λ` = 159.8.
Processing model 1800 out of 4000 with `degree` = 5 and `λ` = 160.0.
Processing model 1801 out of 4000 with `degree` = 5 and `λ` = 160.20000000000002.
Processing model 1802 out of 4000 with `degree` = 5 and `λ` = 160.4.
Processing model 1803 out of 4000 with `degree` = 5 and `λ` = 160.60000000000002.
Processing model 1804 out of 4000 with `degree` = 5 and `λ` = 160.8.
Processing model 1805 out of 4000 with `degree` = 5 and `λ` = 161.0.
Processing model 1806 out of 4000 with `degree` = 5 and `λ` = 161.20000000000002.
Processing model 1807 out of 4000 with `degree` = 5 and `λ` = 161.4.
Processing model 1808 out of 4000 with `degree` = 5 and `λ` = 161.60000000000002.
Processing model 1809 out of 4000 with `degree` = 5 and `λ` = 161.8.
Processing model 1810 out of 4000 with `degree` = 5 and `λ` = 162.0.
Processing model 1811 out of 4000 with `degree` = 5 and `λ` = 162.20000000000002.
Processing model 1812 out of 4000 with `degree` = 5 and `λ` = 162.4.
Processing model 1813 out of 4000 with `degree` = 5 and `λ` = 162.60000000000002.
Processing model 1814 out of 4000 with `degree` = 5 and `λ` = 162.8.
Processing model 1815 out of 4000 with `degree` = 5 and `λ` = 163.0.
Processing model 1816 out of 4000 with `degree` = 5 and `λ` = 163.20000000000002.
Processing model 1817 out of 4000 with `degree` = 5 and `λ` = 163.4.
Processing model 1818 out of 4000 with `degree` = 5 and `λ` = 163.60000000000002.
Processing model 1819 out of 4000 with `degree` = 5 and `λ` = 163.8.
Processing model 1820 out of 4000 with `degree` = 5 and `λ` = 164.0.
Processing model 1821 out of 4000 with `degree` = 5 and `λ` = 164.20000000000002.
Processing model 1822 out of 4000 with `degree` = 5 and `λ` = 164.4.
Processing model 1823 out of 4000 with `degree` = 5 and `λ` = 164.60000000000002.
Processing model 1824 out of 4000 with `degree` = 5 and `λ` = 164.8.
Processing model 1825 out of 4000 with `degree` = 5 and `λ` = 165.0.
Processing model 1826 out of 4000 with `degree` = 5 and `λ` = 165.20000000000002.
Processing model 1827 out of 4000 with `degree` = 5 and `λ` = 165.4.
Processing model 1828 out of 4000 with `degree` = 5 and `λ` = 165.60000000000002.
Processing model 1829 out of 4000 with `degree` = 5 and `λ` = 165.8.
Processing model 1830 out of 4000 with `degree` = 5 and `λ` = 166.0.
Processing model 1831 out of 4000 with `degree` = 5 and `λ` = 166.20000000000002.
Processing model 1832 out of 4000 with `degree` = 5 and `λ` = 166.4.
Processing model 1833 out of 4000 with `degree` = 5 and `λ` = 166.60000000000002.
Processing model 1834 out of 4000 with `degree` = 5 and `λ` = 166.8.
Processing model 1835 out of 4000 with `degree` = 5 and `λ` = 167.0.
Processing model 1836 out of 4000 with `degree` = 5 and `λ` = 167.20000000000002.
Processing model 1837 out of 4000 with `degree` = 5 and `λ` = 167.4.
Processing model 1838 out of 4000 with `degree` = 5 and `λ` = 167.60000000000002.
Processing model 1839 out of 4000 with `degree` = 5 and `λ` = 167.8.
Processing model 1840 out of 4000 with `degree` = 5 and `λ` = 168.0.
Processing model 1841 out of 4000 with `degree` = 5 and `λ` = 168.20000000000002.
Processing model 1842 out of 4000 with `degree` = 5 and `λ` = 168.4.
Processing model 1843 out of 4000 with `degree` = 5 and `λ` = 168.60000000000002.
Processing model 1844 out of 4000 with `degree` = 5 and `λ` = 168.8.
Processing model 1845 out of 4000 with `degree` = 5 and `λ` = 169.0.
Processing model 1846 out of 4000 with `degree` = 5 and `λ` = 169.20000000000002.
Processing model 1847 out of 4000 with `degree` = 5 and `λ` = 169.4.
Processing model 1848 out of 4000 with `degree` = 5 and `λ` = 169.60000000000002.
Processing model 1849 out of 4000 with `degree` = 5 and `λ` = 169.8.
Processing model 1850 out of 4000 with `degree` = 5 and `λ` = 170.0.
Processing model 1851 out of 4000 with `degree` = 5 and `λ` = 170.20000000000002.
Processing model 1852 out of 4000 with `degree` = 5 and `λ` = 170.4.
Processing model 1853 out of 4000 with `degree` = 5 and `λ` = 170.60000000000002.
Processing model 1854 out of 4000 with `degree` = 5 and `λ` = 170.8.
Processing model 1855 out of 4000 with `degree` = 5 and `λ` = 171.0.
Processing model 1856 out of 4000 with `degree` = 5 and `λ` = 171.20000000000002.
Processing model 1857 out of 4000 with `degree` = 5 and `λ` = 171.4.
Processing model 1858 out of 4000 with `degree` = 5 and `λ` = 171.60000000000002.
Processing model 1859 out of 4000 with `degree` = 5 and `λ` = 171.8.
Processing model 1860 out of 4000 with `degree` = 5 and `λ` = 172.0.
Processing model 1861 out of 4000 with `degree` = 5 and `λ` = 172.20000000000002.
Processing model 1862 out of 4000 with `degree` = 5 and `λ` = 172.4.
Processing model 1863 out of 4000 with `degree` = 5 and `λ` = 172.60000000000002.
Processing model 1864 out of 4000 with `degree` = 5 and `λ` = 172.8.
Processing model 1865 out of 4000 with `degree` = 5 and `λ` = 173.0.
Processing model 1866 out of 4000 with `degree` = 5 and `λ` = 173.20000000000002.
Processing model 1867 out of 4000 with `degree` = 5 and `λ` = 173.4.
Processing model 1868 out of 4000 with `degree` = 5 and `λ` = 173.60000000000002.
Processing model 1869 out of 4000 with `degree` = 5 and `λ` = 173.8.
Processing model 1870 out of 4000 with `degree` = 5 and `λ` = 174.0.
Processing model 1871 out of 4000 with `degree` = 5 and `λ` = 174.20000000000002.
Processing model 1872 out of 4000 with `degree` = 5 and `λ` = 174.4.
Processing model 1873 out of 4000 with `degree` = 5 and `λ` = 174.60000000000002.
Processing model 1874 out of 4000 with `degree` = 5 and `λ` = 174.8.
Processing model 1875 out of 4000 with `degree` = 5 and `λ` = 175.0.
Processing model 1876 out of 4000 with `degree` = 5 and `λ` = 175.20000000000002.
Processing model 1877 out of 4000 with `degree` = 5 and `λ` = 175.4.
Processing model 1878 out of 4000 with `degree` = 5 and `λ` = 175.60000000000002.
Processing model 1879 out of 4000 with `degree` = 5 and `λ` = 175.8.
Processing model 1880 out of 4000 with `degree` = 5 and `λ` = 176.0.
Processing model 1881 out of 4000 with `degree` = 5 and `λ` = 176.20000000000002.
Processing model 1882 out of 4000 with `degree` = 5 and `λ` = 176.4.
Processing model 1883 out of 4000 with `degree` = 5 and `λ` = 176.60000000000002.
Processing model 1884 out of 4000 with `degree` = 5 and `λ` = 176.8.
Processing model 1885 out of 4000 with `degree` = 5 and `λ` = 177.0.
Processing model 1886 out of 4000 with `degree` = 5 and `λ` = 177.20000000000002.
Processing model 1887 out of 4000 with `degree` = 5 and `λ` = 177.4.
Processing model 1888 out of 4000 with `degree` = 5 and `λ` = 177.60000000000002.
Processing model 1889 out of 4000 with `degree` = 5 and `λ` = 177.8.
Processing model 1890 out of 4000 with `degree` = 5 and `λ` = 178.0.
Processing model 1891 out of 4000 with `degree` = 5 and `λ` = 178.20000000000002.
Processing model 1892 out of 4000 with `degree` = 5 and `λ` = 178.4.
Processing model 1893 out of 4000 with `degree` = 5 and `λ` = 178.60000000000002.
Processing model 1894 out of 4000 with `degree` = 5 and `λ` = 178.8.
Processing model 1895 out of 4000 with `degree` = 5 and `λ` = 179.0.
Processing model 1896 out of 4000 with `degree` = 5 and `λ` = 179.20000000000002.
Processing model 1897 out of 4000 with `degree` = 5 and `λ` = 179.4.
Processing model 1898 out of 4000 with `degree` = 5 and `λ` = 179.60000000000002.
Processing model 1899 out of 4000 with `degree` = 5 and `λ` = 179.8.
Processing model 1900 out of 4000 with `degree` = 5 and `λ` = 180.0.
Processing model 1901 out of 4000 with `degree` = 5 and `λ` = 180.20000000000002.
Processing model 1902 out of 4000 with `degree` = 5 and `λ` = 180.4.
Processing model 1903 out of 4000 with `degree` = 5 and `λ` = 180.60000000000002.
Processing model 1904 out of 4000 with `degree` = 5 and `λ` = 180.8.
Processing model 1905 out of 4000 with `degree` = 5 and `λ` = 181.0.
Processing model 1906 out of 4000 with `degree` = 5 and `λ` = 181.20000000000002.
Processing model 1907 out of 4000 with `degree` = 5 and `λ` = 181.4.
Processing model 1908 out of 4000 with `degree` = 5 and `λ` = 181.60000000000002.
Processing model 1909 out of 4000 with `degree` = 5 and `λ` = 181.8.
Processing model 1910 out of 4000 with `degree` = 5 and `λ` = 182.0.
Processing model 1911 out of 4000 with `degree` = 5 and `λ` = 182.20000000000002.
Processing model 1912 out of 4000 with `degree` = 5 and `λ` = 182.4.
Processing model 1913 out of 4000 with `degree` = 5 and `λ` = 182.60000000000002.
Processing model 1914 out of 4000 with `degree` = 5 and `λ` = 182.8.
Processing model 1915 out of 4000 with `degree` = 5 and `λ` = 183.0.
Processing model 1916 out of 4000 with `degree` = 5 and `λ` = 183.20000000000002.
Processing model 1917 out of 4000 with `degree` = 5 and `λ` = 183.4.
Processing model 1918 out of 4000 with `degree` = 5 and `λ` = 183.60000000000002.
Processing model 1919 out of 4000 with `degree` = 5 and `λ` = 183.8.
Processing model 1920 out of 4000 with `degree` = 5 and `λ` = 184.0.
Processing model 1921 out of 4000 with `degree` = 5 and `λ` = 184.20000000000002.
Processing model 1922 out of 4000 with `degree` = 5 and `λ` = 184.4.
Processing model 1923 out of 4000 with `degree` = 5 and `λ` = 184.60000000000002.
Processing model 1924 out of 4000 with `degree` = 5 and `λ` = 184.8.
Processing model 1925 out of 4000 with `degree` = 5 and `λ` = 185.0.
Processing model 1926 out of 4000 with `degree` = 5 and `λ` = 185.20000000000002.
Processing model 1927 out of 4000 with `degree` = 5 and `λ` = 185.4.
Processing model 1928 out of 4000 with `degree` = 5 and `λ` = 185.60000000000002.
Processing model 1929 out of 4000 with `degree` = 5 and `λ` = 185.8.
Processing model 1930 out of 4000 with `degree` = 5 and `λ` = 186.0.
Processing model 1931 out of 4000 with `degree` = 5 and `λ` = 186.20000000000002.
Processing model 1932 out of 4000 with `degree` = 5 and `λ` = 186.4.
Processing model 1933 out of 4000 with `degree` = 5 and `λ` = 186.60000000000002.
Processing model 1934 out of 4000 with `degree` = 5 and `λ` = 186.8.
Processing model 1935 out of 4000 with `degree` = 5 and `λ` = 187.0.
Processing model 1936 out of 4000 with `degree` = 5 and `λ` = 187.20000000000002.
Processing model 1937 out of 4000 with `degree` = 5 and `λ` = 187.4.
Processing model 1938 out of 4000 with `degree` = 5 and `λ` = 187.60000000000002.
Processing model 1939 out of 4000 with `degree` = 5 and `λ` = 187.8.
Processing model 1940 out of 4000 with `degree` = 5 and `λ` = 188.0.
Processing model 1941 out of 4000 with `degree` = 5 and `λ` = 188.20000000000002.
Processing model 1942 out of 4000 with `degree` = 5 and `λ` = 188.4.
Processing model 1943 out of 4000 with `degree` = 5 and `λ` = 188.60000000000002.
Processing model 1944 out of 4000 with `degree` = 5 and `λ` = 188.8.
Processing model 1945 out of 4000 with `degree` = 5 and `λ` = 189.0.
Processing model 1946 out of 4000 with `degree` = 5 and `λ` = 189.20000000000002.
Processing model 1947 out of 4000 with `degree` = 5 and `λ` = 189.4.
Processing model 1948 out of 4000 with `degree` = 5 and `λ` = 189.60000000000002.
Processing model 1949 out of 4000 with `degree` = 5 and `λ` = 189.8.
Processing model 1950 out of 4000 with `degree` = 5 and `λ` = 190.0.
Processing model 1951 out of 4000 with `degree` = 5 and `λ` = 190.20000000000002.
Processing model 1952 out of 4000 with `degree` = 5 and `λ` = 190.4.
Processing model 1953 out of 4000 with `degree` = 5 and `λ` = 190.60000000000002.
Processing model 1954 out of 4000 with `degree` = 5 and `λ` = 190.8.
Processing model 1955 out of 4000 with `degree` = 5 and `λ` = 191.0.
Processing model 1956 out of 4000 with `degree` = 5 and `λ` = 191.20000000000002.
Processing model 1957 out of 4000 with `degree` = 5 and `λ` = 191.4.
Processing model 1958 out of 4000 with `degree` = 5 and `λ` = 191.60000000000002.
Processing model 1959 out of 4000 with `degree` = 5 and `λ` = 191.8.
Processing model 1960 out of 4000 with `degree` = 5 and `λ` = 192.0.
Processing model 1961 out of 4000 with `degree` = 5 and `λ` = 192.20000000000002.
Processing model 1962 out of 4000 with `degree` = 5 and `λ` = 192.4.
Processing model 1963 out of 4000 with `degree` = 5 and `λ` = 192.60000000000002.
Processing model 1964 out of 4000 with `degree` = 5 and `λ` = 192.8.
Processing model 1965 out of 4000 with `degree` = 5 and `λ` = 193.0.
Processing model 1966 out of 4000 with `degree` = 5 and `λ` = 193.20000000000002.
Processing model 1967 out of 4000 with `degree` = 5 and `λ` = 193.4.
Processing model 1968 out of 4000 with `degree` = 5 and `λ` = 193.60000000000002.
Processing model 1969 out of 4000 with `degree` = 5 and `λ` = 193.8.
Processing model 1970 out of 4000 with `degree` = 5 and `λ` = 194.0.
Processing model 1971 out of 4000 with `degree` = 5 and `λ` = 194.20000000000002.
Processing model 1972 out of 4000 with `degree` = 5 and `λ` = 194.4.
Processing model 1973 out of 4000 with `degree` = 5 and `λ` = 194.60000000000002.
Processing model 1974 out of 4000 with `degree` = 5 and `λ` = 194.8.
Processing model 1975 out of 4000 with `degree` = 5 and `λ` = 195.0.
Processing model 1976 out of 4000 with `degree` = 5 and `λ` = 195.20000000000002.
Processing model 1977 out of 4000 with `degree` = 5 and `λ` = 195.4.
Processing model 1978 out of 4000 with `degree` = 5 and `λ` = 195.60000000000002.
Processing model 1979 out of 4000 with `degree` = 5 and `λ` = 195.8.
Processing model 1980 out of 4000 with `degree` = 5 and `λ` = 196.0.
Processing model 1981 out of 4000 with `degree` = 5 and `λ` = 196.20000000000002.
Processing model 1982 out of 4000 with `degree` = 5 and `λ` = 196.4.
Processing model 1983 out of 4000 with `degree` = 5 and `λ` = 196.60000000000002.
Processing model 1984 out of 4000 with `degree` = 5 and `λ` = 196.8.
Processing model 1985 out of 4000 with `degree` = 5 and `λ` = 197.0.
Processing model 1986 out of 4000 with `degree` = 5 and `λ` = 197.20000000000002.
Processing model 1987 out of 4000 with `degree` = 5 and `λ` = 197.4.
Processing model 1988 out of 4000 with `degree` = 5 and `λ` = 197.60000000000002.
Processing model 1989 out of 4000 with `degree` = 5 and `λ` = 197.8.
Processing model 1990 out of 4000 with `degree` = 5 and `λ` = 198.0.
Processing model 1991 out of 4000 with `degree` = 5 and `λ` = 198.20000000000002.
Processing model 1992 out of 4000 with `degree` = 5 and `λ` = 198.4.
Processing model 1993 out of 4000 with `degree` = 5 and `λ` = 198.60000000000002.
Processing model 1994 out of 4000 with `degree` = 5 and `λ` = 198.8.
Processing model 1995 out of 4000 with `degree` = 5 and `λ` = 199.0.
Processing model 1996 out of 4000 with `degree` = 5 and `λ` = 199.20000000000002.
Processing model 1997 out of 4000 with `degree` = 5 and `λ` = 199.4.
Processing model 1998 out of 4000 with `degree` = 5 and `λ` = 199.60000000000002.
Processing model 1999 out of 4000 with `degree` = 5 and `λ` = 199.8.
Processing model 2000 out of 4000 with `degree` = 5 and `λ` = 200.0.
Processing model 2001 out of 4000 with `degree` = 7 and `λ` = 0.2.
Processing model 2002 out of 4000 with `degree` = 7 and `λ` = 0.4.
Processing model 2003 out of 4000 with `degree` = 7 and `λ` = 0.6000000000000001.
Processing model 2004 out of 4000 with `degree` = 7 and `λ` = 0.8.
Processing model 2005 out of 4000 with `degree` = 7 and `λ` = 1.0.
Processing model 2006 out of 4000 with `degree` = 7 and `λ` = 1.2000000000000002.
Processing model 2007 out of 4000 with `degree` = 7 and `λ` = 1.4000000000000001.
Processing model 2008 out of 4000 with `degree` = 7 and `λ` = 1.6.
Processing model 2009 out of 4000 with `degree` = 7 and `λ` = 1.8.
Processing model 2010 out of 4000 with `degree` = 7 and `λ` = 2.0.
Processing model 2011 out of 4000 with `degree` = 7 and `λ` = 2.2.
Processing model 2012 out of 4000 with `degree` = 7 and `λ` = 2.4000000000000004.
Processing model 2013 out of 4000 with `degree` = 7 and `λ` = 2.6.
Processing model 2014 out of 4000 with `degree` = 7 and `λ` = 2.8000000000000003.
Processing model 2015 out of 4000 with `degree` = 7 and `λ` = 3.0.
Processing model 2016 out of 4000 with `degree` = 7 and `λ` = 3.2.
Processing model 2017 out of 4000 with `degree` = 7 and `λ` = 3.4000000000000004.
Processing model 2018 out of 4000 with `degree` = 7 and `λ` = 3.6.
Processing model 2019 out of 4000 with `degree` = 7 and `λ` = 3.8000000000000003.
Processing model 2020 out of 4000 with `degree` = 7 and `λ` = 4.0.
Processing model 2021 out of 4000 with `degree` = 7 and `λ` = 4.2.
Processing model 2022 out of 4000 with `degree` = 7 and `λ` = 4.4.
Processing model 2023 out of 4000 with `degree` = 7 and `λ` = 4.6000000000000005.
Processing model 2024 out of 4000 with `degree` = 7 and `λ` = 4.800000000000001.
Processing model 2025 out of 4000 with `degree` = 7 and `λ` = 5.0.
Processing model 2026 out of 4000 with `degree` = 7 and `λ` = 5.2.
Processing model 2027 out of 4000 with `degree` = 7 and `λ` = 5.4.
Processing model 2028 out of 4000 with `degree` = 7 and `λ` = 5.6000000000000005.
Processing model 2029 out of 4000 with `degree` = 7 and `λ` = 5.800000000000001.
Processing model 2030 out of 4000 with `degree` = 7 and `λ` = 6.0.
Processing model 2031 out of 4000 with `degree` = 7 and `λ` = 6.2.
Processing model 2032 out of 4000 with `degree` = 7 and `λ` = 6.4.
Processing model 2033 out of 4000 with `degree` = 7 and `λ` = 6.6000000000000005.
Processing model 2034 out of 4000 with `degree` = 7 and `λ` = 6.800000000000001.
Processing model 2035 out of 4000 with `degree` = 7 and `λ` = 7.0.
Processing model 2036 out of 4000 with `degree` = 7 and `λ` = 7.2.
Processing model 2037 out of 4000 with `degree` = 7 and `λ` = 7.4.
Processing model 2038 out of 4000 with `degree` = 7 and `λ` = 7.6000000000000005.
Processing model 2039 out of 4000 with `degree` = 7 and `λ` = 7.800000000000001.
Processing model 2040 out of 4000 with `degree` = 7 and `λ` = 8.0.
Processing model 2041 out of 4000 with `degree` = 7 and `λ` = 8.200000000000001.
Processing model 2042 out of 4000 with `degree` = 7 and `λ` = 8.4.
Processing model 2043 out of 4000 with `degree` = 7 and `λ` = 8.6.
Processing model 2044 out of 4000 with `degree` = 7 and `λ` = 8.8.
Processing model 2045 out of 4000 with `degree` = 7 and `λ` = 9.0.
Processing model 2046 out of 4000 with `degree` = 7 and `λ` = 9.200000000000001.
Processing model 2047 out of 4000 with `degree` = 7 and `λ` = 9.4.
Processing model 2048 out of 4000 with `degree` = 7 and `λ` = 9.600000000000001.
Processing model 2049 out of 4000 with `degree` = 7 and `λ` = 9.8.
Processing model 2050 out of 4000 with `degree` = 7 and `λ` = 10.0.
Processing model 2051 out of 4000 with `degree` = 7 and `λ` = 10.200000000000001.
Processing model 2052 out of 4000 with `degree` = 7 and `λ` = 10.4.
Processing model 2053 out of 4000 with `degree` = 7 and `λ` = 10.600000000000001.
Processing model 2054 out of 4000 with `degree` = 7 and `λ` = 10.8.
Processing model 2055 out of 4000 with `degree` = 7 and `λ` = 11.0.
Processing model 2056 out of 4000 with `degree` = 7 and `λ` = 11.200000000000001.
Processing model 2057 out of 4000 with `degree` = 7 and `λ` = 11.4.
Processing model 2058 out of 4000 with `degree` = 7 and `λ` = 11.600000000000001.
Processing model 2059 out of 4000 with `degree` = 7 and `λ` = 11.8.
Processing model 2060 out of 4000 with `degree` = 7 and `λ` = 12.0.
Processing model 2061 out of 4000 with `degree` = 7 and `λ` = 12.200000000000001.
Processing model 2062 out of 4000 with `degree` = 7 and `λ` = 12.4.
Processing model 2063 out of 4000 with `degree` = 7 and `λ` = 12.600000000000001.
Processing model 2064 out of 4000 with `degree` = 7 and `λ` = 12.8.
Processing model 2065 out of 4000 with `degree` = 7 and `λ` = 13.0.
Processing model 2066 out of 4000 with `degree` = 7 and `λ` = 13.200000000000001.
Processing model 2067 out of 4000 with `degree` = 7 and `λ` = 13.4.
Processing model 2068 out of 4000 with `degree` = 7 and `λ` = 13.600000000000001.
Processing model 2069 out of 4000 with `degree` = 7 and `λ` = 13.8.
Processing model 2070 out of 4000 with `degree` = 7 and `λ` = 14.0.
Processing model 2071 out of 4000 with `degree` = 7 and `λ` = 14.200000000000001.
Processing model 2072 out of 4000 with `degree` = 7 and `λ` = 14.4.
Processing model 2073 out of 4000 with `degree` = 7 and `λ` = 14.600000000000001.
Processing model 2074 out of 4000 with `degree` = 7 and `λ` = 14.8.
Processing model 2075 out of 4000 with `degree` = 7 and `λ` = 15.0.
Processing model 2076 out of 4000 with `degree` = 7 and `λ` = 15.200000000000001.
Processing model 2077 out of 4000 with `degree` = 7 and `λ` = 15.4.
Processing model 2078 out of 4000 with `degree` = 7 and `λ` = 15.600000000000001.
Processing model 2079 out of 4000 with `degree` = 7 and `λ` = 15.8.
Processing model 2080 out of 4000 with `degree` = 7 and `λ` = 16.0.
Processing model 2081 out of 4000 with `degree` = 7 and `λ` = 16.2.
Processing model 2082 out of 4000 with `degree` = 7 and `λ` = 16.400000000000002.
Processing model 2083 out of 4000 with `degree` = 7 and `λ` = 16.6.
Processing model 2084 out of 4000 with `degree` = 7 and `λ` = 16.8.
Processing model 2085 out of 4000 with `degree` = 7 and `λ` = 17.0.
Processing model 2086 out of 4000 with `degree` = 7 and `λ` = 17.2.
Processing model 2087 out of 4000 with `degree` = 7 and `λ` = 17.400000000000002.
Processing model 2088 out of 4000 with `degree` = 7 and `λ` = 17.6.
Processing model 2089 out of 4000 with `degree` = 7 and `λ` = 17.8.
Processing model 2090 out of 4000 with `degree` = 7 and `λ` = 18.0.
Processing model 2091 out of 4000 with `degree` = 7 and `λ` = 18.2.
Processing model 2092 out of 4000 with `degree` = 7 and `λ` = 18.400000000000002.
Processing model 2093 out of 4000 with `degree` = 7 and `λ` = 18.6.
Processing model 2094 out of 4000 with `degree` = 7 and `λ` = 18.8.
Processing model 2095 out of 4000 with `degree` = 7 and `λ` = 19.0.
Processing model 2096 out of 4000 with `degree` = 7 and `λ` = 19.200000000000003.
Processing model 2097 out of 4000 with `degree` = 7 and `λ` = 19.400000000000002.
Processing model 2098 out of 4000 with `degree` = 7 and `λ` = 19.6.
Processing model 2099 out of 4000 with `degree` = 7 and `λ` = 19.8.
Processing model 2100 out of 4000 with `degree` = 7 and `λ` = 20.0.
Processing model 2101 out of 4000 with `degree` = 7 and `λ` = 20.200000000000003.
Processing model 2102 out of 4000 with `degree` = 7 and `λ` = 20.400000000000002.
Processing model 2103 out of 4000 with `degree` = 7 and `λ` = 20.6.
Processing model 2104 out of 4000 with `degree` = 7 and `λ` = 20.8.
Processing model 2105 out of 4000 with `degree` = 7 and `λ` = 21.0.
Processing model 2106 out of 4000 with `degree` = 7 and `λ` = 21.200000000000003.
Processing model 2107 out of 4000 with `degree` = 7 and `λ` = 21.400000000000002.
Processing model 2108 out of 4000 with `degree` = 7 and `λ` = 21.6.
Processing model 2109 out of 4000 with `degree` = 7 and `λ` = 21.8.
Processing model 2110 out of 4000 with `degree` = 7 and `λ` = 22.0.
Processing model 2111 out of 4000 with `degree` = 7 and `λ` = 22.200000000000003.
Processing model 2112 out of 4000 with `degree` = 7 and `λ` = 22.400000000000002.
Processing model 2113 out of 4000 with `degree` = 7 and `λ` = 22.6.
Processing model 2114 out of 4000 with `degree` = 7 and `λ` = 22.8.
Processing model 2115 out of 4000 with `degree` = 7 and `λ` = 23.0.
Processing model 2116 out of 4000 with `degree` = 7 and `λ` = 23.200000000000003.
Processing model 2117 out of 4000 with `degree` = 7 and `λ` = 23.400000000000002.
Processing model 2118 out of 4000 with `degree` = 7 and `λ` = 23.6.
Processing model 2119 out of 4000 with `degree` = 7 and `λ` = 23.8.
Processing model 2120 out of 4000 with `degree` = 7 and `λ` = 24.0.
Processing model 2121 out of 4000 with `degree` = 7 and `λ` = 24.200000000000003.
Processing model 2122 out of 4000 with `degree` = 7 and `λ` = 24.400000000000002.
Processing model 2123 out of 4000 with `degree` = 7 and `λ` = 24.6.
Processing model 2124 out of 4000 with `degree` = 7 and `λ` = 24.8.
Processing model 2125 out of 4000 with `degree` = 7 and `λ` = 25.0.
Processing model 2126 out of 4000 with `degree` = 7 and `λ` = 25.200000000000003.
Processing model 2127 out of 4000 with `degree` = 7 and `λ` = 25.400000000000002.
Processing model 2128 out of 4000 with `degree` = 7 and `λ` = 25.6.
Processing model 2129 out of 4000 with `degree` = 7 and `λ` = 25.8.
Processing model 2130 out of 4000 with `degree` = 7 and `λ` = 26.0.
Processing model 2131 out of 4000 with `degree` = 7 and `λ` = 26.200000000000003.
Processing model 2132 out of 4000 with `degree` = 7 and `λ` = 26.400000000000002.
Processing model 2133 out of 4000 with `degree` = 7 and `λ` = 26.6.
Processing model 2134 out of 4000 with `degree` = 7 and `λ` = 26.8.
Processing model 2135 out of 4000 with `degree` = 7 and `λ` = 27.0.
Processing model 2136 out of 4000 with `degree` = 7 and `λ` = 27.200000000000003.
Processing model 2137 out of 4000 with `degree` = 7 and `λ` = 27.400000000000002.
Processing model 2138 out of 4000 with `degree` = 7 and `λ` = 27.6.
Processing model 2139 out of 4000 with `degree` = 7 and `λ` = 27.8.
Processing model 2140 out of 4000 with `degree` = 7 and `λ` = 28.0.
Processing model 2141 out of 4000 with `degree` = 7 and `λ` = 28.200000000000003.
Processing model 2142 out of 4000 with `degree` = 7 and `λ` = 28.400000000000002.
Processing model 2143 out of 4000 with `degree` = 7 and `λ` = 28.6.
Processing model 2144 out of 4000 with `degree` = 7 and `λ` = 28.8.
Processing model 2145 out of 4000 with `degree` = 7 and `λ` = 29.0.
Processing model 2146 out of 4000 with `degree` = 7 and `λ` = 29.200000000000003.
Processing model 2147 out of 4000 with `degree` = 7 and `λ` = 29.400000000000002.
Processing model 2148 out of 4000 with `degree` = 7 and `λ` = 29.6.
Processing model 2149 out of 4000 with `degree` = 7 and `λ` = 29.8.
Processing model 2150 out of 4000 with `degree` = 7 and `λ` = 30.0.
Processing model 2151 out of 4000 with `degree` = 7 and `λ` = 30.200000000000003.
Processing model 2152 out of 4000 with `degree` = 7 and `λ` = 30.400000000000002.
Processing model 2153 out of 4000 with `degree` = 7 and `λ` = 30.6.
Processing model 2154 out of 4000 with `degree` = 7 and `λ` = 30.8.
Processing model 2155 out of 4000 with `degree` = 7 and `λ` = 31.0.
Processing model 2156 out of 4000 with `degree` = 7 and `λ` = 31.200000000000003.
Processing model 2157 out of 4000 with `degree` = 7 and `λ` = 31.400000000000002.
Processing model 2158 out of 4000 with `degree` = 7 and `λ` = 31.6.
Processing model 2159 out of 4000 with `degree` = 7 and `λ` = 31.8.
Processing model 2160 out of 4000 with `degree` = 7 and `λ` = 32.0.
Processing model 2161 out of 4000 with `degree` = 7 and `λ` = 32.2.
Processing model 2162 out of 4000 with `degree` = 7 and `λ` = 32.4.
Processing model 2163 out of 4000 with `degree` = 7 and `λ` = 32.6.
Processing model 2164 out of 4000 with `degree` = 7 and `λ` = 32.800000000000004.
Processing model 2165 out of 4000 with `degree` = 7 and `λ` = 33.0.
Processing model 2166 out of 4000 with `degree` = 7 and `λ` = 33.2.
Processing model 2167 out of 4000 with `degree` = 7 and `λ` = 33.4.
Processing model 2168 out of 4000 with `degree` = 7 and `λ` = 33.6.
Processing model 2169 out of 4000 with `degree` = 7 and `λ` = 33.800000000000004.
Processing model 2170 out of 4000 with `degree` = 7 and `λ` = 34.0.
Processing model 2171 out of 4000 with `degree` = 7 and `λ` = 34.2.
Processing model 2172 out of 4000 with `degree` = 7 and `λ` = 34.4.
Processing model 2173 out of 4000 with `degree` = 7 and `λ` = 34.6.
Processing model 2174 out of 4000 with `degree` = 7 and `λ` = 34.800000000000004.
Processing model 2175 out of 4000 with `degree` = 7 and `λ` = 35.0.
Processing model 2176 out of 4000 with `degree` = 7 and `λ` = 35.2.
Processing model 2177 out of 4000 with `degree` = 7 and `λ` = 35.4.
Processing model 2178 out of 4000 with `degree` = 7 and `λ` = 35.6.
Processing model 2179 out of 4000 with `degree` = 7 and `λ` = 35.800000000000004.
Processing model 2180 out of 4000 with `degree` = 7 and `λ` = 36.0.
Processing model 2181 out of 4000 with `degree` = 7 and `λ` = 36.2.
Processing model 2182 out of 4000 with `degree` = 7 and `λ` = 36.4.
Processing model 2183 out of 4000 with `degree` = 7 and `λ` = 36.6.
Processing model 2184 out of 4000 with `degree` = 7 and `λ` = 36.800000000000004.
Processing model 2185 out of 4000 with `degree` = 7 and `λ` = 37.0.
Processing model 2186 out of 4000 with `degree` = 7 and `λ` = 37.2.
Processing model 2187 out of 4000 with `degree` = 7 and `λ` = 37.4.
Processing model 2188 out of 4000 with `degree` = 7 and `λ` = 37.6.
Processing model 2189 out of 4000 with `degree` = 7 and `λ` = 37.800000000000004.
Processing model 2190 out of 4000 with `degree` = 7 and `λ` = 38.0.
Processing model 2191 out of 4000 with `degree` = 7 and `λ` = 38.2.
Processing model 2192 out of 4000 with `degree` = 7 and `λ` = 38.400000000000006.
Processing model 2193 out of 4000 with `degree` = 7 and `λ` = 38.6.
Processing model 2194 out of 4000 with `degree` = 7 and `λ` = 38.800000000000004.
Processing model 2195 out of 4000 with `degree` = 7 and `λ` = 39.0.
Processing model 2196 out of 4000 with `degree` = 7 and `λ` = 39.2.
Processing model 2197 out of 4000 with `degree` = 7 and `λ` = 39.400000000000006.
Processing model 2198 out of 4000 with `degree` = 7 and `λ` = 39.6.
Processing model 2199 out of 4000 with `degree` = 7 and `λ` = 39.800000000000004.
Processing model 2200 out of 4000 with `degree` = 7 and `λ` = 40.0.
Processing model 2201 out of 4000 with `degree` = 7 and `λ` = 40.2.
Processing model 2202 out of 4000 with `degree` = 7 and `λ` = 40.400000000000006.
Processing model 2203 out of 4000 with `degree` = 7 and `λ` = 40.6.
Processing model 2204 out of 4000 with `degree` = 7 and `λ` = 40.800000000000004.
Processing model 2205 out of 4000 with `degree` = 7 and `λ` = 41.0.
Processing model 2206 out of 4000 with `degree` = 7 and `λ` = 41.2.
Processing model 2207 out of 4000 with `degree` = 7 and `λ` = 41.400000000000006.
Processing model 2208 out of 4000 with `degree` = 7 and `λ` = 41.6.
Processing model 2209 out of 4000 with `degree` = 7 and `λ` = 41.800000000000004.
Processing model 2210 out of 4000 with `degree` = 7 and `λ` = 42.0.
Processing model 2211 out of 4000 with `degree` = 7 and `λ` = 42.2.
Processing model 2212 out of 4000 with `degree` = 7 and `λ` = 42.400000000000006.
Processing model 2213 out of 4000 with `degree` = 7 and `λ` = 42.6.
Processing model 2214 out of 4000 with `degree` = 7 and `λ` = 42.800000000000004.
Processing model 2215 out of 4000 with `degree` = 7 and `λ` = 43.0.
Processing model 2216 out of 4000 with `degree` = 7 and `λ` = 43.2.
Processing model 2217 out of 4000 with `degree` = 7 and `λ` = 43.400000000000006.
Processing model 2218 out of 4000 with `degree` = 7 and `λ` = 43.6.
Processing model 2219 out of 4000 with `degree` = 7 and `λ` = 43.800000000000004.
Processing model 2220 out of 4000 with `degree` = 7 and `λ` = 44.0.
Processing model 2221 out of 4000 with `degree` = 7 and `λ` = 44.2.
Processing model 2222 out of 4000 with `degree` = 7 and `λ` = 44.400000000000006.
Processing model 2223 out of 4000 with `degree` = 7 and `λ` = 44.6.
Processing model 2224 out of 4000 with `degree` = 7 and `λ` = 44.800000000000004.
Processing model 2225 out of 4000 with `degree` = 7 and `λ` = 45.0.
Processing model 2226 out of 4000 with `degree` = 7 and `λ` = 45.2.
Processing model 2227 out of 4000 with `degree` = 7 and `λ` = 45.400000000000006.
Processing model 2228 out of 4000 with `degree` = 7 and `λ` = 45.6.
Processing model 2229 out of 4000 with `degree` = 7 and `λ` = 45.800000000000004.
Processing model 2230 out of 4000 with `degree` = 7 and `λ` = 46.0.
Processing model 2231 out of 4000 with `degree` = 7 and `λ` = 46.2.
Processing model 2232 out of 4000 with `degree` = 7 and `λ` = 46.400000000000006.
Processing model 2233 out of 4000 with `degree` = 7 and `λ` = 46.6.
Processing model 2234 out of 4000 with `degree` = 7 and `λ` = 46.800000000000004.
Processing model 2235 out of 4000 with `degree` = 7 and `λ` = 47.0.
Processing model 2236 out of 4000 with `degree` = 7 and `λ` = 47.2.
Processing model 2237 out of 4000 with `degree` = 7 and `λ` = 47.400000000000006.
Processing model 2238 out of 4000 with `degree` = 7 and `λ` = 47.6.
Processing model 2239 out of 4000 with `degree` = 7 and `λ` = 47.800000000000004.
Processing model 2240 out of 4000 with `degree` = 7 and `λ` = 48.0.
Processing model 2241 out of 4000 with `degree` = 7 and `λ` = 48.2.
Processing model 2242 out of 4000 with `degree` = 7 and `λ` = 48.400000000000006.
Processing model 2243 out of 4000 with `degree` = 7 and `λ` = 48.6.
Processing model 2244 out of 4000 with `degree` = 7 and `λ` = 48.800000000000004.
Processing model 2245 out of 4000 with `degree` = 7 and `λ` = 49.0.
Processing model 2246 out of 4000 with `degree` = 7 and `λ` = 49.2.
Processing model 2247 out of 4000 with `degree` = 7 and `λ` = 49.400000000000006.
Processing model 2248 out of 4000 with `degree` = 7 and `λ` = 49.6.
Processing model 2249 out of 4000 with `degree` = 7 and `λ` = 49.800000000000004.
Processing model 2250 out of 4000 with `degree` = 7 and `λ` = 50.0.
Processing model 2251 out of 4000 with `degree` = 7 and `λ` = 50.2.
Processing model 2252 out of 4000 with `degree` = 7 and `λ` = 50.400000000000006.
Processing model 2253 out of 4000 with `degree` = 7 and `λ` = 50.6.
Processing model 2254 out of 4000 with `degree` = 7 and `λ` = 50.800000000000004.
Processing model 2255 out of 4000 with `degree` = 7 and `λ` = 51.0.
Processing model 2256 out of 4000 with `degree` = 7 and `λ` = 51.2.
Processing model 2257 out of 4000 with `degree` = 7 and `λ` = 51.400000000000006.
Processing model 2258 out of 4000 with `degree` = 7 and `λ` = 51.6.
Processing model 2259 out of 4000 with `degree` = 7 and `λ` = 51.800000000000004.
Processing model 2260 out of 4000 with `degree` = 7 and `λ` = 52.0.
Processing model 2261 out of 4000 with `degree` = 7 and `λ` = 52.2.
Processing model 2262 out of 4000 with `degree` = 7 and `λ` = 52.400000000000006.
Processing model 2263 out of 4000 with `degree` = 7 and `λ` = 52.6.
Processing model 2264 out of 4000 with `degree` = 7 and `λ` = 52.800000000000004.
Processing model 2265 out of 4000 with `degree` = 7 and `λ` = 53.0.
Processing model 2266 out of 4000 with `degree` = 7 and `λ` = 53.2.
Processing model 2267 out of 4000 with `degree` = 7 and `λ` = 53.400000000000006.
Processing model 2268 out of 4000 with `degree` = 7 and `λ` = 53.6.
Processing model 2269 out of 4000 with `degree` = 7 and `λ` = 53.800000000000004.
Processing model 2270 out of 4000 with `degree` = 7 and `λ` = 54.0.
Processing model 2271 out of 4000 with `degree` = 7 and `λ` = 54.2.
Processing model 2272 out of 4000 with `degree` = 7 and `λ` = 54.400000000000006.
Processing model 2273 out of 4000 with `degree` = 7 and `λ` = 54.6.
Processing model 2274 out of 4000 with `degree` = 7 and `λ` = 54.800000000000004.
Processing model 2275 out of 4000 with `degree` = 7 and `λ` = 55.0.
Processing model 2276 out of 4000 with `degree` = 7 and `λ` = 55.2.
Processing model 2277 out of 4000 with `degree` = 7 and `λ` = 55.400000000000006.
Processing model 2278 out of 4000 with `degree` = 7 and `λ` = 55.6.
Processing model 2279 out of 4000 with `degree` = 7 and `λ` = 55.800000000000004.
Processing model 2280 out of 4000 with `degree` = 7 and `λ` = 56.0.
Processing model 2281 out of 4000 with `degree` = 7 and `λ` = 56.2.
Processing model 2282 out of 4000 with `degree` = 7 and `λ` = 56.400000000000006.
Processing model 2283 out of 4000 with `degree` = 7 and `λ` = 56.6.
Processing model 2284 out of 4000 with `degree` = 7 and `λ` = 56.800000000000004.
Processing model 2285 out of 4000 with `degree` = 7 and `λ` = 57.0.
Processing model 2286 out of 4000 with `degree` = 7 and `λ` = 57.2.
Processing model 2287 out of 4000 with `degree` = 7 and `λ` = 57.400000000000006.
Processing model 2288 out of 4000 with `degree` = 7 and `λ` = 57.6.
Processing model 2289 out of 4000 with `degree` = 7 and `λ` = 57.800000000000004.
Processing model 2290 out of 4000 with `degree` = 7 and `λ` = 58.0.
Processing model 2291 out of 4000 with `degree` = 7 and `λ` = 58.2.
Processing model 2292 out of 4000 with `degree` = 7 and `λ` = 58.400000000000006.
Processing model 2293 out of 4000 with `degree` = 7 and `λ` = 58.6.
Processing model 2294 out of 4000 with `degree` = 7 and `λ` = 58.800000000000004.
Processing model 2295 out of 4000 with `degree` = 7 and `λ` = 59.0.
Processing model 2296 out of 4000 with `degree` = 7 and `λ` = 59.2.
Processing model 2297 out of 4000 with `degree` = 7 and `λ` = 59.400000000000006.
Processing model 2298 out of 4000 with `degree` = 7 and `λ` = 59.6.
Processing model 2299 out of 4000 with `degree` = 7 and `λ` = 59.800000000000004.
Processing model 2300 out of 4000 with `degree` = 7 and `λ` = 60.0.
Processing model 2301 out of 4000 with `degree` = 7 and `λ` = 60.2.
Processing model 2302 out of 4000 with `degree` = 7 and `λ` = 60.400000000000006.
Processing model 2303 out of 4000 with `degree` = 7 and `λ` = 60.6.
Processing model 2304 out of 4000 with `degree` = 7 and `λ` = 60.800000000000004.
Processing model 2305 out of 4000 with `degree` = 7 and `λ` = 61.0.
Processing model 2306 out of 4000 with `degree` = 7 and `λ` = 61.2.
Processing model 2307 out of 4000 with `degree` = 7 and `λ` = 61.400000000000006.
Processing model 2308 out of 4000 with `degree` = 7 and `λ` = 61.6.
Processing model 2309 out of 4000 with `degree` = 7 and `λ` = 61.800000000000004.
Processing model 2310 out of 4000 with `degree` = 7 and `λ` = 62.0.
Processing model 2311 out of 4000 with `degree` = 7 and `λ` = 62.2.
Processing model 2312 out of 4000 with `degree` = 7 and `λ` = 62.400000000000006.
Processing model 2313 out of 4000 with `degree` = 7 and `λ` = 62.6.
Processing model 2314 out of 4000 with `degree` = 7 and `λ` = 62.800000000000004.
Processing model 2315 out of 4000 with `degree` = 7 and `λ` = 63.0.
Processing model 2316 out of 4000 with `degree` = 7 and `λ` = 63.2.
Processing model 2317 out of 4000 with `degree` = 7 and `λ` = 63.400000000000006.
Processing model 2318 out of 4000 with `degree` = 7 and `λ` = 63.6.
Processing model 2319 out of 4000 with `degree` = 7 and `λ` = 63.800000000000004.
Processing model 2320 out of 4000 with `degree` = 7 and `λ` = 64.0.
Processing model 2321 out of 4000 with `degree` = 7 and `λ` = 64.2.
Processing model 2322 out of 4000 with `degree` = 7 and `λ` = 64.4.
Processing model 2323 out of 4000 with `degree` = 7 and `λ` = 64.60000000000001.
Processing model 2324 out of 4000 with `degree` = 7 and `λ` = 64.8.
Processing model 2325 out of 4000 with `degree` = 7 and `λ` = 65.0.
Processing model 2326 out of 4000 with `degree` = 7 and `λ` = 65.2.
Processing model 2327 out of 4000 with `degree` = 7 and `λ` = 65.4.
Processing model 2328 out of 4000 with `degree` = 7 and `λ` = 65.60000000000001.
Processing model 2329 out of 4000 with `degree` = 7 and `λ` = 65.8.
Processing model 2330 out of 4000 with `degree` = 7 and `λ` = 66.0.
Processing model 2331 out of 4000 with `degree` = 7 and `λ` = 66.2.
Processing model 2332 out of 4000 with `degree` = 7 and `λ` = 66.4.
Processing model 2333 out of 4000 with `degree` = 7 and `λ` = 66.60000000000001.
Processing model 2334 out of 4000 with `degree` = 7 and `λ` = 66.8.
Processing model 2335 out of 4000 with `degree` = 7 and `λ` = 67.0.
Processing model 2336 out of 4000 with `degree` = 7 and `λ` = 67.2.
Processing model 2337 out of 4000 with `degree` = 7 and `λ` = 67.4.
Processing model 2338 out of 4000 with `degree` = 7 and `λ` = 67.60000000000001.
Processing model 2339 out of 4000 with `degree` = 7 and `λ` = 67.8.
Processing model 2340 out of 4000 with `degree` = 7 and `λ` = 68.0.
Processing model 2341 out of 4000 with `degree` = 7 and `λ` = 68.2.
Processing model 2342 out of 4000 with `degree` = 7 and `λ` = 68.4.
Processing model 2343 out of 4000 with `degree` = 7 and `λ` = 68.60000000000001.
Processing model 2344 out of 4000 with `degree` = 7 and `λ` = 68.8.
Processing model 2345 out of 4000 with `degree` = 7 and `λ` = 69.0.
Processing model 2346 out of 4000 with `degree` = 7 and `λ` = 69.2.
Processing model 2347 out of 4000 with `degree` = 7 and `λ` = 69.4.
Processing model 2348 out of 4000 with `degree` = 7 and `λ` = 69.60000000000001.
Processing model 2349 out of 4000 with `degree` = 7 and `λ` = 69.8.
Processing model 2350 out of 4000 with `degree` = 7 and `λ` = 70.0.
Processing model 2351 out of 4000 with `degree` = 7 and `λ` = 70.2.
Processing model 2352 out of 4000 with `degree` = 7 and `λ` = 70.4.
Processing model 2353 out of 4000 with `degree` = 7 and `λ` = 70.60000000000001.
Processing model 2354 out of 4000 with `degree` = 7 and `λ` = 70.8.
Processing model 2355 out of 4000 with `degree` = 7 and `λ` = 71.0.
Processing model 2356 out of 4000 with `degree` = 7 and `λ` = 71.2.
Processing model 2357 out of 4000 with `degree` = 7 and `λ` = 71.4.
Processing model 2358 out of 4000 with `degree` = 7 and `λ` = 71.60000000000001.
Processing model 2359 out of 4000 with `degree` = 7 and `λ` = 71.8.
Processing model 2360 out of 4000 with `degree` = 7 and `λ` = 72.0.
Processing model 2361 out of 4000 with `degree` = 7 and `λ` = 72.2.
Processing model 2362 out of 4000 with `degree` = 7 and `λ` = 72.4.
Processing model 2363 out of 4000 with `degree` = 7 and `λ` = 72.60000000000001.
Processing model 2364 out of 4000 with `degree` = 7 and `λ` = 72.8.
Processing model 2365 out of 4000 with `degree` = 7 and `λ` = 73.0.
Processing model 2366 out of 4000 with `degree` = 7 and `λ` = 73.2.
Processing model 2367 out of 4000 with `degree` = 7 and `λ` = 73.4.
Processing model 2368 out of 4000 with `degree` = 7 and `λ` = 73.60000000000001.
Processing model 2369 out of 4000 with `degree` = 7 and `λ` = 73.8.
Processing model 2370 out of 4000 with `degree` = 7 and `λ` = 74.0.
Processing model 2371 out of 4000 with `degree` = 7 and `λ` = 74.2.
Processing model 2372 out of 4000 with `degree` = 7 and `λ` = 74.4.
Processing model 2373 out of 4000 with `degree` = 7 and `λ` = 74.60000000000001.
Processing model 2374 out of 4000 with `degree` = 7 and `λ` = 74.8.
Processing model 2375 out of 4000 with `degree` = 7 and `λ` = 75.0.
Processing model 2376 out of 4000 with `degree` = 7 and `λ` = 75.2.
Processing model 2377 out of 4000 with `degree` = 7 and `λ` = 75.4.
Processing model 2378 out of 4000 with `degree` = 7 and `λ` = 75.60000000000001.
Processing model 2379 out of 4000 with `degree` = 7 and `λ` = 75.8.
Processing model 2380 out of 4000 with `degree` = 7 and `λ` = 76.0.
Processing model 2381 out of 4000 with `degree` = 7 and `λ` = 76.2.
Processing model 2382 out of 4000 with `degree` = 7 and `λ` = 76.4.
Processing model 2383 out of 4000 with `degree` = 7 and `λ` = 76.60000000000001.
Processing model 2384 out of 4000 with `degree` = 7 and `λ` = 76.80000000000001.
Processing model 2385 out of 4000 with `degree` = 7 and `λ` = 77.0.
Processing model 2386 out of 4000 with `degree` = 7 and `λ` = 77.2.
Processing model 2387 out of 4000 with `degree` = 7 and `λ` = 77.4.
Processing model 2388 out of 4000 with `degree` = 7 and `λ` = 77.60000000000001.
Processing model 2389 out of 4000 with `degree` = 7 and `λ` = 77.80000000000001.
Processing model 2390 out of 4000 with `degree` = 7 and `λ` = 78.0.
Processing model 2391 out of 4000 with `degree` = 7 and `λ` = 78.2.
Processing model 2392 out of 4000 with `degree` = 7 and `λ` = 78.4.
Processing model 2393 out of 4000 with `degree` = 7 and `λ` = 78.60000000000001.
Processing model 2394 out of 4000 with `degree` = 7 and `λ` = 78.80000000000001.
Processing model 2395 out of 4000 with `degree` = 7 and `λ` = 79.0.
Processing model 2396 out of 4000 with `degree` = 7 and `λ` = 79.2.
Processing model 2397 out of 4000 with `degree` = 7 and `λ` = 79.4.
Processing model 2398 out of 4000 with `degree` = 7 and `λ` = 79.60000000000001.
Processing model 2399 out of 4000 with `degree` = 7 and `λ` = 79.80000000000001.
Processing model 2400 out of 4000 with `degree` = 7 and `λ` = 80.0.
Processing model 2401 out of 4000 with `degree` = 7 and `λ` = 80.2.
Processing model 2402 out of 4000 with `degree` = 7 and `λ` = 80.4.
Processing model 2403 out of 4000 with `degree` = 7 and `λ` = 80.60000000000001.
Processing model 2404 out of 4000 with `degree` = 7 and `λ` = 80.80000000000001.
Processing model 2405 out of 4000 with `degree` = 7 and `λ` = 81.0.
Processing model 2406 out of 4000 with `degree` = 7 and `λ` = 81.2.
Processing model 2407 out of 4000 with `degree` = 7 and `λ` = 81.4.
Processing model 2408 out of 4000 with `degree` = 7 and `λ` = 81.60000000000001.
Processing model 2409 out of 4000 with `degree` = 7 and `λ` = 81.80000000000001.
Processing model 2410 out of 4000 with `degree` = 7 and `λ` = 82.0.
Processing model 2411 out of 4000 with `degree` = 7 and `λ` = 82.2.
Processing model 2412 out of 4000 with `degree` = 7 and `λ` = 82.4.
Processing model 2413 out of 4000 with `degree` = 7 and `λ` = 82.60000000000001.
Processing model 2414 out of 4000 with `degree` = 7 and `λ` = 82.80000000000001.
Processing model 2415 out of 4000 with `degree` = 7 and `λ` = 83.0.
Processing model 2416 out of 4000 with `degree` = 7 and `λ` = 83.2.
Processing model 2417 out of 4000 with `degree` = 7 and `λ` = 83.4.
Processing model 2418 out of 4000 with `degree` = 7 and `λ` = 83.60000000000001.
Processing model 2419 out of 4000 with `degree` = 7 and `λ` = 83.80000000000001.
Processing model 2420 out of 4000 with `degree` = 7 and `λ` = 84.0.
Processing model 2421 out of 4000 with `degree` = 7 and `λ` = 84.2.
Processing model 2422 out of 4000 with `degree` = 7 and `λ` = 84.4.
Processing model 2423 out of 4000 with `degree` = 7 and `λ` = 84.60000000000001.
Processing model 2424 out of 4000 with `degree` = 7 and `λ` = 84.80000000000001.
Processing model 2425 out of 4000 with `degree` = 7 and `λ` = 85.0.
Processing model 2426 out of 4000 with `degree` = 7 and `λ` = 85.2.
Processing model 2427 out of 4000 with `degree` = 7 and `λ` = 85.4.
Processing model 2428 out of 4000 with `degree` = 7 and `λ` = 85.60000000000001.
Processing model 2429 out of 4000 with `degree` = 7 and `λ` = 85.80000000000001.
Processing model 2430 out of 4000 with `degree` = 7 and `λ` = 86.0.
Processing model 2431 out of 4000 with `degree` = 7 and `λ` = 86.2.
Processing model 2432 out of 4000 with `degree` = 7 and `λ` = 86.4.
Processing model 2433 out of 4000 with `degree` = 7 and `λ` = 86.60000000000001.
Processing model 2434 out of 4000 with `degree` = 7 and `λ` = 86.80000000000001.
Processing model 2435 out of 4000 with `degree` = 7 and `λ` = 87.0.
Processing model 2436 out of 4000 with `degree` = 7 and `λ` = 87.2.
Processing model 2437 out of 4000 with `degree` = 7 and `λ` = 87.4.
Processing model 2438 out of 4000 with `degree` = 7 and `λ` = 87.60000000000001.
Processing model 2439 out of 4000 with `degree` = 7 and `λ` = 87.80000000000001.
Processing model 2440 out of 4000 with `degree` = 7 and `λ` = 88.0.
Processing model 2441 out of 4000 with `degree` = 7 and `λ` = 88.2.
Processing model 2442 out of 4000 with `degree` = 7 and `λ` = 88.4.
Processing model 2443 out of 4000 with `degree` = 7 and `λ` = 88.60000000000001.
Processing model 2444 out of 4000 with `degree` = 7 and `λ` = 88.80000000000001.
Processing model 2445 out of 4000 with `degree` = 7 and `λ` = 89.0.
Processing model 2446 out of 4000 with `degree` = 7 and `λ` = 89.2.
Processing model 2447 out of 4000 with `degree` = 7 and `λ` = 89.4.
Processing model 2448 out of 4000 with `degree` = 7 and `λ` = 89.60000000000001.
Processing model 2449 out of 4000 with `degree` = 7 and `λ` = 89.80000000000001.
Processing model 2450 out of 4000 with `degree` = 7 and `λ` = 90.0.
Processing model 2451 out of 4000 with `degree` = 7 and `λ` = 90.2.
Processing model 2452 out of 4000 with `degree` = 7 and `λ` = 90.4.
Processing model 2453 out of 4000 with `degree` = 7 and `λ` = 90.60000000000001.
Processing model 2454 out of 4000 with `degree` = 7 and `λ` = 90.80000000000001.
Processing model 2455 out of 4000 with `degree` = 7 and `λ` = 91.0.
Processing model 2456 out of 4000 with `degree` = 7 and `λ` = 91.2.
Processing model 2457 out of 4000 with `degree` = 7 and `λ` = 91.4.
Processing model 2458 out of 4000 with `degree` = 7 and `λ` = 91.60000000000001.
Processing model 2459 out of 4000 with `degree` = 7 and `λ` = 91.80000000000001.
Processing model 2460 out of 4000 with `degree` = 7 and `λ` = 92.0.
Processing model 2461 out of 4000 with `degree` = 7 and `λ` = 92.2.
Processing model 2462 out of 4000 with `degree` = 7 and `λ` = 92.4.
Processing model 2463 out of 4000 with `degree` = 7 and `λ` = 92.60000000000001.
Processing model 2464 out of 4000 with `degree` = 7 and `λ` = 92.80000000000001.
Processing model 2465 out of 4000 with `degree` = 7 and `λ` = 93.0.
Processing model 2466 out of 4000 with `degree` = 7 and `λ` = 93.2.
Processing model 2467 out of 4000 with `degree` = 7 and `λ` = 93.4.
Processing model 2468 out of 4000 with `degree` = 7 and `λ` = 93.60000000000001.
Processing model 2469 out of 4000 with `degree` = 7 and `λ` = 93.80000000000001.
Processing model 2470 out of 4000 with `degree` = 7 and `λ` = 94.0.
Processing model 2471 out of 4000 with `degree` = 7 and `λ` = 94.2.
Processing model 2472 out of 4000 with `degree` = 7 and `λ` = 94.4.
Processing model 2473 out of 4000 with `degree` = 7 and `λ` = 94.60000000000001.
Processing model 2474 out of 4000 with `degree` = 7 and `λ` = 94.80000000000001.
Processing model 2475 out of 4000 with `degree` = 7 and `λ` = 95.0.
Processing model 2476 out of 4000 with `degree` = 7 and `λ` = 95.2.
Processing model 2477 out of 4000 with `degree` = 7 and `λ` = 95.4.
Processing model 2478 out of 4000 with `degree` = 7 and `λ` = 95.60000000000001.
Processing model 2479 out of 4000 with `degree` = 7 and `λ` = 95.80000000000001.
Processing model 2480 out of 4000 with `degree` = 7 and `λ` = 96.0.
Processing model 2481 out of 4000 with `degree` = 7 and `λ` = 96.2.
Processing model 2482 out of 4000 with `degree` = 7 and `λ` = 96.4.
Processing model 2483 out of 4000 with `degree` = 7 and `λ` = 96.60000000000001.
Processing model 2484 out of 4000 with `degree` = 7 and `λ` = 96.80000000000001.
Processing model 2485 out of 4000 with `degree` = 7 and `λ` = 97.0.
Processing model 2486 out of 4000 with `degree` = 7 and `λ` = 97.2.
Processing model 2487 out of 4000 with `degree` = 7 and `λ` = 97.4.
Processing model 2488 out of 4000 with `degree` = 7 and `λ` = 97.60000000000001.
Processing model 2489 out of 4000 with `degree` = 7 and `λ` = 97.80000000000001.
Processing model 2490 out of 4000 with `degree` = 7 and `λ` = 98.0.
Processing model 2491 out of 4000 with `degree` = 7 and `λ` = 98.2.
Processing model 2492 out of 4000 with `degree` = 7 and `λ` = 98.4.
Processing model 2493 out of 4000 with `degree` = 7 and `λ` = 98.60000000000001.
Processing model 2494 out of 4000 with `degree` = 7 and `λ` = 98.80000000000001.
Processing model 2495 out of 4000 with `degree` = 7 and `λ` = 99.0.
Processing model 2496 out of 4000 with `degree` = 7 and `λ` = 99.2.
Processing model 2497 out of 4000 with `degree` = 7 and `λ` = 99.4.
Processing model 2498 out of 4000 with `degree` = 7 and `λ` = 99.60000000000001.
Processing model 2499 out of 4000 with `degree` = 7 and `λ` = 99.80000000000001.
Processing model 2500 out of 4000 with `degree` = 7 and `λ` = 100.0.
Processing model 2501 out of 4000 with `degree` = 7 and `λ` = 100.2.
Processing model 2502 out of 4000 with `degree` = 7 and `λ` = 100.4.
Processing model 2503 out of 4000 with `degree` = 7 and `λ` = 100.60000000000001.
Processing model 2504 out of 4000 with `degree` = 7 and `λ` = 100.80000000000001.
Processing model 2505 out of 4000 with `degree` = 7 and `λ` = 101.0.
Processing model 2506 out of 4000 with `degree` = 7 and `λ` = 101.2.
Processing model 2507 out of 4000 with `degree` = 7 and `λ` = 101.4.
Processing model 2508 out of 4000 with `degree` = 7 and `λ` = 101.60000000000001.
Processing model 2509 out of 4000 with `degree` = 7 and `λ` = 101.80000000000001.
Processing model 2510 out of 4000 with `degree` = 7 and `λ` = 102.0.
Processing model 2511 out of 4000 with `degree` = 7 and `λ` = 102.2.
Processing model 2512 out of 4000 with `degree` = 7 and `λ` = 102.4.
Processing model 2513 out of 4000 with `degree` = 7 and `λ` = 102.60000000000001.
Processing model 2514 out of 4000 with `degree` = 7 and `λ` = 102.80000000000001.
Processing model 2515 out of 4000 with `degree` = 7 and `λ` = 103.0.
Processing model 2516 out of 4000 with `degree` = 7 and `λ` = 103.2.
Processing model 2517 out of 4000 with `degree` = 7 and `λ` = 103.4.
Processing model 2518 out of 4000 with `degree` = 7 and `λ` = 103.60000000000001.
Processing model 2519 out of 4000 with `degree` = 7 and `λ` = 103.80000000000001.
Processing model 2520 out of 4000 with `degree` = 7 and `λ` = 104.0.
Processing model 2521 out of 4000 with `degree` = 7 and `λ` = 104.2.
Processing model 2522 out of 4000 with `degree` = 7 and `λ` = 104.4.
Processing model 2523 out of 4000 with `degree` = 7 and `λ` = 104.60000000000001.
Processing model 2524 out of 4000 with `degree` = 7 and `λ` = 104.80000000000001.
Processing model 2525 out of 4000 with `degree` = 7 and `λ` = 105.0.
Processing model 2526 out of 4000 with `degree` = 7 and `λ` = 105.2.
Processing model 2527 out of 4000 with `degree` = 7 and `λ` = 105.4.
Processing model 2528 out of 4000 with `degree` = 7 and `λ` = 105.60000000000001.
Processing model 2529 out of 4000 with `degree` = 7 and `λ` = 105.80000000000001.
Processing model 2530 out of 4000 with `degree` = 7 and `λ` = 106.0.
Processing model 2531 out of 4000 with `degree` = 7 and `λ` = 106.2.
Processing model 2532 out of 4000 with `degree` = 7 and `λ` = 106.4.
Processing model 2533 out of 4000 with `degree` = 7 and `λ` = 106.60000000000001.
Processing model 2534 out of 4000 with `degree` = 7 and `λ` = 106.80000000000001.
Processing model 2535 out of 4000 with `degree` = 7 and `λ` = 107.0.
Processing model 2536 out of 4000 with `degree` = 7 and `λ` = 107.2.
Processing model 2537 out of 4000 with `degree` = 7 and `λ` = 107.4.
Processing model 2538 out of 4000 with `degree` = 7 and `λ` = 107.60000000000001.
Processing model 2539 out of 4000 with `degree` = 7 and `λ` = 107.80000000000001.
Processing model 2540 out of 4000 with `degree` = 7 and `λ` = 108.0.
Processing model 2541 out of 4000 with `degree` = 7 and `λ` = 108.2.
Processing model 2542 out of 4000 with `degree` = 7 and `λ` = 108.4.
Processing model 2543 out of 4000 with `degree` = 7 and `λ` = 108.60000000000001.
Processing model 2544 out of 4000 with `degree` = 7 and `λ` = 108.80000000000001.
Processing model 2545 out of 4000 with `degree` = 7 and `λ` = 109.0.
Processing model 2546 out of 4000 with `degree` = 7 and `λ` = 109.2.
Processing model 2547 out of 4000 with `degree` = 7 and `λ` = 109.4.
Processing model 2548 out of 4000 with `degree` = 7 and `λ` = 109.60000000000001.
Processing model 2549 out of 4000 with `degree` = 7 and `λ` = 109.80000000000001.
Processing model 2550 out of 4000 with `degree` = 7 and `λ` = 110.0.
Processing model 2551 out of 4000 with `degree` = 7 and `λ` = 110.2.
Processing model 2552 out of 4000 with `degree` = 7 and `λ` = 110.4.
Processing model 2553 out of 4000 with `degree` = 7 and `λ` = 110.60000000000001.
Processing model 2554 out of 4000 with `degree` = 7 and `λ` = 110.80000000000001.
Processing model 2555 out of 4000 with `degree` = 7 and `λ` = 111.0.
Processing model 2556 out of 4000 with `degree` = 7 and `λ` = 111.2.
Processing model 2557 out of 4000 with `degree` = 7 and `λ` = 111.4.
Processing model 2558 out of 4000 with `degree` = 7 and `λ` = 111.60000000000001.
Processing model 2559 out of 4000 with `degree` = 7 and `λ` = 111.80000000000001.
Processing model 2560 out of 4000 with `degree` = 7 and `λ` = 112.0.
Processing model 2561 out of 4000 with `degree` = 7 and `λ` = 112.2.
Processing model 2562 out of 4000 with `degree` = 7 and `λ` = 112.4.
Processing model 2563 out of 4000 with `degree` = 7 and `λ` = 112.60000000000001.
Processing model 2564 out of 4000 with `degree` = 7 and `λ` = 112.80000000000001.
Processing model 2565 out of 4000 with `degree` = 7 and `λ` = 113.0.
Processing model 2566 out of 4000 with `degree` = 7 and `λ` = 113.2.
Processing model 2567 out of 4000 with `degree` = 7 and `λ` = 113.4.
Processing model 2568 out of 4000 with `degree` = 7 and `λ` = 113.60000000000001.
Processing model 2569 out of 4000 with `degree` = 7 and `λ` = 113.80000000000001.
Processing model 2570 out of 4000 with `degree` = 7 and `λ` = 114.0.
Processing model 2571 out of 4000 with `degree` = 7 and `λ` = 114.2.
Processing model 2572 out of 4000 with `degree` = 7 and `λ` = 114.4.
Processing model 2573 out of 4000 with `degree` = 7 and `λ` = 114.60000000000001.
Processing model 2574 out of 4000 with `degree` = 7 and `λ` = 114.80000000000001.
Processing model 2575 out of 4000 with `degree` = 7 and `λ` = 115.0.
Processing model 2576 out of 4000 with `degree` = 7 and `λ` = 115.2.
Processing model 2577 out of 4000 with `degree` = 7 and `λ` = 115.4.
Processing model 2578 out of 4000 with `degree` = 7 and `λ` = 115.60000000000001.
Processing model 2579 out of 4000 with `degree` = 7 and `λ` = 115.80000000000001.
Processing model 2580 out of 4000 with `degree` = 7 and `λ` = 116.0.
Processing model 2581 out of 4000 with `degree` = 7 and `λ` = 116.2.
Processing model 2582 out of 4000 with `degree` = 7 and `λ` = 116.4.
Processing model 2583 out of 4000 with `degree` = 7 and `λ` = 116.60000000000001.
Processing model 2584 out of 4000 with `degree` = 7 and `λ` = 116.80000000000001.
Processing model 2585 out of 4000 with `degree` = 7 and `λ` = 117.0.
Processing model 2586 out of 4000 with `degree` = 7 and `λ` = 117.2.
Processing model 2587 out of 4000 with `degree` = 7 and `λ` = 117.4.
Processing model 2588 out of 4000 with `degree` = 7 and `λ` = 117.60000000000001.
Processing model 2589 out of 4000 with `degree` = 7 and `λ` = 117.80000000000001.
Processing model 2590 out of 4000 with `degree` = 7 and `λ` = 118.0.
Processing model 2591 out of 4000 with `degree` = 7 and `λ` = 118.2.
Processing model 2592 out of 4000 with `degree` = 7 and `λ` = 118.4.
Processing model 2593 out of 4000 with `degree` = 7 and `λ` = 118.60000000000001.
Processing model 2594 out of 4000 with `degree` = 7 and `λ` = 118.80000000000001.
Processing model 2595 out of 4000 with `degree` = 7 and `λ` = 119.0.
Processing model 2596 out of 4000 with `degree` = 7 and `λ` = 119.2.
Processing model 2597 out of 4000 with `degree` = 7 and `λ` = 119.4.
Processing model 2598 out of 4000 with `degree` = 7 and `λ` = 119.60000000000001.
Processing model 2599 out of 4000 with `degree` = 7 and `λ` = 119.80000000000001.
Processing model 2600 out of 4000 with `degree` = 7 and `λ` = 120.0.
Processing model 2601 out of 4000 with `degree` = 7 and `λ` = 120.2.
Processing model 2602 out of 4000 with `degree` = 7 and `λ` = 120.4.
Processing model 2603 out of 4000 with `degree` = 7 and `λ` = 120.60000000000001.
Processing model 2604 out of 4000 with `degree` = 7 and `λ` = 120.80000000000001.
Processing model 2605 out of 4000 with `degree` = 7 and `λ` = 121.0.
Processing model 2606 out of 4000 with `degree` = 7 and `λ` = 121.2.
Processing model 2607 out of 4000 with `degree` = 7 and `λ` = 121.4.
Processing model 2608 out of 4000 with `degree` = 7 and `λ` = 121.60000000000001.
Processing model 2609 out of 4000 with `degree` = 7 and `λ` = 121.80000000000001.
Processing model 2610 out of 4000 with `degree` = 7 and `λ` = 122.0.
Processing model 2611 out of 4000 with `degree` = 7 and `λ` = 122.2.
Processing model 2612 out of 4000 with `degree` = 7 and `λ` = 122.4.
Processing model 2613 out of 4000 with `degree` = 7 and `λ` = 122.60000000000001.
Processing model 2614 out of 4000 with `degree` = 7 and `λ` = 122.80000000000001.
Processing model 2615 out of 4000 with `degree` = 7 and `λ` = 123.0.
Processing model 2616 out of 4000 with `degree` = 7 and `λ` = 123.2.
Processing model 2617 out of 4000 with `degree` = 7 and `λ` = 123.4.
Processing model 2618 out of 4000 with `degree` = 7 and `λ` = 123.60000000000001.
Processing model 2619 out of 4000 with `degree` = 7 and `λ` = 123.80000000000001.
Processing model 2620 out of 4000 with `degree` = 7 and `λ` = 124.0.
Processing model 2621 out of 4000 with `degree` = 7 and `λ` = 124.2.
Processing model 2622 out of 4000 with `degree` = 7 and `λ` = 124.4.
Processing model 2623 out of 4000 with `degree` = 7 and `λ` = 124.60000000000001.
Processing model 2624 out of 4000 with `degree` = 7 and `λ` = 124.80000000000001.
Processing model 2625 out of 4000 with `degree` = 7 and `λ` = 125.0.
Processing model 2626 out of 4000 with `degree` = 7 and `λ` = 125.2.
Processing model 2627 out of 4000 with `degree` = 7 and `λ` = 125.4.
Processing model 2628 out of 4000 with `degree` = 7 and `λ` = 125.60000000000001.
Processing model 2629 out of 4000 with `degree` = 7 and `λ` = 125.80000000000001.
Processing model 2630 out of 4000 with `degree` = 7 and `λ` = 126.0.
Processing model 2631 out of 4000 with `degree` = 7 and `λ` = 126.2.
Processing model 2632 out of 4000 with `degree` = 7 and `λ` = 126.4.
Processing model 2633 out of 4000 with `degree` = 7 and `λ` = 126.60000000000001.
Processing model 2634 out of 4000 with `degree` = 7 and `λ` = 126.80000000000001.
Processing model 2635 out of 4000 with `degree` = 7 and `λ` = 127.0.
Processing model 2636 out of 4000 with `degree` = 7 and `λ` = 127.2.
Processing model 2637 out of 4000 with `degree` = 7 and `λ` = 127.4.
Processing model 2638 out of 4000 with `degree` = 7 and `λ` = 127.60000000000001.
Processing model 2639 out of 4000 with `degree` = 7 and `λ` = 127.80000000000001.
Processing model 2640 out of 4000 with `degree` = 7 and `λ` = 128.0.
Processing model 2641 out of 4000 with `degree` = 7 and `λ` = 128.20000000000002.
Processing model 2642 out of 4000 with `degree` = 7 and `λ` = 128.4.
Processing model 2643 out of 4000 with `degree` = 7 and `λ` = 128.6.
Processing model 2644 out of 4000 with `degree` = 7 and `λ` = 128.8.
Processing model 2645 out of 4000 with `degree` = 7 and `λ` = 129.0.
Processing model 2646 out of 4000 with `degree` = 7 and `λ` = 129.20000000000002.
Processing model 2647 out of 4000 with `degree` = 7 and `λ` = 129.4.
Processing model 2648 out of 4000 with `degree` = 7 and `λ` = 129.6.
Processing model 2649 out of 4000 with `degree` = 7 and `λ` = 129.8.
Processing model 2650 out of 4000 with `degree` = 7 and `λ` = 130.0.
Processing model 2651 out of 4000 with `degree` = 7 and `λ` = 130.20000000000002.
Processing model 2652 out of 4000 with `degree` = 7 and `λ` = 130.4.
Processing model 2653 out of 4000 with `degree` = 7 and `λ` = 130.6.
Processing model 2654 out of 4000 with `degree` = 7 and `λ` = 130.8.
Processing model 2655 out of 4000 with `degree` = 7 and `λ` = 131.0.
Processing model 2656 out of 4000 with `degree` = 7 and `λ` = 131.20000000000002.
Processing model 2657 out of 4000 with `degree` = 7 and `λ` = 131.4.
Processing model 2658 out of 4000 with `degree` = 7 and `λ` = 131.6.
Processing model 2659 out of 4000 with `degree` = 7 and `λ` = 131.8.
Processing model 2660 out of 4000 with `degree` = 7 and `λ` = 132.0.
Processing model 2661 out of 4000 with `degree` = 7 and `λ` = 132.20000000000002.
Processing model 2662 out of 4000 with `degree` = 7 and `λ` = 132.4.
Processing model 2663 out of 4000 with `degree` = 7 and `λ` = 132.6.
Processing model 2664 out of 4000 with `degree` = 7 and `λ` = 132.8.
Processing model 2665 out of 4000 with `degree` = 7 and `λ` = 133.0.
Processing model 2666 out of 4000 with `degree` = 7 and `λ` = 133.20000000000002.
Processing model 2667 out of 4000 with `degree` = 7 and `λ` = 133.4.
Processing model 2668 out of 4000 with `degree` = 7 and `λ` = 133.6.
Processing model 2669 out of 4000 with `degree` = 7 and `λ` = 133.8.
Processing model 2670 out of 4000 with `degree` = 7 and `λ` = 134.0.
Processing model 2671 out of 4000 with `degree` = 7 and `λ` = 134.20000000000002.
Processing model 2672 out of 4000 with `degree` = 7 and `λ` = 134.4.
Processing model 2673 out of 4000 with `degree` = 7 and `λ` = 134.6.
Processing model 2674 out of 4000 with `degree` = 7 and `λ` = 134.8.
Processing model 2675 out of 4000 with `degree` = 7 and `λ` = 135.0.
Processing model 2676 out of 4000 with `degree` = 7 and `λ` = 135.20000000000002.
Processing model 2677 out of 4000 with `degree` = 7 and `λ` = 135.4.
Processing model 2678 out of 4000 with `degree` = 7 and `λ` = 135.6.
Processing model 2679 out of 4000 with `degree` = 7 and `λ` = 135.8.
Processing model 2680 out of 4000 with `degree` = 7 and `λ` = 136.0.
Processing model 2681 out of 4000 with `degree` = 7 and `λ` = 136.20000000000002.
Processing model 2682 out of 4000 with `degree` = 7 and `λ` = 136.4.
Processing model 2683 out of 4000 with `degree` = 7 and `λ` = 136.6.
Processing model 2684 out of 4000 with `degree` = 7 and `λ` = 136.8.
Processing model 2685 out of 4000 with `degree` = 7 and `λ` = 137.0.
Processing model 2686 out of 4000 with `degree` = 7 and `λ` = 137.20000000000002.
Processing model 2687 out of 4000 with `degree` = 7 and `λ` = 137.4.
Processing model 2688 out of 4000 with `degree` = 7 and `λ` = 137.6.
Processing model 2689 out of 4000 with `degree` = 7 and `λ` = 137.8.
Processing model 2690 out of 4000 with `degree` = 7 and `λ` = 138.0.
Processing model 2691 out of 4000 with `degree` = 7 and `λ` = 138.20000000000002.
Processing model 2692 out of 4000 with `degree` = 7 and `λ` = 138.4.
Processing model 2693 out of 4000 with `degree` = 7 and `λ` = 138.6.
Processing model 2694 out of 4000 with `degree` = 7 and `λ` = 138.8.
Processing model 2695 out of 4000 with `degree` = 7 and `λ` = 139.0.
Processing model 2696 out of 4000 with `degree` = 7 and `λ` = 139.20000000000002.
Processing model 2697 out of 4000 with `degree` = 7 and `λ` = 139.4.
Processing model 2698 out of 4000 with `degree` = 7 and `λ` = 139.6.
Processing model 2699 out of 4000 with `degree` = 7 and `λ` = 139.8.
Processing model 2700 out of 4000 with `degree` = 7 and `λ` = 140.0.
Processing model 2701 out of 4000 with `degree` = 7 and `λ` = 140.20000000000002.
Processing model 2702 out of 4000 with `degree` = 7 and `λ` = 140.4.
Processing model 2703 out of 4000 with `degree` = 7 and `λ` = 140.6.
Processing model 2704 out of 4000 with `degree` = 7 and `λ` = 140.8.
Processing model 2705 out of 4000 with `degree` = 7 and `λ` = 141.0.
Processing model 2706 out of 4000 with `degree` = 7 and `λ` = 141.20000000000002.
Processing model 2707 out of 4000 with `degree` = 7 and `λ` = 141.4.
Processing model 2708 out of 4000 with `degree` = 7 and `λ` = 141.6.
Processing model 2709 out of 4000 with `degree` = 7 and `λ` = 141.8.
Processing model 2710 out of 4000 with `degree` = 7 and `λ` = 142.0.
Processing model 2711 out of 4000 with `degree` = 7 and `λ` = 142.20000000000002.
Processing model 2712 out of 4000 with `degree` = 7 and `λ` = 142.4.
Processing model 2713 out of 4000 with `degree` = 7 and `λ` = 142.6.
Processing model 2714 out of 4000 with `degree` = 7 and `λ` = 142.8.
Processing model 2715 out of 4000 with `degree` = 7 and `λ` = 143.0.
Processing model 2716 out of 4000 with `degree` = 7 and `λ` = 143.20000000000002.
Processing model 2717 out of 4000 with `degree` = 7 and `λ` = 143.4.
Processing model 2718 out of 4000 with `degree` = 7 and `λ` = 143.6.
Processing model 2719 out of 4000 with `degree` = 7 and `λ` = 143.8.
Processing model 2720 out of 4000 with `degree` = 7 and `λ` = 144.0.
Processing model 2721 out of 4000 with `degree` = 7 and `λ` = 144.20000000000002.
Processing model 2722 out of 4000 with `degree` = 7 and `λ` = 144.4.
Processing model 2723 out of 4000 with `degree` = 7 and `λ` = 144.6.
Processing model 2724 out of 4000 with `degree` = 7 and `λ` = 144.8.
Processing model 2725 out of 4000 with `degree` = 7 and `λ` = 145.0.
Processing model 2726 out of 4000 with `degree` = 7 and `λ` = 145.20000000000002.
Processing model 2727 out of 4000 with `degree` = 7 and `λ` = 145.4.
Processing model 2728 out of 4000 with `degree` = 7 and `λ` = 145.6.
Processing model 2729 out of 4000 with `degree` = 7 and `λ` = 145.8.
Processing model 2730 out of 4000 with `degree` = 7 and `λ` = 146.0.
Processing model 2731 out of 4000 with `degree` = 7 and `λ` = 146.20000000000002.
Processing model 2732 out of 4000 with `degree` = 7 and `λ` = 146.4.
Processing model 2733 out of 4000 with `degree` = 7 and `λ` = 146.6.
Processing model 2734 out of 4000 with `degree` = 7 and `λ` = 146.8.
Processing model 2735 out of 4000 with `degree` = 7 and `λ` = 147.0.
Processing model 2736 out of 4000 with `degree` = 7 and `λ` = 147.20000000000002.
Processing model 2737 out of 4000 with `degree` = 7 and `λ` = 147.4.
Processing model 2738 out of 4000 with `degree` = 7 and `λ` = 147.6.
Processing model 2739 out of 4000 with `degree` = 7 and `λ` = 147.8.
Processing model 2740 out of 4000 with `degree` = 7 and `λ` = 148.0.
Processing model 2741 out of 4000 with `degree` = 7 and `λ` = 148.20000000000002.
Processing model 2742 out of 4000 with `degree` = 7 and `λ` = 148.4.
Processing model 2743 out of 4000 with `degree` = 7 and `λ` = 148.6.
Processing model 2744 out of 4000 with `degree` = 7 and `λ` = 148.8.
Processing model 2745 out of 4000 with `degree` = 7 and `λ` = 149.0.
Processing model 2746 out of 4000 with `degree` = 7 and `λ` = 149.20000000000002.
Processing model 2747 out of 4000 with `degree` = 7 and `λ` = 149.4.
Processing model 2748 out of 4000 with `degree` = 7 and `λ` = 149.6.
Processing model 2749 out of 4000 with `degree` = 7 and `λ` = 149.8.
Processing model 2750 out of 4000 with `degree` = 7 and `λ` = 150.0.
Processing model 2751 out of 4000 with `degree` = 7 and `λ` = 150.20000000000002.
Processing model 2752 out of 4000 with `degree` = 7 and `λ` = 150.4.
Processing model 2753 out of 4000 with `degree` = 7 and `λ` = 150.6.
Processing model 2754 out of 4000 with `degree` = 7 and `λ` = 150.8.
Processing model 2755 out of 4000 with `degree` = 7 and `λ` = 151.0.
Processing model 2756 out of 4000 with `degree` = 7 and `λ` = 151.20000000000002.
Processing model 2757 out of 4000 with `degree` = 7 and `λ` = 151.4.
Processing model 2758 out of 4000 with `degree` = 7 and `λ` = 151.6.
Processing model 2759 out of 4000 with `degree` = 7 and `λ` = 151.8.
Processing model 2760 out of 4000 with `degree` = 7 and `λ` = 152.0.
Processing model 2761 out of 4000 with `degree` = 7 and `λ` = 152.20000000000002.
Processing model 2762 out of 4000 with `degree` = 7 and `λ` = 152.4.
Processing model 2763 out of 4000 with `degree` = 7 and `λ` = 152.6.
Processing model 2764 out of 4000 with `degree` = 7 and `λ` = 152.8.
Processing model 2765 out of 4000 with `degree` = 7 and `λ` = 153.0.
Processing model 2766 out of 4000 with `degree` = 7 and `λ` = 153.20000000000002.
Processing model 2767 out of 4000 with `degree` = 7 and `λ` = 153.4.
Processing model 2768 out of 4000 with `degree` = 7 and `λ` = 153.60000000000002.
Processing model 2769 out of 4000 with `degree` = 7 and `λ` = 153.8.
Processing model 2770 out of 4000 with `degree` = 7 and `λ` = 154.0.
Processing model 2771 out of 4000 with `degree` = 7 and `λ` = 154.20000000000002.
Processing model 2772 out of 4000 with `degree` = 7 and `λ` = 154.4.
Processing model 2773 out of 4000 with `degree` = 7 and `λ` = 154.60000000000002.
Processing model 2774 out of 4000 with `degree` = 7 and `λ` = 154.8.
Processing model 2775 out of 4000 with `degree` = 7 and `λ` = 155.0.
Processing model 2776 out of 4000 with `degree` = 7 and `λ` = 155.20000000000002.
Processing model 2777 out of 4000 with `degree` = 7 and `λ` = 155.4.
Processing model 2778 out of 4000 with `degree` = 7 and `λ` = 155.60000000000002.
Processing model 2779 out of 4000 with `degree` = 7 and `λ` = 155.8.
Processing model 2780 out of 4000 with `degree` = 7 and `λ` = 156.0.
Processing model 2781 out of 4000 with `degree` = 7 and `λ` = 156.20000000000002.
Processing model 2782 out of 4000 with `degree` = 7 and `λ` = 156.4.
Processing model 2783 out of 4000 with `degree` = 7 and `λ` = 156.60000000000002.
Processing model 2784 out of 4000 with `degree` = 7 and `λ` = 156.8.
Processing model 2785 out of 4000 with `degree` = 7 and `λ` = 157.0.
Processing model 2786 out of 4000 with `degree` = 7 and `λ` = 157.20000000000002.
Processing model 2787 out of 4000 with `degree` = 7 and `λ` = 157.4.
Processing model 2788 out of 4000 with `degree` = 7 and `λ` = 157.60000000000002.
Processing model 2789 out of 4000 with `degree` = 7 and `λ` = 157.8.
Processing model 2790 out of 4000 with `degree` = 7 and `λ` = 158.0.
Processing model 2791 out of 4000 with `degree` = 7 and `λ` = 158.20000000000002.
Processing model 2792 out of 4000 with `degree` = 7 and `λ` = 158.4.
Processing model 2793 out of 4000 with `degree` = 7 and `λ` = 158.60000000000002.
Processing model 2794 out of 4000 with `degree` = 7 and `λ` = 158.8.
Processing model 2795 out of 4000 with `degree` = 7 and `λ` = 159.0.
Processing model 2796 out of 4000 with `degree` = 7 and `λ` = 159.20000000000002.
Processing model 2797 out of 4000 with `degree` = 7 and `λ` = 159.4.
Processing model 2798 out of 4000 with `degree` = 7 and `λ` = 159.60000000000002.
Processing model 2799 out of 4000 with `degree` = 7 and `λ` = 159.8.
Processing model 2800 out of 4000 with `degree` = 7 and `λ` = 160.0.
Processing model 2801 out of 4000 with `degree` = 7 and `λ` = 160.20000000000002.
Processing model 2802 out of 4000 with `degree` = 7 and `λ` = 160.4.
Processing model 2803 out of 4000 with `degree` = 7 and `λ` = 160.60000000000002.
Processing model 2804 out of 4000 with `degree` = 7 and `λ` = 160.8.
Processing model 2805 out of 4000 with `degree` = 7 and `λ` = 161.0.
Processing model 2806 out of 4000 with `degree` = 7 and `λ` = 161.20000000000002.
Processing model 2807 out of 4000 with `degree` = 7 and `λ` = 161.4.
Processing model 2808 out of 4000 with `degree` = 7 and `λ` = 161.60000000000002.
Processing model 2809 out of 4000 with `degree` = 7 and `λ` = 161.8.
Processing model 2810 out of 4000 with `degree` = 7 and `λ` = 162.0.
Processing model 2811 out of 4000 with `degree` = 7 and `λ` = 162.20000000000002.
Processing model 2812 out of 4000 with `degree` = 7 and `λ` = 162.4.
Processing model 2813 out of 4000 with `degree` = 7 and `λ` = 162.60000000000002.
Processing model 2814 out of 4000 with `degree` = 7 and `λ` = 162.8.
Processing model 2815 out of 4000 with `degree` = 7 and `λ` = 163.0.
Processing model 2816 out of 4000 with `degree` = 7 and `λ` = 163.20000000000002.
Processing model 2817 out of 4000 with `degree` = 7 and `λ` = 163.4.
Processing model 2818 out of 4000 with `degree` = 7 and `λ` = 163.60000000000002.
Processing model 2819 out of 4000 with `degree` = 7 and `λ` = 163.8.
Processing model 2820 out of 4000 with `degree` = 7 and `λ` = 164.0.
Processing model 2821 out of 4000 with `degree` = 7 and `λ` = 164.20000000000002.
Processing model 2822 out of 4000 with `degree` = 7 and `λ` = 164.4.
Processing model 2823 out of 4000 with `degree` = 7 and `λ` = 164.60000000000002.
Processing model 2824 out of 4000 with `degree` = 7 and `λ` = 164.8.
Processing model 2825 out of 4000 with `degree` = 7 and `λ` = 165.0.
Processing model 2826 out of 4000 with `degree` = 7 and `λ` = 165.20000000000002.
Processing model 2827 out of 4000 with `degree` = 7 and `λ` = 165.4.
Processing model 2828 out of 4000 with `degree` = 7 and `λ` = 165.60000000000002.
Processing model 2829 out of 4000 with `degree` = 7 and `λ` = 165.8.
Processing model 2830 out of 4000 with `degree` = 7 and `λ` = 166.0.
Processing model 2831 out of 4000 with `degree` = 7 and `λ` = 166.20000000000002.
Processing model 2832 out of 4000 with `degree` = 7 and `λ` = 166.4.
Processing model 2833 out of 4000 with `degree` = 7 and `λ` = 166.60000000000002.
Processing model 2834 out of 4000 with `degree` = 7 and `λ` = 166.8.
Processing model 2835 out of 4000 with `degree` = 7 and `λ` = 167.0.
Processing model 2836 out of 4000 with `degree` = 7 and `λ` = 167.20000000000002.
Processing model 2837 out of 4000 with `degree` = 7 and `λ` = 167.4.
Processing model 2838 out of 4000 with `degree` = 7 and `λ` = 167.60000000000002.
Processing model 2839 out of 4000 with `degree` = 7 and `λ` = 167.8.
Processing model 2840 out of 4000 with `degree` = 7 and `λ` = 168.0.
Processing model 2841 out of 4000 with `degree` = 7 and `λ` = 168.20000000000002.
Processing model 2842 out of 4000 with `degree` = 7 and `λ` = 168.4.
Processing model 2843 out of 4000 with `degree` = 7 and `λ` = 168.60000000000002.
Processing model 2844 out of 4000 with `degree` = 7 and `λ` = 168.8.
Processing model 2845 out of 4000 with `degree` = 7 and `λ` = 169.0.
Processing model 2846 out of 4000 with `degree` = 7 and `λ` = 169.20000000000002.
Processing model 2847 out of 4000 with `degree` = 7 and `λ` = 169.4.
Processing model 2848 out of 4000 with `degree` = 7 and `λ` = 169.60000000000002.
Processing model 2849 out of 4000 with `degree` = 7 and `λ` = 169.8.
Processing model 2850 out of 4000 with `degree` = 7 and `λ` = 170.0.
Processing model 2851 out of 4000 with `degree` = 7 and `λ` = 170.20000000000002.
Processing model 2852 out of 4000 with `degree` = 7 and `λ` = 170.4.
Processing model 2853 out of 4000 with `degree` = 7 and `λ` = 170.60000000000002.
Processing model 2854 out of 4000 with `degree` = 7 and `λ` = 170.8.
Processing model 2855 out of 4000 with `degree` = 7 and `λ` = 171.0.
Processing model 2856 out of 4000 with `degree` = 7 and `λ` = 171.20000000000002.
Processing model 2857 out of 4000 with `degree` = 7 and `λ` = 171.4.
Processing model 2858 out of 4000 with `degree` = 7 and `λ` = 171.60000000000002.
Processing model 2859 out of 4000 with `degree` = 7 and `λ` = 171.8.
Processing model 2860 out of 4000 with `degree` = 7 and `λ` = 172.0.
Processing model 2861 out of 4000 with `degree` = 7 and `λ` = 172.20000000000002.
Processing model 2862 out of 4000 with `degree` = 7 and `λ` = 172.4.
Processing model 2863 out of 4000 with `degree` = 7 and `λ` = 172.60000000000002.
Processing model 2864 out of 4000 with `degree` = 7 and `λ` = 172.8.
Processing model 2865 out of 4000 with `degree` = 7 and `λ` = 173.0.
Processing model 2866 out of 4000 with `degree` = 7 and `λ` = 173.20000000000002.
Processing model 2867 out of 4000 with `degree` = 7 and `λ` = 173.4.
Processing model 2868 out of 4000 with `degree` = 7 and `λ` = 173.60000000000002.
Processing model 2869 out of 4000 with `degree` = 7 and `λ` = 173.8.
Processing model 2870 out of 4000 with `degree` = 7 and `λ` = 174.0.
Processing model 2871 out of 4000 with `degree` = 7 and `λ` = 174.20000000000002.
Processing model 2872 out of 4000 with `degree` = 7 and `λ` = 174.4.
Processing model 2873 out of 4000 with `degree` = 7 and `λ` = 174.60000000000002.
Processing model 2874 out of 4000 with `degree` = 7 and `λ` = 174.8.
Processing model 2875 out of 4000 with `degree` = 7 and `λ` = 175.0.
Processing model 2876 out of 4000 with `degree` = 7 and `λ` = 175.20000000000002.
Processing model 2877 out of 4000 with `degree` = 7 and `λ` = 175.4.
Processing model 2878 out of 4000 with `degree` = 7 and `λ` = 175.60000000000002.
Processing model 2879 out of 4000 with `degree` = 7 and `λ` = 175.8.
Processing model 2880 out of 4000 with `degree` = 7 and `λ` = 176.0.
Processing model 2881 out of 4000 with `degree` = 7 and `λ` = 176.20000000000002.
Processing model 2882 out of 4000 with `degree` = 7 and `λ` = 176.4.
Processing model 2883 out of 4000 with `degree` = 7 and `λ` = 176.60000000000002.
Processing model 2884 out of 4000 with `degree` = 7 and `λ` = 176.8.
Processing model 2885 out of 4000 with `degree` = 7 and `λ` = 177.0.
Processing model 2886 out of 4000 with `degree` = 7 and `λ` = 177.20000000000002.
Processing model 2887 out of 4000 with `degree` = 7 and `λ` = 177.4.
Processing model 2888 out of 4000 with `degree` = 7 and `λ` = 177.60000000000002.
Processing model 2889 out of 4000 with `degree` = 7 and `λ` = 177.8.
Processing model 2890 out of 4000 with `degree` = 7 and `λ` = 178.0.
Processing model 2891 out of 4000 with `degree` = 7 and `λ` = 178.20000000000002.
Processing model 2892 out of 4000 with `degree` = 7 and `λ` = 178.4.
Processing model 2893 out of 4000 with `degree` = 7 and `λ` = 178.60000000000002.
Processing model 2894 out of 4000 with `degree` = 7 and `λ` = 178.8.
Processing model 2895 out of 4000 with `degree` = 7 and `λ` = 179.0.
Processing model 2896 out of 4000 with `degree` = 7 and `λ` = 179.20000000000002.
Processing model 2897 out of 4000 with `degree` = 7 and `λ` = 179.4.
Processing model 2898 out of 4000 with `degree` = 7 and `λ` = 179.60000000000002.
Processing model 2899 out of 4000 with `degree` = 7 and `λ` = 179.8.
Processing model 2900 out of 4000 with `degree` = 7 and `λ` = 180.0.
Processing model 2901 out of 4000 with `degree` = 7 and `λ` = 180.20000000000002.
Processing model 2902 out of 4000 with `degree` = 7 and `λ` = 180.4.
Processing model 2903 out of 4000 with `degree` = 7 and `λ` = 180.60000000000002.
Processing model 2904 out of 4000 with `degree` = 7 and `λ` = 180.8.
Processing model 2905 out of 4000 with `degree` = 7 and `λ` = 181.0.
Processing model 2906 out of 4000 with `degree` = 7 and `λ` = 181.20000000000002.
Processing model 2907 out of 4000 with `degree` = 7 and `λ` = 181.4.
Processing model 2908 out of 4000 with `degree` = 7 and `λ` = 181.60000000000002.
Processing model 2909 out of 4000 with `degree` = 7 and `λ` = 181.8.
Processing model 2910 out of 4000 with `degree` = 7 and `λ` = 182.0.
Processing model 2911 out of 4000 with `degree` = 7 and `λ` = 182.20000000000002.
Processing model 2912 out of 4000 with `degree` = 7 and `λ` = 182.4.
Processing model 2913 out of 4000 with `degree` = 7 and `λ` = 182.60000000000002.
Processing model 2914 out of 4000 with `degree` = 7 and `λ` = 182.8.
Processing model 2915 out of 4000 with `degree` = 7 and `λ` = 183.0.
Processing model 2916 out of 4000 with `degree` = 7 and `λ` = 183.20000000000002.
Processing model 2917 out of 4000 with `degree` = 7 and `λ` = 183.4.
Processing model 2918 out of 4000 with `degree` = 7 and `λ` = 183.60000000000002.
Processing model 2919 out of 4000 with `degree` = 7 and `λ` = 183.8.
Processing model 2920 out of 4000 with `degree` = 7 and `λ` = 184.0.
Processing model 2921 out of 4000 with `degree` = 7 and `λ` = 184.20000000000002.
Processing model 2922 out of 4000 with `degree` = 7 and `λ` = 184.4.
Processing model 2923 out of 4000 with `degree` = 7 and `λ` = 184.60000000000002.
Processing model 2924 out of 4000 with `degree` = 7 and `λ` = 184.8.
Processing model 2925 out of 4000 with `degree` = 7 and `λ` = 185.0.
Processing model 2926 out of 4000 with `degree` = 7 and `λ` = 185.20000000000002.
Processing model 2927 out of 4000 with `degree` = 7 and `λ` = 185.4.
Processing model 2928 out of 4000 with `degree` = 7 and `λ` = 185.60000000000002.
Processing model 2929 out of 4000 with `degree` = 7 and `λ` = 185.8.
Processing model 2930 out of 4000 with `degree` = 7 and `λ` = 186.0.
Processing model 2931 out of 4000 with `degree` = 7 and `λ` = 186.20000000000002.
Processing model 2932 out of 4000 with `degree` = 7 and `λ` = 186.4.
Processing model 2933 out of 4000 with `degree` = 7 and `λ` = 186.60000000000002.
Processing model 2934 out of 4000 with `degree` = 7 and `λ` = 186.8.
Processing model 2935 out of 4000 with `degree` = 7 and `λ` = 187.0.
Processing model 2936 out of 4000 with `degree` = 7 and `λ` = 187.20000000000002.
Processing model 2937 out of 4000 with `degree` = 7 and `λ` = 187.4.
Processing model 2938 out of 4000 with `degree` = 7 and `λ` = 187.60000000000002.
Processing model 2939 out of 4000 with `degree` = 7 and `λ` = 187.8.
Processing model 2940 out of 4000 with `degree` = 7 and `λ` = 188.0.
Processing model 2941 out of 4000 with `degree` = 7 and `λ` = 188.20000000000002.
Processing model 2942 out of 4000 with `degree` = 7 and `λ` = 188.4.
Processing model 2943 out of 4000 with `degree` = 7 and `λ` = 188.60000000000002.
Processing model 2944 out of 4000 with `degree` = 7 and `λ` = 188.8.
Processing model 2945 out of 4000 with `degree` = 7 and `λ` = 189.0.
Processing model 2946 out of 4000 with `degree` = 7 and `λ` = 189.20000000000002.
Processing model 2947 out of 4000 with `degree` = 7 and `λ` = 189.4.
Processing model 2948 out of 4000 with `degree` = 7 and `λ` = 189.60000000000002.
Processing model 2949 out of 4000 with `degree` = 7 and `λ` = 189.8.
Processing model 2950 out of 4000 with `degree` = 7 and `λ` = 190.0.
Processing model 2951 out of 4000 with `degree` = 7 and `λ` = 190.20000000000002.
Processing model 2952 out of 4000 with `degree` = 7 and `λ` = 190.4.
Processing model 2953 out of 4000 with `degree` = 7 and `λ` = 190.60000000000002.
Processing model 2954 out of 4000 with `degree` = 7 and `λ` = 190.8.
Processing model 2955 out of 4000 with `degree` = 7 and `λ` = 191.0.
Processing model 2956 out of 4000 with `degree` = 7 and `λ` = 191.20000000000002.
Processing model 2957 out of 4000 with `degree` = 7 and `λ` = 191.4.
Processing model 2958 out of 4000 with `degree` = 7 and `λ` = 191.60000000000002.
Processing model 2959 out of 4000 with `degree` = 7 and `λ` = 191.8.
Processing model 2960 out of 4000 with `degree` = 7 and `λ` = 192.0.
Processing model 2961 out of 4000 with `degree` = 7 and `λ` = 192.20000000000002.
Processing model 2962 out of 4000 with `degree` = 7 and `λ` = 192.4.
Processing model 2963 out of 4000 with `degree` = 7 and `λ` = 192.60000000000002.
Processing model 2964 out of 4000 with `degree` = 7 and `λ` = 192.8.
Processing model 2965 out of 4000 with `degree` = 7 and `λ` = 193.0.
Processing model 2966 out of 4000 with `degree` = 7 and `λ` = 193.20000000000002.
Processing model 2967 out of 4000 with `degree` = 7 and `λ` = 193.4.
Processing model 2968 out of 4000 with `degree` = 7 and `λ` = 193.60000000000002.
Processing model 2969 out of 4000 with `degree` = 7 and `λ` = 193.8.
Processing model 2970 out of 4000 with `degree` = 7 and `λ` = 194.0.
Processing model 2971 out of 4000 with `degree` = 7 and `λ` = 194.20000000000002.
Processing model 2972 out of 4000 with `degree` = 7 and `λ` = 194.4.
Processing model 2973 out of 4000 with `degree` = 7 and `λ` = 194.60000000000002.
Processing model 2974 out of 4000 with `degree` = 7 and `λ` = 194.8.
Processing model 2975 out of 4000 with `degree` = 7 and `λ` = 195.0.
Processing model 2976 out of 4000 with `degree` = 7 and `λ` = 195.20000000000002.
Processing model 2977 out of 4000 with `degree` = 7 and `λ` = 195.4.
Processing model 2978 out of 4000 with `degree` = 7 and `λ` = 195.60000000000002.
Processing model 2979 out of 4000 with `degree` = 7 and `λ` = 195.8.
Processing model 2980 out of 4000 with `degree` = 7 and `λ` = 196.0.
Processing model 2981 out of 4000 with `degree` = 7 and `λ` = 196.20000000000002.
Processing model 2982 out of 4000 with `degree` = 7 and `λ` = 196.4.
Processing model 2983 out of 4000 with `degree` = 7 and `λ` = 196.60000000000002.
Processing model 2984 out of 4000 with `degree` = 7 and `λ` = 196.8.
Processing model 2985 out of 4000 with `degree` = 7 and `λ` = 197.0.
Processing model 2986 out of 4000 with `degree` = 7 and `λ` = 197.20000000000002.
Processing model 2987 out of 4000 with `degree` = 7 and `λ` = 197.4.
Processing model 2988 out of 4000 with `degree` = 7 and `λ` = 197.60000000000002.
Processing model 2989 out of 4000 with `degree` = 7 and `λ` = 197.8.
Processing model 2990 out of 4000 with `degree` = 7 and `λ` = 198.0.
Processing model 2991 out of 4000 with `degree` = 7 and `λ` = 198.20000000000002.
Processing model 2992 out of 4000 with `degree` = 7 and `λ` = 198.4.
Processing model 2993 out of 4000 with `degree` = 7 and `λ` = 198.60000000000002.
Processing model 2994 out of 4000 with `degree` = 7 and `λ` = 198.8.
Processing model 2995 out of 4000 with `degree` = 7 and `λ` = 199.0.
Processing model 2996 out of 4000 with `degree` = 7 and `λ` = 199.20000000000002.
Processing model 2997 out of 4000 with `degree` = 7 and `λ` = 199.4.
Processing model 2998 out of 4000 with `degree` = 7 and `λ` = 199.60000000000002.
Processing model 2999 out of 4000 with `degree` = 7 and `λ` = 199.8.
Processing model 3000 out of 4000 with `degree` = 7 and `λ` = 200.0.
Processing model 3001 out of 4000 with `degree` = 9 and `λ` = 0.2.
/data/solai/venvMamabaFixel/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:678: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 3.814e+02, tolerance: 2.808e+00
  model = cd_fast.enet_coordinate_descent(
Processing model 3002 out of 4000 with `degree` = 9 and `λ` = 0.4.
/data/solai/venvMamabaFixel/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:678: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 2.301e+02, tolerance: 2.808e+00
  model = cd_fast.enet_coordinate_descent(
Processing model 3003 out of 4000 with `degree` = 9 and `λ` = 0.6000000000000001.
/data/solai/venvMamabaFixel/lib/python3.11/site-packages/sklearn/linear_model/_coordinate_descent.py:678: ConvergenceWarning: Objective did not converge. You might want to increase the number of iterations, check the scale of the features or consider increasing regularisation. Duality gap: 8.941e+01, tolerance: 2.808e+00
  model = cd_fast.enet_coordinate_descent(
Processing model 3004 out of 4000 with `degree` = 9 and `λ` = 0.8.
Processing model 3005 out of 4000 with `degree` = 9 and `λ` = 1.0.
Processing model 3006 out of 4000 with `degree` = 9 and `λ` = 1.2000000000000002.
Processing model 3007 out of 4000 with `degree` = 9 and `λ` = 1.4000000000000001.
Processing model 3008 out of 4000 with `degree` = 9 and `λ` = 1.6.
Processing model 3009 out of 4000 with `degree` = 9 and `λ` = 1.8.
Processing model 3010 out of 4000 with `degree` = 9 and `λ` = 2.0.
Processing model 3011 out of 4000 with `degree` = 9 and `λ` = 2.2.
Processing model 3012 out of 4000 with `degree` = 9 and `λ` = 2.4000000000000004.
Processing model 3013 out of 4000 with `degree` = 9 and `λ` = 2.6.
Processing model 3014 out of 4000 with `degree` = 9 and `λ` = 2.8000000000000003.
Processing model 3015 out of 4000 with `degree` = 9 and `λ` = 3.0.
Processing model 3016 out of 4000 with `degree` = 9 and `λ` = 3.2.
Processing model 3017 out of 4000 with `degree` = 9 and `λ` = 3.4000000000000004.
Processing model 3018 out of 4000 with `degree` = 9 and `λ` = 3.6.
Processing model 3019 out of 4000 with `degree` = 9 and `λ` = 3.8000000000000003.
Processing model 3020 out of 4000 with `degree` = 9 and `λ` = 4.0.
Processing model 3021 out of 4000 with `degree` = 9 and `λ` = 4.2.
Processing model 3022 out of 4000 with `degree` = 9 and `λ` = 4.4.
Processing model 3023 out of 4000 with `degree` = 9 and `λ` = 4.6000000000000005.
Processing model 3024 out of 4000 with `degree` = 9 and `λ` = 4.800000000000001.
Processing model 3025 out of 4000 with `degree` = 9 and `λ` = 5.0.
Processing model 3026 out of 4000 with `degree` = 9 and `λ` = 5.2.
Processing model 3027 out of 4000 with `degree` = 9 and `λ` = 5.4.
Processing model 3028 out of 4000 with `degree` = 9 and `λ` = 5.6000000000000005.
Processing model 3029 out of 4000 with `degree` = 9 and `λ` = 5.800000000000001.
Processing model 3030 out of 4000 with `degree` = 9 and `λ` = 6.0.
Processing model 3031 out of 4000 with `degree` = 9 and `λ` = 6.2.
Processing model 3032 out of 4000 with `degree` = 9 and `λ` = 6.4.
Processing model 3033 out of 4000 with `degree` = 9 and `λ` = 6.6000000000000005.
Processing model 3034 out of 4000 with `degree` = 9 and `λ` = 6.800000000000001.
Processing model 3035 out of 4000 with `degree` = 9 and `λ` = 7.0.
Processing model 3036 out of 4000 with `degree` = 9 and `λ` = 7.2.
Processing model 3037 out of 4000 with `degree` = 9 and `λ` = 7.4.
Processing model 3038 out of 4000 with `degree` = 9 and `λ` = 7.6000000000000005.
Processing model 3039 out of 4000 with `degree` = 9 and `λ` = 7.800000000000001.
Processing model 3040 out of 4000 with `degree` = 9 and `λ` = 8.0.
Processing model 3041 out of 4000 with `degree` = 9 and `λ` = 8.200000000000001.
Processing model 3042 out of 4000 with `degree` = 9 and `λ` = 8.4.
Processing model 3043 out of 4000 with `degree` = 9 and `λ` = 8.6.
Processing model 3044 out of 4000 with `degree` = 9 and `λ` = 8.8.
Processing model 3045 out of 4000 with `degree` = 9 and `λ` = 9.0.
Processing model 3046 out of 4000 with `degree` = 9 and `λ` = 9.200000000000001.
Processing model 3047 out of 4000 with `degree` = 9 and `λ` = 9.4.
Processing model 3048 out of 4000 with `degree` = 9 and `λ` = 9.600000000000001.
Processing model 3049 out of 4000 with `degree` = 9 and `λ` = 9.8.
Processing model 3050 out of 4000 with `degree` = 9 and `λ` = 10.0.
Processing model 3051 out of 4000 with `degree` = 9 and `λ` = 10.200000000000001.
Processing model 3052 out of 4000 with `degree` = 9 and `λ` = 10.4.
Processing model 3053 out of 4000 with `degree` = 9 and `λ` = 10.600000000000001.
Processing model 3054 out of 4000 with `degree` = 9 and `λ` = 10.8.
Processing model 3055 out of 4000 with `degree` = 9 and `λ` = 11.0.
Processing model 3056 out of 4000 with `degree` = 9 and `λ` = 11.200000000000001.
Processing model 3057 out of 4000 with `degree` = 9 and `λ` = 11.4.
Processing model 3058 out of 4000 with `degree` = 9 and `λ` = 11.600000000000001.
Processing model 3059 out of 4000 with `degree` = 9 and `λ` = 11.8.
Processing model 3060 out of 4000 with `degree` = 9 and `λ` = 12.0.
Processing model 3061 out of 4000 with `degree` = 9 and `λ` = 12.200000000000001.
Processing model 3062 out of 4000 with `degree` = 9 and `λ` = 12.4.
Processing model 3063 out of 4000 with `degree` = 9 and `λ` = 12.600000000000001.
Processing model 3064 out of 4000 with `degree` = 9 and `λ` = 12.8.
Processing model 3065 out of 4000 with `degree` = 9 and `λ` = 13.0.
Processing model 3066 out of 4000 with `degree` = 9 and `λ` = 13.200000000000001.
Processing model 3067 out of 4000 with `degree` = 9 and `λ` = 13.4.
Processing model 3068 out of 4000 with `degree` = 9 and `λ` = 13.600000000000001.
Processing model 3069 out of 4000 with `degree` = 9 and `λ` = 13.8.
Processing model 3070 out of 4000 with `degree` = 9 and `λ` = 14.0.
Processing model 3071 out of 4000 with `degree` = 9 and `λ` = 14.200000000000001.
Processing model 3072 out of 4000 with `degree` = 9 and `λ` = 14.4.
Processing model 3073 out of 4000 with `degree` = 9 and `λ` = 14.600000000000001.
Processing model 3074 out of 4000 with `degree` = 9 and `λ` = 14.8.
Processing model 3075 out of 4000 with `degree` = 9 and `λ` = 15.0.
Processing model 3076 out of 4000 with `degree` = 9 and `λ` = 15.200000000000001.
Processing model 3077 out of 4000 with `degree` = 9 and `λ` = 15.4.
Processing model 3078 out of 4000 with `degree` = 9 and `λ` = 15.600000000000001.
Processing model 3079 out of 4000 with `degree` = 9 and `λ` = 15.8.
Processing model 3080 out of 4000 with `degree` = 9 and `λ` = 16.0.
Processing model 3081 out of 4000 with `degree` = 9 and `λ` = 16.2.
Processing model 3082 out of 4000 with `degree` = 9 and `λ` = 16.400000000000002.
Processing model 3083 out of 4000 with `degree` = 9 and `λ` = 16.6.
Processing model 3084 out of 4000 with `degree` = 9 and `λ` = 16.8.
Processing model 3085 out of 4000 with `degree` = 9 and `λ` = 17.0.
Processing model 3086 out of 4000 with `degree` = 9 and `λ` = 17.2.
Processing model 3087 out of 4000 with `degree` = 9 and `λ` = 17.400000000000002.
Processing model 3088 out of 4000 with `degree` = 9 and `λ` = 17.6.
Processing model 3089 out of 4000 with `degree` = 9 and `λ` = 17.8.
Processing model 3090 out of 4000 with `degree` = 9 and `λ` = 18.0.
Processing model 3091 out of 4000 with `degree` = 9 and `λ` = 18.2.
Processing model 3092 out of 4000 with `degree` = 9 and `λ` = 18.400000000000002.
Processing model 3093 out of 4000 with `degree` = 9 and `λ` = 18.6.
Processing model 3094 out of 4000 with `degree` = 9 and `λ` = 18.8.
Processing model 3095 out of 4000 with `degree` = 9 and `λ` = 19.0.
Processing model 3096 out of 4000 with `degree` = 9 and `λ` = 19.200000000000003.
Processing model 3097 out of 4000 with `degree` = 9 and `λ` = 19.400000000000002.
Processing model 3098 out of 4000 with `degree` = 9 and `λ` = 19.6.
Processing model 3099 out of 4000 with `degree` = 9 and `λ` = 19.8.
Processing model 3100 out of 4000 with `degree` = 9 and `λ` = 20.0.
Processing model 3101 out of 4000 with `degree` = 9 and `λ` = 20.200000000000003.
Processing model 3102 out of 4000 with `degree` = 9 and `λ` = 20.400000000000002.
Processing model 3103 out of 4000 with `degree` = 9 and `λ` = 20.6.
Processing model 3104 out of 4000 with `degree` = 9 and `λ` = 20.8.
Processing model 3105 out of 4000 with `degree` = 9 and `λ` = 21.0.
Processing model 3106 out of 4000 with `degree` = 9 and `λ` = 21.200000000000003.
Processing model 3107 out of 4000 with `degree` = 9 and `λ` = 21.400000000000002.
Processing model 3108 out of 4000 with `degree` = 9 and `λ` = 21.6.
Processing model 3109 out of 4000 with `degree` = 9 and `λ` = 21.8.
Processing model 3110 out of 4000 with `degree` = 9 and `λ` = 22.0.
Processing model 3111 out of 4000 with `degree` = 9 and `λ` = 22.200000000000003.
Processing model 3112 out of 4000 with `degree` = 9 and `λ` = 22.400000000000002.
Processing model 3113 out of 4000 with `degree` = 9 and `λ` = 22.6.
Processing model 3114 out of 4000 with `degree` = 9 and `λ` = 22.8.
Processing model 3115 out of 4000 with `degree` = 9 and `λ` = 23.0.
Processing model 3116 out of 4000 with `degree` = 9 and `λ` = 23.200000000000003.
Processing model 3117 out of 4000 with `degree` = 9 and `λ` = 23.400000000000002.
Processing model 3118 out of 4000 with `degree` = 9 and `λ` = 23.6.
Processing model 3119 out of 4000 with `degree` = 9 and `λ` = 23.8.
Processing model 3120 out of 4000 with `degree` = 9 and `λ` = 24.0.
Processing model 3121 out of 4000 with `degree` = 9 and `λ` = 24.200000000000003.
Processing model 3122 out of 4000 with `degree` = 9 and `λ` = 24.400000000000002.
Processing model 3123 out of 4000 with `degree` = 9 and `λ` = 24.6.
Processing model 3124 out of 4000 with `degree` = 9 and `λ` = 24.8.
Processing model 3125 out of 4000 with `degree` = 9 and `λ` = 25.0.
Processing model 3126 out of 4000 with `degree` = 9 and `λ` = 25.200000000000003.
Processing model 3127 out of 4000 with `degree` = 9 and `λ` = 25.400000000000002.
Processing model 3128 out of 4000 with `degree` = 9 and `λ` = 25.6.
Processing model 3129 out of 4000 with `degree` = 9 and `λ` = 25.8.
Processing model 3130 out of 4000 with `degree` = 9 and `λ` = 26.0.
Processing model 3131 out of 4000 with `degree` = 9 and `λ` = 26.200000000000003.
Processing model 3132 out of 4000 with `degree` = 9 and `λ` = 26.400000000000002.
Processing model 3133 out of 4000 with `degree` = 9 and `λ` = 26.6.
Processing model 3134 out of 4000 with `degree` = 9 and `λ` = 26.8.
Processing model 3135 out of 4000 with `degree` = 9 and `λ` = 27.0.
Processing model 3136 out of 4000 with `degree` = 9 and `λ` = 27.200000000000003.
Processing model 3137 out of 4000 with `degree` = 9 and `λ` = 27.400000000000002.
Processing model 3138 out of 4000 with `degree` = 9 and `λ` = 27.6.
Processing model 3139 out of 4000 with `degree` = 9 and `λ` = 27.8.
Processing model 3140 out of 4000 with `degree` = 9 and `λ` = 28.0.
Processing model 3141 out of 4000 with `degree` = 9 and `λ` = 28.200000000000003.
Processing model 3142 out of 4000 with `degree` = 9 and `λ` = 28.400000000000002.
Processing model 3143 out of 4000 with `degree` = 9 and `λ` = 28.6.
Processing model 3144 out of 4000 with `degree` = 9 and `λ` = 28.8.
Processing model 3145 out of 4000 with `degree` = 9 and `λ` = 29.0.
Processing model 3146 out of 4000 with `degree` = 9 and `λ` = 29.200000000000003.
Processing model 3147 out of 4000 with `degree` = 9 and `λ` = 29.400000000000002.
Processing model 3148 out of 4000 with `degree` = 9 and `λ` = 29.6.
Processing model 3149 out of 4000 with `degree` = 9 and `λ` = 29.8.
Processing model 3150 out of 4000 with `degree` = 9 and `λ` = 30.0.
Processing model 3151 out of 4000 with `degree` = 9 and `λ` = 30.200000000000003.
Processing model 3152 out of 4000 with `degree` = 9 and `λ` = 30.400000000000002.
Processing model 3153 out of 4000 with `degree` = 9 and `λ` = 30.6.
Processing model 3154 out of 4000 with `degree` = 9 and `λ` = 30.8.
Processing model 3155 out of 4000 with `degree` = 9 and `λ` = 31.0.
Processing model 3156 out of 4000 with `degree` = 9 and `λ` = 31.200000000000003.
Processing model 3157 out of 4000 with `degree` = 9 and `λ` = 31.400000000000002.
Processing model 3158 out of 4000 with `degree` = 9 and `λ` = 31.6.
Processing model 3159 out of 4000 with `degree` = 9 and `λ` = 31.8.
Processing model 3160 out of 4000 with `degree` = 9 and `λ` = 32.0.
Processing model 3161 out of 4000 with `degree` = 9 and `λ` = 32.2.
Processing model 3162 out of 4000 with `degree` = 9 and `λ` = 32.4.
Processing model 3163 out of 4000 with `degree` = 9 and `λ` = 32.6.
Processing model 3164 out of 4000 with `degree` = 9 and `λ` = 32.800000000000004.
Processing model 3165 out of 4000 with `degree` = 9 and `λ` = 33.0.
Processing model 3166 out of 4000 with `degree` = 9 and `λ` = 33.2.
Processing model 3167 out of 4000 with `degree` = 9 and `λ` = 33.4.
Processing model 3168 out of 4000 with `degree` = 9 and `λ` = 33.6.
Processing model 3169 out of 4000 with `degree` = 9 and `λ` = 33.800000000000004.
Processing model 3170 out of 4000 with `degree` = 9 and `λ` = 34.0.
Processing model 3171 out of 4000 with `degree` = 9 and `λ` = 34.2.
Processing model 3172 out of 4000 with `degree` = 9 and `λ` = 34.4.
Processing model 3173 out of 4000 with `degree` = 9 and `λ` = 34.6.
Processing model 3174 out of 4000 with `degree` = 9 and `λ` = 34.800000000000004.
Processing model 3175 out of 4000 with `degree` = 9 and `λ` = 35.0.
Processing model 3176 out of 4000 with `degree` = 9 and `λ` = 35.2.
Processing model 3177 out of 4000 with `degree` = 9 and `λ` = 35.4.
Processing model 3178 out of 4000 with `degree` = 9 and `λ` = 35.6.
Processing model 3179 out of 4000 with `degree` = 9 and `λ` = 35.800000000000004.
Processing model 3180 out of 4000 with `degree` = 9 and `λ` = 36.0.
Processing model 3181 out of 4000 with `degree` = 9 and `λ` = 36.2.
Processing model 3182 out of 4000 with `degree` = 9 and `λ` = 36.4.
Processing model 3183 out of 4000 with `degree` = 9 and `λ` = 36.6.
Processing model 3184 out of 4000 with `degree` = 9 and `λ` = 36.800000000000004.
Processing model 3185 out of 4000 with `degree` = 9 and `λ` = 37.0.
Processing model 3186 out of 4000 with `degree` = 9 and `λ` = 37.2.
Processing model 3187 out of 4000 with `degree` = 9 and `λ` = 37.4.
Processing model 3188 out of 4000 with `degree` = 9 and `λ` = 37.6.
Processing model 3189 out of 4000 with `degree` = 9 and `λ` = 37.800000000000004.
Processing model 3190 out of 4000 with `degree` = 9 and `λ` = 38.0.
Processing model 3191 out of 4000 with `degree` = 9 and `λ` = 38.2.
Processing model 3192 out of 4000 with `degree` = 9 and `λ` = 38.400000000000006.
Processing model 3193 out of 4000 with `degree` = 9 and `λ` = 38.6.
Processing model 3194 out of 4000 with `degree` = 9 and `λ` = 38.800000000000004.
Processing model 3195 out of 4000 with `degree` = 9 and `λ` = 39.0.
Processing model 3196 out of 4000 with `degree` = 9 and `λ` = 39.2.
Processing model 3197 out of 4000 with `degree` = 9 and `λ` = 39.400000000000006.
Processing model 3198 out of 4000 with `degree` = 9 and `λ` = 39.6.
Processing model 3199 out of 4000 with `degree` = 9 and `λ` = 39.800000000000004.
Processing model 3200 out of 4000 with `degree` = 9 and `λ` = 40.0.
Processing model 3201 out of 4000 with `degree` = 9 and `λ` = 40.2.
Processing model 3202 out of 4000 with `degree` = 9 and `λ` = 40.400000000000006.
Processing model 3203 out of 4000 with `degree` = 9 and `λ` = 40.6.
Processing model 3204 out of 4000 with `degree` = 9 and `λ` = 40.800000000000004.
Processing model 3205 out of 4000 with `degree` = 9 and `λ` = 41.0.
Processing model 3206 out of 4000 with `degree` = 9 and `λ` = 41.2.
Processing model 3207 out of 4000 with `degree` = 9 and `λ` = 41.400000000000006.
Processing model 3208 out of 4000 with `degree` = 9 and `λ` = 41.6.
Processing model 3209 out of 4000 with `degree` = 9 and `λ` = 41.800000000000004.
Processing model 3210 out of 4000 with `degree` = 9 and `λ` = 42.0.
Processing model 3211 out of 4000 with `degree` = 9 and `λ` = 42.2.
Processing model 3212 out of 4000 with `degree` = 9 and `λ` = 42.400000000000006.
Processing model 3213 out of 4000 with `degree` = 9 and `λ` = 42.6.
Processing model 3214 out of 4000 with `degree` = 9 and `λ` = 42.800000000000004.
Processing model 3215 out of 4000 with `degree` = 9 and `λ` = 43.0.
Processing model 3216 out of 4000 with `degree` = 9 and `λ` = 43.2.
Processing model 3217 out of 4000 with `degree` = 9 and `λ` = 43.400000000000006.
Processing model 3218 out of 4000 with `degree` = 9 and `λ` = 43.6.
Processing model 3219 out of 4000 with `degree` = 9 and `λ` = 43.800000000000004.
Processing model 3220 out of 4000 with `degree` = 9 and `λ` = 44.0.
Processing model 3221 out of 4000 with `degree` = 9 and `λ` = 44.2.
Processing model 3222 out of 4000 with `degree` = 9 and `λ` = 44.400000000000006.
Processing model 3223 out of 4000 with `degree` = 9 and `λ` = 44.6.
Processing model 3224 out of 4000 with `degree` = 9 and `λ` = 44.800000000000004.
Processing model 3225 out of 4000 with `degree` = 9 and `λ` = 45.0.
Processing model 3226 out of 4000 with `degree` = 9 and `λ` = 45.2.
Processing model 3227 out of 4000 with `degree` = 9 and `λ` = 45.400000000000006.
Processing model 3228 out of 4000 with `degree` = 9 and `λ` = 45.6.
Processing model 3229 out of 4000 with `degree` = 9 and `λ` = 45.800000000000004.
Processing model 3230 out of 4000 with `degree` = 9 and `λ` = 46.0.
Processing model 3231 out of 4000 with `degree` = 9 and `λ` = 46.2.
Processing model 3232 out of 4000 with `degree` = 9 and `λ` = 46.400000000000006.
Processing model 3233 out of 4000 with `degree` = 9 and `λ` = 46.6.
Processing model 3234 out of 4000 with `degree` = 9 and `λ` = 46.800000000000004.
Processing model 3235 out of 4000 with `degree` = 9 and `λ` = 47.0.
Processing model 3236 out of 4000 with `degree` = 9 and `λ` = 47.2.
Processing model 3237 out of 4000 with `degree` = 9 and `λ` = 47.400000000000006.
Processing model 3238 out of 4000 with `degree` = 9 and `λ` = 47.6.
Processing model 3239 out of 4000 with `degree` = 9 and `λ` = 47.800000000000004.
Processing model 3240 out of 4000 with `degree` = 9 and `λ` = 48.0.
Processing model 3241 out of 4000 with `degree` = 9 and `λ` = 48.2.
Processing model 3242 out of 4000 with `degree` = 9 and `λ` = 48.400000000000006.
Processing model 3243 out of 4000 with `degree` = 9 and `λ` = 48.6.
Processing model 3244 out of 4000 with `degree` = 9 and `λ` = 48.800000000000004.
Processing model 3245 out of 4000 with `degree` = 9 and `λ` = 49.0.
Processing model 3246 out of 4000 with `degree` = 9 and `λ` = 49.2.
Processing model 3247 out of 4000 with `degree` = 9 and `λ` = 49.400000000000006.
Processing model 3248 out of 4000 with `degree` = 9 and `λ` = 49.6.
Processing model 3249 out of 4000 with `degree` = 9 and `λ` = 49.800000000000004.
Processing model 3250 out of 4000 with `degree` = 9 and `λ` = 50.0.
Processing model 3251 out of 4000 with `degree` = 9 and `λ` = 50.2.
Processing model 3252 out of 4000 with `degree` = 9 and `λ` = 50.400000000000006.
Processing model 3253 out of 4000 with `degree` = 9 and `λ` = 50.6.
Processing model 3254 out of 4000 with `degree` = 9 and `λ` = 50.800000000000004.
Processing model 3255 out of 4000 with `degree` = 9 and `λ` = 51.0.
Processing model 3256 out of 4000 with `degree` = 9 and `λ` = 51.2.
Processing model 3257 out of 4000 with `degree` = 9 and `λ` = 51.400000000000006.
Processing model 3258 out of 4000 with `degree` = 9 and `λ` = 51.6.
Processing model 3259 out of 4000 with `degree` = 9 and `λ` = 51.800000000000004.
Processing model 3260 out of 4000 with `degree` = 9 and `λ` = 52.0.
Processing model 3261 out of 4000 with `degree` = 9 and `λ` = 52.2.
Processing model 3262 out of 4000 with `degree` = 9 and `λ` = 52.400000000000006.
Processing model 3263 out of 4000 with `degree` = 9 and `λ` = 52.6.
Processing model 3264 out of 4000 with `degree` = 9 and `λ` = 52.800000000000004.
Processing model 3265 out of 4000 with `degree` = 9 and `λ` = 53.0.
Processing model 3266 out of 4000 with `degree` = 9 and `λ` = 53.2.
Processing model 3267 out of 4000 with `degree` = 9 and `λ` = 53.400000000000006.
Processing model 3268 out of 4000 with `degree` = 9 and `λ` = 53.6.
Processing model 3269 out of 4000 with `degree` = 9 and `λ` = 53.800000000000004.
Processing model 3270 out of 4000 with `degree` = 9 and `λ` = 54.0.
Processing model 3271 out of 4000 with `degree` = 9 and `λ` = 54.2.
Processing model 3272 out of 4000 with `degree` = 9 and `λ` = 54.400000000000006.
Processing model 3273 out of 4000 with `degree` = 9 and `λ` = 54.6.
Processing model 3274 out of 4000 with `degree` = 9 and `λ` = 54.800000000000004.
Processing model 3275 out of 4000 with `degree` = 9 and `λ` = 55.0.
Processing model 3276 out of 4000 with `degree` = 9 and `λ` = 55.2.
Processing model 3277 out of 4000 with `degree` = 9 and `λ` = 55.400000000000006.
Processing model 3278 out of 4000 with `degree` = 9 and `λ` = 55.6.
Processing model 3279 out of 4000 with `degree` = 9 and `λ` = 55.800000000000004.
Processing model 3280 out of 4000 with `degree` = 9 and `λ` = 56.0.
Processing model 3281 out of 4000 with `degree` = 9 and `λ` = 56.2.
Processing model 3282 out of 4000 with `degree` = 9 and `λ` = 56.400000000000006.
Processing model 3283 out of 4000 with `degree` = 9 and `λ` = 56.6.
Processing model 3284 out of 4000 with `degree` = 9 and `λ` = 56.800000000000004.
Processing model 3285 out of 4000 with `degree` = 9 and `λ` = 57.0.
Processing model 3286 out of 4000 with `degree` = 9 and `λ` = 57.2.
Processing model 3287 out of 4000 with `degree` = 9 and `λ` = 57.400000000000006.
Processing model 3288 out of 4000 with `degree` = 9 and `λ` = 57.6.
Processing model 3289 out of 4000 with `degree` = 9 and `λ` = 57.800000000000004.
Processing model 3290 out of 4000 with `degree` = 9 and `λ` = 58.0.
Processing model 3291 out of 4000 with `degree` = 9 and `λ` = 58.2.
Processing model 3292 out of 4000 with `degree` = 9 and `λ` = 58.400000000000006.
Processing model 3293 out of 4000 with `degree` = 9 and `λ` = 58.6.
Processing model 3294 out of 4000 with `degree` = 9 and `λ` = 58.800000000000004.
Processing model 3295 out of 4000 with `degree` = 9 and `λ` = 59.0.
Processing model 3296 out of 4000 with `degree` = 9 and `λ` = 59.2.
Processing model 3297 out of 4000 with `degree` = 9 and `λ` = 59.400000000000006.
Processing model 3298 out of 4000 with `degree` = 9 and `λ` = 59.6.
Processing model 3299 out of 4000 with `degree` = 9 and `λ` = 59.800000000000004.
Processing model 3300 out of 4000 with `degree` = 9 and `λ` = 60.0.
Processing model 3301 out of 4000 with `degree` = 9 and `λ` = 60.2.
Processing model 3302 out of 4000 with `degree` = 9 and `λ` = 60.400000000000006.
Processing model 3303 out of 4000 with `degree` = 9 and `λ` = 60.6.
Processing model 3304 out of 4000 with `degree` = 9 and `λ` = 60.800000000000004.
Processing model 3305 out of 4000 with `degree` = 9 and `λ` = 61.0.
Processing model 3306 out of 4000 with `degree` = 9 and `λ` = 61.2.
Processing model 3307 out of 4000 with `degree` = 9 and `λ` = 61.400000000000006.
Processing model 3308 out of 4000 with `degree` = 9 and `λ` = 61.6.
Processing model 3309 out of 4000 with `degree` = 9 and `λ` = 61.800000000000004.
Processing model 3310 out of 4000 with `degree` = 9 and `λ` = 62.0.
Processing model 3311 out of 4000 with `degree` = 9 and `λ` = 62.2.
Processing model 3312 out of 4000 with `degree` = 9 and `λ` = 62.400000000000006.
Processing model 3313 out of 4000 with `degree` = 9 and `λ` = 62.6.
Processing model 3314 out of 4000 with `degree` = 9 and `λ` = 62.800000000000004.
Processing model 3315 out of 4000 with `degree` = 9 and `λ` = 63.0.
Processing model 3316 out of 4000 with `degree` = 9 and `λ` = 63.2.
Processing model 3317 out of 4000 with `degree` = 9 and `λ` = 63.400000000000006.
Processing model 3318 out of 4000 with `degree` = 9 and `λ` = 63.6.
Processing model 3319 out of 4000 with `degree` = 9 and `λ` = 63.800000000000004.
Processing model 3320 out of 4000 with `degree` = 9 and `λ` = 64.0.
Processing model 3321 out of 4000 with `degree` = 9 and `λ` = 64.2.
Processing model 3322 out of 4000 with `degree` = 9 and `λ` = 64.4.
Processing model 3323 out of 4000 with `degree` = 9 and `λ` = 64.60000000000001.
Processing model 3324 out of 4000 with `degree` = 9 and `λ` = 64.8.
Processing model 3325 out of 4000 with `degree` = 9 and `λ` = 65.0.
Processing model 3326 out of 4000 with `degree` = 9 and `λ` = 65.2.
Processing model 3327 out of 4000 with `degree` = 9 and `λ` = 65.4.
Processing model 3328 out of 4000 with `degree` = 9 and `λ` = 65.60000000000001.
Processing model 3329 out of 4000 with `degree` = 9 and `λ` = 65.8.
Processing model 3330 out of 4000 with `degree` = 9 and `λ` = 66.0.
Processing model 3331 out of 4000 with `degree` = 9 and `λ` = 66.2.
Processing model 3332 out of 4000 with `degree` = 9 and `λ` = 66.4.
Processing model 3333 out of 4000 with `degree` = 9 and `λ` = 66.60000000000001.
Processing model 3334 out of 4000 with `degree` = 9 and `λ` = 66.8.
Processing model 3335 out of 4000 with `degree` = 9 and `λ` = 67.0.
Processing model 3336 out of 4000 with `degree` = 9 and `λ` = 67.2.
Processing model 3337 out of 4000 with `degree` = 9 and `λ` = 67.4.
Processing model 3338 out of 4000 with `degree` = 9 and `λ` = 67.60000000000001.
Processing model 3339 out of 4000 with `degree` = 9 and `λ` = 67.8.
Processing model 3340 out of 4000 with `degree` = 9 and `λ` = 68.0.
Processing model 3341 out of 4000 with `degree` = 9 and `λ` = 68.2.
Processing model 3342 out of 4000 with `degree` = 9 and `λ` = 68.4.
Processing model 3343 out of 4000 with `degree` = 9 and `λ` = 68.60000000000001.
Processing model 3344 out of 4000 with `degree` = 9 and `λ` = 68.8.
Processing model 3345 out of 4000 with `degree` = 9 and `λ` = 69.0.
Processing model 3346 out of 4000 with `degree` = 9 and `λ` = 69.2.
Processing model 3347 out of 4000 with `degree` = 9 and `λ` = 69.4.
Processing model 3348 out of 4000 with `degree` = 9 and `λ` = 69.60000000000001.
Processing model 3349 out of 4000 with `degree` = 9 and `λ` = 69.8.
Processing model 3350 out of 4000 with `degree` = 9 and `λ` = 70.0.
Processing model 3351 out of 4000 with `degree` = 9 and `λ` = 70.2.
Processing model 3352 out of 4000 with `degree` = 9 and `λ` = 70.4.
Processing model 3353 out of 4000 with `degree` = 9 and `λ` = 70.60000000000001.
Processing model 3354 out of 4000 with `degree` = 9 and `λ` = 70.8.
Processing model 3355 out of 4000 with `degree` = 9 and `λ` = 71.0.
Processing model 3356 out of 4000 with `degree` = 9 and `λ` = 71.2.
Processing model 3357 out of 4000 with `degree` = 9 and `λ` = 71.4.
Processing model 3358 out of 4000 with `degree` = 9 and `λ` = 71.60000000000001.
Processing model 3359 out of 4000 with `degree` = 9 and `λ` = 71.8.
Processing model 3360 out of 4000 with `degree` = 9 and `λ` = 72.0.
Processing model 3361 out of 4000 with `degree` = 9 and `λ` = 72.2.
Processing model 3362 out of 4000 with `degree` = 9 and `λ` = 72.4.
Processing model 3363 out of 4000 with `degree` = 9 and `λ` = 72.60000000000001.
Processing model 3364 out of 4000 with `degree` = 9 and `λ` = 72.8.
Processing model 3365 out of 4000 with `degree` = 9 and `λ` = 73.0.
Processing model 3366 out of 4000 with `degree` = 9 and `λ` = 73.2.
Processing model 3367 out of 4000 with `degree` = 9 and `λ` = 73.4.
Processing model 3368 out of 4000 with `degree` = 9 and `λ` = 73.60000000000001.
Processing model 3369 out of 4000 with `degree` = 9 and `λ` = 73.8.
Processing model 3370 out of 4000 with `degree` = 9 and `λ` = 74.0.
Processing model 3371 out of 4000 with `degree` = 9 and `λ` = 74.2.
Processing model 3372 out of 4000 with `degree` = 9 and `λ` = 74.4.
Processing model 3373 out of 4000 with `degree` = 9 and `λ` = 74.60000000000001.
Processing model 3374 out of 4000 with `degree` = 9 and `λ` = 74.8.
Processing model 3375 out of 4000 with `degree` = 9 and `λ` = 75.0.
Processing model 3376 out of 4000 with `degree` = 9 and `λ` = 75.2.
Processing model 3377 out of 4000 with `degree` = 9 and `λ` = 75.4.
Processing model 3378 out of 4000 with `degree` = 9 and `λ` = 75.60000000000001.
Processing model 3379 out of 4000 with `degree` = 9 and `λ` = 75.8.
Processing model 3380 out of 4000 with `degree` = 9 and `λ` = 76.0.
Processing model 3381 out of 4000 with `degree` = 9 and `λ` = 76.2.
Processing model 3382 out of 4000 with `degree` = 9 and `λ` = 76.4.
Processing model 3383 out of 4000 with `degree` = 9 and `λ` = 76.60000000000001.
Processing model 3384 out of 4000 with `degree` = 9 and `λ` = 76.80000000000001.
Processing model 3385 out of 4000 with `degree` = 9 and `λ` = 77.0.
Processing model 3386 out of 4000 with `degree` = 9 and `λ` = 77.2.
Processing model 3387 out of 4000 with `degree` = 9 and `λ` = 77.4.
Processing model 3388 out of 4000 with `degree` = 9 and `λ` = 77.60000000000001.
Processing model 3389 out of 4000 with `degree` = 9 and `λ` = 77.80000000000001.
Processing model 3390 out of 4000 with `degree` = 9 and `λ` = 78.0.
Processing model 3391 out of 4000 with `degree` = 9 and `λ` = 78.2.
Processing model 3392 out of 4000 with `degree` = 9 and `λ` = 78.4.
Processing model 3393 out of 4000 with `degree` = 9 and `λ` = 78.60000000000001.
Processing model 3394 out of 4000 with `degree` = 9 and `λ` = 78.80000000000001.
Processing model 3395 out of 4000 with `degree` = 9 and `λ` = 79.0.
Processing model 3396 out of 4000 with `degree` = 9 and `λ` = 79.2.
Processing model 3397 out of 4000 with `degree` = 9 and `λ` = 79.4.
Processing model 3398 out of 4000 with `degree` = 9 and `λ` = 79.60000000000001.
Processing model 3399 out of 4000 with `degree` = 9 and `λ` = 79.80000000000001.
Processing model 3400 out of 4000 with `degree` = 9 and `λ` = 80.0.
Processing model 3401 out of 4000 with `degree` = 9 and `λ` = 80.2.
Processing model 3402 out of 4000 with `degree` = 9 and `λ` = 80.4.
Processing model 3403 out of 4000 with `degree` = 9 and `λ` = 80.60000000000001.
Processing model 3404 out of 4000 with `degree` = 9 and `λ` = 80.80000000000001.
Processing model 3405 out of 4000 with `degree` = 9 and `λ` = 81.0.
Processing model 3406 out of 4000 with `degree` = 9 and `λ` = 81.2.
Processing model 3407 out of 4000 with `degree` = 9 and `λ` = 81.4.
Processing model 3408 out of 4000 with `degree` = 9 and `λ` = 81.60000000000001.
Processing model 3409 out of 4000 with `degree` = 9 and `λ` = 81.80000000000001.
Processing model 3410 out of 4000 with `degree` = 9 and `λ` = 82.0.
Processing model 3411 out of 4000 with `degree` = 9 and `λ` = 82.2.
Processing model 3412 out of 4000 with `degree` = 9 and `λ` = 82.4.
Processing model 3413 out of 4000 with `degree` = 9 and `λ` = 82.60000000000001.
Processing model 3414 out of 4000 with `degree` = 9 and `λ` = 82.80000000000001.
Processing model 3415 out of 4000 with `degree` = 9 and `λ` = 83.0.
Processing model 3416 out of 4000 with `degree` = 9 and `λ` = 83.2.
Processing model 3417 out of 4000 with `degree` = 9 and `λ` = 83.4.
Processing model 3418 out of 4000 with `degree` = 9 and `λ` = 83.60000000000001.
Processing model 3419 out of 4000 with `degree` = 9 and `λ` = 83.80000000000001.
Processing model 3420 out of 4000 with `degree` = 9 and `λ` = 84.0.
Processing model 3421 out of 4000 with `degree` = 9 and `λ` = 84.2.
Processing model 3422 out of 4000 with `degree` = 9 and `λ` = 84.4.
Processing model 3423 out of 4000 with `degree` = 9 and `λ` = 84.60000000000001.
Processing model 3424 out of 4000 with `degree` = 9 and `λ` = 84.80000000000001.
Processing model 3425 out of 4000 with `degree` = 9 and `λ` = 85.0.
Processing model 3426 out of 4000 with `degree` = 9 and `λ` = 85.2.
Processing model 3427 out of 4000 with `degree` = 9 and `λ` = 85.4.
Processing model 3428 out of 4000 with `degree` = 9 and `λ` = 85.60000000000001.
Processing model 3429 out of 4000 with `degree` = 9 and `λ` = 85.80000000000001.
Processing model 3430 out of 4000 with `degree` = 9 and `λ` = 86.0.
Processing model 3431 out of 4000 with `degree` = 9 and `λ` = 86.2.
Processing model 3432 out of 4000 with `degree` = 9 and `λ` = 86.4.
Processing model 3433 out of 4000 with `degree` = 9 and `λ` = 86.60000000000001.
Processing model 3434 out of 4000 with `degree` = 9 and `λ` = 86.80000000000001.
Processing model 3435 out of 4000 with `degree` = 9 and `λ` = 87.0.
Processing model 3436 out of 4000 with `degree` = 9 and `λ` = 87.2.
Processing model 3437 out of 4000 with `degree` = 9 and `λ` = 87.4.
Processing model 3438 out of 4000 with `degree` = 9 and `λ` = 87.60000000000001.
Processing model 3439 out of 4000 with `degree` = 9 and `λ` = 87.80000000000001.
Processing model 3440 out of 4000 with `degree` = 9 and `λ` = 88.0.
Processing model 3441 out of 4000 with `degree` = 9 and `λ` = 88.2.
Processing model 3442 out of 4000 with `degree` = 9 and `λ` = 88.4.
Processing model 3443 out of 4000 with `degree` = 9 and `λ` = 88.60000000000001.
Processing model 3444 out of 4000 with `degree` = 9 and `λ` = 88.80000000000001.
Processing model 3445 out of 4000 with `degree` = 9 and `λ` = 89.0.
Processing model 3446 out of 4000 with `degree` = 9 and `λ` = 89.2.
Processing model 3447 out of 4000 with `degree` = 9 and `λ` = 89.4.
Processing model 3448 out of 4000 with `degree` = 9 and `λ` = 89.60000000000001.
Processing model 3449 out of 4000 with `degree` = 9 and `λ` = 89.80000000000001.
Processing model 3450 out of 4000 with `degree` = 9 and `λ` = 90.0.
Processing model 3451 out of 4000 with `degree` = 9 and `λ` = 90.2.
Processing model 3452 out of 4000 with `degree` = 9 and `λ` = 90.4.
Processing model 3453 out of 4000 with `degree` = 9 and `λ` = 90.60000000000001.
Processing model 3454 out of 4000 with `degree` = 9 and `λ` = 90.80000000000001.
Processing model 3455 out of 4000 with `degree` = 9 and `λ` = 91.0.
Processing model 3456 out of 4000 with `degree` = 9 and `λ` = 91.2.
Processing model 3457 out of 4000 with `degree` = 9 and `λ` = 91.4.
Processing model 3458 out of 4000 with `degree` = 9 and `λ` = 91.60000000000001.
Processing model 3459 out of 4000 with `degree` = 9 and `λ` = 91.80000000000001.
Processing model 3460 out of 4000 with `degree` = 9 and `λ` = 92.0.
Processing model 3461 out of 4000 with `degree` = 9 and `λ` = 92.2.
Processing model 3462 out of 4000 with `degree` = 9 and `λ` = 92.4.
Processing model 3463 out of 4000 with `degree` = 9 and `λ` = 92.60000000000001.
Processing model 3464 out of 4000 with `degree` = 9 and `λ` = 92.80000000000001.
Processing model 3465 out of 4000 with `degree` = 9 and `λ` = 93.0.
Processing model 3466 out of 4000 with `degree` = 9 and `λ` = 93.2.
Processing model 3467 out of 4000 with `degree` = 9 and `λ` = 93.4.
Processing model 3468 out of 4000 with `degree` = 9 and `λ` = 93.60000000000001.
Processing model 3469 out of 4000 with `degree` = 9 and `λ` = 93.80000000000001.
Processing model 3470 out of 4000 with `degree` = 9 and `λ` = 94.0.
Processing model 3471 out of 4000 with `degree` = 9 and `λ` = 94.2.
Processing model 3472 out of 4000 with `degree` = 9 and `λ` = 94.4.
Processing model 3473 out of 4000 with `degree` = 9 and `λ` = 94.60000000000001.
Processing model 3474 out of 4000 with `degree` = 9 and `λ` = 94.80000000000001.
Processing model 3475 out of 4000 with `degree` = 9 and `λ` = 95.0.
Processing model 3476 out of 4000 with `degree` = 9 and `λ` = 95.2.
Processing model 3477 out of 4000 with `degree` = 9 and `λ` = 95.4.
Processing model 3478 out of 4000 with `degree` = 9 and `λ` = 95.60000000000001.
Processing model 3479 out of 4000 with `degree` = 9 and `λ` = 95.80000000000001.
Processing model 3480 out of 4000 with `degree` = 9 and `λ` = 96.0.
Processing model 3481 out of 4000 with `degree` = 9 and `λ` = 96.2.
Processing model 3482 out of 4000 with `degree` = 9 and `λ` = 96.4.
Processing model 3483 out of 4000 with `degree` = 9 and `λ` = 96.60000000000001.
Processing model 3484 out of 4000 with `degree` = 9 and `λ` = 96.80000000000001.
Processing model 3485 out of 4000 with `degree` = 9 and `λ` = 97.0.
Processing model 3486 out of 4000 with `degree` = 9 and `λ` = 97.2.
Processing model 3487 out of 4000 with `degree` = 9 and `λ` = 97.4.
Processing model 3488 out of 4000 with `degree` = 9 and `λ` = 97.60000000000001.
Processing model 3489 out of 4000 with `degree` = 9 and `λ` = 97.80000000000001.
Processing model 3490 out of 4000 with `degree` = 9 and `λ` = 98.0.
Processing model 3491 out of 4000 with `degree` = 9 and `λ` = 98.2.
Processing model 3492 out of 4000 with `degree` = 9 and `λ` = 98.4.
Processing model 3493 out of 4000 with `degree` = 9 and `λ` = 98.60000000000001.
Processing model 3494 out of 4000 with `degree` = 9 and `λ` = 98.80000000000001.
Processing model 3495 out of 4000 with `degree` = 9 and `λ` = 99.0.
Processing model 3496 out of 4000 with `degree` = 9 and `λ` = 99.2.
Processing model 3497 out of 4000 with `degree` = 9 and `λ` = 99.4.
Processing model 3498 out of 4000 with `degree` = 9 and `λ` = 99.60000000000001.
Processing model 3499 out of 4000 with `degree` = 9 and `λ` = 99.80000000000001.
Processing model 3500 out of 4000 with `degree` = 9 and `λ` = 100.0.
Processing model 3501 out of 4000 with `degree` = 9 and `λ` = 100.2.
Processing model 3502 out of 4000 with `degree` = 9 and `λ` = 100.4.
Processing model 3503 out of 4000 with `degree` = 9 and `λ` = 100.60000000000001.
Processing model 3504 out of 4000 with `degree` = 9 and `λ` = 100.80000000000001.
Processing model 3505 out of 4000 with `degree` = 9 and `λ` = 101.0.
Processing model 3506 out of 4000 with `degree` = 9 and `λ` = 101.2.
Processing model 3507 out of 4000 with `degree` = 9 and `λ` = 101.4.
Processing model 3508 out of 4000 with `degree` = 9 and `λ` = 101.60000000000001.
Processing model 3509 out of 4000 with `degree` = 9 and `λ` = 101.80000000000001.
Processing model 3510 out of 4000 with `degree` = 9 and `λ` = 102.0.
Processing model 3511 out of 4000 with `degree` = 9 and `λ` = 102.2.
Processing model 3512 out of 4000 with `degree` = 9 and `λ` = 102.4.
Processing model 3513 out of 4000 with `degree` = 9 and `λ` = 102.60000000000001.
Processing model 3514 out of 4000 with `degree` = 9 and `λ` = 102.80000000000001.
Processing model 3515 out of 4000 with `degree` = 9 and `λ` = 103.0.
Processing model 3516 out of 4000 with `degree` = 9 and `λ` = 103.2.
Processing model 3517 out of 4000 with `degree` = 9 and `λ` = 103.4.
Processing model 3518 out of 4000 with `degree` = 9 and `λ` = 103.60000000000001.
Processing model 3519 out of 4000 with `degree` = 9 and `λ` = 103.80000000000001.
Processing model 3520 out of 4000 with `degree` = 9 and `λ` = 104.0.
Processing model 3521 out of 4000 with `degree` = 9 and `λ` = 104.2.
Processing model 3522 out of 4000 with `degree` = 9 and `λ` = 104.4.
Processing model 3523 out of 4000 with `degree` = 9 and `λ` = 104.60000000000001.
Processing model 3524 out of 4000 with `degree` = 9 and `λ` = 104.80000000000001.
Processing model 3525 out of 4000 with `degree` = 9 and `λ` = 105.0.
Processing model 3526 out of 4000 with `degree` = 9 and `λ` = 105.2.
Processing model 3527 out of 4000 with `degree` = 9 and `λ` = 105.4.
Processing model 3528 out of 4000 with `degree` = 9 and `λ` = 105.60000000000001.
Processing model 3529 out of 4000 with `degree` = 9 and `λ` = 105.80000000000001.
Processing model 3530 out of 4000 with `degree` = 9 and `λ` = 106.0.
Processing model 3531 out of 4000 with `degree` = 9 and `λ` = 106.2.
Processing model 3532 out of 4000 with `degree` = 9 and `λ` = 106.4.
Processing model 3533 out of 4000 with `degree` = 9 and `λ` = 106.60000000000001.
Processing model 3534 out of 4000 with `degree` = 9 and `λ` = 106.80000000000001.
Processing model 3535 out of 4000 with `degree` = 9 and `λ` = 107.0.
Processing model 3536 out of 4000 with `degree` = 9 and `λ` = 107.2.
Processing model 3537 out of 4000 with `degree` = 9 and `λ` = 107.4.
Processing model 3538 out of 4000 with `degree` = 9 and `λ` = 107.60000000000001.
Processing model 3539 out of 4000 with `degree` = 9 and `λ` = 107.80000000000001.
Processing model 3540 out of 4000 with `degree` = 9 and `λ` = 108.0.
Processing model 3541 out of 4000 with `degree` = 9 and `λ` = 108.2.
Processing model 3542 out of 4000 with `degree` = 9 and `λ` = 108.4.
Processing model 3543 out of 4000 with `degree` = 9 and `λ` = 108.60000000000001.
Processing model 3544 out of 4000 with `degree` = 9 and `λ` = 108.80000000000001.
Processing model 3545 out of 4000 with `degree` = 9 and `λ` = 109.0.
Processing model 3546 out of 4000 with `degree` = 9 and `λ` = 109.2.
Processing model 3547 out of 4000 with `degree` = 9 and `λ` = 109.4.
Processing model 3548 out of 4000 with `degree` = 9 and `λ` = 109.60000000000001.
Processing model 3549 out of 4000 with `degree` = 9 and `λ` = 109.80000000000001.
Processing model 3550 out of 4000 with `degree` = 9 and `λ` = 110.0.
Processing model 3551 out of 4000 with `degree` = 9 and `λ` = 110.2.
Processing model 3552 out of 4000 with `degree` = 9 and `λ` = 110.4.
Processing model 3553 out of 4000 with `degree` = 9 and `λ` = 110.60000000000001.
Processing model 3554 out of 4000 with `degree` = 9 and `λ` = 110.80000000000001.
Processing model 3555 out of 4000 with `degree` = 9 and `λ` = 111.0.
Processing model 3556 out of 4000 with `degree` = 9 and `λ` = 111.2.
Processing model 3557 out of 4000 with `degree` = 9 and `λ` = 111.4.
Processing model 3558 out of 4000 with `degree` = 9 and `λ` = 111.60000000000001.
Processing model 3559 out of 4000 with `degree` = 9 and `λ` = 111.80000000000001.
Processing model 3560 out of 4000 with `degree` = 9 and `λ` = 112.0.
Processing model 3561 out of 4000 with `degree` = 9 and `λ` = 112.2.
Processing model 3562 out of 4000 with `degree` = 9 and `λ` = 112.4.
Processing model 3563 out of 4000 with `degree` = 9 and `λ` = 112.60000000000001.
Processing model 3564 out of 4000 with `degree` = 9 and `λ` = 112.80000000000001.
Processing model 3565 out of 4000 with `degree` = 9 and `λ` = 113.0.
Processing model 3566 out of 4000 with `degree` = 9 and `λ` = 113.2.
Processing model 3567 out of 4000 with `degree` = 9 and `λ` = 113.4.
Processing model 3568 out of 4000 with `degree` = 9 and `λ` = 113.60000000000001.
Processing model 3569 out of 4000 with `degree` = 9 and `λ` = 113.80000000000001.
Processing model 3570 out of 4000 with `degree` = 9 and `λ` = 114.0.
Processing model 3571 out of 4000 with `degree` = 9 and `λ` = 114.2.
Processing model 3572 out of 4000 with `degree` = 9 and `λ` = 114.4.
Processing model 3573 out of 4000 with `degree` = 9 and `λ` = 114.60000000000001.
Processing model 3574 out of 4000 with `degree` = 9 and `λ` = 114.80000000000001.
Processing model 3575 out of 4000 with `degree` = 9 and `λ` = 115.0.
Processing model 3576 out of 4000 with `degree` = 9 and `λ` = 115.2.
Processing model 3577 out of 4000 with `degree` = 9 and `λ` = 115.4.
Processing model 3578 out of 4000 with `degree` = 9 and `λ` = 115.60000000000001.
Processing model 3579 out of 4000 with `degree` = 9 and `λ` = 115.80000000000001.
Processing model 3580 out of 4000 with `degree` = 9 and `λ` = 116.0.
Processing model 3581 out of 4000 with `degree` = 9 and `λ` = 116.2.
Processing model 3582 out of 4000 with `degree` = 9 and `λ` = 116.4.
Processing model 3583 out of 4000 with `degree` = 9 and `λ` = 116.60000000000001.
Processing model 3584 out of 4000 with `degree` = 9 and `λ` = 116.80000000000001.
Processing model 3585 out of 4000 with `degree` = 9 and `λ` = 117.0.
Processing model 3586 out of 4000 with `degree` = 9 and `λ` = 117.2.
Processing model 3587 out of 4000 with `degree` = 9 and `λ` = 117.4.
Processing model 3588 out of 4000 with `degree` = 9 and `λ` = 117.60000000000001.
Processing model 3589 out of 4000 with `degree` = 9 and `λ` = 117.80000000000001.
Processing model 3590 out of 4000 with `degree` = 9 and `λ` = 118.0.
Processing model 3591 out of 4000 with `degree` = 9 and `λ` = 118.2.
Processing model 3592 out of 4000 with `degree` = 9 and `λ` = 118.4.
Processing model 3593 out of 4000 with `degree` = 9 and `λ` = 118.60000000000001.
Processing model 3594 out of 4000 with `degree` = 9 and `λ` = 118.80000000000001.
Processing model 3595 out of 4000 with `degree` = 9 and `λ` = 119.0.
Processing model 3596 out of 4000 with `degree` = 9 and `λ` = 119.2.
Processing model 3597 out of 4000 with `degree` = 9 and `λ` = 119.4.
Processing model 3598 out of 4000 with `degree` = 9 and `λ` = 119.60000000000001.
Processing model 3599 out of 4000 with `degree` = 9 and `λ` = 119.80000000000001.
Processing model 3600 out of 4000 with `degree` = 9 and `λ` = 120.0.
Processing model 3601 out of 4000 with `degree` = 9 and `λ` = 120.2.
Processing model 3602 out of 4000 with `degree` = 9 and `λ` = 120.4.
Processing model 3603 out of 4000 with `degree` = 9 and `λ` = 120.60000000000001.
Processing model 3604 out of 4000 with `degree` = 9 and `λ` = 120.80000000000001.
Processing model 3605 out of 4000 with `degree` = 9 and `λ` = 121.0.
Processing model 3606 out of 4000 with `degree` = 9 and `λ` = 121.2.
Processing model 3607 out of 4000 with `degree` = 9 and `λ` = 121.4.
Processing model 3608 out of 4000 with `degree` = 9 and `λ` = 121.60000000000001.
Processing model 3609 out of 4000 with `degree` = 9 and `λ` = 121.80000000000001.
Processing model 3610 out of 4000 with `degree` = 9 and `λ` = 122.0.
Processing model 3611 out of 4000 with `degree` = 9 and `λ` = 122.2.
Processing model 3612 out of 4000 with `degree` = 9 and `λ` = 122.4.
Processing model 3613 out of 4000 with `degree` = 9 and `λ` = 122.60000000000001.
Processing model 3614 out of 4000 with `degree` = 9 and `λ` = 122.80000000000001.
Processing model 3615 out of 4000 with `degree` = 9 and `λ` = 123.0.
Processing model 3616 out of 4000 with `degree` = 9 and `λ` = 123.2.
Processing model 3617 out of 4000 with `degree` = 9 and `λ` = 123.4.
Processing model 3618 out of 4000 with `degree` = 9 and `λ` = 123.60000000000001.
Processing model 3619 out of 4000 with `degree` = 9 and `λ` = 123.80000000000001.
Processing model 3620 out of 4000 with `degree` = 9 and `λ` = 124.0.
Processing model 3621 out of 4000 with `degree` = 9 and `λ` = 124.2.
Processing model 3622 out of 4000 with `degree` = 9 and `λ` = 124.4.
Processing model 3623 out of 4000 with `degree` = 9 and `λ` = 124.60000000000001.
Processing model 3624 out of 4000 with `degree` = 9 and `λ` = 124.80000000000001.
Processing model 3625 out of 4000 with `degree` = 9 and `λ` = 125.0.
Processing model 3626 out of 4000 with `degree` = 9 and `λ` = 125.2.
Processing model 3627 out of 4000 with `degree` = 9 and `λ` = 125.4.
Processing model 3628 out of 4000 with `degree` = 9 and `λ` = 125.60000000000001.
Processing model 3629 out of 4000 with `degree` = 9 and `λ` = 125.80000000000001.
Processing model 3630 out of 4000 with `degree` = 9 and `λ` = 126.0.
Processing model 3631 out of 4000 with `degree` = 9 and `λ` = 126.2.
Processing model 3632 out of 4000 with `degree` = 9 and `λ` = 126.4.
Processing model 3633 out of 4000 with `degree` = 9 and `λ` = 126.60000000000001.
Processing model 3634 out of 4000 with `degree` = 9 and `λ` = 126.80000000000001.
Processing model 3635 out of 4000 with `degree` = 9 and `λ` = 127.0.
Processing model 3636 out of 4000 with `degree` = 9 and `λ` = 127.2.
Processing model 3637 out of 4000 with `degree` = 9 and `λ` = 127.4.
Processing model 3638 out of 4000 with `degree` = 9 and `λ` = 127.60000000000001.
Processing model 3639 out of 4000 with `degree` = 9 and `λ` = 127.80000000000001.
Processing model 3640 out of 4000 with `degree` = 9 and `λ` = 128.0.
Processing model 3641 out of 4000 with `degree` = 9 and `λ` = 128.20000000000002.
Processing model 3642 out of 4000 with `degree` = 9 and `λ` = 128.4.
Processing model 3643 out of 4000 with `degree` = 9 and `λ` = 128.6.
Processing model 3644 out of 4000 with `degree` = 9 and `λ` = 128.8.
Processing model 3645 out of 4000 with `degree` = 9 and `λ` = 129.0.
Processing model 3646 out of 4000 with `degree` = 9 and `λ` = 129.20000000000002.
Processing model 3647 out of 4000 with `degree` = 9 and `λ` = 129.4.
Processing model 3648 out of 4000 with `degree` = 9 and `λ` = 129.6.
Processing model 3649 out of 4000 with `degree` = 9 and `λ` = 129.8.
Processing model 3650 out of 4000 with `degree` = 9 and `λ` = 130.0.
Processing model 3651 out of 4000 with `degree` = 9 and `λ` = 130.20000000000002.
Processing model 3652 out of 4000 with `degree` = 9 and `λ` = 130.4.
Processing model 3653 out of 4000 with `degree` = 9 and `λ` = 130.6.
Processing model 3654 out of 4000 with `degree` = 9 and `λ` = 130.8.
Processing model 3655 out of 4000 with `degree` = 9 and `λ` = 131.0.
Processing model 3656 out of 4000 with `degree` = 9 and `λ` = 131.20000000000002.
Processing model 3657 out of 4000 with `degree` = 9 and `λ` = 131.4.
Processing model 3658 out of 4000 with `degree` = 9 and `λ` = 131.6.
Processing model 3659 out of 4000 with `degree` = 9 and `λ` = 131.8.
Processing model 3660 out of 4000 with `degree` = 9 and `λ` = 132.0.
Processing model 3661 out of 4000 with `degree` = 9 and `λ` = 132.20000000000002.
Processing model 3662 out of 4000 with `degree` = 9 and `λ` = 132.4.
Processing model 3663 out of 4000 with `degree` = 9 and `λ` = 132.6.
Processing model 3664 out of 4000 with `degree` = 9 and `λ` = 132.8.
Processing model 3665 out of 4000 with `degree` = 9 and `λ` = 133.0.
Processing model 3666 out of 4000 with `degree` = 9 and `λ` = 133.20000000000002.
Processing model 3667 out of 4000 with `degree` = 9 and `λ` = 133.4.
Processing model 3668 out of 4000 with `degree` = 9 and `λ` = 133.6.
Processing model 3669 out of 4000 with `degree` = 9 and `λ` = 133.8.
Processing model 3670 out of 4000 with `degree` = 9 and `λ` = 134.0.
Processing model 3671 out of 4000 with `degree` = 9 and `λ` = 134.20000000000002.
Processing model 3672 out of 4000 with `degree` = 9 and `λ` = 134.4.
Processing model 3673 out of 4000 with `degree` = 9 and `λ` = 134.6.
Processing model 3674 out of 4000 with `degree` = 9 and `λ` = 134.8.
Processing model 3675 out of 4000 with `degree` = 9 and `λ` = 135.0.
Processing model 3676 out of 4000 with `degree` = 9 and `λ` = 135.20000000000002.
Processing model 3677 out of 4000 with `degree` = 9 and `λ` = 135.4.
Processing model 3678 out of 4000 with `degree` = 9 and `λ` = 135.6.
Processing model 3679 out of 4000 with `degree` = 9 and `λ` = 135.8.
Processing model 3680 out of 4000 with `degree` = 9 and `λ` = 136.0.
Processing model 3681 out of 4000 with `degree` = 9 and `λ` = 136.20000000000002.
Processing model 3682 out of 4000 with `degree` = 9 and `λ` = 136.4.
Processing model 3683 out of 4000 with `degree` = 9 and `λ` = 136.6.
Processing model 3684 out of 4000 with `degree` = 9 and `λ` = 136.8.
Processing model 3685 out of 4000 with `degree` = 9 and `λ` = 137.0.
Processing model 3686 out of 4000 with `degree` = 9 and `λ` = 137.20000000000002.
Processing model 3687 out of 4000 with `degree` = 9 and `λ` = 137.4.
Processing model 3688 out of 4000 with `degree` = 9 and `λ` = 137.6.
Processing model 3689 out of 4000 with `degree` = 9 and `λ` = 137.8.
Processing model 3690 out of 4000 with `degree` = 9 and `λ` = 138.0.
Processing model 3691 out of 4000 with `degree` = 9 and `λ` = 138.20000000000002.
Processing model 3692 out of 4000 with `degree` = 9 and `λ` = 138.4.
Processing model 3693 out of 4000 with `degree` = 9 and `λ` = 138.6.
Processing model 3694 out of 4000 with `degree` = 9 and `λ` = 138.8.
Processing model 3695 out of 4000 with `degree` = 9 and `λ` = 139.0.
Processing model 3696 out of 4000 with `degree` = 9 and `λ` = 139.20000000000002.
Processing model 3697 out of 4000 with `degree` = 9 and `λ` = 139.4.
Processing model 3698 out of 4000 with `degree` = 9 and `λ` = 139.6.
Processing model 3699 out of 4000 with `degree` = 9 and `λ` = 139.8.
Processing model 3700 out of 4000 with `degree` = 9 and `λ` = 140.0.
Processing model 3701 out of 4000 with `degree` = 9 and `λ` = 140.20000000000002.
Processing model 3702 out of 4000 with `degree` = 9 and `λ` = 140.4.
Processing model 3703 out of 4000 with `degree` = 9 and `λ` = 140.6.
Processing model 3704 out of 4000 with `degree` = 9 and `λ` = 140.8.
Processing model 3705 out of 4000 with `degree` = 9 and `λ` = 141.0.
Processing model 3706 out of 4000 with `degree` = 9 and `λ` = 141.20000000000002.
Processing model 3707 out of 4000 with `degree` = 9 and `λ` = 141.4.
Processing model 3708 out of 4000 with `degree` = 9 and `λ` = 141.6.
Processing model 3709 out of 4000 with `degree` = 9 and `λ` = 141.8.
Processing model 3710 out of 4000 with `degree` = 9 and `λ` = 142.0.
Processing model 3711 out of 4000 with `degree` = 9 and `λ` = 142.20000000000002.
Processing model 3712 out of 4000 with `degree` = 9 and `λ` = 142.4.
Processing model 3713 out of 4000 with `degree` = 9 and `λ` = 142.6.
Processing model 3714 out of 4000 with `degree` = 9 and `λ` = 142.8.
Processing model 3715 out of 4000 with `degree` = 9 and `λ` = 143.0.
Processing model 3716 out of 4000 with `degree` = 9 and `λ` = 143.20000000000002.
Processing model 3717 out of 4000 with `degree` = 9 and `λ` = 143.4.
Processing model 3718 out of 4000 with `degree` = 9 and `λ` = 143.6.
Processing model 3719 out of 4000 with `degree` = 9 and `λ` = 143.8.
Processing model 3720 out of 4000 with `degree` = 9 and `λ` = 144.0.
Processing model 3721 out of 4000 with `degree` = 9 and `λ` = 144.20000000000002.
Processing model 3722 out of 4000 with `degree` = 9 and `λ` = 144.4.
Processing model 3723 out of 4000 with `degree` = 9 and `λ` = 144.6.
Processing model 3724 out of 4000 with `degree` = 9 and `λ` = 144.8.
Processing model 3725 out of 4000 with `degree` = 9 and `λ` = 145.0.
Processing model 3726 out of 4000 with `degree` = 9 and `λ` = 145.20000000000002.
Processing model 3727 out of 4000 with `degree` = 9 and `λ` = 145.4.
Processing model 3728 out of 4000 with `degree` = 9 and `λ` = 145.6.
Processing model 3729 out of 4000 with `degree` = 9 and `λ` = 145.8.
Processing model 3730 out of 4000 with `degree` = 9 and `λ` = 146.0.
Processing model 3731 out of 4000 with `degree` = 9 and `λ` = 146.20000000000002.
Processing model 3732 out of 4000 with `degree` = 9 and `λ` = 146.4.
Processing model 3733 out of 4000 with `degree` = 9 and `λ` = 146.6.
Processing model 3734 out of 4000 with `degree` = 9 and `λ` = 146.8.
Processing model 3735 out of 4000 with `degree` = 9 and `λ` = 147.0.
Processing model 3736 out of 4000 with `degree` = 9 and `λ` = 147.20000000000002.
Processing model 3737 out of 4000 with `degree` = 9 and `λ` = 147.4.
Processing model 3738 out of 4000 with `degree` = 9 and `λ` = 147.6.
Processing model 3739 out of 4000 with `degree` = 9 and `λ` = 147.8.
Processing model 3740 out of 4000 with `degree` = 9 and `λ` = 148.0.
Processing model 3741 out of 4000 with `degree` = 9 and `λ` = 148.20000000000002.
Processing model 3742 out of 4000 with `degree` = 9 and `λ` = 148.4.
Processing model 3743 out of 4000 with `degree` = 9 and `λ` = 148.6.
Processing model 3744 out of 4000 with `degree` = 9 and `λ` = 148.8.
Processing model 3745 out of 4000 with `degree` = 9 and `λ` = 149.0.
Processing model 3746 out of 4000 with `degree` = 9 and `λ` = 149.20000000000002.
Processing model 3747 out of 4000 with `degree` = 9 and `λ` = 149.4.
Processing model 3748 out of 4000 with `degree` = 9 and `λ` = 149.6.
Processing model 3749 out of 4000 with `degree` = 9 and `λ` = 149.8.
Processing model 3750 out of 4000 with `degree` = 9 and `λ` = 150.0.
Processing model 3751 out of 4000 with `degree` = 9 and `λ` = 150.20000000000002.
Processing model 3752 out of 4000 with `degree` = 9 and `λ` = 150.4.
Processing model 3753 out of 4000 with `degree` = 9 and `λ` = 150.6.
Processing model 3754 out of 4000 with `degree` = 9 and `λ` = 150.8.
Processing model 3755 out of 4000 with `degree` = 9 and `λ` = 151.0.
Processing model 3756 out of 4000 with `degree` = 9 and `λ` = 151.20000000000002.
Processing model 3757 out of 4000 with `degree` = 9 and `λ` = 151.4.
Processing model 3758 out of 4000 with `degree` = 9 and `λ` = 151.6.
Processing model 3759 out of 4000 with `degree` = 9 and `λ` = 151.8.
Processing model 3760 out of 4000 with `degree` = 9 and `λ` = 152.0.
Processing model 3761 out of 4000 with `degree` = 9 and `λ` = 152.20000000000002.
Processing model 3762 out of 4000 with `degree` = 9 and `λ` = 152.4.
Processing model 3763 out of 4000 with `degree` = 9 and `λ` = 152.6.
Processing model 3764 out of 4000 with `degree` = 9 and `λ` = 152.8.
Processing model 3765 out of 4000 with `degree` = 9 and `λ` = 153.0.
Processing model 3766 out of 4000 with `degree` = 9 and `λ` = 153.20000000000002.
Processing model 3767 out of 4000 with `degree` = 9 and `λ` = 153.4.
Processing model 3768 out of 4000 with `degree` = 9 and `λ` = 153.60000000000002.
Processing model 3769 out of 4000 with `degree` = 9 and `λ` = 153.8.
Processing model 3770 out of 4000 with `degree` = 9 and `λ` = 154.0.
Processing model 3771 out of 4000 with `degree` = 9 and `λ` = 154.20000000000002.
Processing model 3772 out of 4000 with `degree` = 9 and `λ` = 154.4.
Processing model 3773 out of 4000 with `degree` = 9 and `λ` = 154.60000000000002.
Processing model 3774 out of 4000 with `degree` = 9 and `λ` = 154.8.
Processing model 3775 out of 4000 with `degree` = 9 and `λ` = 155.0.
Processing model 3776 out of 4000 with `degree` = 9 and `λ` = 155.20000000000002.
Processing model 3777 out of 4000 with `degree` = 9 and `λ` = 155.4.
Processing model 3778 out of 4000 with `degree` = 9 and `λ` = 155.60000000000002.
Processing model 3779 out of 4000 with `degree` = 9 and `λ` = 155.8.
Processing model 3780 out of 4000 with `degree` = 9 and `λ` = 156.0.
Processing model 3781 out of 4000 with `degree` = 9 and `λ` = 156.20000000000002.
Processing model 3782 out of 4000 with `degree` = 9 and `λ` = 156.4.
Processing model 3783 out of 4000 with `degree` = 9 and `λ` = 156.60000000000002.
Processing model 3784 out of 4000 with `degree` = 9 and `λ` = 156.8.
Processing model 3785 out of 4000 with `degree` = 9 and `λ` = 157.0.
Processing model 3786 out of 4000 with `degree` = 9 and `λ` = 157.20000000000002.
Processing model 3787 out of 4000 with `degree` = 9 and `λ` = 157.4.
Processing model 3788 out of 4000 with `degree` = 9 and `λ` = 157.60000000000002.
Processing model 3789 out of 4000 with `degree` = 9 and `λ` = 157.8.
Processing model 3790 out of 4000 with `degree` = 9 and `λ` = 158.0.
Processing model 3791 out of 4000 with `degree` = 9 and `λ` = 158.20000000000002.
Processing model 3792 out of 4000 with `degree` = 9 and `λ` = 158.4.
Processing model 3793 out of 4000 with `degree` = 9 and `λ` = 158.60000000000002.
Processing model 3794 out of 4000 with `degree` = 9 and `λ` = 158.8.
Processing model 3795 out of 4000 with `degree` = 9 and `λ` = 159.0.
Processing model 3796 out of 4000 with `degree` = 9 and `λ` = 159.20000000000002.
Processing model 3797 out of 4000 with `degree` = 9 and `λ` = 159.4.
Processing model 3798 out of 4000 with `degree` = 9 and `λ` = 159.60000000000002.
Processing model 3799 out of 4000 with `degree` = 9 and `λ` = 159.8.
Processing model 3800 out of 4000 with `degree` = 9 and `λ` = 160.0.
Processing model 3801 out of 4000 with `degree` = 9 and `λ` = 160.20000000000002.
Processing model 3802 out of 4000 with `degree` = 9 and `λ` = 160.4.
Processing model 3803 out of 4000 with `degree` = 9 and `λ` = 160.60000000000002.
Processing model 3804 out of 4000 with `degree` = 9 and `λ` = 160.8.
Processing model 3805 out of 4000 with `degree` = 9 and `λ` = 161.0.
Processing model 3806 out of 4000 with `degree` = 9 and `λ` = 161.20000000000002.
Processing model 3807 out of 4000 with `degree` = 9 and `λ` = 161.4.
Processing model 3808 out of 4000 with `degree` = 9 and `λ` = 161.60000000000002.
Processing model 3809 out of 4000 with `degree` = 9 and `λ` = 161.8.
Processing model 3810 out of 4000 with `degree` = 9 and `λ` = 162.0.
Processing model 3811 out of 4000 with `degree` = 9 and `λ` = 162.20000000000002.
Processing model 3812 out of 4000 with `degree` = 9 and `λ` = 162.4.
Processing model 3813 out of 4000 with `degree` = 9 and `λ` = 162.60000000000002.
Processing model 3814 out of 4000 with `degree` = 9 and `λ` = 162.8.
Processing model 3815 out of 4000 with `degree` = 9 and `λ` = 163.0.
Processing model 3816 out of 4000 with `degree` = 9 and `λ` = 163.20000000000002.
Processing model 3817 out of 4000 with `degree` = 9 and `λ` = 163.4.
Processing model 3818 out of 4000 with `degree` = 9 and `λ` = 163.60000000000002.
Processing model 3819 out of 4000 with `degree` = 9 and `λ` = 163.8.
Processing model 3820 out of 4000 with `degree` = 9 and `λ` = 164.0.
Processing model 3821 out of 4000 with `degree` = 9 and `λ` = 164.20000000000002.
Processing model 3822 out of 4000 with `degree` = 9 and `λ` = 164.4.
Processing model 3823 out of 4000 with `degree` = 9 and `λ` = 164.60000000000002.
Processing model 3824 out of 4000 with `degree` = 9 and `λ` = 164.8.
Processing model 3825 out of 4000 with `degree` = 9 and `λ` = 165.0.
Processing model 3826 out of 4000 with `degree` = 9 and `λ` = 165.20000000000002.
Processing model 3827 out of 4000 with `degree` = 9 and `λ` = 165.4.
Processing model 3828 out of 4000 with `degree` = 9 and `λ` = 165.60000000000002.
Processing model 3829 out of 4000 with `degree` = 9 and `λ` = 165.8.
Processing model 3830 out of 4000 with `degree` = 9 and `λ` = 166.0.
Processing model 3831 out of 4000 with `degree` = 9 and `λ` = 166.20000000000002.
Processing model 3832 out of 4000 with `degree` = 9 and `λ` = 166.4.
Processing model 3833 out of 4000 with `degree` = 9 and `λ` = 166.60000000000002.
Processing model 3834 out of 4000 with `degree` = 9 and `λ` = 166.8.
Processing model 3835 out of 4000 with `degree` = 9 and `λ` = 167.0.
Processing model 3836 out of 4000 with `degree` = 9 and `λ` = 167.20000000000002.
Processing model 3837 out of 4000 with `degree` = 9 and `λ` = 167.4.
Processing model 3838 out of 4000 with `degree` = 9 and `λ` = 167.60000000000002.
Processing model 3839 out of 4000 with `degree` = 9 and `λ` = 167.8.
Processing model 3840 out of 4000 with `degree` = 9 and `λ` = 168.0.
Processing model 3841 out of 4000 with `degree` = 9 and `λ` = 168.20000000000002.
Processing model 3842 out of 4000 with `degree` = 9 and `λ` = 168.4.
Processing model 3843 out of 4000 with `degree` = 9 and `λ` = 168.60000000000002.
Processing model 3844 out of 4000 with `degree` = 9 and `λ` = 168.8.
Processing model 3845 out of 4000 with `degree` = 9 and `λ` = 169.0.
Processing model 3846 out of 4000 with `degree` = 9 and `λ` = 169.20000000000002.
Processing model 3847 out of 4000 with `degree` = 9 and `λ` = 169.4.
Processing model 3848 out of 4000 with `degree` = 9 and `λ` = 169.60000000000002.
Processing model 3849 out of 4000 with `degree` = 9 and `λ` = 169.8.
Processing model 3850 out of 4000 with `degree` = 9 and `λ` = 170.0.
Processing model 3851 out of 4000 with `degree` = 9 and `λ` = 170.20000000000002.
Processing model 3852 out of 4000 with `degree` = 9 and `λ` = 170.4.
Processing model 3853 out of 4000 with `degree` = 9 and `λ` = 170.60000000000002.
Processing model 3854 out of 4000 with `degree` = 9 and `λ` = 170.8.
Processing model 3855 out of 4000 with `degree` = 9 and `λ` = 171.0.
Processing model 3856 out of 4000 with `degree` = 9 and `λ` = 171.20000000000002.
Processing model 3857 out of 4000 with `degree` = 9 and `λ` = 171.4.
Processing model 3858 out of 4000 with `degree` = 9 and `λ` = 171.60000000000002.
Processing model 3859 out of 4000 with `degree` = 9 and `λ` = 171.8.
Processing model 3860 out of 4000 with `degree` = 9 and `λ` = 172.0.
Processing model 3861 out of 4000 with `degree` = 9 and `λ` = 172.20000000000002.
Processing model 3862 out of 4000 with `degree` = 9 and `λ` = 172.4.
Processing model 3863 out of 4000 with `degree` = 9 and `λ` = 172.60000000000002.
Processing model 3864 out of 4000 with `degree` = 9 and `λ` = 172.8.
Processing model 3865 out of 4000 with `degree` = 9 and `λ` = 173.0.
Processing model 3866 out of 4000 with `degree` = 9 and `λ` = 173.20000000000002.
Processing model 3867 out of 4000 with `degree` = 9 and `λ` = 173.4.
Processing model 3868 out of 4000 with `degree` = 9 and `λ` = 173.60000000000002.
Processing model 3869 out of 4000 with `degree` = 9 and `λ` = 173.8.
Processing model 3870 out of 4000 with `degree` = 9 and `λ` = 174.0.
Processing model 3871 out of 4000 with `degree` = 9 and `λ` = 174.20000000000002.
Processing model 3872 out of 4000 with `degree` = 9 and `λ` = 174.4.
Processing model 3873 out of 4000 with `degree` = 9 and `λ` = 174.60000000000002.
Processing model 3874 out of 4000 with `degree` = 9 and `λ` = 174.8.
Processing model 3875 out of 4000 with `degree` = 9 and `λ` = 175.0.
Processing model 3876 out of 4000 with `degree` = 9 and `λ` = 175.20000000000002.
Processing model 3877 out of 4000 with `degree` = 9 and `λ` = 175.4.
Processing model 3878 out of 4000 with `degree` = 9 and `λ` = 175.60000000000002.
Processing model 3879 out of 4000 with `degree` = 9 and `λ` = 175.8.
Processing model 3880 out of 4000 with `degree` = 9 and `λ` = 176.0.
Processing model 3881 out of 4000 with `degree` = 9 and `λ` = 176.20000000000002.
Processing model 3882 out of 4000 with `degree` = 9 and `λ` = 176.4.
Processing model 3883 out of 4000 with `degree` = 9 and `λ` = 176.60000000000002.
Processing model 3884 out of 4000 with `degree` = 9 and `λ` = 176.8.
Processing model 3885 out of 4000 with `degree` = 9 and `λ` = 177.0.
Processing model 3886 out of 4000 with `degree` = 9 and `λ` = 177.20000000000002.
Processing model 3887 out of 4000 with `degree` = 9 and `λ` = 177.4.
Processing model 3888 out of 4000 with `degree` = 9 and `λ` = 177.60000000000002.
Processing model 3889 out of 4000 with `degree` = 9 and `λ` = 177.8.
Processing model 3890 out of 4000 with `degree` = 9 and `λ` = 178.0.
Processing model 3891 out of 4000 with `degree` = 9 and `λ` = 178.20000000000002.
Processing model 3892 out of 4000 with `degree` = 9 and `λ` = 178.4.
Processing model 3893 out of 4000 with `degree` = 9 and `λ` = 178.60000000000002.
Processing model 3894 out of 4000 with `degree` = 9 and `λ` = 178.8.
Processing model 3895 out of 4000 with `degree` = 9 and `λ` = 179.0.
Processing model 3896 out of 4000 with `degree` = 9 and `λ` = 179.20000000000002.
Processing model 3897 out of 4000 with `degree` = 9 and `λ` = 179.4.
Processing model 3898 out of 4000 with `degree` = 9 and `λ` = 179.60000000000002.
Processing model 3899 out of 4000 with `degree` = 9 and `λ` = 179.8.
Processing model 3900 out of 4000 with `degree` = 9 and `λ` = 180.0.
Processing model 3901 out of 4000 with `degree` = 9 and `λ` = 180.20000000000002.
Processing model 3902 out of 4000 with `degree` = 9 and `λ` = 180.4.
Processing model 3903 out of 4000 with `degree` = 9 and `λ` = 180.60000000000002.
Processing model 3904 out of 4000 with `degree` = 9 and `λ` = 180.8.
Processing model 3905 out of 4000 with `degree` = 9 and `λ` = 181.0.
Processing model 3906 out of 4000 with `degree` = 9 and `λ` = 181.20000000000002.
Processing model 3907 out of 4000 with `degree` = 9 and `λ` = 181.4.
Processing model 3908 out of 4000 with `degree` = 9 and `λ` = 181.60000000000002.
Processing model 3909 out of 4000 with `degree` = 9 and `λ` = 181.8.
Processing model 3910 out of 4000 with `degree` = 9 and `λ` = 182.0.
Processing model 3911 out of 4000 with `degree` = 9 and `λ` = 182.20000000000002.
Processing model 3912 out of 4000 with `degree` = 9 and `λ` = 182.4.
Processing model 3913 out of 4000 with `degree` = 9 and `λ` = 182.60000000000002.
Processing model 3914 out of 4000 with `degree` = 9 and `λ` = 182.8.
Processing model 3915 out of 4000 with `degree` = 9 and `λ` = 183.0.
Processing model 3916 out of 4000 with `degree` = 9 and `λ` = 183.20000000000002.
Processing model 3917 out of 4000 with `degree` = 9 and `λ` = 183.4.
Processing model 3918 out of 4000 with `degree` = 9 and `λ` = 183.60000000000002.
Processing model 3919 out of 4000 with `degree` = 9 and `λ` = 183.8.
Processing model 3920 out of 4000 with `degree` = 9 and `λ` = 184.0.
Processing model 3921 out of 4000 with `degree` = 9 and `λ` = 184.20000000000002.
Processing model 3922 out of 4000 with `degree` = 9 and `λ` = 184.4.
Processing model 3923 out of 4000 with `degree` = 9 and `λ` = 184.60000000000002.
Processing model 3924 out of 4000 with `degree` = 9 and `λ` = 184.8.
Processing model 3925 out of 4000 with `degree` = 9 and `λ` = 185.0.
Processing model 3926 out of 4000 with `degree` = 9 and `λ` = 185.20000000000002.
Processing model 3927 out of 4000 with `degree` = 9 and `λ` = 185.4.
Processing model 3928 out of 4000 with `degree` = 9 and `λ` = 185.60000000000002.
Processing model 3929 out of 4000 with `degree` = 9 and `λ` = 185.8.
Processing model 3930 out of 4000 with `degree` = 9 and `λ` = 186.0.
Processing model 3931 out of 4000 with `degree` = 9 and `λ` = 186.20000000000002.
Processing model 3932 out of 4000 with `degree` = 9 and `λ` = 186.4.
Processing model 3933 out of 4000 with `degree` = 9 and `λ` = 186.60000000000002.
Processing model 3934 out of 4000 with `degree` = 9 and `λ` = 186.8.
Processing model 3935 out of 4000 with `degree` = 9 and `λ` = 187.0.
Processing model 3936 out of 4000 with `degree` = 9 and `λ` = 187.20000000000002.
Processing model 3937 out of 4000 with `degree` = 9 and `λ` = 187.4.
Processing model 3938 out of 4000 with `degree` = 9 and `λ` = 187.60000000000002.
Processing model 3939 out of 4000 with `degree` = 9 and `λ` = 187.8.
Processing model 3940 out of 4000 with `degree` = 9 and `λ` = 188.0.
Processing model 3941 out of 4000 with `degree` = 9 and `λ` = 188.20000000000002.
Processing model 3942 out of 4000 with `degree` = 9 and `λ` = 188.4.
Processing model 3943 out of 4000 with `degree` = 9 and `λ` = 188.60000000000002.
Processing model 3944 out of 4000 with `degree` = 9 and `λ` = 188.8.
Processing model 3945 out of 4000 with `degree` = 9 and `λ` = 189.0.
Processing model 3946 out of 4000 with `degree` = 9 and `λ` = 189.20000000000002.
Processing model 3947 out of 4000 with `degree` = 9 and `λ` = 189.4.
Processing model 3948 out of 4000 with `degree` = 9 and `λ` = 189.60000000000002.
Processing model 3949 out of 4000 with `degree` = 9 and `λ` = 189.8.
Processing model 3950 out of 4000 with `degree` = 9 and `λ` = 190.0.
Processing model 3951 out of 4000 with `degree` = 9 and `λ` = 190.20000000000002.
Processing model 3952 out of 4000 with `degree` = 9 and `λ` = 190.4.
Processing model 3953 out of 4000 with `degree` = 9 and `λ` = 190.60000000000002.
Processing model 3954 out of 4000 with `degree` = 9 and `λ` = 190.8.
Processing model 3955 out of 4000 with `degree` = 9 and `λ` = 191.0.
Processing model 3956 out of 4000 with `degree` = 9 and `λ` = 191.20000000000002.
Processing model 3957 out of 4000 with `degree` = 9 and `λ` = 191.4.
Processing model 3958 out of 4000 with `degree` = 9 and `λ` = 191.60000000000002.
Processing model 3959 out of 4000 with `degree` = 9 and `λ` = 191.8.
Processing model 3960 out of 4000 with `degree` = 9 and `λ` = 192.0.
Processing model 3961 out of 4000 with `degree` = 9 and `λ` = 192.20000000000002.
Processing model 3962 out of 4000 with `degree` = 9 and `λ` = 192.4.
Processing model 3963 out of 4000 with `degree` = 9 and `λ` = 192.60000000000002.
Processing model 3964 out of 4000 with `degree` = 9 and `λ` = 192.8.
Processing model 3965 out of 4000 with `degree` = 9 and `λ` = 193.0.
Processing model 3966 out of 4000 with `degree` = 9 and `λ` = 193.20000000000002.
Processing model 3967 out of 4000 with `degree` = 9 and `λ` = 193.4.
Processing model 3968 out of 4000 with `degree` = 9 and `λ` = 193.60000000000002.
Processing model 3969 out of 4000 with `degree` = 9 and `λ` = 193.8.
Processing model 3970 out of 4000 with `degree` = 9 and `λ` = 194.0.
Processing model 3971 out of 4000 with `degree` = 9 and `λ` = 194.20000000000002.
Processing model 3972 out of 4000 with `degree` = 9 and `λ` = 194.4.
Processing model 3973 out of 4000 with `degree` = 9 and `λ` = 194.60000000000002.
Processing model 3974 out of 4000 with `degree` = 9 and `λ` = 194.8.
Processing model 3975 out of 4000 with `degree` = 9 and `λ` = 195.0.
Processing model 3976 out of 4000 with `degree` = 9 and `λ` = 195.20000000000002.
Processing model 3977 out of 4000 with `degree` = 9 and `λ` = 195.4.
Processing model 3978 out of 4000 with `degree` = 9 and `λ` = 195.60000000000002.
Processing model 3979 out of 4000 with `degree` = 9 and `λ` = 195.8.
Processing model 3980 out of 4000 with `degree` = 9 and `λ` = 196.0.
Processing model 3981 out of 4000 with `degree` = 9 and `λ` = 196.20000000000002.
Processing model 3982 out of 4000 with `degree` = 9 and `λ` = 196.4.
Processing model 3983 out of 4000 with `degree` = 9 and `λ` = 196.60000000000002.
Processing model 3984 out of 4000 with `degree` = 9 and `λ` = 196.8.
Processing model 3985 out of 4000 with `degree` = 9 and `λ` = 197.0.
Processing model 3986 out of 4000 with `degree` = 9 and `λ` = 197.20000000000002.
Processing model 3987 out of 4000 with `degree` = 9 and `λ` = 197.4.
Processing model 3988 out of 4000 with `degree` = 9 and `λ` = 197.60000000000002.
Processing model 3989 out of 4000 with `degree` = 9 and `λ` = 197.8.
Processing model 3990 out of 4000 with `degree` = 9 and `λ` = 198.0.
Processing model 3991 out of 4000 with `degree` = 9 and `λ` = 198.20000000000002.
Processing model 3992 out of 4000 with `degree` = 9 and `λ` = 198.4.
Processing model 3993 out of 4000 with `degree` = 9 and `λ` = 198.60000000000002.
Processing model 3994 out of 4000 with `degree` = 9 and `λ` = 198.8.
Processing model 3995 out of 4000 with `degree` = 9 and `λ` = 199.0.
Processing model 3996 out of 4000 with `degree` = 9 and `λ` = 199.20000000000002.
Processing model 3997 out of 4000 with `degree` = 9 and `λ` = 199.4.
Processing model 3998 out of 4000 with `degree` = 9 and `λ` = 199.60000000000002.
Processing model 3999 out of 4000 with `degree` = 9 and `λ` = 199.8.
Processing model 4000 out of 4000 with `degree` = 9 and `λ` = 200.0.
# The Score DF

dfModelScore
Poly Degree λ Train R2 L1 Regularization Test R2 L1 Regularization Train R2 L2 Regularization Test R2 L2 Regularization
0 3 0.2 0.923892 0.850470 0.923917 0.851406
1 3 0.4 0.923814 0.849412 0.923917 0.851360
2 3 0.6 0.923685 0.848276 0.923917 0.851315
3 3 0.8 0.923504 0.847061 0.923917 0.851271
4 3 1.0 0.923330 0.846127 0.923916 0.851228
... ... ... ... ... ... ...
3995 9 199.2 0.910591 0.736066 0.938832 0.648940
3996 9 199.4 0.910563 0.735842 0.938832 0.648985
3997 9 199.6 0.910535 0.735617 0.938831 0.649030
3998 9 199.8 0.910507 0.735392 0.938830 0.649075
3999 9 200.0 0.910478 0.735168 0.938830 0.649120

4000 rows × 6 columns

# Display Results

numFigures = len(lPolyDeg)
numRows    = 2
numCols    = int(np.ceil(numFigures / numRows))

hF, hA = plt.subplots(nrows = numRows, ncols = numCols, figsize = (18, 8))
hA = hA.flat

for ii, ax in enumerate(hA):
    if ii >= len(lPolyDeg):
        continue
    dsIdx = dfModelScore['Poly Degree'] == lPolyDeg[ii]
    ax.plot(, dfModelScore.loc[dsIdx, 'Train R2 L1 Regularization'], color = 'C0', ls = ':', label = 'Train L1')
    ax.plot(, dfModelScore.loc[dsIdx, 'Test R2 L1 Regularization'], color = 'C0', ls = '-', label = 'Test L1')
    ax.plot(, dfModelScore.loc[dsIdx, 'Train R2 L2 Regularization'], color = 'C1', ls = ':', label = 'Train L2')
    ax.plot(, dfModelScore.loc[dsIdx, 'Test R2 L2 Regularization'], color = 'C1', ls = '-', label = 'Test L2')

    ax.set_ylim((0.50, 1.00))

    ax.set_title(f'Regression with Polynomial of Degree {lPolyDeg[ii]}')
    ax.set_xlabel('$\lambda$')
    ax.set_ylabel('${R}^{2}$')

    ax.legend()
../../../../_images/1b9a246587c79f4176006e1255997046c3cbc4c8f5c24cc6705dc71552107708.png