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.0.tar.gz (54.3 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.0-py3-none-any.whl (40.5 kB view details)

Uploaded Python 3

cognitive_discovery_system_v2-2.5.0-cp313-cp313-win_amd64.whl (57.5 kB view details)

Uploaded CPython 3.13Windows x86-64

cognitive_discovery_system_v2-2.5.0-cp313-cp313-win32.whl (56.8 kB view details)

Uploaded CPython 3.13Windows x86

cognitive_discovery_system_v2-2.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (69.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-2.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (70.0 kB view details)

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

cognitive_discovery_system_v2-2.5.0-cp313-cp313-macosx_11_0_arm64.whl (52.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cognitive_discovery_system_v2-2.5.0-cp312-cp312-win_amd64.whl (57.5 kB view details)

Uploaded CPython 3.12Windows x86-64

cognitive_discovery_system_v2-2.5.0-cp312-cp312-win32.whl (56.8 kB view details)

Uploaded CPython 3.12Windows x86

cognitive_discovery_system_v2-2.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (69.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-2.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (69.9 kB view details)

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

cognitive_discovery_system_v2-2.5.0-cp312-cp312-macosx_11_0_arm64.whl (52.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cognitive_discovery_system_v2-2.5.0-cp311-cp311-win_amd64.whl (57.5 kB view details)

Uploaded CPython 3.11Windows x86-64

cognitive_discovery_system_v2-2.5.0-cp311-cp311-win32.whl (56.8 kB view details)

Uploaded CPython 3.11Windows x86

cognitive_discovery_system_v2-2.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (69.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-2.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (69.4 kB view details)

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

cognitive_discovery_system_v2-2.5.0-cp311-cp311-macosx_11_0_arm64.whl (52.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cognitive_discovery_system_v2-2.5.0-cp310-cp310-win_amd64.whl (57.5 kB view details)

Uploaded CPython 3.10Windows x86-64

cognitive_discovery_system_v2-2.5.0-cp310-cp310-win32.whl (56.8 kB view details)

Uploaded CPython 3.10Windows x86

cognitive_discovery_system_v2-2.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (69.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-2.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (69.4 kB view details)

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

cognitive_discovery_system_v2-2.5.0-cp310-cp310-macosx_11_0_arm64.whl (52.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.0.tar.gz
Algorithm Hash digest
SHA256 08404278a5bbba7d4a297e6781af38195c6dc81cf018b5e245f7a8cf7ad0074c
MD5 4da976965fb25d10a51089cdaef6d0c3
BLAKE2b-256 5cb007b2ea6af25e1b17b684eebd1b85322e29e18443fc76b6aa9d671cb2d14a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 30c9e871ccc97ec81d5bfc071033bd0a53fef2c7f112a5cccde766dd78bdf2e4
MD5 ce0877cfa384995614d461177c1a5ea0
BLAKE2b-256 661b5f505a29fbb91a0414b45550a1393bd8d3d8f3fd5f20b9d5aa6bbcb6efd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1d3dff3ac6618c07f6ea2150f004d77130303c7889249806c03c0f4509e9c421
MD5 8306dc17ca63b7f75a0dbf4da8f55bb1
BLAKE2b-256 31d1968c1eb764d31d74bb88ec7abf1617c4486a0af0d782bee1a41baebba472

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d35e2b8ce87565d4d106e42166b9d40ce87b106b9d9c56e2df98324cbcf03629
MD5 c525bb3940747828cdd2f482fe12d732
BLAKE2b-256 23cfb5d0536fab9c9f6ab46cb33d46de4e09c22e2001e9a798e6127550ae25f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93b2f64e1b301db87d58b35660174c5c242c51ae95adb7de785ac95e0246dac4
MD5 60014595dd418f486a27ad1b3383262b
BLAKE2b-256 91343660224dbab91fd29220cecef3214e6207bac708c9c1a77667836a91f1b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.5.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.5.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.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 41540fee0a97057a29fbb5d2dfbca1bc87db0b3e8539c2cbbc827abdb68b30aa
MD5 8d8cd699d75e2453a3526cf5fe417127
BLAKE2b-256 aeca747ce495c094adc70881bbd676d2f63af504a62ad002cd9abeaf24c9bcec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76f33b6167d882396450253b2e152342662cad773c70db76fe4f76c9f346972b
MD5 656525c95fac31d418c67eae76d6287c
BLAKE2b-256 3e2bda27ef30e5c58cae85ec5adfc0ddfaffa5d6a23b68a5c26ef816ce260a1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7a3139f242b0718d5f4d903737f09f65bb50ac4fcbea8e4ea83a214697c691ff
MD5 eb1ec96267614bf1e171fd1b013a239b
BLAKE2b-256 48fc0dc560e3c2dced2676e334564bc107c219563ef87de7d5ea3e75db2d5894

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7a73925d9e9e5ebf62c6c35f093fa75a986b454e99e3d8d20f28dbf82dfddc9f
MD5 85eebaba517d8414382c7f47989e0828
BLAKE2b-256 ef559bf47a9b7ad068bf0da6d2c90534cb434fd03ac118f1e509dfd75d3d544e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0570659a2a1998962cf249031c4e3eb815540fcb96a6fd5477f31cadf273f1d8
MD5 fd3f9a497c13b3942811e40d4ed77955
BLAKE2b-256 b21c5750ee9fbef95bb84d1c47f584689d9ce3b82c414ebc30b9f0f1328ed52c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.5.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.5.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.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 85064e434a40e14cdd1b90d9e126c45d464eaab7a298e6593586560193f9028a
MD5 52176e8c5666cc5a871bfa6db64cd4e4
BLAKE2b-256 d9cef635537621cd8ed9c48fe3737d8e09b1451046aecad8be8204dfbe9cf1e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e3f65f82971f745b674944151360ea7fee70bc026a36cc87c34200fd09355a6
MD5 28a6058d344e7bf39a9c515c5bb9c4f9
BLAKE2b-256 c79e3ccfbebf82c497ce92864fbbe13cc35dc4d3a7f628da680535e3dd0adaf9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ad73e8c3cbd6cf2cdcc105590328f35ff20f25522ddd941dc7ae606fd9af3120
MD5 296f8a29307a1c31e515bac41413ee91
BLAKE2b-256 cd93d615042335d0cf5fe291ceda9bf708b2adc88dc44e4e2cbf837a1159029e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 546c22bf03117c0778606c39c1b3e2c4c9cff19749a1305c00d07e77b38d95b7
MD5 86c23c3c309092cd320a3479b3e5ae55
BLAKE2b-256 fef7dbf1872a74005eb18be7438f876ab45d54451c1c7c935d296212653372e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 201b08941d3e94460dc87aa05bfa89718d66ba3908b10d7bdb4d2a7af9bb90fb
MD5 9f07433d12c9ed67e167509b3cf9bc07
BLAKE2b-256 746d53f1fa1434e932df05fb13c2e274dc7fc345da0abaf9ca324799ebcb3d04

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.5.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.5.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.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9efa047f6994d88dab29d649545fba89371095f235f335fcc21605e16a26c1fc
MD5 7e88bee6ee60557311b12a49c3b378a0
BLAKE2b-256 19a0294025d8c522029f66c77e37f4dd8a29e7936cbf5bb2902d527471dfcfe0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41c0b5e302783a2b1c57dddfeb72e105d3623f69f216ee04d886c7a2302e3ebd
MD5 e4f196a67fc1874ea29b8475401afab7
BLAKE2b-256 59fc551258bf8873f17eb010be015ffb285675711eb23139b86a7c01ec7a2b77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b90a947e92aad74a64b2a60d11bc4febcc2b9c9c12eeeb023b7e594028163e81
MD5 857590b91e655997c2bac950c93172d3
BLAKE2b-256 8df9703c0cefacd5de7ff4cbb735b159ade7b9655c19a8e51b5296cfdb9be95d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 223e5f48298d064eb27d14af9f1c460ecc5516f16969b42ae71aafde57a54519
MD5 3d161e78f6d5457b298fbbcf14774f07
BLAKE2b-256 b6dafa385e82f294e0c75fbb6424528e624e9b1336ba8231881a997bf632e51f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 881ca901d397a1ea2804717ee3870e364d68fcd8b8daccb32709db17564e332c
MD5 f2d7158bf1e9c5c9c53d8c9c5d51ee2f
BLAKE2b-256 576759e52cf95d8f7d01498585e652205a571774b733462ce5a668a2edbce87a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.5.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.5.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.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 492294e8bfba4d8f4bc759e88d74aa53865d8a3d76e965eb4677b7bdecae2dcd
MD5 af46c2941c28997bdc2add8dc63bacdb
BLAKE2b-256 43ffef661f3a8205ec25bdc75e0e97ff440a41e219e74757217d8d934769dd15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c68d63813de3ebac84bc0981fe4b55381d694b1c0fb7112c2dede086648e9afe
MD5 ed55698a907f77d090382d807fd5f9fe
BLAKE2b-256 7d5b7c8480323f5db1b07d261b426ef52ec0bdd57dc93221a3afa3482fee3ad8

See more details on using hashes here.

Provenance

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

This release

2.5.0 This release

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