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

Uploaded Python 3

cognitive_discovery_system_v2-3.3.0-cp313-cp313-win_amd64.whl (82.6 kB view details)

Uploaded CPython 3.13Windows x86-64

cognitive_discovery_system_v2-3.3.0-cp313-cp313-win32.whl (82.0 kB view details)

Uploaded CPython 3.13Windows x86

cognitive_discovery_system_v2-3.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (249.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-3.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (210.7 kB view details)

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

cognitive_discovery_system_v2-3.3.0-cp313-cp313-macosx_11_0_arm64.whl (77.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cognitive_discovery_system_v2-3.3.0-cp312-cp312-win_amd64.whl (82.6 kB view details)

Uploaded CPython 3.12Windows x86-64

cognitive_discovery_system_v2-3.3.0-cp312-cp312-win32.whl (82.0 kB view details)

Uploaded CPython 3.12Windows x86

cognitive_discovery_system_v2-3.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (249.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-3.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (210.6 kB view details)

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

cognitive_discovery_system_v2-3.3.0-cp312-cp312-macosx_11_0_arm64.whl (77.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cognitive_discovery_system_v2-3.3.0-cp311-cp311-win_amd64.whl (82.6 kB view details)

Uploaded CPython 3.11Windows x86-64

cognitive_discovery_system_v2-3.3.0-cp311-cp311-win32.whl (81.9 kB view details)

Uploaded CPython 3.11Windows x86

cognitive_discovery_system_v2-3.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (249.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-3.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (211.0 kB view details)

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

cognitive_discovery_system_v2-3.3.0-cp311-cp311-macosx_11_0_arm64.whl (77.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cognitive_discovery_system_v2-3.3.0-cp310-cp310-win_amd64.whl (82.6 kB view details)

Uploaded CPython 3.10Windows x86-64

cognitive_discovery_system_v2-3.3.0-cp310-cp310-win32.whl (81.9 kB view details)

Uploaded CPython 3.10Windows x86

cognitive_discovery_system_v2-3.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (248.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-3.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (209.5 kB view details)

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

cognitive_discovery_system_v2-3.3.0-cp310-cp310-macosx_11_0_arm64.whl (77.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.3.0.tar.gz
Algorithm Hash digest
SHA256 bfe5d2d7bc5fe10fc77a0d7c5b0239ea7a18411c21eb31f27ac18fb6c06df24b
MD5 f23c3e0b5d5fd0c51a97c984d672fc26
BLAKE2b-256 13971d47ff034dacb12afa4d5841a2d20b76d7b0c80e451d3e295695c378ef66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b4534ef712892e99df09048340e6197a9d194caab7d70644a9c70c7faab96e7f
MD5 903249a9cad56e5baf33afe0d7301f8b
BLAKE2b-256 b9332c3b4bda6456f95f317500671d23ae1bd7af96841dde844e955acf365cbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b3f04645a20757929638ebf486b9c4ebd5c5a8b73361dbe314047679d0399327
MD5 a3486b1b77cb14d5f0eacceafd801a8e
BLAKE2b-256 1df9bcc8dcb8a5be41dfc2bb415711507506c8ae5fff7b8c5511d585c0590816

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ae36ec1a7b0c8b6390cedcecfcdb486b4803d3d802d724789cf43f488d9d679d
MD5 f3087c70359575ab094d6747acc46b57
BLAKE2b-256 069719de5d8e3ecaf20a332fcafe8ecfeb178caa8dad19e3d075161815ccd461

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6582d6e6978a544881510594f71e9e1169423ca1f1148f99d78cf9af1c1ec985
MD5 99db6035b192c5a752316b9afa497c02
BLAKE2b-256 b7ebf9c1bb0fba6a92eba1ea482f55fe517afa9a2d768b36109fba992bb852e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.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-3.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-3.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e43357db84f13ae163755145b7aef595cc65db627362249af8d80ec196747d07
MD5 82f9f9d1a2001192fa83116c80e1e880
BLAKE2b-256 ee3b1c2a3cf78a6445008cac92a51999f02b512d97e1d61b449340ab775d0c2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0485c6f39fcf0df9c0468393771f0c12ea8c8eab7b1f661ee9c364280bfebbb
MD5 cbb2a675ef21ae6c1c0c4626293c9096
BLAKE2b-256 fa818a3078b2fc1afc74fe426aa02d10299c81e39c3b79f63f9f1b7aaa51ffcc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5289a8a64df0df9bfaab4614e89839a3b69a8fc270a4db1a398fc8555676fa8e
MD5 d6d64ccee1ce2ee849f03ced6ccba92d
BLAKE2b-256 3994c54fd2906f6dbe7657c05836a73f1644d9af09152517abd385240cab1da8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a0de68765de73feceae49163384d8d12750af83aa3017fe311d593d31979bcc6
MD5 8bd7f27f29bcc98b24da84021647e41a
BLAKE2b-256 40b41a14cc637ebd95ff4182436552ccd5393749f18f58367b5175099c5ba334

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7803888bda3b343613c99929108df7dce10a66131cff0241e9e982534efa8e1a
MD5 e901fd0ecec4808406afa48352ff31d8
BLAKE2b-256 684ad0c425d40aadada72bfe0b102831087a211c480ffc30b94fa7e8b454d487

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.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-3.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-3.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0c1009295b74bf08cc72cf5a29ebb8843e2a8a627ba474601374cafdc0f3afbb
MD5 5b0c6a163c61bb74071089ec428036f4
BLAKE2b-256 6e3363b05e79103dc6546812efb4adc4efbec12648272b6a776dc0ee0396a5cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 198749d502791e6ba4ce59f899b610b22bdb2cac40d98cfde585099302cffc38
MD5 7c466b552c1e6a3a7a2babe330e23373
BLAKE2b-256 a27a9bf593dc50bbd6ee7a3a0146a2a03630574f04a28072336d9f49442aaa6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8e120d35f4f67ed843bb9eae99ef21ee8584116ce80ecea76eb61fd4d79e7ce9
MD5 6ce1af42dfaa3461b8884d5551c122c4
BLAKE2b-256 34dd153b6f3f6a8daba0081af7bdafea9582e7f26aeb47f7adf9eea9388166af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8f86fcfad0d38d417fa2539e80878c84c00f281ba70fd2ae1eea61927e5d1cca
MD5 b73e2042899f48af95c5c5684abdd915
BLAKE2b-256 40a88f1666e9bf0ef86f3aca3031716e80db2c26df709792c07ef58dd585deb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b7c912fa971ec412f61bc6d39a0b4311abad8306052f2f93b212c883406f6d9
MD5 3626819d801c5e4fd6f5e349a443691a
BLAKE2b-256 124cc7188e2fc86fe079df8eb9e418e11e17f108653e1fe86b00e271e20a9698

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.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-3.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-3.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d84e67254ad419e9a4fd702baa67813c66784b67dc002664c6c1821a557c4707
MD5 8036c7d51f4b5c2867b660962ea03fdc
BLAKE2b-256 aded6d37aa36f02ee9da36d5f8629094f6af3d1e7044169e56cd91fc5e3aac3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af966706806d986553f590011c72b76511adb22bc4697c08f738e0de30f82efd
MD5 f73daccc69a60f2210a514aa302f46b7
BLAKE2b-256 beac29022e99c1315d413dec04e4a33a3a5b729e8b01ffaa37d083992bbba04e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5a42c89c894d93f4555b990bbbbb43231f5ea74cea1d890067d233ec09406dea
MD5 316e7cb4cf3b98291f89f05cd9d9690f
BLAKE2b-256 f83f5e137c61cc101fece9c1dd1e62f40c816b7de240309622331fee2d07e489

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 408660b6877bd4347cec7403ecffe8d9506e7deea3962344d9d9c1fade83711e
MD5 905f053a38206fcb7ed477bc5daca853
BLAKE2b-256 5717553af1f9e8f49d440edf9230d13716ef6356f0803e87c24b160a5cfc9ac4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f77b52a1f4aa14edf21df1a38a9afa6890d9b24f82761b9708594db1ecbf738f
MD5 9c80c9d616f7c7280d0944f62f4e3f6a
BLAKE2b-256 d2ff35581dda44953c595fecb398e8211992efb00cb587e76fe2b33269bf30d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.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-3.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-3.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d28e182a2c05afe58f2d9b33ef9c203c1198d6740dc81225237ad4cf6e23efad
MD5 15300433d28cda5771fc99f25b977700
BLAKE2b-256 7e4ddfa17d2433f98383ce122d937642446c8a801ec4c56ae9fae423578e77fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4652b965f7f162a53a89d718996fbd392a6f54d051a5cf6915c42969321735f
MD5 445b71856b6facea64faab1afed9ffe9
BLAKE2b-256 8c8a974d04286612bdaeb8fb457806b759d80ff5a577bdd49dbb4ce54f208bfd

See more details on using hashes here.

Provenance

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

This release

3.3.0 This release

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

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