Build the n-gram index of a BPMN/Petri net process model to compute the state of an ongoing case in constant time.
Project description
Efficient State Computation of Process Ongoing Cases
Approach to, given a process model in Petri net or BPMN format, compute the state of ongoing cases in constant time.
The approach consists of, in design time, given a maximum size n, create an index that associates each
n-gram -- i.e., execution of n consecutive activities -- with the state(s) they lead to in the process model.
Then, at runtime, the state of an ongoing process case can be computed in constant time by searching for the last n
executed activities in the index.
For example, for an ongoing case A-B-F-T-W-S-G-T-D, after building the 5-gram index, the state would be computed
by searching in the index with the sequence [W, S, G, T, D].
This approach has been submitted as a publication to IEEE Transactions on Services Computing under the title "Efficient Online Computation of Business Process State From Trace Prefixes via N-Gram Indexing", by David Chapela-Campa and Marlon Dumas.
Installation
Package available in PyPI: https://pypi.org/project/ongoing-process-state/. Install it with:
pip install ongoing-process-state
Requirements
- Python v3.9.5+
- PIP v23.0+
- Python dependencies: all packages listed in pyproject.toml
Basic Usage
Given a process model in BPMN or Petri net format, first compute the reachability graph and build an n-gram index. Then, given an instance of an N-gram index, compute the state given an n-gram prefix.
BPMN model
from pathlib import Path
from ongoing_process_state.n_gram_index import NGramIndex
from ongoing_process_state.utils import read_bpmn_model
# Read BPMN model
bpmn_model_path = Path("./inputs/synthetic/synthetic_and_k5.bpmn")
bpmn_model = read_bpmn_model(bpmn_model_path)
# Compute reachability graph
reachability_graph = bpmn_model.get_reachability_graph()
# Build n-gram index
n_gram_index = NGramIndex(reachability_graph, n_gram_size_limit=5)
n_gram_index.build()
Petri net
from pathlib import Path
from ongoing_process_state.n_gram_index import NGramIndex
from ongoing_process_state.utils import read_petri_net
# Read BPMN model
petri_net_path = Path("./inputs/synthetic/synthetic_and_k5.bpmn")
petri_net = read_petri_net(petri_net_path)
# Compute reachability graph
reachability_graph = petri_net.get_reachability_graph()
# Build n-gram index
n_gram_index = NGramIndex(reachability_graph, n_gram_size_limit=5)
n_gram_index.build()
Compute ongoing state
from ongoing_process_state.n_gram_index import NGramIndex
# Compute the state of an ongoing case
n_gram = ["B", "E", "F", "C", "G"]
ongoing_state = n_gram_index.get_best_marking_state_for(n_gram)
# Compute the state of an ongoing case with less than N recorded events
n_gram = [NGramIndex.TRACE_START, "A", "B", "F"]
ongoing_state = n_gram_index.get_best_marking_state_for(n_gram)
Storing
The following code can be used to store/load the reachability graph in/from a file:
from pathlib import Path
from ongoing_process_state.reachability_graph import ReachabilityGraph
# Store reachability graph for future re-use
reachability_graph_path = Path("./outputs/synthetic_and_k5.tgf")
with open(reachability_graph_path, 'w') as output_file:
output_file.write(reachability_graph.to_tgf_format())
# Load reachability graph from file
with open(reachability_graph_path, 'r') as reachability_graph_file:
reachability_graph = ReachabilityGraph.from_tgf_format(reachability_graph_file.read())
We recommend to store the n-gram index in an indexed database, as the size of the map may be too big to comfortably work with it through files. However, we provide a simple functionality to store/load an n-gram index in/from a file.
from pathlib import Path
from ongoing_process_state.n_gram_index import NGramIndex
# Store n-gram index for future re-use
n_gram_index_path = Path("./outputs/synthetic_and_k5.txt")
n_gram_index.to_self_contained_map_file(n_gram_index_path)
# Lead n-gram index from file
n_gram_index = NGramIndex.from_self_contained_map_file(n_gram_index_path, reachability_graph)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ongoing_process_state-2.0.3.tar.gz.
File metadata
- Download URL: ongoing_process_state-2.0.3.tar.gz
- Upload date:
- Size: 23.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f63c1d06930b341aecd4e9dc3a2e70aa2b49b7f449d8c57d595ae2207c02593
|
|
| MD5 |
e3ceb8fa17acb279864b880503f0f596
|
|
| BLAKE2b-256 |
f7de8ab24f2462e98299f1bee79881d07c1df636ba4bb8e2003d9f2b7e15e105
|
Provenance
The following attestation bundles were made for ongoing_process_state-2.0.3.tar.gz:
Publisher:
build.yaml on AutomatedProcessImprovement/ongoing-process-state
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ongoing_process_state-2.0.3.tar.gz -
Subject digest:
1f63c1d06930b341aecd4e9dc3a2e70aa2b49b7f449d8c57d595ae2207c02593 - Sigstore transparency entry: 168232973
- Sigstore integration time:
-
Permalink:
AutomatedProcessImprovement/ongoing-process-state@e1ee9ae1872a6d79ce4057f597b4a8fe78355098 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AutomatedProcessImprovement
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build.yaml@e1ee9ae1872a6d79ce4057f597b4a8fe78355098 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ongoing_process_state-2.0.3-py3-none-any.whl.
File metadata
- Download URL: ongoing_process_state-2.0.3-py3-none-any.whl
- Upload date:
- Size: 25.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c24f79456b097a79a7e7c491ab9bcacd5c7894d58e0b04b55d1525b4a3bff5c6
|
|
| MD5 |
a7dcdd3ac9130a2d0fcd298e23878dcb
|
|
| BLAKE2b-256 |
764b2e653e9309daeac535e59aa0a0910743c133ff23dfbe7fa368cfe3bf9f6b
|
Provenance
The following attestation bundles were made for ongoing_process_state-2.0.3-py3-none-any.whl:
Publisher:
build.yaml on AutomatedProcessImprovement/ongoing-process-state
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ongoing_process_state-2.0.3-py3-none-any.whl -
Subject digest:
c24f79456b097a79a7e7c491ab9bcacd5c7894d58e0b04b55d1525b4a3bff5c6 - Sigstore transparency entry: 168232976
- Sigstore integration time:
-
Permalink:
AutomatedProcessImprovement/ongoing-process-state@e1ee9ae1872a6d79ce4057f597b4a8fe78355098 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/AutomatedProcessImprovement
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build.yaml@e1ee9ae1872a6d79ce4057f597b4a8fe78355098 -
Trigger Event:
push
-
Statement type: