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.14.tar.gz (87.1 kB view details)

Uploaded Source

Built Distributions

coreforecast-0.0.14-cp313-cp313-win_amd64.whl (189.4 kB view details)

Uploaded CPython 3.13 Windows x86-64

coreforecast-0.0.14-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.5 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

coreforecast-0.0.14-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (250.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

coreforecast-0.0.14-cp313-cp313-macosx_11_0_arm64.whl (196.8 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

coreforecast-0.0.14-cp313-cp313-macosx_10_13_x86_64.whl (249.9 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

coreforecast-0.0.14-cp312-cp312-win_amd64.whl (189.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

coreforecast-0.0.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (275.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

coreforecast-0.0.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (251.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

coreforecast-0.0.14-cp312-cp312-macosx_11_0_arm64.whl (196.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

coreforecast-0.0.14-cp312-cp312-macosx_10_13_x86_64.whl (249.7 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

coreforecast-0.0.14-cp311-cp311-win_amd64.whl (188.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

coreforecast-0.0.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

coreforecast-0.0.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (249.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

coreforecast-0.0.14-cp311-cp311-macosx_11_0_arm64.whl (197.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

coreforecast-0.0.14-cp311-cp311-macosx_10_9_x86_64.whl (250.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

coreforecast-0.0.14-cp310-cp310-win_amd64.whl (187.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

coreforecast-0.0.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (273.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

coreforecast-0.0.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (248.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

coreforecast-0.0.14-cp310-cp310-macosx_11_0_arm64.whl (196.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

coreforecast-0.0.14-cp310-cp310-macosx_10_9_x86_64.whl (248.8 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

coreforecast-0.0.14-cp39-cp39-win_amd64.whl (183.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

coreforecast-0.0.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

coreforecast-0.0.14-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (248.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

coreforecast-0.0.14-cp39-cp39-macosx_11_0_arm64.whl (196.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

coreforecast-0.0.14-cp39-cp39-macosx_10_9_x86_64.whl (249.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: coreforecast-0.0.14.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.14.tar.gz
Algorithm Hash digest
SHA256 8f6c05fd449cd6eb8595818632a3bada07bcd8982bb3d78c12818858fa159a0f
MD5 211885df2165c2371db2d00bf034bc71
BLAKE2b-256 d99d9ef525fbac188ba10cf143b8d13167fdd3b1d334167f3bde437d2670afe1

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

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

File metadata

File hashes

Hashes for coreforecast-0.0.14-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dfba474593f171afd00fb6e78f14d1f0305d6fbd876c520daa570970a78b44e4
MD5 9f4f4f56853ab34459e2399cf4d7415e
BLAKE2b-256 fb9bd18039ce291b94b1b99e57531b0a056abbe65691be2c24096f081a86ac90

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

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

File metadata

File hashes

Hashes for coreforecast-0.0.14-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72886877574a737026108b6cf1584be339be0366b66eb34c17d91a274681bda1
MD5 38441b9c3b399d790f955a2bed234334
BLAKE2b-256 adead1ffa6c40903396a7d7cd7b8dd6d16a6556225f5212227a9b46e2fc86024

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.14-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.14-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.14-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 904e90193f6382cddf6ac5e210249969beae8f03e147db5ea99ea0fe7c472031
MD5 7e0a84bbdc3aa35dbe4fd3606567ace5
BLAKE2b-256 fd19e281bf5d105128dbf4c3c0319ac4c6d00d81bc9590180861e10dca2cd005

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.14-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.14-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.14-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5f441c013618b6d802e90f16433467a1959670c47b8e428e7f9cff87cdc0e84
MD5 0a6475928b7df507594459ed2a9385e0
BLAKE2b-256 2418ac1a895ef238b6d11db5b50ae0395af0890aa112df261f1ad5ba61a4a718

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

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

File metadata

File hashes

Hashes for coreforecast-0.0.14-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 72e4f32cf574544846ee91f344dbbc397e86857fbe44c805b9a2fcca244cd639
MD5 16e81f5f426cf66a2c284d7a28f66a8f
BLAKE2b-256 1fe7ef26d0656f4d120369d1d6ea0972aa65e00ad899ddf3e5e938d659220861

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

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

File metadata

File hashes

Hashes for coreforecast-0.0.14-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5b91b256ef34cf4aaac8c1efecfc0c7568f1b65758bfda756dfe313026101d93
MD5 7837551fda01b7ee458616dc5fb794bf
BLAKE2b-256 0fc25a1a739f1d466ce74599a0464fc2af6373462a926f6af3e5e651ea13093e

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

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

File metadata

File hashes

Hashes for coreforecast-0.0.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 595705bd1ce277b4e057771c513ef32d71e817685afd97bba1de2265e900e587
MD5 ff7aaeb77a7a43a7a5acd426525246e3
BLAKE2b-256 6a0043d8e5cbc7f76e15d33e9185ad7ac38bd09b621c9deced3aa7c865b726c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.14-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.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f24cec375eaf559090db00bb1a13dbce7a8bde693f2badfa1de8e364ac4158c
MD5 0f2eb905ad6bc77c8b3181605bb7822d
BLAKE2b-256 caa36fc2f4ef24569138bd898d2b9a1bf96e1e423eddbea7df835a5df0a0d5aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.14-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.14-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.14-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d0444246ce69f22191100d9c8b49e50d08f5d1538821a8cac4e7d81e6b6ca1f
MD5 eff519764ca1ed2b858d6bcf3b5e922f
BLAKE2b-256 b01a64e4bd5cb20bd043cb2970faa690057382f5cb2c51846103d07b76b6355b

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

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

File metadata

File hashes

Hashes for coreforecast-0.0.14-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 99842e45cbb9d29bb1f83b173ea83169ca8ec51490a9f03396d080d70c6d067c
MD5 44a859d7f3721ef466b98985e60b8d92
BLAKE2b-256 85e7ae005f148f1911e44cb291f8868b1ea87e45543aaf4985bd394c953c6a37

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

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

File metadata

File hashes

Hashes for coreforecast-0.0.14-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b9e47c91aed74354ee920f408da1a6d75868558323bbab2634b39c8813c2115c
MD5 72cf952ea6666c076018dfadecf1c8fe
BLAKE2b-256 cfd0e2db0648bfe98023ab291c48386bb7abd63720c6fc7254c04b8c5bbaea76

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

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

File metadata

File hashes

Hashes for coreforecast-0.0.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f7cb4d0c0bf35b4dcd2a116d603224572110b0999ce803f14bd1e4df39a9c15
MD5 76391f24e103c3c2b8f07d1cd6502bc1
BLAKE2b-256 cecfd8abf36b05bca65abe8212a549a4299e1aff2eb9e23d5140ce3e3cde2d77

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.14-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.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c51bf4b98d8758fd795586f503e0f669ffe365c8804f9c817d5a2b6763e8792
MD5 4aa6e3b6ce72e6d21edcebe929ec5295
BLAKE2b-256 ab1af3ec8f65d96fbcf91e35e702d18a474392675c7bb9b425ac6e86aa3921e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.14-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.14-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.14-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26ac898585fcfb2968b00bc30ac2c9270776efd3f710ab86e6f686e6f587720a
MD5 2006cbd21785aedc8e14a1b0be3da49d
BLAKE2b-256 ba0c4240347c92b232c4ad0e29c2e4246897bf55d5601e1af5cd437a73fc561a

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

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

File metadata

File hashes

Hashes for coreforecast-0.0.14-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c94f3e62b3824899500870052553ed4c0e6ad29db188c0b960c45757c0816d36
MD5 7ba0d8d92b8bf6b3a7b59542429d9780
BLAKE2b-256 d516db79a280c0e85499b067cdf56530e3bca96eb6dd716ab9e13c168e2e838d

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

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

File metadata

File hashes

Hashes for coreforecast-0.0.14-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a6f41347baf5e7045150ea502ea036e241516d0f12fe1532d8721bcea99e374c
MD5 0b0ece15216799ce2be090cfebb410b2
BLAKE2b-256 128236c12b6c65b66c61fa64f22a342c255919fb32b6ed0e3692d1fdc511f7df

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

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

File metadata

File hashes

Hashes for coreforecast-0.0.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eaa3fed496addf38f3aa61740bd13f2350183d4fa71e0bd1172d3ebcbc0f1aaf
MD5 f20119495bea839df269f8f74121f101
BLAKE2b-256 6ef83f48c244c9d1bb4456ffb1e8de6ec2fb59cca09fc1548228f66ff9805115

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.14-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.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3bea434419b58b31cee6734da1617906b07609b7526d3adb7f3992175a5805aa
MD5 823a4192870c81c8dd6bbdfbb684dca8
BLAKE2b-256 18ca039dc82a1cd4eba06ffd84cd0ae814e9d78b12398afbae5dd98f09afa973

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.14-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.14-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.14-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4abb6521547423cdc4cd1a5e74bbc1e1fbef76f571940e7d389294ee8fbd171
MD5 93ce02fc0fdc4de6c80d5eeb4de02f33
BLAKE2b-256 5b23ef98d8d970c27723e8794ea067b8f9d436b06134f873a1a9a86ffd80ec26

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

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

File metadata

File hashes

Hashes for coreforecast-0.0.14-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eef8a4e5c7f20d4a209e05cef4e251aa14d13af014bfed2d44d2db3f1df6c104
MD5 7ad80f755090b0e2f7c41d97d02b025d
BLAKE2b-256 dfac1a79c1f89622ea445b43bf0740513b448eb06f9bbbc4a42777cd20c243f3

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

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

File metadata

File hashes

Hashes for coreforecast-0.0.14-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 59030ba4ba04ec890e19065e97543dd759d9df10befa89c1f2f221f94b1f12e2
MD5 e645a00f2c087ca5a39879c7cbb797c5
BLAKE2b-256 f8b79ff7bf0b1cb0a0df1a82699169fb792fe3488ddd7727c38486ecc81ac9ae

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

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

File metadata

File hashes

Hashes for coreforecast-0.0.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8fe48f856f4df217e724939c4f18c0583d684b8aa25e4f1acee54e48a59495d
MD5 18190188d5f6d2d1cad338bcf8fa9b41
BLAKE2b-256 cb4cfd3cfe45cd7c2e7375e829f67f8a43c7c8cf0c8abc4e68f584c989ce037a

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.14-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.14-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.14-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c7e2fa1e84a3d1845a69d08a3d24ee8ee3f2d4490d38761259f6b5914288451a
MD5 8300f5425c1c27882e54bffbf3ff154b
BLAKE2b-256 331da0da63dc6040b8057523698ff11c56e52c5ec776d5a0f04ef4d5b353fc8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.14-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.14-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for coreforecast-0.0.14-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 547c299be51a366252445d99e91acac45c51282d57a5e6fe4e66a20f875f1dca
MD5 c805df9828f43542a19b2d646f319e4f
BLAKE2b-256 df031423d13f0cbee460c51068901ce5f7573b2e098b26762191c91cea5cf37b

See more details on using hashes here.

Provenance

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

Publisher: release.yaml on Nixtla/coreforecast

Attestations:

File details

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

File metadata

File hashes

Hashes for coreforecast-0.0.14-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d87339827fb02fcfd4758df60eeeefcdaa4f2e75dc72dbdc30c8940b112cf6d5
MD5 a180b2601e00b3201d899dcb3e143783
BLAKE2b-256 a041e8dd6a6a7797e6432c62550f91110176c0ef8f5da487d677d136794b7aea

See more details on using hashes here.

Provenance

The following attestation bundles were made for coreforecast-0.0.14-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