cognitive-discovery-system 1.1.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- cognitive_discovery_system-1.1.4/.gitignore +186 -0
- cognitive_discovery_system-1.1.4/CHANGELOG.md +610 -0
- cognitive_discovery_system-1.1.4/CITATION.cff +29 -0
- cognitive_discovery_system-1.1.4/CONTRIBUTING.md +204 -0
- cognitive_discovery_system-1.1.4/LICENSE +21 -0
- cognitive_discovery_system-1.1.4/PKG-INFO +583 -0
- cognitive_discovery_system-1.1.4/README.md +520 -0
- cognitive_discovery_system-1.1.4/SECURITY.md +69 -0
- cognitive_discovery_system-1.1.4/benchmarks/results.json +43 -0
- cognitive_discovery_system-1.1.4/benchmarks/run_benchmarks.py +394 -0
- cognitive_discovery_system-1.1.4/dashboard/app.py +200 -0
- cognitive_discovery_system-1.1.4/docs/CASE_STUDY_HUBBLE.md +80 -0
- cognitive_discovery_system-1.1.4/docs/CASE_STUDY_QUANTUM_ML.md +78 -0
- cognitive_discovery_system-1.1.4/docs/api.md +111 -0
- cognitive_discovery_system-1.1.4/docs/assets/cds_promo.mp4 +0 -0
- cognitive_discovery_system-1.1.4/docs/assets/cds_promo.webm +0 -0
- cognitive_discovery_system-1.1.4/docs/assets/cds_promo_poster.png +0 -0
- cognitive_discovery_system-1.1.4/docs/benchmarks.md +62 -0
- cognitive_discovery_system-1.1.4/docs/getting-started.md +139 -0
- cognitive_discovery_system-1.1.4/docs/getting-started.tr.md +103 -0
- cognitive_discovery_system-1.1.4/docs/index.md +52 -0
- cognitive_discovery_system-1.1.4/docs/maintenance.md +54 -0
- cognitive_discovery_system-1.1.4/docs/research-workflows.md +78 -0
- cognitive_discovery_system-1.1.4/docs/tutorials/core_demo.md +35 -0
- cognitive_discovery_system-1.1.4/docs/tutorials/data_analysis_demo.md +43 -0
- cognitive_discovery_system-1.1.4/docs/tutorials/diffeq_demo.md +33 -0
- cognitive_discovery_system-1.1.4/docs/tutorials/graph_demo.md +45 -0
- cognitive_discovery_system-1.1.4/docs/tutorials/hypothesis_demo.md +44 -0
- cognitive_discovery_system-1.1.4/docs/tutorials/knowledge_demo.md +114 -0
- cognitive_discovery_system-1.1.4/docs/tutorials/math_utils_demo.md +46 -0
- cognitive_discovery_system-1.1.4/docs/tutorials/modeling_demo.md +81 -0
- cognitive_discovery_system-1.1.4/docs/tutorials/montecarlo_demo.md +42 -0
- cognitive_discovery_system-1.1.4/docs/tutorials/nlp_viz.md +79 -0
- cognitive_discovery_system-1.1.4/docs/tutorials/numerical_integration_demo.md +29 -0
- cognitive_discovery_system-1.1.4/docs/tutorials/probability_demo.md +35 -0
- cognitive_discovery_system-1.1.4/docs/tutorials/quantum_demo.md +31 -0
- cognitive_discovery_system-1.1.4/docs/tutorials/quick_start.md +43 -0
- cognitive_discovery_system-1.1.4/docs/tutorials/scientific_demo.md +43 -0
- cognitive_discovery_system-1.1.4/examples/core_demo.py +40 -0
- cognitive_discovery_system-1.1.4/examples/data_analysis_demo.py +60 -0
- cognitive_discovery_system-1.1.4/examples/diffeq_demo.py +34 -0
- cognitive_discovery_system-1.1.4/examples/fft2_demo.py +32 -0
- cognitive_discovery_system-1.1.4/examples/graph_demo.py +49 -0
- cognitive_discovery_system-1.1.4/examples/hypothesis_custom_generator.py +122 -0
- cognitive_discovery_system-1.1.4/examples/hypothesis_demo.py +48 -0
- cognitive_discovery_system-1.1.4/examples/hypothesis_tests_demo.py +52 -0
- cognitive_discovery_system-1.1.4/examples/hypothesis_with_stats_demo.py +43 -0
- cognitive_discovery_system-1.1.4/examples/knowledge_demo.py +100 -0
- cognitive_discovery_system-1.1.4/examples/linalg_demo.py +61 -0
- cognitive_discovery_system-1.1.4/examples/math_utils_demo.py +53 -0
- cognitive_discovery_system-1.1.4/examples/ml_and_viz_demo.py +47 -0
- cognitive_discovery_system-1.1.4/examples/montecarlo_demo.py +41 -0
- cognitive_discovery_system-1.1.4/examples/nlp_attention_demo.py +168 -0
- cognitive_discovery_system-1.1.4/examples/nlp_bpe_demo.py +79 -0
- cognitive_discovery_system-1.1.4/examples/nlp_mini_gpt_demo.py +76 -0
- cognitive_discovery_system-1.1.4/examples/nlp_viz_demo.py +98 -0
- cognitive_discovery_system-1.1.4/examples/numerical_integration_demo.py +40 -0
- cognitive_discovery_system-1.1.4/examples/optimization_demo.py +34 -0
- cognitive_discovery_system-1.1.4/examples/probability_demo.py +39 -0
- cognitive_discovery_system-1.1.4/examples/quantum_demo.py +42 -0
- cognitive_discovery_system-1.1.4/examples/scientific_demo.py +49 -0
- cognitive_discovery_system-1.1.4/examples/signals_demo.py +42 -0
- cognitive_discovery_system-1.1.4/examples/stats_demo.py +40 -0
- cognitive_discovery_system-1.1.4/mkdocs.yml +88 -0
- cognitive_discovery_system-1.1.4/pyproject.toml +206 -0
- cognitive_discovery_system-1.1.4/requirements-dev.lock +489 -0
- cognitive_discovery_system-1.1.4/requirements.lock +37 -0
- cognitive_discovery_system-1.1.4/scripts/publish.py +229 -0
- cognitive_discovery_system-1.1.4/src/cds/__init__.py +92 -0
- cognitive_discovery_system-1.1.4/src/cds/__main__.py +6 -0
- cognitive_discovery_system-1.1.4/src/cds/_version.py +10 -0
- cognitive_discovery_system-1.1.4/src/cds/cli.py +343 -0
- cognitive_discovery_system-1.1.4/src/cds/core/__init__.py +5 -0
- cognitive_discovery_system-1.1.4/src/cds/core/_numeric.py +92 -0
- cognitive_discovery_system-1.1.4/src/cds/core/models.py +73 -0
- cognitive_discovery_system-1.1.4/src/cds/data_analysis/__init__.py +17 -0
- cognitive_discovery_system-1.1.4/src/cds/data_analysis/dataset.py +117 -0
- cognitive_discovery_system-1.1.4/src/cds/data_analysis/loader.py +75 -0
- cognitive_discovery_system-1.1.4/src/cds/data_analysis/transform.py +36 -0
- cognitive_discovery_system-1.1.4/src/cds/data_analysis/viz.py +88 -0
- cognitive_discovery_system-1.1.4/src/cds/diffeq/__init__.py +19 -0
- cognitive_discovery_system-1.1.4/src/cds/diffeq/solvers.py +286 -0
- cognitive_discovery_system-1.1.4/src/cds/graph/__init__.py +21 -0
- cognitive_discovery_system-1.1.4/src/cds/graph/algorithms.py +241 -0
- cognitive_discovery_system-1.1.4/src/cds/hypothesis/__init__.py +41 -0
- cognitive_discovery_system-1.1.4/src/cds/hypothesis/evaluator.py +182 -0
- cognitive_discovery_system-1.1.4/src/cds/hypothesis/generator.py +203 -0
- cognitive_discovery_system-1.1.4/src/cds/knowledge/__init__.py +41 -0
- cognitive_discovery_system-1.1.4/src/cds/knowledge/graph.py +487 -0
- cognitive_discovery_system-1.1.4/src/cds/knowledge/notes.py +231 -0
- cognitive_discovery_system-1.1.4/src/cds/knowledge/retrieval.py +167 -0
- cognitive_discovery_system-1.1.4/src/cds/math_utils/__init__.py +35 -0
- cognitive_discovery_system-1.1.4/src/cds/math_utils/calculus.py +40 -0
- cognitive_discovery_system-1.1.4/src/cds/math_utils/linalg.py +395 -0
- cognitive_discovery_system-1.1.4/src/cds/ml/__init__.py +5 -0
- cognitive_discovery_system-1.1.4/src/cds/ml/neural.py +191 -0
- cognitive_discovery_system-1.1.4/src/cds/modeling/__init__.py +40 -0
- cognitive_discovery_system-1.1.4/src/cds/modeling/expression.py +590 -0
- cognitive_discovery_system-1.1.4/src/cds/modeling/model.py +134 -0
- cognitive_discovery_system-1.1.4/src/cds/modeling/solver.py +176 -0
- cognitive_discovery_system-1.1.4/src/cds/montecarlo/__init__.py +17 -0
- cognitive_discovery_system-1.1.4/src/cds/montecarlo/methods.py +209 -0
- cognitive_discovery_system-1.1.4/src/cds/nlp/__init__.py +170 -0
- cognitive_discovery_system-1.1.4/src/cds/nlp/attention.py +285 -0
- cognitive_discovery_system-1.1.4/src/cds/nlp/autograd/__init__.py +70 -0
- cognitive_discovery_system-1.1.4/src/cds/nlp/autograd/_grad.py +113 -0
- cognitive_discovery_system-1.1.4/src/cds/nlp/autograd/ops.py +129 -0
- cognitive_discovery_system-1.1.4/src/cds/nlp/autograd/tensor.py +283 -0
- cognitive_discovery_system-1.1.4/src/cds/nlp/bpe.py +442 -0
- cognitive_discovery_system-1.1.4/src/cds/nlp/data.py +70 -0
- cognitive_discovery_system-1.1.4/src/cds/nlp/embed.py +188 -0
- cognitive_discovery_system-1.1.4/src/cds/nlp/layers.py +259 -0
- cognitive_discovery_system-1.1.4/src/cds/nlp/model.py +452 -0
- cognitive_discovery_system-1.1.4/src/cds/nlp/optim.py +161 -0
- cognitive_discovery_system-1.1.4/src/cds/nlp/training.py +167 -0
- cognitive_discovery_system-1.1.4/src/cds/nlp/viz.py +251 -0
- cognitive_discovery_system-1.1.4/src/cds/numerical_integration/__init__.py +25 -0
- cognitive_discovery_system-1.1.4/src/cds/numerical_integration/quadrature.py +368 -0
- cognitive_discovery_system-1.1.4/src/cds/optimization/__init__.py +15 -0
- cognitive_discovery_system-1.1.4/src/cds/optimization/minimize.py +304 -0
- cognitive_discovery_system-1.1.4/src/cds/probability/__init__.py +19 -0
- cognitive_discovery_system-1.1.4/src/cds/probability/distributions.py +121 -0
- cognitive_discovery_system-1.1.4/src/cds/py.typed +0 -0
- cognitive_discovery_system-1.1.4/src/cds/quantum/__init__.py +51 -0
- cognitive_discovery_system-1.1.4/src/cds/quantum/circuit.py +91 -0
- cognitive_discovery_system-1.1.4/src/cds/quantum/multi_qubit.py +255 -0
- cognitive_discovery_system-1.1.4/src/cds/quantum/simulator.py +38 -0
- cognitive_discovery_system-1.1.4/src/cds/scientific/__init__.py +26 -0
- cognitive_discovery_system-1.1.4/src/cds/scientific/constants.py +32 -0
- cognitive_discovery_system-1.1.4/src/cds/scientific/formulas.py +64 -0
- cognitive_discovery_system-1.1.4/src/cds/signals/__init__.py +23 -0
- cognitive_discovery_system-1.1.4/src/cds/signals/processing.py +224 -0
- cognitive_discovery_system-1.1.4/src/cds/stats/__init__.py +34 -0
- cognitive_discovery_system-1.1.4/src/cds/stats/descriptive.py +100 -0
- cognitive_discovery_system-1.1.4/src/cds/stats/hypothesis_tests.py +399 -0
- cognitive_discovery_system-1.1.4/src/cds/stats/regression.py +51 -0
- cognitive_discovery_system-1.1.4/tests/__init__.py +0 -0
- cognitive_discovery_system-1.1.4/tests/test_benchmarks.py +111 -0
- cognitive_discovery_system-1.1.4/tests/test_cli.py +39 -0
- cognitive_discovery_system-1.1.4/tests/test_cli_extended.py +114 -0
- cognitive_discovery_system-1.1.4/tests/test_data_analysis.py +146 -0
- cognitive_discovery_system-1.1.4/tests/test_dataset.py +91 -0
- cognitive_discovery_system-1.1.4/tests/test_diffeq.py +110 -0
- cognitive_discovery_system-1.1.4/tests/test_edge_misc_numerical.py +642 -0
- cognitive_discovery_system-1.1.4/tests/test_edge_ml_quantum_linalg.py +239 -0
- cognitive_discovery_system-1.1.4/tests/test_edge_nlp.py +229 -0
- cognitive_discovery_system-1.1.4/tests/test_edge_quantum_evaluator_cli.py +344 -0
- cognitive_discovery_system-1.1.4/tests/test_edge_stats_optimization_signals.py +406 -0
- cognitive_discovery_system-1.1.4/tests/test_fft2.py +67 -0
- cognitive_discovery_system-1.1.4/tests/test_graph.py +154 -0
- cognitive_discovery_system-1.1.4/tests/test_hypothesis.py +124 -0
- cognitive_discovery_system-1.1.4/tests/test_hypothesis_engine.py +49 -0
- cognitive_discovery_system-1.1.4/tests/test_hypothesis_tests.py +159 -0
- cognitive_discovery_system-1.1.4/tests/test_knowledge.py +1147 -0
- cognitive_discovery_system-1.1.4/tests/test_linalg_extended.py +145 -0
- cognitive_discovery_system-1.1.4/tests/test_linalg_qr_cholesky.py +68 -0
- cognitive_discovery_system-1.1.4/tests/test_math_utils.py +130 -0
- cognitive_discovery_system-1.1.4/tests/test_ml_viz.py +58 -0
- cognitive_discovery_system-1.1.4/tests/test_modeling.py +680 -0
- cognitive_discovery_system-1.1.4/tests/test_montecarlo.py +103 -0
- cognitive_discovery_system-1.1.4/tests/test_multi_qubit.py +322 -0
- cognitive_discovery_system-1.1.4/tests/test_nlp_attention.py +335 -0
- cognitive_discovery_system-1.1.4/tests/test_nlp_autograd.py +435 -0
- cognitive_discovery_system-1.1.4/tests/test_nlp_bpe.py +432 -0
- cognitive_discovery_system-1.1.4/tests/test_nlp_embed.py +240 -0
- cognitive_discovery_system-1.1.4/tests/test_nlp_layers.py +276 -0
- cognitive_discovery_system-1.1.4/tests/test_nlp_model.py +126 -0
- cognitive_discovery_system-1.1.4/tests/test_nlp_training.py +262 -0
- cognitive_discovery_system-1.1.4/tests/test_nlp_viz.py +188 -0
- cognitive_discovery_system-1.1.4/tests/test_numerical_integration.py +236 -0
- cognitive_discovery_system-1.1.4/tests/test_numerical_invariants.py +541 -0
- cognitive_discovery_system-1.1.4/tests/test_optimization.py +139 -0
- cognitive_discovery_system-1.1.4/tests/test_probability.py +169 -0
- cognitive_discovery_system-1.1.4/tests/test_quantum.py +122 -0
- cognitive_discovery_system-1.1.4/tests/test_scientific.py +133 -0
- cognitive_discovery_system-1.1.4/tests/test_signals.py +146 -0
- cognitive_discovery_system-1.1.4/tests/test_stats.py +128 -0
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
*.manifest
|
|
31
|
+
*.spec
|
|
32
|
+
|
|
33
|
+
# Installer logs
|
|
34
|
+
pip-log.txt
|
|
35
|
+
pip-delete-this-directory.txt
|
|
36
|
+
|
|
37
|
+
# Unit test / coverage reports
|
|
38
|
+
htmlcov/
|
|
39
|
+
.tox/
|
|
40
|
+
.nox/
|
|
41
|
+
.coverage
|
|
42
|
+
.coverage.*
|
|
43
|
+
.cache
|
|
44
|
+
nosetests.xml
|
|
45
|
+
coverage.xml
|
|
46
|
+
*.cover
|
|
47
|
+
*.py,cover
|
|
48
|
+
.hypothesis/
|
|
49
|
+
.pytest_cache/
|
|
50
|
+
cover/
|
|
51
|
+
|
|
52
|
+
# Translations
|
|
53
|
+
*.mo
|
|
54
|
+
*.pot
|
|
55
|
+
|
|
56
|
+
# Django stuff
|
|
57
|
+
*.log
|
|
58
|
+
local_settings.py
|
|
59
|
+
db.sqlite3
|
|
60
|
+
db.sqlite3-journal
|
|
61
|
+
|
|
62
|
+
# Flask stuff
|
|
63
|
+
instance/
|
|
64
|
+
.webassets-cache
|
|
65
|
+
|
|
66
|
+
# Scrapy stuff
|
|
67
|
+
.scrapy
|
|
68
|
+
|
|
69
|
+
# Sphinx documentation
|
|
70
|
+
docs/_build/
|
|
71
|
+
|
|
72
|
+
# PyBuilder
|
|
73
|
+
.pybuilder/
|
|
74
|
+
target/
|
|
75
|
+
|
|
76
|
+
# Jupyter Notebook
|
|
77
|
+
.ipynb_checkpoints
|
|
78
|
+
|
|
79
|
+
# IPython
|
|
80
|
+
profile_default/
|
|
81
|
+
ipython_config.py
|
|
82
|
+
|
|
83
|
+
# pyenv
|
|
84
|
+
.python-version
|
|
85
|
+
|
|
86
|
+
# pipenv
|
|
87
|
+
Pipfile.lock
|
|
88
|
+
|
|
89
|
+
# poetry
|
|
90
|
+
poetry.lock
|
|
91
|
+
|
|
92
|
+
# pdm
|
|
93
|
+
.pdm.toml
|
|
94
|
+
.pdm-python
|
|
95
|
+
.pdm-build/
|
|
96
|
+
|
|
97
|
+
# PEP 582
|
|
98
|
+
__pypackages__/
|
|
99
|
+
|
|
100
|
+
# Celery stuff
|
|
101
|
+
celerybeat-schedule
|
|
102
|
+
celerybeat.pid
|
|
103
|
+
|
|
104
|
+
# SageMath parsed files
|
|
105
|
+
*.sage.py
|
|
106
|
+
|
|
107
|
+
# Environments
|
|
108
|
+
.env
|
|
109
|
+
.venv
|
|
110
|
+
env/
|
|
111
|
+
venv/
|
|
112
|
+
ENV/
|
|
113
|
+
env.bak/
|
|
114
|
+
venv.bak/
|
|
115
|
+
|
|
116
|
+
# Spyder project settings
|
|
117
|
+
.spyderproject
|
|
118
|
+
.spyproject
|
|
119
|
+
|
|
120
|
+
# Rope project settings
|
|
121
|
+
.ropeproject
|
|
122
|
+
|
|
123
|
+
# mkdocs documentation
|
|
124
|
+
/site
|
|
125
|
+
|
|
126
|
+
# Build / promo render artifacts — large intermediate files (PNG frames,
|
|
127
|
+
# GIF/MP4/WebM) generated by the promo scripts. They must never ship in the
|
|
128
|
+
# sdist (would balloon it by ~90 MB) and never be committed.
|
|
129
|
+
node_modules/
|
|
130
|
+
.ruff_cache/
|
|
131
|
+
assets/_promo_frames/
|
|
132
|
+
assets/cds_promo.gif
|
|
133
|
+
assets/cds_promo.mp4
|
|
134
|
+
assets/cds_promo.webm
|
|
135
|
+
assets/cds_promo_poster.png
|
|
136
|
+
assets/promo_hero.html
|
|
137
|
+
|
|
138
|
+
# mypy
|
|
139
|
+
.mypy_cache/
|
|
140
|
+
.dmypy.json
|
|
141
|
+
dmypy.json
|
|
142
|
+
|
|
143
|
+
# Pyre type checker
|
|
144
|
+
.pyre/
|
|
145
|
+
|
|
146
|
+
# pytype static type analyzer
|
|
147
|
+
.pytype/
|
|
148
|
+
|
|
149
|
+
# Cython debug symbols
|
|
150
|
+
cython_debug/
|
|
151
|
+
|
|
152
|
+
# IDEs
|
|
153
|
+
.idea/
|
|
154
|
+
.vscode/
|
|
155
|
+
*.swp
|
|
156
|
+
*.swo
|
|
157
|
+
*~
|
|
158
|
+
|
|
159
|
+
# OS
|
|
160
|
+
.DS_Store
|
|
161
|
+
Thumbs.db
|
|
162
|
+
|
|
163
|
+
# Project specific
|
|
164
|
+
*.tmp
|
|
165
|
+
*.bak
|
|
166
|
+
results/
|
|
167
|
+
outputs/
|
|
168
|
+
chains_*/
|
|
169
|
+
data/real/
|
|
170
|
+
data/external/
|
|
171
|
+
*.zip
|
|
172
|
+
*.tar.gz
|
|
173
|
+
*.tgz
|
|
174
|
+
|
|
175
|
+
# CDS specific (future)
|
|
176
|
+
.cds/
|
|
177
|
+
*.hypo.json
|
|
178
|
+
|
|
179
|
+
# Demo runtime artifacts (examples/ write these next to the script)
|
|
180
|
+
_demo_*.json
|
|
181
|
+
|
|
182
|
+
# ZCode agent session state (local only, never commit)
|
|
183
|
+
.zcode/
|
|
184
|
+
|
|
185
|
+
# Windows NUL device accidentally materialized as a file
|
|
186
|
+
nul
|