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.distributions scipy.stats t, chi2, F, exponential, uniform, lognormal, poisson, binomial (pdf/cdf/ppf)
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.

Runnable case studies live in examples/ - see the docs page for details.

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.6.0.tar.gz (63.0 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.6.0-py3-none-any.whl (43.1 kB view details)

Uploaded Python 3

cognitive_discovery_system_v2-2.6.0-cp313-cp313-win_amd64.whl (60.0 kB view details)

Uploaded CPython 3.13Windows x86-64

cognitive_discovery_system_v2-2.6.0-cp313-cp313-win32.whl (59.4 kB view details)

Uploaded CPython 3.13Windows x86

cognitive_discovery_system_v2-2.6.0-cp313-cp313-musllinux_1_2_x86_64.whl (72.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-2.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (72.6 kB view details)

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

cognitive_discovery_system_v2-2.6.0-cp313-cp313-macosx_11_0_arm64.whl (54.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cognitive_discovery_system_v2-2.6.0-cp312-cp312-win_amd64.whl (60.0 kB view details)

Uploaded CPython 3.12Windows x86-64

cognitive_discovery_system_v2-2.6.0-cp312-cp312-win32.whl (59.4 kB view details)

Uploaded CPython 3.12Windows x86

cognitive_discovery_system_v2-2.6.0-cp312-cp312-musllinux_1_2_x86_64.whl (72.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-2.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (72.5 kB view details)

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

cognitive_discovery_system_v2-2.6.0-cp312-cp312-macosx_11_0_arm64.whl (54.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cognitive_discovery_system_v2-2.6.0-cp311-cp311-win_amd64.whl (60.0 kB view details)

Uploaded CPython 3.11Windows x86-64

cognitive_discovery_system_v2-2.6.0-cp311-cp311-win32.whl (59.4 kB view details)

Uploaded CPython 3.11Windows x86

cognitive_discovery_system_v2-2.6.0-cp311-cp311-musllinux_1_2_x86_64.whl (71.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-2.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (72.0 kB view details)

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

cognitive_discovery_system_v2-2.6.0-cp311-cp311-macosx_11_0_arm64.whl (54.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cognitive_discovery_system_v2-2.6.0-cp310-cp310-win_amd64.whl (60.0 kB view details)

Uploaded CPython 3.10Windows x86-64

cognitive_discovery_system_v2-2.6.0-cp310-cp310-win32.whl (59.4 kB view details)

Uploaded CPython 3.10Windows x86

cognitive_discovery_system_v2-2.6.0-cp310-cp310-musllinux_1_2_x86_64.whl (71.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-2.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (71.9 kB view details)

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

cognitive_discovery_system_v2-2.6.0-cp310-cp310-macosx_11_0_arm64.whl (54.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.6.0.tar.gz
Algorithm Hash digest
SHA256 c7e4f258963c61823a773fb817e026c1afa0a443eee9fe66dffb13b5018c9729
MD5 b4f09ccf50d6faca2ad8080eb95d4102
BLAKE2b-256 e0ccbcfc157ea8c0e6a74fc271e84fe1c42d10c81a3d08f15ce0ea893ddc6662

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 6c873c5ec84f7233ff98093933e5f6bcfcded46b5bab0ed0cc7f95b9ad49cc4e
MD5 77c27c1a2ff523c762d857b359e62de5
BLAKE2b-256 f8ac3654148063824411a52f4169362f5c4fc5e1ef57d6cfa46d48963b737cef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fffb5f0a8dbe986c019baafe19fe2e24d81f55d56c0cb80c9992157ad3654b42
MD5 085b44b275a2b2f707aa1076a82dd5ef
BLAKE2b-256 342e0931f23ed0192712f33951682de06e658c4ea2aae5ae3e6c2dc952e1b274

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.6.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e81225612f75c91d8ed8bcf26cad9d7818d53f074c7b3397ac4cadbc496571d9
MD5 5587d49ed2086ad9762a0fbebf66832a
BLAKE2b-256 bb027280af8eea86a91a0756a78256e03035d27c7b012fcbcc40a82ae0236fb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a88889144d05b6c125a6de6014fcb611825311c310c65eeddb15c942192fe67
MD5 060a4cdeb42b1c700f4abc3ffecb3a25
BLAKE2b-256 4520ae0546bbadcd0a12779a6da0cfbf6060ea8182180384e6b249dd9bd686be

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.6.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.6.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.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 55c044fe73152904b2d776e9666a381c83274396c8af3b16721418e086c850f4
MD5 d96e7de97bf976aae536c418645d78b9
BLAKE2b-256 fc115516b70f4a53febdd7a1bcc4bacbc519fb3e318f56ebfee47e17cb75825f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26fbdb182c505f2fe2258f53935393ca5ddcd07359d83ea9fd9221cd9d5e0e7c
MD5 f5fc752ba5076066764aa42880418837
BLAKE2b-256 d72a4c5e6d69ccfacee245c744c99429654e860369d9ec5c93982ff7c467c071

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 73b1987380edd2a7c7bb9a54aaf445448d998b5cbcedb0ba178b46e14f63473d
MD5 c53191f15361eac54db099bd6a80fcfc
BLAKE2b-256 d904d6876d59d1c2dc8b1c80e37c08fe3998932b9def52bd75a7faee4c855759

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.6.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 95e435f9933de67b2e497b99b29e7609c765bdf32338a6894d5c0b31dce52878
MD5 99e19cf8010be565fcc9b4e98fa266d9
BLAKE2b-256 4f06400514d9fb3451c97f5aee81fdcbf0c12e757effc39dea8ac2b18c693ecc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e08c9f6a09a50eb0ae252f8c4b7097ced4655ddf41d21ba08b83f2d4b6e745af
MD5 353381fc1857ab950098f8ad541ca660
BLAKE2b-256 9a5c1d62f20e7acac38e4965c961acc8d83ff270369e778ec733a4f1720b93db

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.6.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.6.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.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6da1f3e9a86593bfd9ef6e7265d9eca544514d81e366efbcacda1968f69520a0
MD5 73a1e72f1e2465332ed2b7df0650a77c
BLAKE2b-256 9cec139db8106fa2d9e7b460b6678c61f50fef31e7951d5374b86ac1ca444765

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2b5ad9e29717e5232b2f1aaf6c6735d3edce8135f2724f2067436f65a252208
MD5 0f4e2b4bcfcc99d85ca72cc06208aace
BLAKE2b-256 f710a390230aaa12aeae845cfcd3e01f4bb87c29816675f4de769c4790f884b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b9c22ef71e3846112646cccd43aa1b3322e5fe4505cafa449e7cbf7ea229b9fb
MD5 9dd410d7543b2e1d3d49e3d0e33f6bc8
BLAKE2b-256 f20858092ac5ad4644e10af1e3d3b00cefb1d1cfa208c3de7515233704862bdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.6.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 54cac5f891f14244208050c49a4b24961b31e931ffdb4915de71f49cb14dd3e5
MD5 48e5e9887e5e42d539f1a92fff69d271
BLAKE2b-256 b86d3122fb8057c91a38e5037ade709b04b55804273807c6a1d348074420898d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b22992ccb0cfba3421d992117dc035e809df353ab03eb24416d6ae5924acc63b
MD5 2f1859ffd985131da5500bce8adc5519
BLAKE2b-256 6893699804a8dbb1c1040574dddf4d9301f845bfe7405d1ad8ce9fb86d505fee

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.6.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.6.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.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 40916fe5e2d750e4a87eb39dd8a92d46a7c86d4f38fdb907128d9ffb2605d565
MD5 cdeb9f8b8cebc2ea526bb500d1093bac
BLAKE2b-256 7e2c57dbc876b804fc7a0231c213dbd51a57abb763d130403eeeb3c53e87f30d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b95a6023de15cf23f4308653192cbe5a91ce3405bf509842483e98758a8ffe0d
MD5 5c228943be87086d4447335de2dffb26
BLAKE2b-256 8bcde9159f06bb1360b7969c12fc8f1a7d0883807eeb17a71e6a5fbb4d1e704a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 24397fba49fd0d55f4bfd26334d31e7638747c2d2a99f73edda251b0cc738958
MD5 212bccbdf492273ef4d7f4cf0ddea4b7
BLAKE2b-256 da4001c8819116a800692c6a40f8f5c6c7e73659547ded9e218a456e0d25f60f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.6.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5beb8ee214458a3c1c777b21b53469fc50cd9db4b546ed830266d631ca10c02f
MD5 4f7378bfef5517a9c763f2fcfc9feb76
BLAKE2b-256 cd981713d2286595d52be655712e835617b8a0785b80b38e698970da12c26485

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.6.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c12b8f99367b927dc57daf163284214f5a3cb9756099dc3c9dcf3ce2f0b065b
MD5 011f2bd5aac4be6d36127eceb60e85d1
BLAKE2b-256 33bc84f01cf58f705169bbec569412104329dc4dac92dbed0a662d63550901ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.6.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.6.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.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7af09ea0280aafe7cdd2eed85f5ac6b89dd45428f455c5e44af6762c2970668c
MD5 0b6c37e8adf3ee9de9e624a1264481b5
BLAKE2b-256 af04a0a766be886bef6aa09b4518152102487a1e8ffa2dfe6ab76b5fc4041791

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e81448242d8db01232dda1740dbeefd3b00c2f81efa6428246f2614015995fb
MD5 57ab75f65e13bdd509343a2d98f2f75e
BLAKE2b-256 1e2801023daee7cfea57fcdbb10288b88b508cccf168eee6f4e80fddf9f0eafb

See more details on using hashes here.

Provenance

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

This release

2.6.0 This release

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

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