Skip to main content

Nonlinear least-squares optimization for AxSI

Project description

Usage Guide

Overview

This section describes how to use the Nonlinear Least-Squares Optimization program.

Run from Command Line

To execute the program via the command line, use the following syntax:

lsq_AxSI \
  --x0 1.0 2.0 \
  --bounds -10.0 10.0 -5.0 5.0 \
  --ftol 1e-6 \
  --xtol 1e-6 \
  --diff_step 1e-3 \
  --max_nfev 10000

Required Arguments:

  • --x0: Initial guess for the parameters (space-separated values).
  • --bounds: Parameter bounds as pairs (lower and upper limits for each parameter).

Optional Arguments:

  • --ftol (default: 1e-6): Tolerance for changes in the cost function value.
  • --xtol (default: 1e-6): Tolerance for updates to the parameter values.
  • --diff_step (default: 1e-3): Step size for finite-difference approximation.
  • --max_nfev (default: 10000): Maximum number of function evaluations allowed.

Function Import and Customization

The program also supports direct import of the nonlinear_least_squares function into Python scripts. This allows advanced customization, such as using custom residual (reg_func) and Jacobian (jac) functions.

Example:

from nonlinear_least_squares import nonlinear_least_squares

def custom_reg_func(x, *args):
    # Define custom residual computation
    pass

def custom_jacobian(x, *args):
    # Define custom Jacobian computation
    pass

result = nonlinear_least_squares(
    reg_func=custom_reg_func,
    x0=[1.0, 2.0],
    bounds=([-10.0, -5.0], [10.0, 5.0]),
    jac=custom_jacobian
)

print(result)

Output Description

The program provides a summary of the optimization process, including:

Key Results:

  • Success: Indicates whether the optimization converged successfully.
  • Optimized Parameters: The final parameter values at the solution.
  • Residuals: Values of the residual function at the solution.
  • Jacobian: Jacobian matrix at the solution.
  • Exit Flag: Integer code indicating the reason for termination.

Detailed Metadata:

The output includes a dictionary with the following fields:

  • algorithm: Solver used for optimization.
  • firstorderopt: Measure of first-order optimality.
  • iterations: Number of iterations performed.
  • funcCount: Number of function evaluations.
  • cgiterations: Number of conjugate gradient iterations.
  • Message: Descriptive message about the termination reason.

Python version

This project is currently using Python 3.12

Installation

It is recommended to use virtualenv to create a clean python environment.

To install lsqAxSI, use pip:

pip install lsqAxSI

Execution

The main script shipped with this project is lsq_AxSI.py, see its options by running:

lsq_AxSI.py -h

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lsqaxsi-0.0.4.tar.gz (28.5 kB view details)

Uploaded Source

File details

Details for the file lsqaxsi-0.0.4.tar.gz.

File metadata

  • Download URL: lsqaxsi-0.0.4.tar.gz
  • Upload date:
  • Size: 28.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for lsqaxsi-0.0.4.tar.gz
Algorithm Hash digest
SHA256 6771916838204e30dffdfd8ce4bb45f21ccebc0e0b63559ff1198d885708a522
MD5 de4383f9322d9439c85c576311bf49a8
BLAKE2b-256 a50bb378a9521d6154ab13cc7bb19c77068df5bca565d899e597703de3f61029

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page