You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes we would like to have transaction histories that represent plausible user actions. The simplest might be {login, do stuff, logout}* where you can only do stuff while logged in.
One simple way to simulate something like this is to have a state machine where transitions from state to state are selected stochastically based on specified transition probabilities.
The suggested syntax for the schema for such a generator would be something like this:
Sometimes we would like to have transaction histories that represent plausible user actions. The simplest might be {login, do stuff, logout}* where you can only do stuff while logged in.
One simple way to simulate something like this is to have a state machine where transitions from state to state are selected stochastically based on specified transition probabilities.
The suggested syntax for the schema for such a generator would be something like this:
Of course, the transition probabilities may not add up to 1 so they should be normalized.
The sample result would be a list of transactions much like the common-point-of-compromise generator produces.
The text was updated successfully, but these errors were encountered: