The ProbabilisticCognitionModel models probabilistic route choice behavior.
If an agent has received a route recommendation (you need to specify the route recommendation using a InformationStimulus),
the agent will make a probabilistic route choice.
Imagine there are two targets: if target 1 is recommended ("take target 1"),
the agent takes target 1 with a probability of 80% and target 2 with a probability of 20%.
The probabilities need to be specified in RouteChoiceDefinition.
Please note:
- the appeal "take target 1" must be similar in the InformationStimulus and the RouteChoiceDefinition.
- the agent responds to the first appeal only
The ProbabilisticCognitionModel models probabilistic route choice behavior.
If an agent has received a route recommendation (you need to specify the route recommendation using a InformationStimulus), the agent will make a probabilistic route choice. Imagine there are two targets: if target 1 is recommended ("take target 1"), the agent takes target 1 with a probability of 80% and target 2 with a probability of 20%. The probabilities need to be specified in RouteChoiceDefinition.
Please note: - the appeal "take target 1" must be similar in the InformationStimulus and the RouteChoiceDefinition. - the agent responds to the first appeal only
Example:
"org.vadere.state.attributes.models.psychology.cognition.AttributesProbabilisticCognitionModel": { "routeChoices" : [ { "instruction" : "use target 11", "targetIds" : [ 11, 21, 31 ], "targetProbabilities" : [ 1.0, 0.0, 0.0 ] }, { "instruction" : "use target 21", "targetIds" : [ 11, 21, 31 ], "targetProbabilities" : [ 0.0, 1.0, 0.0 ] }, { "instruction" : "use target 31", "targetIds" : [ 11, 21, 31 ], "targetProbabilities" : [ 0.0, 0.0, 1.0 ] } ] } } } }