Align requirements and mirror copies
Browse files- README.md +1 -1
- __pycache__/app.cpython-312.pyc +0 -0
- app.py +1 -1
- core/__pycache__/baseline.cpython-312.pyc +0 -0
- core/__pycache__/cluster.cpython-312.pyc +0 -0
- core/__pycache__/dataset.cpython-312.pyc +0 -0
- core/__pycache__/embed.cpython-312.pyc +0 -0
- core/__pycache__/metrics.cpython-312.pyc +0 -0
- requirements.txt +1 -0
README.md
CHANGED
|
@@ -58,7 +58,7 @@ Dataset schema matches `failure-induced-benchmarks` CARB conventions: `x`, `y`,
|
|
| 58 |
- **[obversarystudios.org](https://obversarystudios.org)** β research engineering narrative.
|
| 59 |
- [Failure discovery on binary reasoning](https://obversarystudios.org/docs/failure_discovery_binary_reasoning.html) β research framing.
|
| 60 |
- [Failure clusters as interventions](https://obversarystudios.org/docs/failure_clusters_as_interventions.html) β what clusters imply for system changes.
|
| 61 |
-
- **[carb-observability-space](https://huggingface.co/spaces/
|
| 62 |
- **[github.com/architectfromthefuture/failure-induced-benchmarks](https://github.com/architectfromthefuture/failure-induced-benchmarks)** β CARB generator and failure geometry library.
|
| 63 |
|
| 64 |
## Honest scope
|
|
|
|
| 58 |
- **[obversarystudios.org](https://obversarystudios.org)** β research engineering narrative.
|
| 59 |
- [Failure discovery on binary reasoning](https://obversarystudios.org/docs/failure_discovery_binary_reasoning.html) β research framing.
|
| 60 |
- [Failure clusters as interventions](https://obversarystudios.org/docs/failure_clusters_as_interventions.html) β what clusters imply for system changes.
|
| 61 |
+
- **[carb-observability-space](https://huggingface.co/spaces/obversarystudios/carb-observability-space)** β live HF Inference API version (requires `HF_TOKEN`).
|
| 62 |
- **[github.com/architectfromthefuture/failure-induced-benchmarks](https://github.com/architectfromthefuture/failure-induced-benchmarks)** β CARB generator and failure geometry library.
|
| 63 |
|
| 64 |
## Honest scope
|
__pycache__/app.cpython-312.pyc
CHANGED
|
Binary files a/__pycache__/app.cpython-312.pyc and b/__pycache__/app.cpython-312.pyc differ
|
|
|
app.py
CHANGED
|
@@ -54,7 +54,7 @@ organised around reasoning difficulty β not purely around which model ran.
|
|
| 54 |
|
| 55 |
*Part of the [Obversary Studios](https://obversarystudios.org) evaluation systems research.*
|
| 56 |
*Live pipeline version (HF Inference API):*
|
| 57 |
-
*[carb-observability-space](https://huggingface.co/spaces/
|
| 58 |
"""
|
| 59 |
|
| 60 |
|
|
|
|
| 54 |
|
| 55 |
*Part of the [Obversary Studios](https://obversarystudios.org) evaluation systems research.*
|
| 56 |
*Live pipeline version (HF Inference API):*
|
| 57 |
+
*[carb-observability-space](https://huggingface.co/spaces/obversarystudios/carb-observability-space)*
|
| 58 |
"""
|
| 59 |
|
| 60 |
|
core/__pycache__/baseline.cpython-312.pyc
CHANGED
|
Binary files a/core/__pycache__/baseline.cpython-312.pyc and b/core/__pycache__/baseline.cpython-312.pyc differ
|
|
|
core/__pycache__/cluster.cpython-312.pyc
CHANGED
|
Binary files a/core/__pycache__/cluster.cpython-312.pyc and b/core/__pycache__/cluster.cpython-312.pyc differ
|
|
|
core/__pycache__/dataset.cpython-312.pyc
CHANGED
|
Binary files a/core/__pycache__/dataset.cpython-312.pyc and b/core/__pycache__/dataset.cpython-312.pyc differ
|
|
|
core/__pycache__/embed.cpython-312.pyc
CHANGED
|
Binary files a/core/__pycache__/embed.cpython-312.pyc and b/core/__pycache__/embed.cpython-312.pyc differ
|
|
|
core/__pycache__/metrics.cpython-312.pyc
CHANGED
|
Binary files a/core/__pycache__/metrics.cpython-312.pyc and b/core/__pycache__/metrics.cpython-312.pyc differ
|
|
|
requirements.txt
CHANGED
|
@@ -2,3 +2,4 @@ scikit-learn
|
|
| 2 |
matplotlib
|
| 3 |
numpy
|
| 4 |
pandas
|
|
|
|
|
|
| 2 |
matplotlib
|
| 3 |
numpy
|
| 4 |
pandas
|
| 5 |
+
audioop-lts; python_version >= "3.13"
|