Skip to main content

Fast implementations of common forecasting routines

Project description

Motivation

At Nixtla we have implemented several libraries to deal with time series data. We often have to apply some transformation over all of the series, which can prove time consuming even for simple operations like performing some kind of scaling.

We've used numba to speed up our expensive computations, however that comes with other issues such as cold starts and more dependencies (LLVM). That's why we developed this library, which implements several operators in C++ to transform time series data (or other kind of data that can be thought of as independent groups), with the possibility to use multithreading to get the best performance possible.

You probably won't need to use this library directly but rather use one of our higher level libraries like mlforecast, which will use this library under the hood. If you're interested on using this library directly (only depends on numpy) you should continue reading.

Installation

PyPI

pip install coreforecast

conda-forge

conda install -c conda-forge coreforecast

Minimal example

The base data structure is the "grouped array" which holds two numpy 1d arrays:

  • data: values of the series.
  • indptr: series boundaries such that data[indptr[i] : indptr[i + 1]] returns the i-th series. For example, if you have two series of sizes 5 and 10 the indptr would be [0, 5, 15].
import numpy as np
from coreforecast.grouped_array import GroupedArray

data = np.arange(10)
indptr = np.array([0, 3, 10])
ga = GroupedArray(data, indptr)

Once you have this structure you can run any of the provided transformations, for example:

from coreforecast.lag_transforms import ExpandingMean
from coreforecast.scalers import LocalStandardScaler

exp_mean = ExpandingMean(lag=1).transform(ga)
scaler = LocalStandardScaler().fit(ga)
standardized = scaler.transform(ga)

Single-array functions

We've also implemented some functions that work on single arrays, you can refer to the following pages:

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

coreforecast-0.0.15.tar.gz (87.1 kB view details)

Uploaded Source

Built Distributions

coreforecast-0.0.15-cp313-cp313-win_amd64.whl (190.6 kB view details)

Uploaded CPython 3.13 Windows x86-64

coreforecast-0.0.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

