divina


Namedivina JSON
Version 2023.3.12.2 PyPI version JSON
download
home_pagehttps://www.coysu.com
SummaryPackage for causal, scalable forecasting
upload_time2023-03-13 02:02:41
maintainer
docs_urlNone
authorCoysu Consulting
requires_python
licenseBSD-3-Clause
keywords forecasting
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">
  <img src="https://storage.googleapis.com/coysuweb-static/assets/images/logo/3.png"><br>
</div>

-----------------

# divina: scalable and automatable multi-horizon forecasting toolkit
[![Continuous Integration](https://github.com/secrettoad/divina/actions/workflows/prod.yaml/badge.svg)](https://github.com/secrettoad/divina/actions/workflows/prod.yaml)
[![PyPI Latest Release](https://img.shields.io/pypi/v/divina.svg)](https://pypi.org/project/divina/)
[![Package Status](https://img.shields.io/pypi/status/divina.svg)](https://pypi.org/project/divina/)
[![License](https://img.shields.io/badge/License-AGPL%20v3-blue.svg)](https://github.com/secrettoad/divina/blob/master/LICENSE)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/)

## What is it?

`divina` confronts four main problems for professional forecasters:
  
  - Multiple-horizon forecasting often involves repeated programming of the same, complex code across train, predict, validation and visualization
  - Many forecasting model implementations do not follow the standard scikit-interface or scale well to large datasets
  - Different forecasting models often benefit from the complex engineering of the same time-sensitive features
  - Because of the above three, deployment and scaling of multi-horizon forecasting ensembles is considerably more complex than a typical machine learning pipeline


## Main Features
`divina` addresses the aforementioned problems by:

  - Providing a single Python object with a simple interface that abstracts away the complexities of multi-horizon train, predict, valiation and visualization
  - Providing a library of interface-standardized model ensemble candidates that can be mixed and matched depending on the forecasting problem
  - Providing consistent, efficient implementations of popular time-series engineered features 
  - Built-in integration with Dask for efficient, cloud-based scaling and Prefect for automation, fault-tolerance, queue management and artifact persistence 
  
  [interpretation]: https://github.com/secrettoad/divina
  
## Roadmap
Current development priorities and improvements slated for next and beta release are:

  - Addition of visualization methods that produce commonly-required charts via Highcharts
  - Additional machine learning model options, such as XGBoost and CNNs
  - Additional boosting model options, such as RNNs, LSTMs, ARIMA, SARIMA, etc.
  - Addition of more realistic test cases, useful error messages and robust documentation 
  - Addition of GPU support via CUDA, CUDF and CUML

## Where to get it
The source code is currently hosted on GitHub at:
https://github.com/secrettoad/divina

## Documentation
``divina``'s documentation is available [here](https://secrettoad.github.io/divina/#). 

Binary installers for the latest released version are available at the [Python
Package Index (PyPI)](https://pypi.org/project/divina)

```sh
pip install divina
```

## Dependencies
- [dask - Adds support for arbitrarily large datasets via remote, parallelized compute](https://www.dask.org)
- [dask-ml - Provides distributed-optimized implementations of many popular models](https://ml.dask.org)
- [s3fs - Allows for easy and efficient access to S3](https://github.com/dask/s3fs)
- [pyarrow - Enables persistence of datasets as storage and compute efficent parquet files](https://arrow.apache.org/docs/python/)
- [prefect - Enables task orchestration, tracking and persistence](https://prefect.io)


## Testing
For local integration testing, run the following commands in order to create the necessary Prefect and Min.io containers.
```sh
docker pull jhurdle/divina-storage
docker pull jhurdle/divina-prefect
docker run -p 9000:9000 jhurdle/divina-storage 
docker run -p 4200:4200 jhurdle/divina-prefect 
pytest divina/divina/tests
```

## License
[AGPL](LICENSE)

## Background
Work on ``divina`` started at [Coysu Consulting](https://www.coysu.com/) (a technology consulting firm) in 2020 and
has been under active development since then.

## Getting Help
For usage questions, the best place to go to is [StackOverflow](https://stackoverflow.com/questions/tagged/divina).

## Discussion and Development
Most development discussions take place on GitHub in this repo.

## Contributing to divina 

All contributions, bug reports, bug fixes, documentation improvements, enhancements, and ideas are welcome.

If you are simply looking to start working with the divina codebase, navigate to the [GitHub "issues" tab](https://github.com/secrettoad/divina/issues) and start looking through interesting issues.




            

Raw data

            {
    "_id": null,
    "home_page": "https://www.coysu.com",
    "name": "divina",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "forecasting",
    "author": "Coysu Consulting",
    "author_email": "john@coysu.com",
    "download_url": "https://files.pythonhosted.org/packages/08/6d/f195699b8b4f024c946d29c61ac06e7960389064bd2a9f8096eb4d1b520c/divina-2023.3.12.2.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\n  <img src=\"https://storage.googleapis.com/coysuweb-static/assets/images/logo/3.png\"><br>\n</div>\n\n-----------------\n\n# divina: scalable and automatable multi-horizon forecasting toolkit\n[![Continuous Integration](https://github.com/secrettoad/divina/actions/workflows/prod.yaml/badge.svg)](https://github.com/secrettoad/divina/actions/workflows/prod.yaml)\n[![PyPI Latest Release](https://img.shields.io/pypi/v/divina.svg)](https://pypi.org/project/divina/)\n[![Package Status](https://img.shields.io/pypi/status/divina.svg)](https://pypi.org/project/divina/)\n[![License](https://img.shields.io/badge/License-AGPL%20v3-blue.svg)](https://github.com/secrettoad/divina/blob/master/LICENSE)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n[![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/)\n\n## What is it?\n\n`divina` confronts four main problems for professional forecasters:\n  \n  - Multiple-horizon forecasting often involves repeated programming of the same, complex code across train, predict, validation and visualization\n  - Many forecasting model implementations do not follow the standard scikit-interface or scale well to large datasets\n  - Different forecasting models often benefit from the complex engineering of the same time-sensitive features\n  - Because of the above three, deployment and scaling of multi-horizon forecasting ensembles is considerably more complex than a typical machine learning pipeline\n\n\n## Main Features\n`divina` addresses the aforementioned problems by:\n\n  - Providing a single Python object with a simple interface that abstracts away the complexities of multi-horizon train, predict, valiation and visualization\n  - Providing a library of interface-standardized model ensemble candidates that can be mixed and matched depending on the forecasting problem\n  - Providing consistent, efficient implementations of popular time-series engineered features \n  - Built-in integration with Dask for efficient, cloud-based scaling and Prefect for automation, fault-tolerance, queue management and artifact persistence \n  \n  [interpretation]: https://github.com/secrettoad/divina\n  \n## Roadmap\nCurrent development priorities and improvements slated for next and beta release are:\n\n  - Addition of visualization methods that produce commonly-required charts via Highcharts\n  - Additional machine learning model options, such as XGBoost and CNNs\n  - Additional boosting model options, such as RNNs, LSTMs, ARIMA, SARIMA, etc.\n  - Addition of more realistic test cases, useful error messages and robust documentation \n  - Addition of GPU support via CUDA, CUDF and CUML\n\n## Where to get it\nThe source code is currently hosted on GitHub at:\nhttps://github.com/secrettoad/divina\n\n## Documentation\n``divina``'s documentation is available [here](https://secrettoad.github.io/divina/#). \n\nBinary installers for the latest released version are available at the [Python\nPackage Index (PyPI)](https://pypi.org/project/divina)\n\n```sh\npip install divina\n```\n\n## Dependencies\n- [dask - Adds support for arbitrarily large datasets via remote, parallelized compute](https://www.dask.org)\n- [dask-ml - Provides distributed-optimized implementations of many popular models](https://ml.dask.org)\n- [s3fs - Allows for easy and efficient access to S3](https://github.com/dask/s3fs)\n- [pyarrow - Enables persistence of datasets as storage and compute efficent parquet files](https://arrow.apache.org/docs/python/)\n- [prefect - Enables task orchestration, tracking and persistence](https://prefect.io)\n\n\n## Testing\nFor local integration testing, run the following commands in order to create the necessary Prefect and Min.io containers.\n```sh\ndocker pull jhurdle/divina-storage\ndocker pull jhurdle/divina-prefect\ndocker run -p 9000:9000 jhurdle/divina-storage \ndocker run -p 4200:4200 jhurdle/divina-prefect \npytest divina/divina/tests\n```\n\n## License\n[AGPL](LICENSE)\n\n## Background\nWork on ``divina`` started at [Coysu Consulting](https://www.coysu.com/) (a technology consulting firm) in 2020 and\nhas been under active development since then.\n\n## Getting Help\nFor usage questions, the best place to go to is [StackOverflow](https://stackoverflow.com/questions/tagged/divina).\n\n## Discussion and Development\nMost development discussions take place on GitHub in this repo.\n\n## Contributing to divina \n\nAll contributions, bug reports, bug fixes, documentation improvements, enhancements, and ideas are welcome.\n\nIf you are simply looking to start working with the divina codebase, navigate to the [GitHub \"issues\" tab](https://github.com/secrettoad/divina/issues) and start looking through interesting issues.\n\n\n\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "Package for causal, scalable forecasting",
    "version": "2023.3.12.2",
    "split_keywords": [
        "forecasting"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "375d59bc6442bcbb79efc81630a5e9261205beabf6c98bc5c9dfc1a26b919415",
                "md5": "39fa6c44819d2010c2ea404ca35d453c",
                "sha256": "7e9829a5cbabd92981d11dda5ad40533da3c27c70939b7f9689c01be23323097"
            },
            "downloads": -1,
            "filename": "divina-2023.3.12.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "39fa6c44819d2010c2ea404ca35d453c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 123639,
            "upload_time": "2023-03-13T02:02:38",
            "upload_time_iso_8601": "2023-03-13T02:02:38.044592Z",
            "url": "https://files.pythonhosted.org/packages/37/5d/59bc6442bcbb79efc81630a5e9261205beabf6c98bc5c9dfc1a26b919415/divina-2023.3.12.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "086df195699b8b4f024c946d29c61ac06e7960389064bd2a9f8096eb4d1b520c",
                "md5": "8055457889f4b7000331ce995739270e",
                "sha256": "a3e36c2ba450e2231692795901b63f089b32f75aeec73c822158f8a35d8b5d77"
            },
            "downloads": -1,
            "filename": "divina-2023.3.12.2.tar.gz",
            "has_sig": false,
            "md5_digest": "8055457889f4b7000331ce995739270e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 44164578,
            "upload_time": "2023-03-13T02:02:41",
            "upload_time_iso_8601": "2023-03-13T02:02:41.276631Z",
            "url": "https://files.pythonhosted.org/packages/08/6d/f195699b8b4f024c946d29c61ac06e7960389064bd2a9f8096eb4d1b520c/divina-2023.3.12.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-13 02:02:41",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "divina"
}
        
Elapsed time: 0.08345s