Skip to main content

cognitive-discovery-system-v2

CI PyPI Python License: MIT Code style: ruff

CDS v2 is a scientific computing platform built on the scientific Python stack — NumPy, SciPy, pandas and matplotlib. The algorithms proven in the pure-Python cognitive-discovery-system (v1.x) form its foundation; v2 rebuilds them for speed and adds new domain modules on top.

Installation

pip install cognitive-discovery-system-v2

From source:

git clone https://github.com/Furox88/cognitive-discovery-system-v2.git
cd cognitive-discovery-system-v2
pip install -e .[dev]

Quick start

import numpy as np
import cds2

# Linear algebra
A = [[3.0, 1.0], [1.0, 2.0]]
b = [9.0, 8.0]
x = cds2.linalg.solve(A, b)

# Statistics
r = cds2.stats.independent_t_test([1, 2, 3, 4, 5], [3, 4, 5, 6, 7])

# Optimization
res = cds2.optimize.minimize(lambda v: (v[0] - 2) ** 2 + (v[1] + 1) ** 2, x0=[0.0, 0.0])
print(res.x)  # ~ [2.0, -1.0]

# Signals
freqs, psd = cds2.signals.power_spectrum(np.sin(np.linspace(0, 100, 1024)), fs=256.0)

# Graphs with PageRank
adj = cds2.graph.from_edges(4, [(0, 1), (0, 2), (1, 3), (2, 3)], directed=True)
scores = cds2.graph.pagerank(adj)

Modules

Module Built on Highlights
cds2.linalg NumPy solve, det, inv, pinv, eig/eigh, SVD, least squares, cholesky, cond
cds2.stats scipy.stats t-tests, ANOVA, non-parametrics, correlations, chi-square, effect sizes, normal dist helpers
cds2.optimize scipy.optimize minimize, roots (brentq/newton/system), linprog, least squares, curve fit
cds2.integrate scipy.integrate quad, 2-D/3-D integration, ODE solvers, trapezoid/simpson
cds2.interpolate scipy.interpolate linear/cubic/pchip, lagrange, griddata, regular grids
cds2.signals scipy.signal FFT, PSD/welch/spectrogram, Butterworth filters, peaks, envelope
cds2.montecarlo NumPy Generator pi estimate, MC integration/expectation, hit-or-miss (all seedable)
cds2.graph scipy.sparse.csgraph components, Dijkstra/Bellman-Ford/Floyd-Warshall, MST, topological order, PageRank
cds2.ml NumPy/SciPy LinearRegression, LogisticRegression, KMeans++, PCA, KNN, metrics, data generators
cds2.timeseries pandas moving average, EWM, differencing, seasonal decomposition, ACF/PACF, Ljung-Box
cds2.viz matplotlib series/histogram/scatter/heatmap/spectrum/regression/confusion plots
cds2.io pandas CSV/JSON read-write, optional Excel/Parquet bridges, DataFrame summaries

CLI

cds2 info
cds2 stats 1,2,3,4,5
cds2 integrate sin --a 0 --b 3.14159
cds2 linsolve --a "3,1;1,2" --b "9,8"
cds2 plot 1,3,2,5,4 --file out.png

Relationship to CDS v1.x

The original zero-dependency pure-Python line lives at Furox88/cognitive-discovery-system and remains available. v2 is an independent project that trades that constraint for the speed and breadth of the scientific Python ecosystem.

Benchmarks

cds2 races the scientific stack head-to-head — and ships its own compiled C kernels where they help. Current scoreboard (full methodology in docs/benchmarks.md):

Race Baseline cds2/baseline
Linear regression 20k×10 scikit-learn 0.70x
K-Means 4k×2 k=8 scikit-learn 0.79x
Monte Carlo pi 2M hand-vectorized NumPy 0.74x
solve / eigh / rfft / welch / t-test / minimize NumPy & SciPy ~1.00x
PageRank 400n NetworkX 1.35x
describe 500k (adds quartiles) SciPy 1.22x

Wrapper APIs hold parity with raw NumPy/SciPy; the KMeans Lloyd loop is a from-scratch C extension (cds2._fast_kmeans) that beats scikit-learn's implementation. A pure-Python fallback wheel keeps compiler-less installs working.

python benchmarks/run_benchmarks.py            # full run
python benchmarks/run_benchmarks.py --quick    # smoke run

Development

pip install -e .[dev]
pytest            # run the test suite
ruff check .      # lint

License

MIT — see LICENSE.

Download files

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

Source Distribution

