gofit


Namegofit JSON
Version 0.4 PyPI version JSON
download
home_pagehttps://github.com/ralna/gofit
SummaryGOFit: Global Optimization for Fitting problems
upload_time2023-09-15 09:44:14
maintainer
docs_urlNone
authorJaroslav Fowkes
requires_python>=3.6
licenseNew BSD
keywords mathematics optimization
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
[![License](https://img.shields.io/badge/License-BSD_3--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
[![Build Status](https://img.shields.io/github/actions/workflow/status/ralna/gofit/test.yml?branch=master)](https://github.com/ralna/gofit/actions/workflows/test.yml)
[![PyPI Version](https://img.shields.io/pypi/v/gofit.svg)](https://pypi.python.org/pypi/gofit)

GOFit: Global Optimization for Fitting problems
===============================================

GOFit is a package of C++ algorithms with python interfaces designed for the global optimization of parameters in curve fitting, i.e. for nonlinear least-squares problems arising from curve fitting. GOFit was developed with scientific curve fitting problems in mind but is also applicable to general curve fitting problems provided they can be formulated as nonlinear least-squares problems.

Full details on how to use GOFit are available in the [documentation](https://ralna.github.io/GOFit/).

Requirements
------------
GOFit provides pre-built [Python wheels](https://realpython.com/python-wheels/) for most common platforms with all dependencies included. However if a wheel does not exist for your platform (or if building from source), GOFit requires the following software to be installed:

* PyBind11 2.9.1 or above (<https://pybind11.readthedocs.io/>)
* Eigen 3.4 or above (<https://eigen.tuxfamily.org/>)
* CMake 3.18 or above (<https://cmake.org/>)

Installing GOFit
----------------
For easy installation, use [pip](http://www.pip-installer.org/):

```bash
$ pip install gofit
```

Note that if an older install of GOFit is present on your system you can use:

```bash
$ pip install --upgrade gofit
```

to upgrade GOFit to the latest version.

Installing GOFit from source
----------------------------
Alternatively, you can download the source code from [Github](https://github.com/ralna/gofit) and unpack as follows:

```bash
$ git clone https://github.com/ralna/gofit
$ cd gofit
```

GOFit can then be compiled and installed using:

```bash
$ pip install .
```

**Please Note:** *don't forget to install the required dependencies (see above).*

To upgrade GOFit to the latest version, navigate to the top-level directory (i.e. the one containing `setup.py`) and re-run the installation using `pip`, as above:

```bash
$ git pull
$ pip install .
```

Testing
-------
The [documentation](https://ralna.github.io/GOFit/) provides some simple examples of how to run GOFit.

Uninstallation
--------------
You can uninstall GOFit as follows:

```bash
$ pip uninstall gofit
```

Bugs
----
Please report any bugs using GitHub's issue tracker.

License
-------
This software is released under the New BSD license.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ralna/gofit",
    "name": "gofit",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "mathematics optimization",
    "author": "Jaroslav Fowkes",
    "author_email": "jaroslav.fowkes@stfc.ac.uk",
    "download_url": "https://files.pythonhosted.org/packages/71/7b/327cbea92b88e9518ea8b285ab154cb72ba4778e1af7b6e0e3682ff24991/gofit-0.4.tar.gz",
    "platform": null,
    "description": "\n[![License](https://img.shields.io/badge/License-BSD_3--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)\n[![Build Status](https://img.shields.io/github/actions/workflow/status/ralna/gofit/test.yml?branch=master)](https://github.com/ralna/gofit/actions/workflows/test.yml)\n[![PyPI Version](https://img.shields.io/pypi/v/gofit.svg)](https://pypi.python.org/pypi/gofit)\n\nGOFit: Global Optimization for Fitting problems\n===============================================\n\nGOFit is a package of C++ algorithms with python interfaces designed for the global optimization of parameters in curve fitting, i.e. for nonlinear least-squares problems arising from curve fitting. GOFit was developed with scientific curve fitting problems in mind but is also applicable to general curve fitting problems provided they can be formulated as nonlinear least-squares problems.\n\nFull details on how to use GOFit are available in the [documentation](https://ralna.github.io/GOFit/).\n\nRequirements\n------------\nGOFit provides pre-built [Python wheels](https://realpython.com/python-wheels/) for most common platforms with all dependencies included. However if a wheel does not exist for your platform (or if building from source), GOFit requires the following software to be installed:\n\n* PyBind11 2.9.1 or above (<https://pybind11.readthedocs.io/>)\n* Eigen 3.4 or above (<https://eigen.tuxfamily.org/>)\n* CMake 3.18 or above (<https://cmake.org/>)\n\nInstalling GOFit\n----------------\nFor easy installation, use [pip](http://www.pip-installer.org/):\n\n```bash\n$ pip install gofit\n```\n\nNote that if an older install of GOFit is present on your system you can use:\n\n```bash\n$ pip install --upgrade gofit\n```\n\nto upgrade GOFit to the latest version.\n\nInstalling GOFit from source\n----------------------------\nAlternatively, you can download the source code from [Github](https://github.com/ralna/gofit) and unpack as follows:\n\n```bash\n$ git clone https://github.com/ralna/gofit\n$ cd gofit\n```\n\nGOFit can then be compiled and installed using:\n\n```bash\n$ pip install .\n```\n\n**Please Note:** *don't forget to install the required dependencies (see above).*\n\nTo upgrade GOFit to the latest version, navigate to the top-level directory (i.e. the one containing `setup.py`) and re-run the installation using `pip`, as above:\n\n```bash\n$ git pull\n$ pip install .\n```\n\nTesting\n-------\nThe [documentation](https://ralna.github.io/GOFit/) provides some simple examples of how to run GOFit.\n\nUninstallation\n--------------\nYou can uninstall GOFit as follows:\n\n```bash\n$ pip uninstall gofit\n```\n\nBugs\n----\nPlease report any bugs using GitHub's issue tracker.\n\nLicense\n-------\nThis software is released under the New BSD license.\n",
    "bugtrack_url": null,
    "license": "New BSD",
    "summary": "GOFit: Global Optimization for Fitting problems",
    "version": "0.4",
    "project_urls": {
        "Bug Tracker": "https://github.com/ralna/gofit/issues/",
        "Documentation": "https://ralna.github.io/GOFit/",
        "Download": "https://github.com/ralna/gofit/releases/",
        "Homepage": "https://github.com/ralna/gofit",
        "Source Code": "https://github.com/ralna/gofit/"
    },
    "split_keywords": [
        "mathematics",
        "optimization"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a139c5fab8bc8a2605bdfb0573aa85ce5543d9d5407c6512d3a724d050a5ce9f",
                "md5": "e4752ba7f1ee50c2267d96df00a094f0",
                "sha256": "a97ec27ff3103600d5cd25f1bd6bd2f2f541979f4db6fbaae7f86c28b43cb488"
            },
            "downloads": -1,
            "filename": "gofit-0.4-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e4752ba7f1ee50c2267d96df00a094f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 122398,
            "upload_time": "2023-09-15T09:43:53",
            "upload_time_iso_8601": "2023-09-15T09:43:53.160249Z",
            "url": "https://files.pythonhosted.org/packages/a1/39/c5fab8bc8a2605bdfb0573aa85ce5543d9d5407c6512d3a724d050a5ce9f/gofit-0.4-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b8fad29208151df3a87dd9f005c1da915ea40c71c63625f0a69b67ba175aef9",
                "md5": "1a3ebe101a8b3273b2a2d4a55ca4b8fd",
                "sha256": "466f6a6781b7853f03005182d7db023adc27f36179b33e66819150cce5e0fe0d"
            },
            "downloads": -1,
            "filename": "gofit-0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1a3ebe101a8b3273b2a2d4a55ca4b8fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 148486,
            "upload_time": "2023-09-15T09:43:55",
            "upload_time_iso_8601": "2023-09-15T09:43:55.847107Z",
            "url": "https://files.pythonhosted.org/packages/7b/8f/ad29208151df3a87dd9f005c1da915ea40c71c63625f0a69b67ba175aef9/gofit-0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a893d1fbc20be017c5aef3cc2d7bff3c514491d3deb495ef462c3f328529eabc",
                "md5": "6439d1d1d895c8e2fb7c1a4ad2a9e3d7",
                "sha256": "efa64621e5fa2fead9292f5293a8da43b935ff4e528fae74314364482bc21c3b"
            },
            "downloads": -1,
            "filename": "gofit-0.4-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6439d1d1d895c8e2fb7c1a4ad2a9e3d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.6",
            "size": 317944,
            "upload_time": "2023-09-15T09:43:57",
            "upload_time_iso_8601": "2023-09-15T09:43:57.778638Z",
            "url": "https://files.pythonhosted.org/packages/a8/93/d1fbc20be017c5aef3cc2d7bff3c514491d3deb495ef462c3f328529eabc/gofit-0.4-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5064458fec09e7ccdfa7d587292b9b7687731ed00819820f32aa7e1ad92a224",
                "md5": "4d289e7780b8475e25caa1b342fa6ae5",
                "sha256": "7b86d6cc46a5c83684da9b086c696773c511a9d9a5b2382a11ddceb25ac7b138"
            },
            "downloads": -1,
            "filename": "gofit-0.4-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4d289e7780b8475e25caa1b342fa6ae5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 123773,
            "upload_time": "2023-09-15T09:43:59",
            "upload_time_iso_8601": "2023-09-15T09:43:59.697294Z",
            "url": "https://files.pythonhosted.org/packages/d5/06/4458fec09e7ccdfa7d587292b9b7687731ed00819820f32aa7e1ad92a224/gofit-0.4-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "651d601a3bef44ca42ab5573f67337079bfc2901947b5fada19fd0c7d17abc19",
                "md5": "407a6c8b4d02bbe6a73c9a01d8318032",
                "sha256": "aaeaf942e216e1c37236eab069d2a71a11f5d280f50443f646a46a15b4b360e7"
            },
            "downloads": -1,
            "filename": "gofit-0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "407a6c8b4d02bbe6a73c9a01d8318032",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 149929,
            "upload_time": "2023-09-15T09:44:01",
            "upload_time_iso_8601": "2023-09-15T09:44:01.380304Z",
            "url": "https://files.pythonhosted.org/packages/65/1d/601a3bef44ca42ab5573f67337079bfc2901947b5fada19fd0c7d17abc19/gofit-0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "314898689ae81e48870798ac573ee8b1852e9e7d70279163a685a30fde5f6fab",
                "md5": "eb88dc47fb870fbbb602e86067dc94bc",
                "sha256": "b149a5da92757e0a90494966dc4ae40b656d2de91c32abd8d9e71f2c5c299cef"
            },
            "downloads": -1,
            "filename": "gofit-0.4-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "eb88dc47fb870fbbb602e86067dc94bc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.6",
            "size": 318859,
            "upload_time": "2023-09-15T09:44:03",
            "upload_time_iso_8601": "2023-09-15T09:44:03.416639Z",
            "url": "https://files.pythonhosted.org/packages/31/48/98689ae81e48870798ac573ee8b1852e9e7d70279163a685a30fde5f6fab/gofit-0.4-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cfd988738e9f97c05bb1305ca11c91b1738438f4d126286f421e881df830edd4",
                "md5": "f2293a76148aedd0e2c486b010055adf",
                "sha256": "23cee93b314ce429454ba88cb3c18e1dca92a33c8c76f78076af8fe56c919fbf"
            },
            "downloads": -1,
            "filename": "gofit-0.4-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f2293a76148aedd0e2c486b010055adf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 122366,
            "upload_time": "2023-09-15T09:44:04",
            "upload_time_iso_8601": "2023-09-15T09:44:04.815852Z",
            "url": "https://files.pythonhosted.org/packages/cf/d9/88738e9f97c05bb1305ca11c91b1738438f4d126286f421e881df830edd4/gofit-0.4-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0af77425e7c86770a49a0b5a1204d6d0d312240e5ff364d6a5017b85953b2f94",
                "md5": "a442c6c2545e38d0d9bbbd3702bc7220",
                "sha256": "8ff78b0b22113b30339e34503e2a3b3e69ac0f7972fe0ce27b24bf063f9f8e08"
            },
            "downloads": -1,
            "filename": "gofit-0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a442c6c2545e38d0d9bbbd3702bc7220",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 148167,
            "upload_time": "2023-09-15T09:44:06",
            "upload_time_iso_8601": "2023-09-15T09:44:06.744313Z",
            "url": "https://files.pythonhosted.org/packages/0a/f7/7425e7c86770a49a0b5a1204d6d0d312240e5ff364d6a5017b85953b2f94/gofit-0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3cc19eb1edae30e8019aa0d8f06e6cac473bd1c2110b318ca209a319184303c2",
                "md5": "a88af8c6d8a9f9f322c929b43aba3518",
                "sha256": "1b60bb935d0c661713dcf9fd809cb7a97c2cd1fe9045333d71d7217e13a6d1fc"
            },
            "downloads": -1,
            "filename": "gofit-0.4-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a88af8c6d8a9f9f322c929b43aba3518",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.6",
            "size": 338427,
            "upload_time": "2023-09-15T09:44:09",
            "upload_time_iso_8601": "2023-09-15T09:44:09.042767Z",
            "url": "https://files.pythonhosted.org/packages/3c/c1/9eb1edae30e8019aa0d8f06e6cac473bd1c2110b318ca209a319184303c2/gofit-0.4-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f3d054095f1e1afcdf8944ebbb06c7c2865889a5b260461a5eaf59738f0c7df",
                "md5": "355a7031a8a10c14e2d8d5c90a841403",
                "sha256": "87a08243c2da9b59019c7aa9c3467bfa2e75e92705ba92e7bce10f6595d94506"
            },
            "downloads": -1,
            "filename": "gofit-0.4-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "355a7031a8a10c14e2d8d5c90a841403",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 122523,
            "upload_time": "2023-09-15T09:44:10",
            "upload_time_iso_8601": "2023-09-15T09:44:10.348599Z",
            "url": "https://files.pythonhosted.org/packages/4f/3d/054095f1e1afcdf8944ebbb06c7c2865889a5b260461a5eaf59738f0c7df/gofit-0.4-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2fbe4d850e7b8049114eda7ea7b051a5d5c003f25f5fef93b49c4fc2565cbdbe",
                "md5": "6d1360aa0969e412b72ab75310cbc3cc",
                "sha256": "8285677dd034666ce1ab17012f083a3e2ccb5a04716c858c84c372284e84af05"
            },
            "downloads": -1,
            "filename": "gofit-0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6d1360aa0969e412b72ab75310cbc3cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 148173,
            "upload_time": "2023-09-15T09:44:12",
            "upload_time_iso_8601": "2023-09-15T09:44:12.096176Z",
            "url": "https://files.pythonhosted.org/packages/2f/be/4d850e7b8049114eda7ea7b051a5d5c003f25f5fef93b49c4fc2565cbdbe/gofit-0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a04c1b3908c4d0e01aa8fd56c8e72baefa4507005ed5caacd91ae2f97db350f2",
                "md5": "fddffed68e8bb98009e8b2232a0660f2",
                "sha256": "feb5ea1b269deb885ae4359f914f4bc74b380836b70d7b51f790e840639ddb3a"
            },
            "downloads": -1,
            "filename": "gofit-0.4-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fddffed68e8bb98009e8b2232a0660f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.6",
            "size": 318230,
            "upload_time": "2023-09-15T09:44:13",
            "upload_time_iso_8601": "2023-09-15T09:44:13.503513Z",
            "url": "https://files.pythonhosted.org/packages/a0/4c/1b3908c4d0e01aa8fd56c8e72baefa4507005ed5caacd91ae2f97db350f2/gofit-0.4-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "717b327cbea92b88e9518ea8b285ab154cb72ba4778e1af7b6e0e3682ff24991",
                "md5": "1c9ed53de66c1b1ccc26d19ab250ab3e",
                "sha256": "ab5b578e641db5fe590627d0165abac67eaae9cc5a1451d3d6aceb3a2635e136"
            },
            "downloads": -1,
            "filename": "gofit-0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "1c9ed53de66c1b1ccc26d19ab250ab3e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 74748,
            "upload_time": "2023-09-15T09:44:14",
            "upload_time_iso_8601": "2023-09-15T09:44:14.892856Z",
            "url": "https://files.pythonhosted.org/packages/71/7b/327cbea92b88e9518ea8b285ab154cb72ba4778e1af7b6e0e3682ff24991/gofit-0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-15 09:44:14",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ralna",
    "github_project": "gofit",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "gofit"
}
        
Elapsed time: 0.11720s