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
cds2.calculus NumPy derivative, complex-step gradient, jacobian, hessian
cds2.special scipy.special gamma, erf family, beta, Bessels, zeta
cds2.sparse scipy.sparse.linalg CG/GMRES/BiCGSTAB solvers, Lanczos eigenpairs, truncated SVD
cds2.spectral scipy.sparse Laplacians, Fiedler vector, algebraic connectivity, spectral clustering

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.5.1.tar.gz (59.6 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.5.1-py3-none-any.whl (40.9 kB view details)

Uploaded Python 3

cognitive_discovery_system_v2-2.5.1-cp313-cp313-win_amd64.whl (57.8 kB view details)

Uploaded CPython 3.13Windows x86-64

cognitive_discovery_system_v2-2.5.1-cp313-cp313-win32.whl (57.2 kB view details)

Uploaded CPython 3.13Windows x86

cognitive_discovery_system_v2-2.5.1-cp313-cp313-musllinux_1_2_x86_64.whl (70.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-2.5.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (70.4 kB view details)

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

cognitive_discovery_system_v2-2.5.1-cp313-cp313-macosx_11_0_arm64.whl (52.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cognitive_discovery_system_v2-2.5.1-cp312-cp312-win_amd64.whl (57.8 kB view details)

Uploaded CPython 3.12Windows x86-64

cognitive_discovery_system_v2-2.5.1-cp312-cp312-win32.whl (57.2 kB view details)

Uploaded CPython 3.12Windows x86

cognitive_discovery_system_v2-2.5.1-cp312-cp312-musllinux_1_2_x86_64.whl (70.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-2.5.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (70.3 kB view details)

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

cognitive_discovery_system_v2-2.5.1-cp312-cp312-macosx_11_0_arm64.whl (52.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cognitive_discovery_system_v2-2.5.1-cp311-cp311-win_amd64.whl (57.8 kB view details)

Uploaded CPython 3.11Windows x86-64

cognitive_discovery_system_v2-2.5.1-cp311-cp311-win32.whl (57.2 kB view details)

Uploaded CPython 3.11Windows x86

cognitive_discovery_system_v2-2.5.1-cp311-cp311-musllinux_1_2_x86_64.whl (69.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-2.5.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (69.8 kB view details)

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

cognitive_discovery_system_v2-2.5.1-cp311-cp311-macosx_11_0_arm64.whl (52.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cognitive_discovery_system_v2-2.5.1-cp310-cp310-win_amd64.whl (57.8 kB view details)

Uploaded CPython 3.10Windows x86-64

cognitive_discovery_system_v2-2.5.1-cp310-cp310-win32.whl (57.2 kB view details)

Uploaded CPython 3.10Windows x86

cognitive_discovery_system_v2-2.5.1-cp310-cp310-musllinux_1_2_x86_64.whl (69.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-2.5.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (69.8 kB view details)

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

cognitive_discovery_system_v2-2.5.1-cp310-cp310-macosx_11_0_arm64.whl (52.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.1.tar.gz
Algorithm Hash digest
SHA256 734cef5552ef6db8348ce48e027282e9bae4ea9314dc5d9bce78ee67cbbfa37b
MD5 2bafcc72377059420d20529c9d0db19b
BLAKE2b-256 7d1fa9a8ee54dd0f4c7ac2154517202b7611f299a4fe446da8c2ac411331bf5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.1-py3-none-any.whl
Algorithm Hash digest
SHA256 acade0417c331ddedd1440a7f437e92e713caa265aca260a8fc9f866c2292c2e
MD5 b7aad69e8f0c03ab64fbd174ce25d6b4
BLAKE2b-256 c17be3c8c0e1fe3f7368a76428fb8f60fcab2ff357b1f78d033097cb44ba604d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e1754e1d10f3706dea08b4ba91ce2ed71ce5da72c6fd100a115e46ae1abc8c75
MD5 59e7fc29a721dcd29ab37f89576f4a59
BLAKE2b-256 22d3a327b1a88ae534bd7b3cdd1e8e3350fcbea0bab64790d900d69fc61bfc89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 be5458f31f05a48b9cf6b3a632e08490114adaefa80160082e70a741482ffcdb
MD5 0189b53c6f26fda74ec29abfe430f307
BLAKE2b-256 ab5c3db4af430ed841acaf916a07a46b4ba51cfd6bbe1093c40edde9edb88e18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47928bc1001a77afcad2a7510f3347e361e4d5cdd1d44ac5ac3e2ad4ec8c4e8f
MD5 5b97487c8d00f6e7df5127f751e23f81
BLAKE2b-256 846865636f396eeec2ffd733c76ff2911595f19c1746de1eb60819167fee45db

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.5.1-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.5.1-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.5.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9c7360b536aacd954fccba8c0ff4dfc00e89c580ed4a9464738051e6d6be90f0
MD5 9a27512f8ccd6b699e5182bb6dba659c
BLAKE2b-256 286b90bbd05a21f349a2c2f95580927bce2eff95f2f3633d739833740a1916c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2ebad773715deb621d9934a67a558ca614131c6104e9759dbf5632596b2c12a
MD5 54ecf1ba1934f89b998b53b21a4867d5
BLAKE2b-256 196ed2f9700f25c39927f01657e1fcd3bd15715ac716a269053588bb34a0a6d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ea378b0cfd851d54eade139b722267870aa2dbb98fa04b08de7a5b1b0c240274
MD5 8de774fe8cb423666496d1c24ca7c9cc
BLAKE2b-256 49c0900962a12b3a48bb9f7cde5c28dee5119a0c97baa2e17c5ec4c313e12a1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3a1d936b43e88e6b5bc3eb014af057de1354456e0743ce5a1b8bd1cc8449549b
MD5 3e31b4191b26ca2e416b047967d9e47f
BLAKE2b-256 f35c5df9ee450a10b196e39d92d27d923c3171ba73fd328ab1ea8403bcae5e7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ff85c0194eaefc511d005c153ff456e2155c068c0177462697d48ca6a5f4402
MD5 c68b8eefa0d20771860d36795e46aec2
BLAKE2b-256 6e9e6a2e6fe331d0c4081ab95c6d4149a3299a37970782cf8b5ab9d21fb1b645

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.5.1-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.5.1-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.5.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cdf766fd99f7b78e9d9673837f9fe4c35870ca855481b8cb7acea38e78198725
MD5 fbde01f54b41019d01fc5fed0d2bc452
BLAKE2b-256 81daa89bb8b1d59286bd437369c3687d0aaeb716d46de9009fc30af4a6c45ae2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79c88fa8ae6d64572138ee0caaa346bdfdff8fddf80316b218699b83fd0fd833
MD5 22243a44b6f3d3a2d11b0dd086be9648
BLAKE2b-256 ff9b1133745131acaee6d27f79a5f695de0b72b4695805c3e97607155769a850

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a0d04e1ff3fe5cee3a138a158083f6dbcbde5f6aac6dc01f45638053f077c666
MD5 f081e6c29c602b6638d349d1f1f0e384
BLAKE2b-256 8e1646922b914714ca742b3f57c5d96e5f2b8a5b77d283753cb813d4a88832b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 21ce4e0729dd5d9c939d79b8e39ce26d2d740e8816c3a970d644ec23ff614e05
MD5 fdf0a53fefde22df3f91fd249e892c61
BLAKE2b-256 7c9f16394d2ed63627501b4bc01056294586e9f95d33866535e714419ba540d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7119c269004663c94030c5543464476629c3f6a4754d8afc11771041e61da649
MD5 4fb57a65ff5960b03e49bec21533b820
BLAKE2b-256 35fbe37dfe7c3ca94f13c9230ea5e6ae9f8ddd4ec1a8343a3ef29566dafbb675

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.5.1-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.5.1-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.5.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 45685da08a5dc438f402b72de71e8752de6153d193c27ce6ccdd9a863896a153
MD5 f821af7fe60682754f65911ce67ce021
BLAKE2b-256 bfce93dcd26e9e7970242cf48c771a4ed62de72950b4c7470b71248b2ebb05a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de75ef4b0717ab3015c1f8aadbb0167f18fd0708928570926154ddf0353f6ba5
MD5 970a0ce9ee576a9ad4d7f61d2df555b4
BLAKE2b-256 77082ecbb8b3f558d0cfec0139701ff1d2461f8b6c1f39a86dd4c68f79e65a08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 54db20b81cf044350fc2639a80c1916ebe661e68ff205f5eea6ef9e8c59cf69b
MD5 319879d4f249d6e03c23f634a4481b05
BLAKE2b-256 4eadbd4a4457753c9bfbeddbc64905dd476b4abd765c7effb257e5b21629189e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bdcca68926f9444daa41c1f3a5787dd1ac79c75f18eda456f8abb167447047e8
MD5 9964cdb986b1598ae88669e52e3fc1ac
BLAKE2b-256 2a83ff8907dd3c9452b3f56fefae87cf977763129583eade0173470967fd791d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39398686d9a903ef28af16def507cf9dffe1c40d6f495fb914ebcdd7ab139528
MD5 df4daed438dc1f89b85af03872956ba2
BLAKE2b-256 470e910ae3247ba1120e331afef2a4d11a8c7339173b569f5ddd3fba7a2acbe0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.5.1-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.5.1-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.5.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 617836814af3d670c3a37907f8908443a76eea918c2ecd3e7744455e40878a93
MD5 81f39ba653d27e81233c34c38f9bc31e
BLAKE2b-256 3f529c6dd26b6e85accebfa321afd38f0c357c83d7d69024aec118f5e41e6a39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03331c51f0bd0a454ae2d8f85b1e52006c8f8c63d89d7ebfe5aa9db12b826b19
MD5 0478b80847ec32a219e5e009572c714f
BLAKE2b-256 54de12d33e7354a7eca11ca6f01e7a16f00ed0e64e294fc1d3eeb111a7d36a9a

See more details on using hashes here.

Provenance

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

This release

2.5.1 This release

22 files

2.5.0

22 files

2.4.0

22 files

2.3.0

22 files

2.2.0

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