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.2.1.tar.gz (72.2 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.2.1-py3-none-any.whl (47.8 kB view details)

Uploaded Python 3

cognitive_discovery_system_v2-3.2.1-cp313-cp313-win_amd64.whl (65.3 kB view details)

Uploaded CPython 3.13Windows x86-64

cognitive_discovery_system_v2-3.2.1-cp313-cp313-win32.whl (64.7 kB view details)

Uploaded CPython 3.13Windows x86

cognitive_discovery_system_v2-3.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (232.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-3.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (193.5 kB view details)

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

cognitive_discovery_system_v2-3.2.1-cp313-cp313-macosx_11_0_arm64.whl (60.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cognitive_discovery_system_v2-3.2.1-cp312-cp312-win_amd64.whl (65.3 kB view details)

Uploaded CPython 3.12Windows x86-64

cognitive_discovery_system_v2-3.2.1-cp312-cp312-win32.whl (64.7 kB view details)

Uploaded CPython 3.12Windows x86

cognitive_discovery_system_v2-3.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (232.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-3.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (193.3 kB view details)

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

cognitive_discovery_system_v2-3.2.1-cp312-cp312-macosx_11_0_arm64.whl (60.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cognitive_discovery_system_v2-3.2.1-cp311-cp311-win_amd64.whl (65.3 kB view details)

Uploaded CPython 3.11Windows x86-64

cognitive_discovery_system_v2-3.2.1-cp311-cp311-win32.whl (64.7 kB view details)

Uploaded CPython 3.11Windows x86

cognitive_discovery_system_v2-3.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (232.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-3.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (193.8 kB view details)

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

cognitive_discovery_system_v2-3.2.1-cp311-cp311-macosx_11_0_arm64.whl (60.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cognitive_discovery_system_v2-3.2.1-cp310-cp310-win_amd64.whl (65.3 kB view details)

Uploaded CPython 3.10Windows x86-64

cognitive_discovery_system_v2-3.2.1-cp310-cp310-win32.whl (64.7 kB view details)

Uploaded CPython 3.10Windows x86

cognitive_discovery_system_v2-3.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (231.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-3.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (192.3 kB view details)

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

cognitive_discovery_system_v2-3.2.1-cp310-cp310-macosx_11_0_arm64.whl (60.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.2.1.tar.gz
Algorithm Hash digest
SHA256 a5a5f5ea21a1b733b236ebde87f19c4bb0aa11f5463cf0f6ecb43cf50ebaf2ea
MD5 ab07cc908614ccc853a6c30902ff484a
BLAKE2b-256 721026da3d9d6ae89ff41ccf26e2864f31202cbfd09ef37715dc974d03732a6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.2.1.tar.gz:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-3.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 60ef1121918bff1de66a8fe34fca7c1c687180a6a5f739a72507d88fc1ec9cda
MD5 3c2c35a84eb536d5770b0758b76ab74d
BLAKE2b-256 cb53060f8bb2a428e642b7eb30eddbffecdb5629973d15da01a2b4718ca90036

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.2.1-py3-none-any.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-3.2.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b75f7c4f5491de798bfcf2e3a2022a5e5d3f5bdf7c91cd11370a3a8a45109bf1
MD5 dda89836f1660680dc4e710493931c39
BLAKE2b-256 a8bcaef89afefa315f7f1038ced08d4c160a2c5afab865647bae15924eaa056b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.2.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-3.2.1-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 65db306ea2d5ce8f359dfacab96615a465c61320c6b9038b977f156225dd94d4
MD5 17b2cb9871ba8e5e7fde9e474f777021
BLAKE2b-256 4df1dd0ff6e17a403dafe4281ef4566fa24d76a7ce8927736f729601b53d2c1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.2.1-cp313-cp313-win32.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-3.2.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 500f43f40a90211cc631a7152d6b29224b8a376384781fbc6a5934de6e6456f1
MD5 c9111e576e1f75f0b04d78ff95f74ce8
BLAKE2b-256 5e10bb14be315f329cf677f903f04e4c667243e16c377ca1995dbfecc0e92a92

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.2.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-3.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2f78bfa5d09b8cc9901be07f849732fb9d7eaf6ea52253b2028e17d7bf4367bc
MD5 96e994a2f6ad0276c6223fb71b8013ba
BLAKE2b-256 5d2b7578abe69ef5009625c16c68d5e90e30894605e601027156b2cac46ffd22

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-3.2.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 705df1007ea03b55c400b7c887ccc52463ea69a165bd822d18b109f3c65370cc
MD5 f10fa383752e5188e825b702d3dbee44
BLAKE2b-256 733419828fc618a3ca2373e518127ff0d4f0a53b916a1de4a20ea1457b2474dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.2.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-3.2.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eec1778c0e3b69d9a7f5ba96403c2526908fb1ed93560655e989badc8446ddc6
MD5 0ec23f8a4661b9992aa72afc5418ee9c
BLAKE2b-256 67b7f4ffafb8f981cbd7dfbec56133a8966198bbc8d37fcab96031d64b4bcec3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.2.1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-3.2.1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 59b3ff209c0305f23fc958b9cc87af5ff06fee2b9b669cf1dc0003b5093fb0fc
MD5 0c11c393ca729e93b7a2dadd2df3a838
BLAKE2b-256 55e2580beccd872a4a67f348061d35f9e9334d660ab28a48d686a773304ff860

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.2.1-cp312-cp312-win32.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-3.2.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90ebfbc8b9c69bc74f603a0b68a3bb964e396825d6a945227e5e9b2ff2c247e4
MD5 2a772339b53003c5da5fdffa1721eb9a
BLAKE2b-256 716570cdfb969701ea87ba26f115155d2c56c36ec91b5fae67e6cf739082b4ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.2.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-3.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 56559fa676a11c4ac50c6ec1defdeb7338e61574dc5a83d4b84dccc765a731aa
MD5 02b04f961212140ea64f3bdd6af7ebbd
BLAKE2b-256 1eb111e3eaaf74bc079b09bddc3bc88a1c1642a799ba21124419a7dfb3b45689

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-3.2.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 155613358bf7f4c8d2fa5c77f0e40b99b3d3b7811917b0248ad9fee9c772aa60
MD5 791b1fd0a6fd1b1e64cad013e93293a1
BLAKE2b-256 b3b7c17364cfc99f7898496c4ed7e917f4a826fa517eaf716029a884fe304692

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.2.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-3.2.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a44d9454ac6b7c3fb166da7fa26b0d906506bd9c2ff1efee014ddf50f4eafc80
MD5 17f9070ced8f539ba245b4c0c7729fbe
BLAKE2b-256 999bd8ac95be41e5c99776ae8ee2d7a83cc7416bdc008f8e002d51ed3de7433f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.2.1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-3.2.1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6b79b20a66e0cb95501a08203a3eb7c5bebf14a3c35e5f39becb95d8266dfb5a
MD5 6e47c803afe99aa271dcb85f4a38c4e0
BLAKE2b-256 104bb36fa20f591d99830e3de33ee97227070d0635b39a7488941cd3c1c692bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.2.1-cp311-cp311-win32.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-3.2.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd54f0a6f428bed3a94eff7b2ea3f9404fedf0d8b61f58a727f65b4ec7e7f9ae
MD5 578670445a583ca084c916b461f2cda0
BLAKE2b-256 c1384d4451fd5f39bb53b5e794251d9728a82a0863e89b31f23cdf0379e0e09f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.2.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-3.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 afe253a0bf65f1f47b9501c81ba9ea10c7c459dd4db4a16cdf158a96f793609d
MD5 d4d54c32164cb93ae5a70a65aa9b0799
BLAKE2b-256 ac827e4be0113adc2e089f369f127cbefddf39f30d5b430b2f8c4cb797e6d0ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-3.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6575160bef91198e1c95654c6b41db1b244247656f3b8d856aeb5a05db3fb5f4
MD5 edb0b579cede5651e7267e531217db34
BLAKE2b-256 674a3ccd8ec25a48d759e6ea6a5f1372ed5579e45022adcb0305f58616be1809

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.2.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-3.2.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 312025928d86a355dd869f1b15583374e343657f702177caa32496d6f7a09884
MD5 8ab3a2ff1e55d63089ee5378a15263ca
BLAKE2b-256 d0a55507d2d9c9d58803ab5cc4daf04030f08db8fb3af581fec2a0ea4ec93927

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.2.1-cp310-cp310-win_amd64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-3.2.1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0b75b5c1b223f8591f302ac85bbe9216587304334790c64914412212feb38ab2
MD5 6054829b739047daafcb7bac49e017d3
BLAKE2b-256 393b487bb848945d915a7f5919bb7780092f23635af9c84f3bd4390ffe39dd1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.2.1-cp310-cp310-win32.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-3.2.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 81ffd5e5f45e94d662ce6888e03d364be013926c009e4ad4ea38aefa5147c988
MD5 d7ac92b9f7758f5645e031b2ed3393f1
BLAKE2b-256 5f88c22564be081ae50d7ec68e37447ce28425ed2c1db87edf9e956f2c500a97

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.2.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-3.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aa1bca06f84adaf41a71f3fc466dc426c22f596ec10b8d1fc3c3cf14a704e1e4
MD5 dd5ce5a69804e22286c8f280ca249924
BLAKE2b-256 78acf436608f287b542d0021ffa0addfd95ffcc401a1ac7cdfc45521a84d5f4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cognitive_discovery_system_v2-3.2.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6a6a501a35827cf63fe1ad0c1d998ee0362af74b71bf886b4280ae2095ceaf9
MD5 d90fa39049680c890dc68024e8a17d7d
BLAKE2b-256 cf812f770c7f40c0852b5a53f236d2e7f2b417111787fbf4bab683ff37324510

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.2.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on Furox88/cognitive-discovery-system-v2

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

4.0.0

1 file

3.3.0

22 files

This release

3.2.1 This release

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

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