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.1.0.tar.gz (72.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

cognitive_discovery_system_v2-3.1.0-py3-none-any.whl (47.6 kB view details)

Uploaded Python 3

cognitive_discovery_system_v2-3.1.0-cp313-cp313-win_amd64.whl (64.6 kB view details)

Uploaded CPython 3.13Windows x86-64

cognitive_discovery_system_v2-3.1.0-cp313-cp313-win32.whl (64.0 kB view details)

Uploaded CPython 3.13Windows x86

cognitive_discovery_system_v2-3.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (77.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-3.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (77.1 kB view details)

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

cognitive_discovery_system_v2-3.1.0-cp313-cp313-macosx_11_0_arm64.whl (59.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cognitive_discovery_system_v2-3.1.0-cp312-cp312-win_amd64.whl (64.6 kB view details)

Uploaded CPython 3.12Windows x86-64

cognitive_discovery_system_v2-3.1.0-cp312-cp312-win32.whl (64.0 kB view details)

Uploaded CPython 3.12Windows x86

cognitive_discovery_system_v2-3.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (77.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-3.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (77.0 kB view details)

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

cognitive_discovery_system_v2-3.1.0-cp312-cp312-macosx_11_0_arm64.whl (59.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cognitive_discovery_system_v2-3.1.0-cp311-cp311-win_amd64.whl (64.6 kB view details)

Uploaded CPython 3.11Windows x86-64

cognitive_discovery_system_v2-3.1.0-cp311-cp311-win32.whl (64.0 kB view details)

Uploaded CPython 3.11Windows x86

cognitive_discovery_system_v2-3.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (76.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-3.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (76.5 kB view details)

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

cognitive_discovery_system_v2-3.1.0-cp311-cp311-macosx_11_0_arm64.whl (59.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cognitive_discovery_system_v2-3.1.0-cp310-cp310-win_amd64.whl (64.6 kB view details)

Uploaded CPython 3.10Windows x86-64

cognitive_discovery_system_v2-3.1.0-cp310-cp310-win32.whl (64.0 kB view details)

Uploaded CPython 3.10Windows x86

cognitive_discovery_system_v2-3.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (76.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cognitive_discovery_system_v2-3.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (76.5 kB view details)

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

cognitive_discovery_system_v2-3.1.0-cp310-cp310-macosx_11_0_arm64.whl (59.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.1.0.tar.gz
Algorithm Hash digest
SHA256 105e4634b809442b45022f1662e03764e6c9a90b24bfa8267c367580d333a826
MD5 f90148d464991e95f1b14813c542ace9
BLAKE2b-256 9a7dd6c7ab2efe5951921e63651ed506ea7a8a2fe364fdd616810860db351b24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 989f502f3bff7a7e063e6949ad6d0b299c53c93583063967a22c234c16c17744
MD5 95af2ce6623871b9c25078b0f2476559
BLAKE2b-256 d083589d0661c429a9129c6a870659d2c15bff307b227cee4d5db10bee79f38c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e4cf78ab61fdb3c5f79fc9e87e33b1365a33c249730b5d2fe28861160c9c9158
MD5 7a132d5687a1b7893897d1c96d8ed7f3
BLAKE2b-256 e9e2fe0fbd3d440b3fa1da5754b8a53e2604953a3ad9e7ca2dd69374cce2009b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f90b65f04da3889caadb68c5c310a4bd9acbe0a032d1541a1a776123abed4b1c
MD5 67e0fc968624d508166b280ce2d46b05
BLAKE2b-256 a383a86b39352893538268ad5e3f158b8e0692de32c3baf2ca5e5a3db2a75749

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 abbf8511c7ea4d6dfd2959e72a5bfcb8931be1ab7a13c48c7f49cd788c93df93
MD5 e0b3856a3ffcc06d34d7c03bdf6f240f
BLAKE2b-256 20d80fc067a863b886f113f31a047ebd5856831e5b6fd9d8fb9a63a2c569e5cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.1.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.1.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.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 afa05859c94b51a228a377990539cf4b4d7a277524890c843b02dd260e6eb4aa
MD5 3e152a0171e7d0c61b5f30d910bc08b8
BLAKE2b-256 92f11f15c922364452e6c69657634ecedcb793e0958239bef96ed244f6b6fa50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e371892a6c3b15058dd26e5450dd45a8c4f7f7649656c87b159b3e5e8a57330
MD5 e7fd944c67a8c817f437697e26144584
BLAKE2b-256 f27d462c927681663518cb9ca683a0243ec4a1130a349a58f8fed6011748784f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f7f08fddcf58916893965a89ab57f212556454c005025ff5553c664f8cfcf9d1
MD5 ebd0631a11484408b7c7f45f7a3e5ae7
BLAKE2b-256 483bfb26c70330d451500ca53e34ecdd0b5eaa45624c293285c3165ab400a7f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f2abbe8723666405934d3e8f68d6dc1918fcd83f7ceb3831e397a7b740e5bb4a
MD5 aeaebb68a2828fd94a8c45723df630a3
BLAKE2b-256 0c8c8f0927a8eb45fafa8647e525a50ca56d75fd0fdf99a49339648427b83e33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f61399156af375e9f0921540ae13e3dc83bf47fc5926c32353109d22ac4753bb
MD5 3847a290121b416278111a1bf13f6c9e
BLAKE2b-256 205f4013c54bd50105f942163f2437dce0258efc2d8b749aef3863231da4cabe

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.1.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.1.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.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f66a5b7faa4690a6e07b8bbaf0db623823b883fe58c77877e32311e2b262a6d2
MD5 e887b565f5c7bd848acbb4ee714b590f
BLAKE2b-256 d8b0fe2b23b61940106a58772b1ce64f1b27c4693c4257282e6f0b25e8995a25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c59bd2dc2edce6824732e0fadd49ebea908bce8d5d2c04f7cc4c09628bccd74c
MD5 431ccdb9ef44c3658e334b0c492a2be3
BLAKE2b-256 00b546e845b668ceba89da957b9f447964a4ef6fd9a1d76f8b7b77577e640bdc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ede14db23a110e29ce5864392bfa4af28b04e152402114d72f382a970745492e
MD5 3ecfd52c9de3358a5eba7915dde2645a
BLAKE2b-256 d021c920c4322bc7a8d046c291107cd4ab22f36dc09eaa22e3f9b2edcda06d2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7fc6aacff5577604ad1d08fe580fe3d0ae7450e83b186df821829af8a674b807
MD5 58ffcf6022901f8f79048a6f2ba3a645
BLAKE2b-256 18295573298f19f9ff1c9b6e88ea5f6c50ebe4ea6289bc0a852cef1a9eba81ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 688474dc2d8b1f06146c5f71a0c437eca94feba6f5d57fffd48eda603a448f0c
MD5 babac817d89804e378c77e8ca6ce99a3
BLAKE2b-256 ee47dbe8057261f3ec9c535485d18149e1d18458e27344ecca41a4d5671e8ccd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.1.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.1.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.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 813dc2b4a4bda9fcf476b26ddb2f198c88792edc61aad45569a90261225a5ce2
MD5 7c71b5b0707ae6b60bac0a3a1aa7f95b
BLAKE2b-256 a5402bf714f7be97fae641d1c28d1dfeeae105256efef28b9f83cdd78aab00f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 546bbe3506a036ff488b95c8fa069195bdfda41136073616ef3e8a7e47fbb88f
MD5 59ad006a6b4f3903089958e9eafb5c96
BLAKE2b-256 9c36ad920001983235c4a379c4747b0649c33f60fc5a2c6b244a9050635d3e94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4e296b2d363653ecd8e844004b5d1475d9ccb774c86726820eeaa34b48eafad3
MD5 aea0123c13182baa1c4bbad4234d61d9
BLAKE2b-256 996a18760114580acacd7f6f762eb859e933097deb56485a5f9b77742457c0ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bb0b1d631de9fa02947c363c495192eea9fbfc5cd00ddade7bd751c55fca4edb
MD5 f6a6451f1d415961234a13fd31685a75
BLAKE2b-256 1e1f388da70ab65da6983dff98f44b72c3a52c45362a69d5870c3c718f5e2890

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f3bb958255cef318e34288194a17229f8013799535cb6264185079b45309719
MD5 f6df7f402768fe2302db82eaf2a4648e
BLAKE2b-256 338ddee3e60cf0cedcd142d4f7fb5e191b31b591848f6c50065cb600f999dfd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cognitive_discovery_system_v2-3.1.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.1.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.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8008b0fb39c58c9798e324cbb40b0c4a5c6516c7c4fc55f6d1c874754e2a1bc8
MD5 9fc3c7eb1867ad53cba9e8388fae547e
BLAKE2b-256 d1f93038670184897f9108deb0386bb7dd7134345163d0c69530077b422905e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cognitive_discovery_system_v2-3.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1249ac2686622ea458400b22facbc4d1cc1a86b053405dd4e42099edc47d9942
MD5 ebd122834b5ac01e029ab428461a9d3c
BLAKE2b-256 f54d86430369fe21d4c089fac60ae8a5f2f6b5223e0e037923cd63e2ce29f6b7

See more details on using hashes here.

Provenance

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

This release

3.1.0 This release

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