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-3.0.0.tar.gz (68.4 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-3.0.0-py3-none-any.whl (46.1 kB view details)

Uploaded Python 3

cognitive_discovery_system_v2-3.0.0-cp313-cp313-win_amd64.whl (63.1 kB view details)

Uploaded CPython 3.13Windows x86-64

cognitive_discovery_system_v2-3.0.0-cp313-cp313-win32.whl (62.4 kB view details)

Uploaded CPython 3.13Windows x86

cognitive_discovery_system_v2-3.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (75.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-3.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (75.6 kB view details)

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

cognitive_discovery_system_v2-3.0.0-cp313-cp313-macosx_11_0_arm64.whl (57.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cognitive_discovery_system_v2-3.0.0-cp312-cp312-win_amd64.whl (63.0 kB view details)

Uploaded CPython 3.12Windows x86-64

cognitive_discovery_system_v2-3.0.0-cp312-cp312-win32.whl (62.4 kB view details)

Uploaded CPython 3.12Windows x86

cognitive_discovery_system_v2-3.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (75.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-3.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (75.5 kB view details)

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

cognitive_discovery_system_v2-3.0.0-cp312-cp312-macosx_11_0_arm64.whl (57.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cognitive_discovery_system_v2-3.0.0-cp311-cp311-win_amd64.whl (63.0 kB view details)

Uploaded CPython 3.11Windows x86-64

cognitive_discovery_system_v2-3.0.0-cp311-cp311-win32.whl (62.4 kB view details)

Uploaded CPython 3.11Windows x86

cognitive_discovery_system_v2-3.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (74.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-3.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (74.9 kB view details)

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

cognitive_discovery_system_v2-3.0.0-cp311-cp311-macosx_11_0_arm64.whl (57.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cognitive_discovery_system_v2-3.0.0-cp310-cp310-win_amd64.whl (63.0 kB view details)

Uploaded CPython 3.10Windows x86-64

cognitive_discovery_system_v2-3.0.0-cp310-cp310-win32.whl (62.4 kB view details)

Uploaded CPython 3.10Windows x86

cognitive_discovery_system_v2-3.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (74.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-3.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (74.9 kB view details)

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

cognitive_discovery_system_v2-3.0.0-cp310-cp310-macosx_11_0_arm64.whl (57.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.0.0.tar.gz
Algorithm Hash digest
SHA256 02dc1831a175dd77194a8fdbcfa1b1818570f1076dd252b49e55a968cc5e2a6b
MD5 7eeb4e93ad560fbfbaac4ebd00769bbd
BLAKE2b-256 7f96c79b2a430de2e6cb33d7f96d0b09e5c91ac30fde71cc7dd3a3d9e75e75f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 32e7223cb62a6cd4d8aa381eb107a983a895f2137e3ef2f6d3108dbc77bf3d97
MD5 388daf32a711cd7b4540debb3007201c
BLAKE2b-256 e50d5d02bd98579bf61baa5bd5e6f5a8ed5d1b4ecfd4f8f46065a8de7581da7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 75f90c19df7578b64f9726b35cc03e0077f1cb1d0a9c2e7436fccd4406d33288
MD5 3d06c2ae53f1c35b70173596ffdf30af
BLAKE2b-256 9a7b0d71a9afa84cc3dcd41a4d7eb3cdba83cc7a2a467c3d0027d6463dbacab1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 22841b8ba517837baf4b9a0cecb7adda59c55396e742f5d4eb96e31aa20c9646
MD5 3a161da427549f8eebb1b8c806d5cac0
BLAKE2b-256 0906dfc15c4ae43b72e5b932b4548da433672144483ad0e0551279bcecb89d05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f3ef9e7596ccdc857ed9d847c0578f4c500c36fe1d8cea6efcdc0fe090c5052
MD5 fe9505342bc0dd49bae8ef3ba9839199
BLAKE2b-256 5f74dcef70cf894fcfa1b24bde0f076eba60c4a4ac689631342c09831dc02c25

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.0.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-3.0.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-3.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a18fec952e0069e5a0fbec3c792e958eb7e38a5fae7ad4578f7e70a10d065d89
MD5 b08322bb42f4d5cb59c18f1ab9812296
BLAKE2b-256 27cd26f8aeb5a9bbc4ec227b4a477b8279677967ba73eaa45b30a0a767576cd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ffbfe53240aaed8a2ba129cc7961f0a4d05b880d09381293c7ffba1d37c13a81
MD5 d6927aa969916db7737059a7caac2119
BLAKE2b-256 416ca44fa263395c7a6209914ad10691bcf4f7df12a4a1e390601d471e40335b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b080757d6be9770bf74f2f222d181360d287f15886dda2b5518c9f611fef6f50
MD5 e373dd7c1e6b8a9fe55656f2f4aa78eb
BLAKE2b-256 0199d5ef067fa64cdc490fd001bc82c8792579954600ba42f7b1cb8261f0fd0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5ed82afd0c08a862eb8914cc430c5d77a5142b8fe3e3207c5816f812150d0a8b
MD5 f7e6256933e41809382145050987e2eb
BLAKE2b-256 fdeb3f3cfc2310f4efbfa01ae632b1f8c37988780fa037d09b93c0874fd5c865

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87e4e947210d738eefa5fde1bb2e521cb2975c6fdeb1c21d3b2d68e49783206f
MD5 0b7d4d11385d0a2fc2e7142a4309e3f8
BLAKE2b-256 a901524a8571a42e95a6a42d4eca25d518958ee11f40e39579fd281d326fb3d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.0.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-3.0.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-3.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f202f7f5f620fd267f9ae9184920fb5c2ed08d0331be7906ab5b14c2b62eafd
MD5 d38b445fff24d23686912912165d56ba
BLAKE2b-256 8789e157e646a74ea49d1d08de0e549b24d11674aac56f17be9397cbec86112d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c50a974273f8c7f5be50014ce68dcbc6fe6aacb0f7019bd5c2621017513e2e0
MD5 9c7f107a23b41d36c3722b03fda9febe
BLAKE2b-256 65bcc35ca2ef5494c8b00234b8c0f152f88ceed7992225e8e8844529cb0852c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f39ad9dba1d10cdcaa367c3e69a8fd64191fd40978233f12e4826dd0a399a1a7
MD5 b990a7359d3b24b12cd8491a12cd0def
BLAKE2b-256 6c34eb20f83ca90daa4a063ce919eeeaac501e04b196b0e657808c2ea5ca6c3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fcdd888f00b6786ed85337c2f35093655e9d2d840a5cb8ec7bd7bcc74c4bf94f
MD5 9a94a96446867b762b446f63e4634ebd
BLAKE2b-256 124c9ee00b9eb7ff452f5580093d51f63e7c6c0192bbc43e708462b9d5eeaec4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47ffe8b2ccdc743e546dbb829b9320a8f44fa12903c9a1e3ae4adfede2de7e60
MD5 16fd3e609c39f019edbabef91cc09f39
BLAKE2b-256 85cee5ed11d61c0f5d0ff48a3defd5402b66476b1627f5e512c4c3337813bc74

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.0.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-3.0.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-3.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3b7d754d52dcde35216c00f52fa09eead92ebde16ba50e4fb3f99b98edfbed17
MD5 91959e2f096db90534d436e2c6c057c8
BLAKE2b-256 55e0150a8af922f3cf2537c01352f512fe716311e85767eb0a2d6b082601a42f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c11bb60a2dd4094f6fcc927bff51357c3e8d72e3b9cb3835b8e116429bd4bbf
MD5 eab714ecbf350e4be278fcbd4203e721
BLAKE2b-256 e7ad674496d25d702dbab8c177b0b336696f1a6f1462231c1df28554f8b55c9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 420cbec423b35feef6f12d6ca79c00c1893e694fd38a1f58adf4ae9db6c31e5f
MD5 78aa2ccc49c51a70affc09884343b419
BLAKE2b-256 ea4bae2dc0de74d70ea460b470f14c2e0a74bc1210fec711d6827675a427808a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7e9273ecd6fcc195e6e03c4f9f22e351c17049c00e326f4c6c2aaf9aac2eac4c
MD5 fa8aed1339ee7bf57981f3184cf63584
BLAKE2b-256 27c583ff6bbbbf756ab81d28afa14736c9cdc9e3c077fef3ffb1c6df27f0537f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef70979e018c81aae32af530f2e72f90b68583dde7e81daf9bb7724a8dd92170
MD5 921bdf4f8dcb8d25ed03f475b95dd5d6
BLAKE2b-256 d992ea125b2259cd628bc4965a621be084acb04b72734a20b2d613ebac9e6011

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.0.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-3.0.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-3.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 872b224d1efd82d9dc2ff89cffe6924536d5335fb1f0cf0c2425233808f27ba1
MD5 4b9fccbeb564b9816f9d92f010560eb9
BLAKE2b-256 ff16d07850658cba67670bf4b149d224cd69b39838cc5b3fccaaaab0432d94c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36b042d5926bd533a3a8006e71b9e71027ac4c166e20ffc3fe9a8fbe49a48d0c
MD5 8ddc108683bbf8eb96e112aef5a24573
BLAKE2b-256 a41e2522fa21465cff7b72b73e5191625bdbc0816f2fada57c777a71cd7bd46b

See more details on using hashes here.

Provenance

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

This release

3.0.0 This release

22 files

2.6.0

22 files

2.5.1

22 files

2.5.0

22 files

2.4.0

22 files

2.3.0

22 files

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