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

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.3.0.tar.gz (46.7 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.3.0-py3-none-any.whl (35.4 kB view details)

Uploaded Python 3

cognitive_discovery_system_v2-2.3.0-cp313-cp313-win_amd64.whl (52.3 kB view details)

Uploaded CPython 3.13Windows x86-64

cognitive_discovery_system_v2-2.3.0-cp313-cp313-win32.whl (51.7 kB view details)

Uploaded CPython 3.13Windows x86

cognitive_discovery_system_v2-2.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (64.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-2.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (64.9 kB view details)

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

cognitive_discovery_system_v2-2.3.0-cp313-cp313-macosx_11_0_arm64.whl (47.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cognitive_discovery_system_v2-2.3.0-cp312-cp312-win_amd64.whl (52.3 kB view details)

Uploaded CPython 3.12Windows x86-64

cognitive_discovery_system_v2-2.3.0-cp312-cp312-win32.whl (51.7 kB view details)

Uploaded CPython 3.12Windows x86

cognitive_discovery_system_v2-2.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (64.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-2.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (64.8 kB view details)

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

cognitive_discovery_system_v2-2.3.0-cp312-cp312-macosx_11_0_arm64.whl (47.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cognitive_discovery_system_v2-2.3.0-cp311-cp311-win_amd64.whl (52.3 kB view details)

Uploaded CPython 3.11Windows x86-64

cognitive_discovery_system_v2-2.3.0-cp311-cp311-win32.whl (51.7 kB view details)

Uploaded CPython 3.11Windows x86

cognitive_discovery_system_v2-2.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (64.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-2.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (64.3 kB view details)

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

cognitive_discovery_system_v2-2.3.0-cp311-cp311-macosx_11_0_arm64.whl (47.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cognitive_discovery_system_v2-2.3.0-cp310-cp310-win_amd64.whl (52.3 kB view details)

Uploaded CPython 3.10Windows x86-64

cognitive_discovery_system_v2-2.3.0-cp310-cp310-win32.whl (51.7 kB view details)

Uploaded CPython 3.10Windows x86

cognitive_discovery_system_v2-2.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (64.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-2.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (64.3 kB view details)

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

cognitive_discovery_system_v2-2.3.0-cp310-cp310-macosx_11_0_arm64.whl (47.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.3.0.tar.gz
Algorithm Hash digest
SHA256 838140a7511b8a4d914d5456e0811b988eb0941649fcde56423f0b53b8dfe7cd
MD5 1f627455b8b8ea0f9591beb32b156c92
BLAKE2b-256 62f9bb97b992394b51ee05f108cd51fd9a54a7655ed110bc2c72e1c5b99682dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 52bf6455dc91f5f47e3eb3f165071173b5f73ee2d5bf1b94405c9dffa3a98c52
MD5 ba0ee70dec7c043fff54ff73953f5f12
BLAKE2b-256 d951cad99db01eeebc6c90db5f4f68e1056bd89a8b0f2914ba7adb11b73f6540

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4d9a7ee5e05e920e90b26a52b564b3a3b9f95c2573a85d8d760de9a84b8fa86c
MD5 e79a5c1edaaf78d85ac27b4a1214cddc
BLAKE2b-256 6afb00c4d6699962c79fedd6d979e7866c7ff5c27ea2d00311f877a5c703bfa8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 91aaaa8886343cc093a5841dbdda057f3467d686c8616a78cb4ba4d7fcd33955
MD5 83b7de592787978b131c99ff29218130
BLAKE2b-256 868fe0a32d0300aba21c438f88fec44bdfcd3f48e7ebf44cbd80d1979a2161f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3bc898e8b9f04aca3bc5cfc6187b1fb0684df1b1f71391145090c7665a56a7dd
MD5 115faa7e5379fe6f6f9958cfd54ae05a
BLAKE2b-256 9fb8a88d2b84149071253d1d1a0fb3b3d489ef1d9013ecd68e1a2ea4241959ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.3.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.3.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.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c264ebb9db6333e08e1b815cef86ebadc74d7af1dde8ca8794a18d131d8296b7
MD5 59f6665b2d923e1d6e9dd0ae03d292c3
BLAKE2b-256 360987f421ea39694f5ff0be1e109eec8287363a800906a3a7d59d89ea8c75bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8e2947ebc45b2171891b6352a807afaa8acddeff2f74e800e68d11d0bea2279
MD5 dd911919845de29218fc9e2925431a32
BLAKE2b-256 5c0f338e94594eeae0ebbd934fb4178ff1788c0859e12aa642778b23a9832c49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ee6b70f7ff86c44c2e9bd9ac39953f94c153b492c85d6b7c4c78999b5d1756d6
MD5 9993837b26d1042f8cb2856a1d09d8a3
BLAKE2b-256 aecf8e2305388e74deb8eb1a187d4f5aefd43eff0ebffe91d040f51e7bf5e46b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1848e34828f504bc04a9b1db119449037c2a83afc760885fb2a97ae67ea77be6
MD5 145622a49be5f6459d897015c98022c6
BLAKE2b-256 d130661f839f36f99de56a3dd0ba9ab2f96a863a944c528ed7eb96a988b30f53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d217bab84c50a9919e16e5ec59eb36048d466b62e3dd306ba608174cc401f2d
MD5 b24f790c910a4a588d15d1b28606beb7
BLAKE2b-256 0abc958cb0dc2788f56b99018d94fdb40c201cbb741aeb4d3aa60b2048bc22aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.3.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.3.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.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dfb9ae06846638d9880a4609422eadc2a3786ff7b75d681b6d9e829c7bb722ae
MD5 bebbcc1b9cfb3a39dd763e63383cecdf
BLAKE2b-256 37ede57c01973edcd0ea3b366609c28921cc7fc443dd6cae19baab46a806ab35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3bcba99d9065ecbbe7bec12d6f2e5136f76484581a0509a13ccb252bed2f5525
MD5 d49340b4c614bec5d239cab1689eb717
BLAKE2b-256 8a30a1fa914fed7feb05c9bc609b5a8befc5aae274c228225dc9a25372a067ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7689ba8114ca9286b387ec9b9ad51661ced75acb06611e403e06cb25cf691410
MD5 f0ebf80f5586b4c5e41b62ccb3122b84
BLAKE2b-256 26f796194e816d5d4248f7eb3482b41a9cf5ac7f5ec73a3e2911d55f596a3828

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a1f84062d102ad2e2e722c8705f1a3dcd7a684cdea0274a95fd5325440e1865a
MD5 5ea34d6b92f2d72c6545968f123aca01
BLAKE2b-256 e5517a94234ee2c4549212b012118a7f4871d654d29568ce08c6aaa515141a06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5eb9dbb689e6e09a244a565e4522b2461ed78c082a37cdc0c791f03a3ce05607
MD5 9f10ffda9e5ac0c8218df910ba181729
BLAKE2b-256 de4b385bf285ef185108145d157c681ba116f5077e0606f1184ef68132ebb6b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.3.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.3.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.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cca4d3f7ceaf522164ed49575c4304916648209dc5bffbb83b9c1c59bf9855cf
MD5 62379615500d2417cfcbe7aabe498613
BLAKE2b-256 6fb07865b37fa8bc6eb3d7edff26704fa0f7eba3330286b5e4a808db97f0c522

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a13ff0a2f31c093cd1c7997358d82c600413eb1a92d7b2bf7e6ac376f5366fd
MD5 bffa1fd1ae90b02aa0533fab8921d81a
BLAKE2b-256 08e45a2d29d82854f169e8e1e2a33dfcb607cd63b36271596a605b84a71675c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fd0cc94c481320c0a226aceaaa4b2bcafc2df55e934a3f34f7d514cce79571bc
MD5 c41c881eaa2dd70dd675d5bc54b9ee91
BLAKE2b-256 ca484fd7d6be9df439caca3426735bbd65322a932dfa077829ca8095b1e9d12f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3a0ca35615d1933b995ddcea3afdeef90266d772bcec8fe06df56532986cc858
MD5 b3abd533cede93d84c9bd2e41cab41bb
BLAKE2b-256 bd80ee69ae2930aeb78c232b30a13f70809aaa39d2635b06c2fe2faa53a8a349

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a7678916e46647541fe36842584afdfe3d8421cc336b29a1d85a4c2e5d3b956
MD5 72202b0ebdd5322798219f8d70b511b0
BLAKE2b-256 68b3a12e0d6bbeea6bd003c76c4e49ee451c8978fd8fc0a0c5895b7137b8b030

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-2.3.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.3.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.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d312cf44a7294e2a31b26d324314945e79a05d8a2a2d53f2cfa2695650f0294f
MD5 c4a0ba338e0006e0c621f3e9c3cbb64f
BLAKE2b-256 d4b64537c93fd80559d2b5bb02f3df6fdf07910f8cb814cf72347051b4d2d8bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-2.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23909cd1e2a568570430ff968e9f8dcd128bbbb480bc99755b143ebf32ff73a3
MD5 1fd7900fa3c9f737be532dadc275f7ba
BLAKE2b-256 69255736d797d80a59dc585c84c90ef1b5af29d5752440561af891a3f9dda56b

See more details on using hashes here.

Provenance

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

This release

2.3.0 This release

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