Burnmydays Devin commited on
Commit ·
e48f67b
1
Parent(s): 8e38372
fix: sync sigrank.py _classify labels to species taxonomy
Browse filesCascade Matrix / Cache Architect / Converter Loop / Throughput Pipe
now match app.py classify() — no more stale rarity-ladder labels in
the CLI output.
Generated with [Devin](https://cli.devin.ai/docs)
Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
- sigrank.py +5 -5
sigrank.py
CHANGED
|
@@ -51,12 +51,12 @@ def _classify(m):
|
|
| 51 |
return "Non-Compounding · stateless pipe"
|
| 52 |
v, l = m["velocity"], m["leverage"]
|
| 53 |
if v >= 1 and l >= 100:
|
| 54 |
-
return "
|
| 55 |
if l >= 10 and v < 1:
|
| 56 |
-
return "
|
| 57 |
-
if v >= 0.
|
| 58 |
-
return "
|
| 59 |
-
return "
|
| 60 |
|
| 61 |
|
| 62 |
def _grab_usage(args):
|
|
|
|
| 51 |
return "Non-Compounding · stateless pipe"
|
| 52 |
v, l = m["velocity"], m["leverage"]
|
| 53 |
if v >= 1 and l >= 100:
|
| 54 |
+
return "Cascade Matrix · recursive processing loop"
|
| 55 |
if l >= 10 and v < 1:
|
| 56 |
+
return "Cache Architect · high structural reuse"
|
| 57 |
+
if v >= 0.5 and l < 2:
|
| 58 |
+
return "Converter Loop · single-pass processing velocity"
|
| 59 |
+
return "Throughput Pipe · raw metric bandwidth"
|
| 60 |
|
| 61 |
|
| 62 |
def _grab_usage(args):
|