coreforecast-0.0.15-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (253.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

coreforecast-0.0.15-cp313-cp313-macosx_11_0_arm64.whl (195.4 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

coreforecast-0.0.15-cp313-cp313-macosx_10_13_x86_64.whl (230.7 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

coreforecast-0.0.15-cp312-cp312-win_amd64.whl (190.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

coreforecast-0.0.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

coreforecast-0.0.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (253.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

coreforecast-0.0.15-cp312-cp312-macosx_11_0_arm64.whl (195.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

coreforecast-0.0.15-cp312-cp312-macosx_10_13_x86_64.whl (230.6 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

coreforecast-0.0.15-cp311-cp311-win_amd64.whl (189.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

coreforecast-0.0.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (275.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

coreforecast-0.0.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (250.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

coreforecast-0.0.15-cp311-cp311-macosx_11_0_arm64.whl (196.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

coreforecast-0.0.15-cp311-cp311-macosx_10_9_x86_64.whl (229.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

coreforecast-0.0.15-cp310-cp310-win_amd64.whl (189.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

coreforecast-0.0.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (275.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

coreforecast-0.0.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (248.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

coreforecast-0.0.15-cp310-cp310-macosx_11_0_arm64.whl (194.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

coreforecast-0.0.15-cp310-cp310-macosx_10_9_x86_64.whl (228.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

coreforecast-0.0.15-cp39-cp39-win_amd64.whl (184.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

coreforecast-0.0.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (275.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

coreforecast-0.0.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (249.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

coreforecast-0.0.15-cp39-cp39-macosx_11_0_arm64.whl (194.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

coreforecast-0.0.15-cp39-cp39-macosx_10_9_x86_64.whl (228.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

File details

Details for the file coreforecast-0.0.15.tar.gz.

File metadata

  • Download URL: coreforecast-0.0.15.tar.gz
  • Upload date:
  • Size: 87.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for coreforecast-0.0.15.tar.gz
Algorithm Hash digest
SHA256 c95cebfe01ae0b43876ad12900109534f4862dcdcf13ebf88a57295f4daa5e5f
MD5 328d69110346f64fdde0aa46ce91daa5
BLAKE2b-256 67fd5cf055d7238e0541327647b8d2eea8f0c520b3ab6e15671067c2e0da53f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15.tar.gz:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

Details for the file coreforecast-0.0.15-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.15-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f87589c7460e0a8fb2f139c6dd31adfac9f46d17abf994e2c9021ab47e9ad055
MD5 bee885f9d8bad2be8ed237be8ad228cf
BLAKE2b-256 53667916520615fb1fb672f37e20cfafbc21f2c0daafec30a4ea60949805be30

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15-cp313-cp313-win_amd64.whl:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

Details for the file coreforecast-0.0.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fac02a2a4edb85279c4ac875e359a5d1b4f0ecfb7c0e53ba5dcd2685ee723af8
MD5 458892feceb79e9633e5e247dbca4969
BLAKE2b-256 93a1693db39c3a3fc8fa0ee6a332a629943e2dd2da924aa7fdc213f7099e4871

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

Details for the file coreforecast-0.0.15-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.15-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d8ab68faa45fb21c40ae3ef2b1ed621d10171b3bb8fd9b9b4e540539629a332
MD5 8bc4260bb6c0924758bf49146dc65b68
BLAKE2b-256 99dea7095c6b48472a55b3a75db677e175861d9bd08dff26c0a0124d1a4aaaf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

Details for the file coreforecast-0.0.15-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.15-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8df12a7e51831b6748a742b38eb5bb57d3ebba394825d80ed13ccb3f51817f4
MD5 7f469d432850f1054ba310421279bbdd
BLAKE2b-256 5213dfe1f78571dd5a8c080c75e26a138b034d2abc8529a588f93b7a622a710e

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

Details for the file coreforecast-0.0.15-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.15-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 405954215ecc7104fa0f802f5303094f22213009b26f19c6fd14298f631aef80
MD5 4e79f87ffc388e9707faff5ef5f5c9fa
BLAKE2b-256 7a54ea1d376819385ed76a7e0d9f9fd71c09545de076d98b8152a4681a2b01e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

Details for the file coreforecast-0.0.15-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.15-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bda60f7d91103c5ee1e7daa3de9f129bf8b14dc30dd2fb18aa64b8664b310fa4
MD5 d5e0957a60016e951ea0a2bd229dbe11
BLAKE2b-256 2efe73f2940dcfdf86bb4b750e12ef68e3d37a20aef8c43dc8223e69dc80e247

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15-cp312-cp312-win_amd64.whl:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

Details for the file coreforecast-0.0.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75211c2371360c2f8929cf605aaa6c26e4a9207b9f38aabdc716691ae9ccfde7
MD5 b31790bb9f51a60bf8d6d972ab2418e4
BLAKE2b-256 30ad8c7d7860211f0dbc95ca30a6ec5714900c0521ad6c3ab06842aaf3b3b01c

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

Details for the file coreforecast-0.0.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fcb18821d0725092b72f8f457aa9678473618a55319634b784b6ed3b5d3ea1cb
MD5 c9eb92e6ae7ece311d7b8c42afe95997
BLAKE2b-256 9e9a624015df4407e290a8a03a4595ace3e61875a081e96ad77507287bba5679

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

Details for the file coreforecast-0.0.15-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.15-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f389ae59b4ab78116ae7917157071e83d46d8104a8667b4e4764950eac5460eb
MD5 c2b0900668de8df96c43938303f4961b
BLAKE2b-256 f7cb42c74a4dd4482da9a7a8ed10473bc7618a5f8693f87689aa59b17087d19a

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

Details for the file coreforecast-0.0.15-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.15-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 28fd4fe6bdf507962b4da9cf87344bc9cf396b3813921c4aa2ab9b350d1d6870
MD5 1fa44b46e14fe565335593452008ca8a
BLAKE2b-256 ab37883a21fe0939cb028c3b032a689f32cbd961a6e82886ed99e04a7b946248

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

Details for the file coreforecast-0.0.15-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.15-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 af5929567c56b5b2801d6ef3904bf673b3947d28ad14ef9e65c7784bb8b34346
MD5 2cb1d785f7bc54615b324cd51cf556de
BLAKE2b-256 0f05cfd5a4d6d4525aadd3be2d21e4432a34b1f5728183829a8c2be01abbb9ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15-cp311-cp311-win_amd64.whl:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

Details for the file coreforecast-0.0.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d2e9d5c61564ed8794a27f1e0c22bcee04f406e6566f2917f305e7bf6a40d92
MD5 3e7cdcf019bb1756da451128d4eaf907
BLAKE2b-256 e5d15f381c15dd53b185092dcd409164bd49b341852b0ff7038be65e33a3d630

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

Details for the file coreforecast-0.0.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 001988eda5c8ce5bf392c9939205b46a1826c4a52af3ff543b6c4ee13c22972a
MD5 bb61a8c4226fab5e262013823b9df8d5
BLAKE2b-256 c4355ae3df2826ddd0f3e9b4f531aa11d53abf65676d489051b3f0ea8345adff

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

Details for the file coreforecast-0.0.15-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.15-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ce00142b7b19626f6ab0f5f481b4bb44c35c9bc09dee0a5ee4a3471a2fa0a57
MD5 9d7f3ff2c516cfa4c9632e75cecc711d
BLAKE2b-256 88ead98cc1403710fa31961e6b1106c5379684c96766fda3c80ee22c1ac7d7f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

Details for the file coreforecast-0.0.15-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.15-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa47c1fd3d2516533856610cf4c8ba70ec16b08da6e85bc42deb6a9705b903fe
MD5 ecc9a2c1d1fcac889756b31c33639855
BLAKE2b-256 1b7a63a87297ee303f34d864c34bec2b0db20aec870fe4773a82e08f880c412b

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

Details for the file coreforecast-0.0.15-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.15-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a01b1e6ec438fd35348cb7116da46c0252f6f9d43a40fac6c9ac6041d656b41e
MD5 d07db5416c4664ca165d3ece4bee1a2b
BLAKE2b-256 02227da2cb7aa00a5e034471dce6f456a2cb08ee142f3b336d5fd1b8f04f2743

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15-cp310-cp310-win_amd64.whl:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

Details for the file coreforecast-0.0.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ffd05c54970faf5c21c74830070acd481839c99f35bbdc559285ade32dff2564
MD5 2a5b2ba3544dcb776246aa82e86f5aa3
BLAKE2b-256 7db4a5fdb2acf777a8902256069af9c7f63b4285e33731e915f86c4a0b662cbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

Details for the file coreforecast-0.0.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3b84532b4ba9e48b39e64f503c79669a40fea95448c0c1402e2b5b169c14bcd
MD5 0db99235803ad776e9b847a7a3b26157
BLAKE2b-256 4ec2b319f06d098f261f0775a03863618ede86a34e78bc88b14d62350a0749a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

Details for the file coreforecast-0.0.15-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.15-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a45a69f5540abdd1071c5078558bc262261668dad8c93c72bb95eef2fd54b1d8
MD5 595e745a8ef4adc14a2aebdbb12f41f6
BLAKE2b-256 807e934725333c978d6583575e6b3b9d045bccdf41eaf299b45744e7435b0719

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

Details for the file coreforecast-0.0.15-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.15-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 68b65f27848a81fe4ba2d06a156c88369e6cd2132790de6ebe750f7c330cd3aa
MD5 102e2e0ecb37f1dcd30a1aaaacdad718
BLAKE2b-256 d83b78c0a519f890af2a63faab3647315b57d36786be03a714ab4caa577642ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

Details for the file coreforecast-0.0.15-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.15-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 948fc361c93e70289b38d4398dbf3d2b5d62e258624db1130b531785d788b6fc
MD5 35452a32ec0246e0fe88106d3e9c0a8c
BLAKE2b-256 115f465b7c64d3dfdcb97cc8c1fe0753f772d47e5f775042ffa6632063fa9f4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15-cp39-cp39-win_amd64.whl:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

Details for the file coreforecast-0.0.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f788fce4f4489af8796892613c39d7fe0e8f67cd24f58a9fc0ddbb5f28fad5f
MD5 d5b7fbe9e4c268a00af0463e93801594
BLAKE2b-256 1aef3e4408ca0503c5177d7ffead173a9f0bf7abf3958e92c8f0e0342eda6d9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

Details for the file coreforecast-0.0.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db0bf68967c52403ca81b19232823dd7953c6fa6f40b05eb3a637b61fc73de9d
MD5 e640455f14a2b24034a718b699f4678c
BLAKE2b-256 bcb56fe0229a6bcf9bef7ce27d00c975a984b2ea701e6ec901f7593f2723bc23

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

Details for the file coreforecast-0.0.15-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.15-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9efe209354364f19b6705f46a4172c60b07bcce3e1284828beeeb461af8a2c48
MD5 628c0c29787333283bbf13f8fbbcf234
BLAKE2b-256 b771312e13927c60d92877d363cfe2a4b9d18d924ecc9855eba218cf81194bd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

Details for the file coreforecast-0.0.15-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.15-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 16383eff7ed01600a70905f27c165e4f2e3db3645408c4fc70baa25469e38a33
MD5 babbac8a99a5b9e26031cf1282c8ca41
BLAKE2b-256 2b686aae4ff70700fa764dc536efa41b214322fecbc37242f8ce137ffe807191

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.15-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

Supported by

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