cognitive_discovery_system_v2-2.1.0.tar.gz (41.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

cognitive_discovery_system_v2-2.1.0-py3-none-any.whl (31.6 kB view details)

Uploaded Python 3

cognitive_discovery_system_v2-2.1.0-cp313-cp313-win_amd64.whl (40.5 kB view details)

Uploaded CPython 3.13Windows x86-64

cognitive_discovery_system_v2-2.1.0-cp313-cp313-win32.whl (40.0 kB view details)

Uploaded CPython 3.13Windows x86

cognitive_discovery_system_v2-2.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (47.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-2.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (47.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

cognitive_discovery_system_v2-2.1.0-cp313-cp313-macosx_11_0_arm64.whl (38.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cognitive_discovery_system_v2-2.1.0-cp312-cp312-win_amd64.whl (40.4 kB view details)

Uploaded CPython 3.12Windows x86-64

cognitive_discovery_system_v2-2.1.0-cp312-cp312-win32.whl (40.0 kB view details)

Uploaded CPython 3.12Windows x86

cognitive_discovery_system_v2-2.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (47.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-2.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (47.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

cognitive_discovery_system_v2-2.1.0-cp312-cp312-macosx_11_0_arm64.whl (38.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cognitive_discovery_system_v2-2.1.0-cp311-cp311-win_amd64.whl (40.4 kB view details)

Uploaded CPython 3.11Windows x86-64

cognitive_discovery_system_v2-2.1.0-cp311-cp311-win32.whl (40.0 kB view details)

Uploaded CPython 3.11Windows x86

cognitive_discovery_system_v2-2.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (46.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-2.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (46.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

cognitive_discovery_system_v2-2.1.0-cp311-cp311-macosx_11_0_arm64.whl (38.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cognitive_discovery_system_v2-2.1.0-cp310-cp310-win_amd64.whl (40.4 kB view details)

Uploaded CPython 3.10Windows x86-64

cognitive_discovery_system_v2-2.1.0-cp310-cp310-win32.whl (40.0 kB view details)

Uploaded CPython 3.10Windows x86

cognitive_discovery_system_v2-2.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (46.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-2.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (46.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

cognitive_discovery_system_v2-2.1.0-cp310-cp310-macosx_11_0_arm64.whl (38.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file cognitive_discovery_system_v2-2.1.0.tar.gz.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.1.0.tar.gz
Algorithm Hash digest
SHA256 425e2d8061a1b6d417ea03cd1528f92aa65076fc66a94f812a1caf88174f79f5
MD5 4872c7b889f8db94885140d1bd44be50
BLAKE2b-256 09ac076b8b41db86c246bd5a457a539ba44bbe9ba4a66ba4d75f47d534bc0150

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.1.0.tar.gz:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-2.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 06a3c8af812a195c054ac4f1e81bddd646cd7df7567d4ca0f7092340094b3e3c
MD5 67c33dd333a30f8bb5b91e2dae04d26d
BLAKE2b-256 091cc77d3c033feda9f07bc799115363f195968f8e97f6fa4098c6ee0cb862b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.1.0-py3-none-any.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-2.1.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a98f4a927e4b05f5ad7a0ecee28367e0aea3c851a511e0513cf1d7d8997f34b7
MD5 eab284bf1f532036a871f9be09501578
BLAKE2b-256 1985509fef4ecb54b99b8089c343bd301f37626419d167d048b39986b5a4de28

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.1.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-2.1.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7f6081288f7ccc53c188185c5b4339e3a8cd88cde188a9e02f294c2df122dda5
MD5 9853c6d8a239575d742f3dfd9cbd7aba
BLAKE2b-256 9abcdc30d93be39e58ce4f84c78e08cbf8aa8396075f4d122a645552f31afb8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.1.0-cp313-cp313-win32.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-2.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6305698588a6118783abb042334a015a7f184ac892aa381afdbb2ef233bad500
MD5 8132ba68ddd2cdca2aa7cada1c675d8a
BLAKE2b-256 2043d135c333c3b04e47c234a51ace090e52049fc5edb7c332ffdeab73e53951

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-2.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f9ae36a77e47f271a249bbb4e73b0be8ae9fed050f0b04f01b608914165cda1b
MD5 93b259270ed74a60a64f8d63a018d1c7
BLAKE2b-256 46175141cc57c7d97a9ab4a55182679ddcf7034f2ad102d807ca5ed37dbb523e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-2.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5e69ef82950e5051d74bde2c6c510ac63f8d9686fe7f3e9dcd10b55a2d807ff
MD5 fef8729ad33857eabdc578fee913ed34
BLAKE2b-256 56da7e1d7fb94e3c171c3493fcc1a6644d9aadc07b39ffa77abda250cbdac092

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-2.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 87ca1b12aa017517fd651dc6c3ab12b98398b261dbc6b9b000ae6b1e358141d0
MD5 acf038d5c51cabb77a633ec7f60864d7
BLAKE2b-256 e0fb79b46a445981ba22c93c97e06e7f16c1193c12407b7119f2bc0046beafc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.1.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-2.1.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 73e17bc9acbcd55373388b40421e1cbd13ceb2245652c6873885e0dfa73806ae
MD5 0d7211bd1eba001bfb2da005f88b9d1f
BLAKE2b-256 c9979622a74d33345f1dc8342b876ccb5bd0d8279f63915f244290d6ef004f95

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.1.0-cp312-cp312-win32.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-2.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 01c099508107e53ba25a90680656b0c965481e43fc36e18486b04ca06cdb16f9
MD5 0bcbf87e0e305e1804e7e85a81c24adb
BLAKE2b-256 6e3cafd8cebdf04153a0a68da1d2efd8d3c922f8ee0aab39abb41820d4941fa0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-2.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5143dffb207b75cb1fba1e32840ea9ba14db79d840d94ddb49af55d54d5d0770
MD5 dc7bf957f57f2c23bebbc5923828943a
BLAKE2b-256 5dd32c966b394d23d9bfe84f0d99ef1d79dba3bc1fa1996035b3fd2ba67a7605

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-2.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65674600f49bacc44486fb2ed7ad3e1cf938209153fc2c96bd89f99924cdeacb
MD5 577b142411673339ea84626db2cf3ace
BLAKE2b-256 01c6d4d308736f6f885411f20118bffa923a5f38fd321d4cfa2e2c42bb5dc19f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-2.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6756cf347ccdfd21240df68c03d3dfef675450440cc5e0dc76606cabe994f9b0
MD5 f5e8104a38e70606328ff261b083f417
BLAKE2b-256 7b27bec5a09346d26b9a1603fc0130a28e261bcfee34fc3c4fd13574a2f972dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.1.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-2.1.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c0d49e4be3409659f4229f4bcff67586e2d6ba4420c46d949f6a38bd6cb021c5
MD5 2159af169f518c622596d225cd2708e7
BLAKE2b-256 2be3cd4e6304c007512fd770f9af762ac4c614986cd54771dd03c9a771c52932

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.1.0-cp311-cp311-win32.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-2.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e91af6cf9838d962bf3128900c24c68184c5598054443df0c8aa2ba6d46cb9ba
MD5 0972fffd0eb617a5d21108c197a91e31
BLAKE2b-256 c07fbc6cbca73f41887517e12a592feb70ed98b9ae03c48c854fe61c130496b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-2.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ae33aa9090236c8ac73687e4514f28ecba933ef6d5770026e11219088bb095fd
MD5 3a81d4f7d6554515dfd47c5779f36068
BLAKE2b-256 77c00625c88d8ab96d6bcfb36e31a0cd322b895cb5a9aca1d85b25b124c7f97c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-2.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bfdb3404c93cf6455e2d9be2fa8cf9ab931486af78f4dcb3ddb3e9d782183f3e
MD5 e88ab60efccf8b4288e572504be829ab
BLAKE2b-256 3f9fc2be6be6a2b5cede1db04cca134320b75e828633a6681dd2833e081e2d55

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-2.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d5b9443c1115a1b4161096a50d6e1885025dd96bd6c8ea60999e4ee8465d8645
MD5 b1764032061b0ca80bd28b5dd366095f
BLAKE2b-256 9ac757525bf4a9f9ae61e6a2eb980b638ef125186a43bdb9b1beccf79480e6cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.1.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-2.1.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a7b8f8af75306f69c158dc7c27fa90f7c4706e87c0e3f2dadfa9c1e0346c0297
MD5 5ac3d8ac211054bb57ff60fa6b05c400
BLAKE2b-256 fa74f93530c59bafee658c73df56366dca4c8f1ada4a4d9db435349f04e81234

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.1.0-cp310-cp310-win32.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-2.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf4a57f53a4d645c87e2d70330986be37dca7c058b619a38ca65b63a7bef6feb
MD5 7c5a9a727400050fa709ef8b9deb9160
BLAKE2b-256 4a9744f60d8e50ad0bb77b6cc4c951b867b7cdb997e409767a08e06d6f1ec2ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-2.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3fb2fab158186ab7d79a4ef7ac132d53bdccb19c3a85039edcc78465bebd63d5
MD5 3c2c65313632f0329aea490ddd3b8c67
BLAKE2b-256 deebb5436a90290f187375db1be31b147a236e080169e883aab5f5ea9a1787af

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-2.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5c6653ccc819c4262b6961ca4a5000b2e9ae4aee39e06f836698982705a7e27
MD5 963634d72837747451e25673548a23fe
BLAKE2b-256 ad3225a7a3cab1d5b8123c2f8fd1ca99b78d06414ea8d8a38f60477f8a21eeb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

4.0.0

1 file

3.3.0

22 files

3.2.1

22 files

3.2.0

22 files

3.1.0

22 files

3.0.0

22 files

2.6.0

22 files

2.5.1

22 files

2.5.0

22 files

2.4.0

22 files

2.3.0

22 files

2.2.0

22 files

This release

2.1.0 This release

22 files

2.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page