Beta Version 2.13.0

Added

  • Added these new options for “sigmoidFunction” in LogisticRegression’s new() constructor under the “Models” section:

    • HardSigmoid

    • SoftSign

    • Swish

    • ArcTangent

    • Swish

    • BipolarSigmoid

  • Added DistanceFunctionDictionary and ZTableFunction under the “Cores” section.

Changes

  • All models now initialize ModelParameters when calling predict() function under “Models” section.

  • NearestCentroid model now returns cost array when calling train() function under “Models” section.

  • Optimized KMedoids by reducing the amount of calculation needed to calculate the cost under “Models” section.

  • All of the models’ divergence warning is now only printed when “isPrintOutput” parameter is true in BaseModel’s new() constructor under “Models” section.

  • All models now print nan (not a number) value warning when “isPrintOutput” parameter is true in BaseModel’s new() constructor under “Models” section.

  • The error messages now screams at you less for all sections.

Fixes

  • Fixed a bug where calling reset() function from ReinforcementLearningBaseQuickSetup gives an error under the “QuickSetups” section.