The lambdas file within the Maxent output contains the actual model created by Maxent.
All the but last four files of the file contain the "features" that are used to create the response curves. Each of these lines describes a section of a response curve.
In all of these lines, the last two values represent the minimum and the maximum predictor value that the feature applies to. The value just before the minimum is the lambdas file.
Note that these "features" are really piece-wide equations that first convert each x value to a value from 0 to 1 over the specified range of predictor values and then multiply that value times the lambdas value to scale the result to the correct predictor value.
Below are the definitions and equations for each feature
Linear Feature
Quadratic Feature
Product Feature
Forward Hinge Feature
Reverse Hinge Feature
Threshold Feature
Note: BlueSpray will compute the number of coefficients in a lambdas file as three for all features except a threshold because the 0.0 and 1.0 values are not computed as part of the modeling process.
The last four values in the Maxent file are used to compute the Maxent output values.
Q(x) is the raw model output. L(x) is the logit output from Maxent and is scaled from 0.0 to 1.0.
This information was taken from: Guidelines for computing Maxent model output values from a lambdas file.
© Copyright 2018 HSU - All rights reserved.