pfsmgraph-hmm 0.0.0__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.
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pfsmgraph-hmm
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: FSM operations, HMM topology search, and Baum-Welch for the pfsmgraph ecosystem. Coming soon.
|
|
5
|
+
Author-email: Panayotis Mavromatis <panos.mavromatis@nyu.edu>
|
|
6
|
+
License: MIT
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
<!-- README.md -->
|
|
11
|
+
# pfsmgraph-hmm
|
|
12
|
+
|
|
13
|
+
Part of the [pfsmgraph](https://pypi.org/project/pfsmgraph/) ecosystem.
|
|
14
|
+
Probabilistic finite-state model library for sequences over arbitrary symbolic alphabets with multi-character token support. Implements weighted FSM operations, HMM topology search, and the Baum-Welch algorithm.
|
|
15
|
+
Implementation in progress. This is a placeholder release.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<!-- README.md -->
|
|
2
|
+
# pfsmgraph-hmm
|
|
3
|
+
|
|
4
|
+
Part of the [pfsmgraph](https://pypi.org/project/pfsmgraph/) ecosystem.
|
|
5
|
+
Probabilistic finite-state model library for sequences over arbitrary symbolic alphabets with multi-character token support. Implements weighted FSM operations, HMM topology search, and the Baum-Welch algorithm.
|
|
6
|
+
Implementation in progress. This is a placeholder release.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# pyproject.toml
|
|
2
|
+
[build-system]
|
|
3
|
+
requires = ["hatchling"]
|
|
4
|
+
build-backend = "hatchling.build"
|
|
5
|
+
|
|
6
|
+
[project]
|
|
7
|
+
name = "pfsmgraph-hmm"
|
|
8
|
+
version = "0.0.0"
|
|
9
|
+
description = "FSM operations, HMM topology search, and Baum-Welch for the pfsmgraph ecosystem. Coming soon."
|
|
10
|
+
readme = "README.md"
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
authors = [{ name = "Panayotis Mavromatis", email = "panos.mavromatis@nyu.edu" }]
|
|
13
|
+
license = { text = "MIT" }
|
|
14
|
+
|
|
15
|
+
[tool.hatch.build.targets.wheel]
|
|
16
|
+
bypass-selection = true
|