Burnmydays Devin commited on
Commit
e48f67b
·
1 Parent(s): 8e38372

fix: sync sigrank.py _classify labels to species taxonomy

Browse files

Cascade 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>

Files changed (1) hide show
  1. 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 "Closed-Loop Kinetic · holds both axes"
55
  if l >= 10 and v < 1:
56
- return "Archival Sponge · high reuse, low generation"
57
- if v >= 0.8 and l < 2:
58
- return "Volatile Ingestor · generates, doesn't retain"
59
- return "Transient · low on both axes"
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):