scientific-computing-system 1.6.2__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.
- scientific_computing_system-1.6.2/.gitignore +239 -0
- scientific_computing_system-1.6.2/CHANGELOG.md +1079 -0
- scientific_computing_system-1.6.2/CITATION.cff +29 -0
- scientific_computing_system-1.6.2/CONTRIBUTING.md +275 -0
- scientific_computing_system-1.6.2/LICENSE +21 -0
- scientific_computing_system-1.6.2/PKG-INFO +741 -0
- scientific_computing_system-1.6.2/README.md +668 -0
- scientific_computing_system-1.6.2/SECURITY.md +72 -0
- scientific_computing_system-1.6.2/benchmarks/results.json +43 -0
- scientific_computing_system-1.6.2/benchmarks/run_benchmarks.py +394 -0
- scientific_computing_system-1.6.2/dashboard/app.py +224 -0
- scientific_computing_system-1.6.2/docs/ARCHITECTURE.md +252 -0
- scientific_computing_system-1.6.2/docs/CASE_STUDY_HUBBLE.md +78 -0
- scientific_computing_system-1.6.2/docs/CASE_STUDY_QUANTUM_ML.md +79 -0
- scientific_computing_system-1.6.2/docs/api.md +133 -0
- scientific_computing_system-1.6.2/docs/benchmarks.md +62 -0
- scientific_computing_system-1.6.2/docs/cookbook.md +862 -0
- scientific_computing_system-1.6.2/docs/getting-started.md +185 -0
- scientific_computing_system-1.6.2/docs/index.md +67 -0
- scientific_computing_system-1.6.2/docs/maintenance.md +61 -0
- scientific_computing_system-1.6.2/docs/research-workflows.md +82 -0
- scientific_computing_system-1.6.2/docs/tour_of_numerical_methods.md +330 -0
- scientific_computing_system-1.6.2/docs/tutorials/core_demo.md +35 -0
- scientific_computing_system-1.6.2/docs/tutorials/data_analysis_demo.md +43 -0
- scientific_computing_system-1.6.2/docs/tutorials/diffeq_demo.md +48 -0
- scientific_computing_system-1.6.2/docs/tutorials/fft2_demo.md +67 -0
- scientific_computing_system-1.6.2/docs/tutorials/graph_demo.md +45 -0
- scientific_computing_system-1.6.2/docs/tutorials/hypothesis_demo.md +44 -0
- scientific_computing_system-1.6.2/docs/tutorials/hypothesis_tests_demo.md +170 -0
- scientific_computing_system-1.6.2/docs/tutorials/hypothesis_with_stats_demo.md +80 -0
- scientific_computing_system-1.6.2/docs/tutorials/knowledge_demo.md +114 -0
- scientific_computing_system-1.6.2/docs/tutorials/linalg_demo.md +103 -0
- scientific_computing_system-1.6.2/docs/tutorials/math_utils_demo.md +46 -0
- scientific_computing_system-1.6.2/docs/tutorials/ml_advanced_demo.md +96 -0
- scientific_computing_system-1.6.2/docs/tutorials/ml_and_viz_demo.md +93 -0
- scientific_computing_system-1.6.2/docs/tutorials/ml_demo.md +70 -0
- scientific_computing_system-1.6.2/docs/tutorials/modeling_demo.md +82 -0
- scientific_computing_system-1.6.2/docs/tutorials/montecarlo_demo.md +42 -0
- scientific_computing_system-1.6.2/docs/tutorials/nlp_attention_demo.md +107 -0
- scientific_computing_system-1.6.2/docs/tutorials/nlp_bpe_demo.md +103 -0
- scientific_computing_system-1.6.2/docs/tutorials/nlp_mini_gpt_demo.md +110 -0
- scientific_computing_system-1.6.2/docs/tutorials/nlp_viz.md +76 -0
- scientific_computing_system-1.6.2/docs/tutorials/numerical_integration_demo.md +65 -0
- scientific_computing_system-1.6.2/docs/tutorials/optimization_demo.md +106 -0
- scientific_computing_system-1.6.2/docs/tutorials/pandas_io_demo.md +160 -0
- scientific_computing_system-1.6.2/docs/tutorials/probability_demo.md +48 -0
- scientific_computing_system-1.6.2/docs/tutorials/quantum_demo.md +31 -0
- scientific_computing_system-1.6.2/docs/tutorials/quick_start.md +44 -0
- scientific_computing_system-1.6.2/docs/tutorials/scientific_demo.md +46 -0
- scientific_computing_system-1.6.2/docs/tutorials/signals_demo.md +167 -0
- scientific_computing_system-1.6.2/docs/tutorials/stats_demo.md +94 -0
- scientific_computing_system-1.6.2/docs/tutorials/stiff_ode_demo.md +84 -0
- scientific_computing_system-1.6.2/docs/tutorials/time_series_demo.md +145 -0
- scientific_computing_system-1.6.2/examples/core_demo.py +40 -0
- scientific_computing_system-1.6.2/examples/data_analysis_demo.py +60 -0
- scientific_computing_system-1.6.2/examples/diffeq_demo.py +34 -0
- scientific_computing_system-1.6.2/examples/fft2_demo.py +32 -0
- scientific_computing_system-1.6.2/examples/graph_demo.py +49 -0
- scientific_computing_system-1.6.2/examples/hypothesis_custom_generator.py +121 -0
- scientific_computing_system-1.6.2/examples/hypothesis_demo.py +48 -0
- scientific_computing_system-1.6.2/examples/hypothesis_tests_demo.py +52 -0
- scientific_computing_system-1.6.2/examples/hypothesis_with_stats_demo.py +43 -0
- scientific_computing_system-1.6.2/examples/knowledge_demo.py +100 -0
- scientific_computing_system-1.6.2/examples/linalg_demo.py +61 -0
- scientific_computing_system-1.6.2/examples/math_utils_demo.py +53 -0
- scientific_computing_system-1.6.2/examples/ml_and_viz_demo.py +47 -0
- scientific_computing_system-1.6.2/examples/modeling_demo.py +110 -0
- scientific_computing_system-1.6.2/examples/montecarlo_demo.py +41 -0
- scientific_computing_system-1.6.2/examples/nlp_attention_demo.py +168 -0
- scientific_computing_system-1.6.2/examples/nlp_bpe_demo.py +79 -0
- scientific_computing_system-1.6.2/examples/nlp_mini_gpt_demo.py +76 -0
- scientific_computing_system-1.6.2/examples/nlp_viz_demo.py +98 -0
- scientific_computing_system-1.6.2/examples/numerical_integration_demo.py +60 -0
- scientific_computing_system-1.6.2/examples/optimization_demo.py +34 -0
- scientific_computing_system-1.6.2/examples/plot_demo.py +84 -0
- scientific_computing_system-1.6.2/examples/plotting_notebook.ipynb +87 -0
- scientific_computing_system-1.6.2/examples/probability_demo.py +39 -0
- scientific_computing_system-1.6.2/examples/quantum_demo.py +42 -0
- scientific_computing_system-1.6.2/examples/scientific_demo.py +49 -0
- scientific_computing_system-1.6.2/examples/signals_demo.py +86 -0
- scientific_computing_system-1.6.2/examples/stats_demo.py +40 -0
- scientific_computing_system-1.6.2/examples/tour_of_numerical_methods.ipynb +497 -0
- scientific_computing_system-1.6.2/mkdocs.yml +104 -0
- scientific_computing_system-1.6.2/pyproject.toml +264 -0
- scientific_computing_system-1.6.2/requirements-dev.lock +427 -0
- scientific_computing_system-1.6.2/requirements.lock +6 -0
- scientific_computing_system-1.6.2/scripts/publish.py +203 -0
- scientific_computing_system-1.6.2/src/cds/__init__.py +102 -0
- scientific_computing_system-1.6.2/src/cds/__main__.py +8 -0
- scientific_computing_system-1.6.2/src/cds/_version.py +10 -0
- scientific_computing_system-1.6.2/src/cds/cli/__init__.py +104 -0
- scientific_computing_system-1.6.2/src/cds/cli/__main__.py +8 -0
- scientific_computing_system-1.6.2/src/cds/cli/_handlers.py +405 -0
- scientific_computing_system-1.6.2/src/cds/cli/_parser.py +156 -0
- scientific_computing_system-1.6.2/src/cds/cli/_style.py +117 -0
- scientific_computing_system-1.6.2/src/cds/core/__init__.py +5 -0
- scientific_computing_system-1.6.2/src/cds/core/_numeric.py +92 -0
- scientific_computing_system-1.6.2/src/cds/core/models.py +166 -0
- scientific_computing_system-1.6.2/src/cds/data_analysis/__init__.py +30 -0
- scientific_computing_system-1.6.2/src/cds/data_analysis/dataset.py +122 -0
- scientific_computing_system-1.6.2/src/cds/data_analysis/loader.py +75 -0
- scientific_computing_system-1.6.2/src/cds/data_analysis/pandas_io.py +108 -0
- scientific_computing_system-1.6.2/src/cds/data_analysis/transform.py +36 -0
- scientific_computing_system-1.6.2/src/cds/data_analysis/viz.py +88 -0
- scientific_computing_system-1.6.2/src/cds/diffeq/__init__.py +29 -0
- scientific_computing_system-1.6.2/src/cds/diffeq/_implicit.py +349 -0
- scientific_computing_system-1.6.2/src/cds/diffeq/solvers.py +312 -0
- scientific_computing_system-1.6.2/src/cds/graph/__init__.py +31 -0
- scientific_computing_system-1.6.2/src/cds/graph/algorithms.py +399 -0
- scientific_computing_system-1.6.2/src/cds/hypothesis/__init__.py +48 -0
- scientific_computing_system-1.6.2/src/cds/hypothesis/evaluator.py +369 -0
- scientific_computing_system-1.6.2/src/cds/hypothesis/generator.py +275 -0
- scientific_computing_system-1.6.2/src/cds/knowledge/__init__.py +41 -0
- scientific_computing_system-1.6.2/src/cds/knowledge/graph.py +489 -0
- scientific_computing_system-1.6.2/src/cds/knowledge/notes.py +231 -0
- scientific_computing_system-1.6.2/src/cds/knowledge/retrieval.py +167 -0
- scientific_computing_system-1.6.2/src/cds/math_utils/__init__.py +41 -0
- scientific_computing_system-1.6.2/src/cds/math_utils/calculus.py +40 -0
- scientific_computing_system-1.6.2/src/cds/math_utils/linalg.py +461 -0
- scientific_computing_system-1.6.2/src/cds/math_utils/special.py +167 -0
- scientific_computing_system-1.6.2/src/cds/ml/__init__.py +25 -0
- scientific_computing_system-1.6.2/src/cds/ml/clustering.py +190 -0
- scientific_computing_system-1.6.2/src/cds/ml/decomposition.py +172 -0
- scientific_computing_system-1.6.2/src/cds/ml/linear_models.py +225 -0
- scientific_computing_system-1.6.2/src/cds/ml/neighbors.py +162 -0
- scientific_computing_system-1.6.2/src/cds/ml/neural.py +204 -0
- scientific_computing_system-1.6.2/src/cds/ml/preprocessing.py +131 -0
- scientific_computing_system-1.6.2/src/cds/ml/tree.py +202 -0
- scientific_computing_system-1.6.2/src/cds/modeling/__init__.py +40 -0
- scientific_computing_system-1.6.2/src/cds/modeling/_base.py +210 -0
- scientific_computing_system-1.6.2/src/cds/modeling/_nodes.py +526 -0
- scientific_computing_system-1.6.2/src/cds/modeling/expression.py +81 -0
- scientific_computing_system-1.6.2/src/cds/modeling/model.py +134 -0
- scientific_computing_system-1.6.2/src/cds/modeling/solver.py +176 -0
- scientific_computing_system-1.6.2/src/cds/montecarlo/__init__.py +21 -0
- scientific_computing_system-1.6.2/src/cds/montecarlo/methods.py +272 -0
- scientific_computing_system-1.6.2/src/cds/nlp/__init__.py +170 -0
- scientific_computing_system-1.6.2/src/cds/nlp/attention.py +285 -0
- scientific_computing_system-1.6.2/src/cds/nlp/autograd/__init__.py +70 -0
- scientific_computing_system-1.6.2/src/cds/nlp/autograd/_grad.py +120 -0
- scientific_computing_system-1.6.2/src/cds/nlp/autograd/ops.py +133 -0
- scientific_computing_system-1.6.2/src/cds/nlp/autograd/tensor.py +298 -0
- scientific_computing_system-1.6.2/src/cds/nlp/bpe.py +449 -0
- scientific_computing_system-1.6.2/src/cds/nlp/data.py +70 -0
- scientific_computing_system-1.6.2/src/cds/nlp/embed.py +190 -0
- scientific_computing_system-1.6.2/src/cds/nlp/layers.py +259 -0
- scientific_computing_system-1.6.2/src/cds/nlp/model.py +456 -0
- scientific_computing_system-1.6.2/src/cds/nlp/optim.py +163 -0
- scientific_computing_system-1.6.2/src/cds/nlp/training.py +167 -0
- scientific_computing_system-1.6.2/src/cds/nlp/viz.py +254 -0
- scientific_computing_system-1.6.2/src/cds/numerical_integration/__init__.py +31 -0
- scientific_computing_system-1.6.2/src/cds/numerical_integration/quadrature.py +480 -0
- scientific_computing_system-1.6.2/src/cds/optimization/__init__.py +18 -0
- scientific_computing_system-1.6.2/src/cds/optimization/_metaheuristics.py +287 -0
- scientific_computing_system-1.6.2/src/cds/optimization/minimize.py +425 -0
- scientific_computing_system-1.6.2/src/cds/plot/__init__.py +49 -0
- scientific_computing_system-1.6.2/src/cds/plot/_backend.py +32 -0
- scientific_computing_system-1.6.2/src/cds/plot/charts.py +462 -0
- scientific_computing_system-1.6.2/src/cds/probability/__init__.py +55 -0
- scientific_computing_system-1.6.2/src/cds/probability/_advanced.py +283 -0
- scientific_computing_system-1.6.2/src/cds/probability/distributions.py +236 -0
- scientific_computing_system-1.6.2/src/cds/py.typed +0 -0
- scientific_computing_system-1.6.2/src/cds/quantum/__init__.py +51 -0
- scientific_computing_system-1.6.2/src/cds/quantum/circuit.py +92 -0
- scientific_computing_system-1.6.2/src/cds/quantum/multi_qubit.py +255 -0
- scientific_computing_system-1.6.2/src/cds/quantum/simulator.py +38 -0
- scientific_computing_system-1.6.2/src/cds/scientific/__init__.py +34 -0
- scientific_computing_system-1.6.2/src/cds/scientific/constants.py +35 -0
- scientific_computing_system-1.6.2/src/cds/scientific/formulas.py +116 -0
- scientific_computing_system-1.6.2/src/cds/signals/__init__.py +43 -0
- scientific_computing_system-1.6.2/src/cds/signals/filters.py +421 -0
- scientific_computing_system-1.6.2/src/cds/signals/processing.py +224 -0
- scientific_computing_system-1.6.2/src/cds/stats/__init__.py +83 -0
- scientific_computing_system-1.6.2/src/cds/stats/_distributions.py +102 -0
- scientific_computing_system-1.6.2/src/cds/stats/descriptive.py +172 -0
- scientific_computing_system-1.6.2/src/cds/stats/hypothesis_tests.py +403 -0
- scientific_computing_system-1.6.2/src/cds/stats/nonparametric.py +131 -0
- scientific_computing_system-1.6.2/src/cds/stats/regression.py +51 -0
- scientific_computing_system-1.6.2/src/cds/stats/time_series.py +408 -0
- scientific_computing_system-1.6.2/tests/__init__.py +0 -0
- scientific_computing_system-1.6.2/tests/conftest.py +109 -0
- scientific_computing_system-1.6.2/tests/test_benchmarks.py +111 -0
- scientific_computing_system-1.6.2/tests/test_cli.py +51 -0
- scientific_computing_system-1.6.2/tests/test_cli_color.py +114 -0
- scientific_computing_system-1.6.2/tests/test_cli_extended.py +239 -0
- scientific_computing_system-1.6.2/tests/test_core.py +273 -0
- scientific_computing_system-1.6.2/tests/test_data_analysis.py +146 -0
- scientific_computing_system-1.6.2/tests/test_data_analysis_lazy_bridge.py +68 -0
- scientific_computing_system-1.6.2/tests/test_data_analysis_pandas_io.py +119 -0
- scientific_computing_system-1.6.2/tests/test_dataset.py +91 -0
- scientific_computing_system-1.6.2/tests/test_diffeq.py +186 -0
- scientific_computing_system-1.6.2/tests/test_diffeq_implicit.py +173 -0
- scientific_computing_system-1.6.2/tests/test_edge_misc_numerical.py +649 -0
- scientific_computing_system-1.6.2/tests/test_edge_ml_quantum_linalg.py +243 -0
- scientific_computing_system-1.6.2/tests/test_edge_nlp.py +229 -0
- scientific_computing_system-1.6.2/tests/test_edge_quantum_evaluator_cli.py +647 -0
- scientific_computing_system-1.6.2/tests/test_edge_stats_optimization_signals.py +406 -0
- scientific_computing_system-1.6.2/tests/test_fft2.py +67 -0
- scientific_computing_system-1.6.2/tests/test_graph.py +380 -0
- scientific_computing_system-1.6.2/tests/test_hypothesis.py +216 -0
- scientific_computing_system-1.6.2/tests/test_hypothesis_engine.py +57 -0
- scientific_computing_system-1.6.2/tests/test_hypothesis_tests.py +286 -0
- scientific_computing_system-1.6.2/tests/test_knowledge.py +1147 -0
- scientific_computing_system-1.6.2/tests/test_layering.py +112 -0
- scientific_computing_system-1.6.2/tests/test_linalg_extended.py +179 -0
- scientific_computing_system-1.6.2/tests/test_linalg_qr_cholesky.py +68 -0
- scientific_computing_system-1.6.2/tests/test_math_utils.py +157 -0
- scientific_computing_system-1.6.2/tests/test_ml_clustering.py +92 -0
- scientific_computing_system-1.6.2/tests/test_ml_knn.py +95 -0
- scientific_computing_system-1.6.2/tests/test_ml_linreg.py +70 -0
- scientific_computing_system-1.6.2/tests/test_ml_logreg.py +84 -0
- scientific_computing_system-1.6.2/tests/test_ml_pca.py +98 -0
- scientific_computing_system-1.6.2/tests/test_ml_preprocessing.py +104 -0
- scientific_computing_system-1.6.2/tests/test_ml_tree.py +89 -0
- scientific_computing_system-1.6.2/tests/test_ml_viz.py +58 -0
- scientific_computing_system-1.6.2/tests/test_modeling.py +726 -0
- scientific_computing_system-1.6.2/tests/test_montecarlo.py +149 -0
- scientific_computing_system-1.6.2/tests/test_multi_qubit.py +343 -0
- scientific_computing_system-1.6.2/tests/test_nlp_attention.py +335 -0
- scientific_computing_system-1.6.2/tests/test_nlp_autograd.py +435 -0
- scientific_computing_system-1.6.2/tests/test_nlp_bpe.py +463 -0
- scientific_computing_system-1.6.2/tests/test_nlp_embed.py +240 -0
- scientific_computing_system-1.6.2/tests/test_nlp_layers.py +276 -0
- scientific_computing_system-1.6.2/tests/test_nlp_model.py +172 -0
- scientific_computing_system-1.6.2/tests/test_nlp_training.py +262 -0
- scientific_computing_system-1.6.2/tests/test_nlp_viz.py +188 -0
- scientific_computing_system-1.6.2/tests/test_numerical_integration.py +374 -0
- scientific_computing_system-1.6.2/tests/test_numerical_invariants.py +768 -0
- scientific_computing_system-1.6.2/tests/test_optimization.py +139 -0
- scientific_computing_system-1.6.2/tests/test_optimization_metaheuristics.py +221 -0
- scientific_computing_system-1.6.2/tests/test_plot_charts.py +247 -0
- scientific_computing_system-1.6.2/tests/test_plot_lazy.py +48 -0
- scientific_computing_system-1.6.2/tests/test_probability.py +274 -0
- scientific_computing_system-1.6.2/tests/test_probability_advanced.py +226 -0
- scientific_computing_system-1.6.2/tests/test_property_invariants.py +277 -0
- scientific_computing_system-1.6.2/tests/test_quantum.py +131 -0
- scientific_computing_system-1.6.2/tests/test_scientific.py +185 -0
- scientific_computing_system-1.6.2/tests/test_signals.py +146 -0
- scientific_computing_system-1.6.2/tests/test_signals_filters.py +437 -0
- scientific_computing_system-1.6.2/tests/test_special_numerics.py +44 -0
- scientific_computing_system-1.6.2/tests/test_stats.py +206 -0
- scientific_computing_system-1.6.2/tests/test_stats_nonparametric.py +87 -0
- scientific_computing_system-1.6.2/tests/test_stats_time_series.py +352 -0
|
@@ -0,0 +1,239 @@
|
|
|
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
|
+
docs/assets/
|
|
138
|
+
|
|
139
|
+
# Local launch/promo copy — personal drafting scratch (Reddit/HN/X posts,
|
|
140
|
+
# awesome-list PR text). Not docs-site material; do not commit.
|
|
141
|
+
ARTICLE_DRAFT.md
|
|
142
|
+
AWESOME_SUBMISSIONS_DRAFT.md
|
|
143
|
+
LAUNCH_POSTS_DRAFT.md
|
|
144
|
+
pypi_meta.json
|
|
145
|
+
|
|
146
|
+
# mypy
|
|
147
|
+
.mypy_cache/
|
|
148
|
+
.dmypy.json
|
|
149
|
+
dmypy.json
|
|
150
|
+
|
|
151
|
+
# Pyre type checker
|
|
152
|
+
.pyre/
|
|
153
|
+
|
|
154
|
+
# pytype static type analyzer
|
|
155
|
+
.pytype/
|
|
156
|
+
|
|
157
|
+
# Cython debug symbols
|
|
158
|
+
cython_debug/
|
|
159
|
+
|
|
160
|
+
# IDEs
|
|
161
|
+
.idea/
|
|
162
|
+
.vscode/
|
|
163
|
+
*.swp
|
|
164
|
+
*.swo
|
|
165
|
+
*~
|
|
166
|
+
|
|
167
|
+
# OS
|
|
168
|
+
.DS_Store
|
|
169
|
+
Thumbs.db
|
|
170
|
+
|
|
171
|
+
# Project specific
|
|
172
|
+
*.tmp
|
|
173
|
+
*.bak
|
|
174
|
+
results/
|
|
175
|
+
outputs/
|
|
176
|
+
chains_*/
|
|
177
|
+
data/real/
|
|
178
|
+
data/external/
|
|
179
|
+
*.zip
|
|
180
|
+
*.tar.gz
|
|
181
|
+
*.tgz
|
|
182
|
+
|
|
183
|
+
# CDS specific (future)
|
|
184
|
+
.cds/
|
|
185
|
+
*.hypo.json
|
|
186
|
+
|
|
187
|
+
# Demo runtime artifacts (examples/ write these next to the script)
|
|
188
|
+
_demo_*.json
|
|
189
|
+
|
|
190
|
+
# ZCode agent session state (local only, never commit)
|
|
191
|
+
.zcode/
|
|
192
|
+
|
|
193
|
+
# Windows NUL device accidentally materialized as a file
|
|
194
|
+
nul
|
|
195
|
+
|
|
196
|
+
# Local README preview/render scratch (PNG/HTML mockups generated by
|
|
197
|
+
# scripts/render_readme*.py to eyeball layout before pushing). These are
|
|
198
|
+
# personal review artifacts, not docs-site material; do not commit.
|
|
199
|
+
README_FULL.png
|
|
200
|
+
README_PREVIEW.png
|
|
201
|
+
README_TOP.png
|
|
202
|
+
README_PREVIEW.html
|
|
203
|
+
README_PREVIEW_SECTIONS.html
|
|
204
|
+
README_SECTIONS/
|
|
205
|
+
README_TILES/
|
|
206
|
+
|
|
207
|
+
# Dashboard screenshot helpers (local promo, regenerated on demand)
|
|
208
|
+
assets/monte_carlo_dashboard.png
|
|
209
|
+
|
|
210
|
+
# Local marketing/community posting scratch (Reddit/HN/X drafts, trackers).
|
|
211
|
+
# Personal drafting, not docs-site material; do not commit.
|
|
212
|
+
docs/marketing/
|
|
213
|
+
|
|
214
|
+
# One-off research artifacts (API dumps captured while debugging the
|
|
215
|
+
# Deployments page; not tracked, regenerated on demand)
|
|
216
|
+
deployments_raw.json
|
|
217
|
+
|
|
218
|
+
# Playwright CLI verification cache (local link/doc checks; regenerated on
|
|
219
|
+
# demand, never commit)
|
|
220
|
+
.playwright-cli/
|
|
221
|
+
|
|
222
|
+
# Local promo-GIF QA scratch (audit/compare/measure scripts + extracted
|
|
223
|
+
# frames). One-off diagnostic tooling for eyeballing the promo render; not
|
|
224
|
+
# part of the build or docs site. Do not commit.
|
|
225
|
+
scripts/_compare_gifs.py
|
|
226
|
+
scripts/_gif_audit.py
|
|
227
|
+
scripts/_gif_audit_old.py
|
|
228
|
+
scripts/_gif_inspect.py
|
|
229
|
+
scripts/_layout_compare.py
|
|
230
|
+
scripts/_measure.mjs
|
|
231
|
+
scripts/_old_anatomy.py
|
|
232
|
+
scripts/_old_flow.py
|
|
233
|
+
assets/_qa_frames/
|
|
234
|
+
assets/_qa_old/
|
|
235
|
+
assets/_qa_old_full/
|
|
236
|
+
assets/_qa_view/
|
|
237
|
+
|
|
238
|
+
# plot demo output
|
|
239
|
+
examples/_plot_out/
|