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
PageRank 400n (C kernel) NetworkX 0.18x
K-Means 4k×2 k=8 (C kernel) scikit-learn 0.72x
Linear regression 20k×10 scikit-learn 0.74x
Monte Carlo pi 2M hand-vectorized NumPy 0.77x
solve / eigh / rfft / welch / minimize NumPy & SciPy ~1.00x
describe 500k (adds quartiles) SciPy 1.10x

Wrapper APIs hold parity with raw NumPy/SciPy; the KMeans Lloyd loop and PageRank power iteration are from-scratch C extensions (cds2._fast_kmeans, cds2._fast_pagerank) that beat the specialist libraries. 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.2.0.tar.gz (42.2 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.2.0-py3-none-any.whl (32.1 kB view details)

Uploaded Python 3

cognitive_discovery_system_v2-2.2.0-cp313-cp313-win_amd64.whl (49.0 kB view details)

Uploaded CPython 3.13Windows x86-64

cognitive_discovery_system_v2-2.2.0-cp313-cp313-win32.whl (48.3 kB view details)

Uploaded CPython 3.13Windows x86

cognitive_discovery_system_v2-2.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (61.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-2.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (61.6 kB view details)

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

cognitive_discovery_system_v2-2.2.0-cp313-cp313-macosx_11_0_arm64.whl (44.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cognitive_discovery_system_v2-2.2.0-cp312-cp312-win_amd64.whl (49.0 kB view details)

Uploaded CPython 3.12Windows x86-64

cognitive_discovery_system_v2-2.2.0-cp312-cp312-win32.whl (48.3 kB view details)

Uploaded CPython 3.12Windows x86

cognitive_discovery_system_v2-2.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (61.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-2.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (61.5 kB view details)

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

cognitive_discovery_system_v2-2.2.0-cp312-cp312-macosx_11_0_arm64.whl (44.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cognitive_discovery_system_v2-2.2.0-cp311-cp311-win_amd64.whl (49.0 kB view details)

Uploaded CPython 3.11Windows x86-64

cognitive_discovery_system_v2-2.2.0-cp311-cp311-win32.whl (48.3 kB view details)

Uploaded CPython 3.11Windows x86

cognitive_discovery_system_v2-2.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (61.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-2.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (61.0 kB view details)

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

cognitive_discovery_system_v2-2.2.0-cp311-cp311-macosx_11_0_arm64.whl (43.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cognitive_discovery_system_v2-2.2.0-cp310-cp310-win_amd64.whl (49.0 kB view details)

Uploaded CPython 3.10Windows x86-64

cognitive_discovery_system_v2-2.2.0-cp310-cp310-win32.whl (48.3 kB view details)

Uploaded CPython 3.10Windows x86

cognitive_discovery_system_v2-2.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (60.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-2.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (61.0 kB view details)

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

cognitive_discovery_system_v2-2.2.0-cp310-cp310-macosx_11_0_arm64.whl (43.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.2.0.tar.gz
Algorithm Hash digest
SHA256 1b493e43a111116a81def1209f2bc05000c777f71e7985f68b5f43d68c8827fb
MD5 2786d6ff36b852f34a9e339cb5fc6c4e
BLAKE2b-256 e86caa75713b4dd60538e0b548eb5d14e8e02e3a21611faefb9fe2966e6060ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.2.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.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 026223907e5e7ddc5c12747094111f29b735b6d15358c16a411fde3acf9a3322
MD5 ea2eae7d127824070e0b8c6a4a859cf8
BLAKE2b-256 6dac4ff7aa48ebeb0980879257065f5750be0d2c1d9433e164920e338896f8d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.2.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.2.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 53002bee7f3a3972e75eed5a1a9d1bdc9f4b572850faca6412f5e6bd0ea766c7
MD5 09f7b9f924714674c1091d83e7270668
BLAKE2b-256 7dbc868072358c172ebcfcbf66ed1c8499968f227e5580fcf8721047b8819eaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.2.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.2.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 87a6f4c1475406a4379bc98b0d3bf65036250d9b674640167c083474ab7332a7
MD5 23fe1b22bbdfe881287371d7bae11e86
BLAKE2b-256 ad3dd33f0a313831a3876f77c1ad375a6da1bcd0d9206bb0b9263f570e135644

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.2.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.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 718859940076a853687361ed177d00c527b96f808b5684646217642da36bbe71
MD5 f05cb84b40115f94b30a5171e2380326
BLAKE2b-256 4283817ab718b2d761ba8b8260b1cbbcb80e55f4d65976e09cbbfda6a77a0fb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.2.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.2.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.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fda57f43433cb58dc3fef9d48947b8636e7ba2b79ff7fbca5647c46a522cd56f
MD5 77d5a7aad40249f306a1f5d5c309f29b
BLAKE2b-256 6245aa034a9c7c5fee1f68753a7b5a334afc0f71a05ed55bbe0c8432f567abe3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.2.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.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b10decf364cdd2f5f3ba2f4f224c1ff3e9d0b6f0b95283e96fc1f36009187886
MD5 09f6af20e1eeff5591144e51a428ab45
BLAKE2b-256 08ef656d8527f6fc25bcc3f412898c4f877729392d26e15e5c071a9587cabec0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.2.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.2.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 32ea1786a34f40e47302df53064a5ab0f2f3942ad3fae6dfaa2d192752c4b24a
MD5 4c16ec7c7e4fa7d5fc9b93333596102c
BLAKE2b-256 0d2f51f1dd106c268073be98195d98edc71d53ecb669022279b0bd8cb2f81874

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.2.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.2.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7877e8c7963c7f4a02758fe02637b558b43d318525fbeaee23474eb5ddf47354
MD5 fce98f35c3f856b05c41a340ca4eb6eb
BLAKE2b-256 c675eb04eeeef1df248cbef4d61274151ca402d4a8b9bc80de482a45cc26a09d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.2.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.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d5d3d0682359cab510c460485b7e9f43ab8c5e7531deed90661e64e9d9d17dd
MD5 7c589ebd59aa27cf84ef85ed8c3ba7b7
BLAKE2b-256 d23de65846ace19bd6ea254298815a730ce1b34c5e904ee1e5325371ed85ea98

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.2.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.2.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.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5b7c386d248b7d7cc6cab1722202aed1e415cd70c4d2ac0f8584d2ea8058de20
MD5 65390ef4d322e7733be445072cc8bfe8
BLAKE2b-256 c4787e7379905245dfb65bad0c97856bec16d786093cd87a8a8aa9f6a5440346

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.2.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.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0410f5b2002b68a25bc49104b63560448ea7b9efe5d39e326e7e9b35a5a66a32
MD5 695c2ee10152027f332c2c2d962cf463
BLAKE2b-256 0fd450798419b05e11c4e7f444882e680377e96e981a5e32439606898a1f9597

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.2.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.2.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e42b26b2e43ac74f8032e0de44c91602f5db9a4b80397ad197f5ac77ef0eef0b
MD5 f9ea0af44bd0e125e77305bf27824a1c
BLAKE2b-256 1a7def2ec4531f7ea84ed80f7f8173f5741569c8dca008bdc7b7cc92c4254518

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.2.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.2.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e75e63b9be7aa927380c539ddb58fdba6769e6ca3043c69cfca3aae84f8ab3ae
MD5 bd6f4f144ccc8f0bb51c0524ebc73698
BLAKE2b-256 8b7c89e39e508ad4161c1c440501b9e0c70e056a81830f0e86e2d38539400f2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.2.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.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a86330d52442c69a20640d8ea917ede37fbdcef3ab226a57b8f6586c0503790b
MD5 f6ac46c368246c4152cfe43afee07cb6
BLAKE2b-256 d4c87a512e69eb8eaf0b0d3e40b190cf0876ab0ffede78e6b8ea89a3079c3e06

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.2.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.2.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.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b73e7b4b7177b3a779284dcc5a2bfedc1d074e29406b0ebc9e78948c1b54f27b
MD5 b4b0b765bc1a3cdb04652974daad31f6
BLAKE2b-256 e82d47e25ea2e83c37ec631ec9c6f016c72e482b95eda69e3e60a7aa633b3c43

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.2.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.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b5eca230d4e8c8318aa9e03ee8fa40b9bee24968243a9399cf9508727b56b2b
MD5 3f045e37b0acc4468cb0e2ae76ec2f01
BLAKE2b-256 7919c11a587842b5a4354b4c25076c001fcd85765a62205ad21731e13aca6d64

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.2.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.2.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 63cc75cd9749974d58b0ff27cf897e59e1ca996fc13da580d8822018a12b297b
MD5 86e47b9107c84812c6a034bd01499b00
BLAKE2b-256 1bf32b69b54a2ce626302147a6cf170f4133bc6118ddc72667c739c72ef348c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.2.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.2.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0b1b2be0f4d93de8609c0bb0abb69ca8fcdc78bf1851efc4b69b70e831d1dab2
MD5 9c28615cc09e0ef243cf0333a28188c6
BLAKE2b-256 2ac63dd8465341170010d8a3f4eeb85e02212d896150762859d21825e4c36c69

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.2.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.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3315aa8ce6559073840d23a9e3e7b4f5906bd33821f57010b907c339d768ae1a
MD5 381d6819614baa2445e3d8199b1ffc2b
BLAKE2b-256 c0ad4c1d282e9dc31f6e3fd8d0e3b37771c833bed2926fdcd020e385227bc518

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.2.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.2.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.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 17ea915e1d1561d8c8c2a43c1987174e90caa7ca8b2e217e8ee1b84faf004626
MD5 7998865ea48ca29992c993d4f5eea537
BLAKE2b-256 132fe0b987a941b1c49507859e4b3fb985ec6a4ac139b35984ef990f23960e81

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.2.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.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e3bf8a63211dcc4d9bd958a02d1c7a5b30394b6f64d2e605d18f99bc8af1c5c
MD5 48ae9c5cd62032bb9c1576131ae84804
BLAKE2b-256 e88827ad62ee697828c81b711f19999a5e9170c82e5401303e2ac9fedf40d639

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.2.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

This release

2.2.0 This release

22 files

2.1.0

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