genpark-hidden-markov-model-viterbi-decoder-skill

mcp
Security Audit
Warn
Health Warn
  • No license — Repository has no license file
  • Description — Repository has a description
  • Active repo — Last push 0 days ago
  • Low visibility — Only 8 GitHub stars
Code Pass
  • Code scan — Scanned 4 files during light audit, no dangerous patterns found
Permissions Pass
  • Permissions — No dangerous permissions requested

No AI report is available for this listing yet.

SUMMARY

GenPark AI Agent Skill - Hidden Markov Model (HMM) Viterbi dynamic programming decoder determining the most probable sequence of hidden states from noisy observation streams.

README.md

GenPark Hidden Markov Model Viterbi Decoder Skill

Viterbi dynamic programming algorithm for decoding maximum a posteriori (MAP) state sequences in Hidden Markov Models.

Check out GenPark and the GenPark MCP Catalog.

graph LR
    subgraph t=0
        H0[HEALTHY]
        F0[FEVER]
    end
    subgraph t=1
        H1[HEALTHY]
        F1[FEVER]
    end
    subgraph t=2
        H2[HEALTHY]
        F2[FEVER]
    end
    H0 -->|Viterbi Trellis| H1
    H1 -->|Viterbi Trellis| F2
    style H0 fill:#e8f5e9
    style H1 fill:#e8f5e9
    style F2 fill:#ffebee

Features

  • Dynamic programming log-space calculations avoiding underflow.
  • Exact backpointer sequence path reconstruction.
  • Pure Python standard library.

Reviews (0)

No results found