FullKnowledgeElicitor
- class negmas.elicitation.FullKnowledgeElicitor(user: ~negmas.elicitation.user.User, *, strategy: ~negmas.elicitation.strategy.EStrategy | None = None, base_negotiator: ~negmas.sao.negotiators.base.SAOPRNegotiator = <negmas.gb.negotiators.timebased.AspirationNegotiator object>, opponent_model_factory: None | ~typing.Callable[[~negmas.common.NegotiatorMechanismInterface], ~negmas.models.acceptance.DiscreteAcceptanceModel] = <function BaseElicitor.<lambda>>, expector_factory: ~negmas.elicitation.expectors.Expector | ~typing.Callable[[], ~negmas.elicitation.expectors.Expector] = <class 'negmas.elicitation.expectors.MeanExpector'>, single_elicitation_per_round=False, continue_eliciting_past_reserved_val=False, epsilon=0.001, true_utility_on_zero_cost=False)[source]
Bases:
BaseElicitorAn elicitor that does not need to do any elicitation because it has full access to the user ufun.
Attributes Summary
Returns the private information (annotation) not shared with other negotiators
Agent capabilities
Returns the preferences if it is a CrispUtilityFunction else None
The total elicitation cost.
The total elicitation time in seconds.
Does the entity has an associated ufun?
Does the entity has an associated ufun?
Does the entity has an associated ufun?
The unique ID of this entity
A convenient name of the entity (intended primarily for printing/logging/debugging).
Returns the owner agent of the negotiator
Returns the parent controller
The utility function attached to that object
Returns the private information (annotation) not shared with other negotiators
Returns the preferences if it is a ProbUtilityFunction else None
Reserved outcome is the outcome that will be realized by default for this agent.
Reserved value is what the entity gets if no agreement is reached in the negotiation.
Returns the preferences if it is a
BaseUtilityFunctionelse NoneThe unique ID of this entity
Methods Summary
__call__(state[, dest])Called by
Negotiator.__call__(which is called by the mechanism) to counter the offer.accuracy_limit(cost)The accuracy limit given the cost and
epsilon.add_capabilities(capabilities)Adds named capabilities to the negotiator.
add_handler(notification_type, callback)Adds a notification handler to the list of handlers of the given type.
before_death(cntxt)Called whenever the parent is about to kill this negotiator.
Called by apply just before continuously calling elicit_single
best_offer(state)The outcome with maximum expected utility given the expector and its utility
Returns whether we can do more elicitation
cancel([reason])A method that may be called by a mechanism to make the negotiator cancel whatever it is currently processing.
checkpoint(path[, file_name, info, ...])Saves a checkpoint of the current object at the given path.
checkpoint_info(file_name)Returns the information associated with a dump of the object saved in the given file
create(*args, **kwargs)Creates an object and returns a proxy to it.
elicit(state)Called to do utility elicitation whenever needed.
elicit_single(state)Does a single elicitation act
from_checkpoint(file_name[, return_info])Creates an object from a saved checkpoint
handlers(notification_type)Gets the list of handlers registered for some notification type.
init_elicitation(preferences, **kwargs)Called once to initialize the elicitation process
is_acceptable_as_agreement(outcome)Whether the given outcome is acceptable as a final agreement of a negotiation.
isin(negotiation_id)Is that agent participating in the given negotiation? Tests if the agent is participating in the given negotiation.
join(nmi, state, *[, preferences, role])Called to join a negotiation.
Maximum utility that could even in principle be attained which simply means the utility value of the outcome with maximum utility.
Minimum utility that could even in principle be attained which simply means the utility value of the outcome with minimum utility.
offering_utilities(state)Calculates the offering utility for all outcomes
offering_utility(outcome, state)on_leave(state)A call back called after leaving a negotiation.
on_mechanism_error(state)A call back called whenever an error happens in the mechanism.
on_negotiation_end(state)A call back called at each negotiation end
on_negotiation_start(state)Called when the negotiation starts.
on_notification(notification, notifier)Called whenever a notification is received
on_notification_(notification, notifier)Called when a notification is received.
on_opponent_model_updated(outcomes, old, new)Called whenever an opponents model is updated.
on_partner_ended(partner)Called when a partner ends the negotiation.
on_partner_proposal(state, partner_id, offer)Called when one of the partners propose (only if enable_callbacks is set in the
SAOMechanism).on_partner_response(state, partner_id, ...)Called when one of the partners respond (only if enable_callbacks is set in the
SAOMechanism).on_preferences_changed(changes)Called to inform the entity that its ufun has changed.
on_round_end(state)A call back called at each negotiation round end
on_round_start(state)A call back called at each negotiation round start
propose(state[, dest])Called to propose an outcome
propose_(state[, dest])The method directly called by the mechanism (through
counter) to ask for a proposalremove_capability(name)Removes named capability from the negotiator
remove_handler(notification_type, callback)Removes a notification handler from the list of handlers of the given type.
respond(state[, source])Called to respond to an offer.
respond_(state, offer)Called by the mechanism directly (through
counter) to respond to offers.set_id(id)Sets the unique ID of this entity
set_preferences(value[, force, ...])Sets the utility function/Preferences.
spawn([spawn_as, spawn_params])spawn_object(*args, **kwargs)user_preferences(outcome)Finds the total utility obtained by the user for this outcome after discounting elicitation cost.
utilities_on_rejection(state)Finds the utility of rejection for all outputs.
Returns a
Distributionfor every outcomeutility_on_acceptance(outcome)The utility of acceptance which is simply the utility function applied to
outcome.utility_on_rejection(outcome, state)Estimated utility if this outcome rejected at this state.
Attributes Documentation
- ami
- annotation
Returns the private information (annotation) not shared with other negotiators
- capabilities
Agent capabilities
- crisp_ufun
Returns the preferences if it is a CrispUtilityFunction else None
- elicitation_cost
The total elicitation cost.
- elicitation_time
The total elicitation time in seconds.
- has_cardinal_preferences
Does the entity has an associated ufun?
- has_preferences
Does the entity has an associated ufun?
- has_ufun
Does the entity has an associated ufun?
- id
The unique ID of this entity
- name
A convenient name of the entity (intended primarily for printing/logging/debugging).
- nmi
- opponent_ufun
- owner
Returns the owner agent of the negotiator
- parent
Returns the parent controller
- preferences
The utility function attached to that object
- private_info
Returns the private information (annotation) not shared with other negotiators
- prob_ufun
Returns the preferences if it is a ProbUtilityFunction else None
- reserved_outcome
Reserved outcome is the outcome that will be realized by default for this agent.
Remarks:
Reserved outcomes are defined for
OrdinalPreferences.
See also
- reserved_value
Reserved value is what the entity gets if no agreement is reached in the negotiation.
The reserved value can either be explicity defined for the ufun or it can be the output of the ufun for
Noneoutcome.
- short_type_name
- type_name
- ufun
Returns the preferences if it is a
BaseUtilityFunctionelse None
- uuid
The unique ID of this entity
Methods Documentation
- __call__(state: SAOState, dest: str | None = None) SAOResponse
Called by
Negotiator.__call__(which is called by the mechanism) to counter the offer. It just callsrespond_andpropose_as needed.- Parameters:
state –
SAOStategiving current state of the negotiation.dest – The ID of the destination of the response. May be empty under
SAOMechanism
- Returns:
The response to the given offer with a counter offer if the response is REJECT
- Return type:
Tuple[ResponseType, Outcome]
- Remarks:
The current offer is accessible through state.current_offer
- add_capabilities(capabilities: dict) None
Adds named capabilities to the negotiator.
- Parameters:
capabilities – The capabilities to be added as a dict
- Returns:
None
- Remarks:
It is the responsibility of the caller to be really capable of added capabilities.
- add_handler(notification_type: str, callback: Callable[[Notification, str], bool])
Adds a notification handler to the list of handlers of the given type. These handlers will be called in the order in which they are received
- Parameters:
notification_type – Notification type as specificed in the type member of the Notification class
callback – The callback which must receive a Notification object and a string and returns a boolean. If True is returned from one callback, the remaining callbacks will not be called
Returns:
- before_death(cntxt: dict[str, Any]) bool
Called whenever the parent is about to kill this negotiator.
It should return False if the negotiator does not want to be killed but the controller can still force-kill it
- best_offer(state: MechanismState) tuple[tuple | None, float]
The outcome with maximum expected utility given the expector and its utility
- Parameters:
state – The mechanism state
- Returns:
A tuple containing the best outcome (or None) and its expected utility using the expector (or reserved value)
- Remarks:
if there are no offerable outcomes, elicitation is done and if still there are no offerable outcomes, the reserved value is returned (with None as outcome)
Only offerable outcomes are checked.
The best outcome is defined as the one with maximum
expectapplied tooffering_utility.
- cancel(reason=None) None
A method that may be called by a mechanism to make the negotiator cancel whatever it is currently processing.
Negotiators can just ignore this message (default behavior) but if there is a way to actually cancel work, it should be implemented here to improve the responsiveness of the negotiator.
- checkpoint(path: PathLike, file_name: str | None = None, info: dict[str, Any] | None = None, exist_ok: bool = False, single_checkpoint: bool = True, step_attribs: tuple[str, ...] = ('current_step', '_current_step', '_Entity__current_step', '_step')) Path
Saves a checkpoint of the current object at the given path.
- Parameters:
path – Full path to a directory to store the checkpoint
file_name – Name of the file to dump into. If not given, a unique name is created
info – Information to save with the checkpoint (must be json serializable)
exist_ok – If true, override existing dump
single_checkpoint – If true, keep a single checkpoint for the last step
step_attribs – Attributes to represent the time-step of the object. Any of the given attributes will be used in the file name generated if single_checkpoint is False. If single_checkpoint is True, the filename will not contain time-step information
- Returns:
full path to the file used to save the checkpoint
- classmethod checkpoint_info(file_name: Path | str) dict[str, Any]
Returns the information associated with a dump of the object saved in the given file
- Parameters:
file_name – Name of the object
Returns:
- classmethod create(*args, **kwargs)
Creates an object and returns a proxy to it.
- elicit(state: MechanismState) None
Called to do utility elicitation whenever needed.
- Parameters:
state – mechanism state
- Remarks:
Keeps track of elicitation time and asking time.
If the maximum attainable utility minus elicitation cost is less than the reserved value, no elicitation will take place because we will end this negotiation anyway. Note that the maximum attainable utility can never go up.
Calls
before_elicitingonce to initialize the process then callselicit_singlewhich does the actual elicitation. This is done only once ifsingle_elicitationis set, otherwise it is repeated until one of the following conditiosn is met:elicit_singlereturns FalseThe maximum attainable utility (minus elicitation cost) is less than the reserved value.
- elicit_single(state: MechanismState)[source]
Does a single elicitation act
- Parameters:
state – mechanism state
- classmethod from_checkpoint(file_name: Path | str, return_info: bool = False) NamedObject | tuple[NamedObject, dict[str, Any]]
Creates an object from a saved checkpoint
- Parameters:
file_name
return_info – If True, tbe information saved when the file was dumped are returned
- Returns:
Either the object or the object and dump-info as a dict (if return_info was true)
Remarks:
- If info is returned, it is guaranteed to have the following members:
time: Dump time
type: Type of the dumped object
id: ID
name: name
- handlers(notification_type: str) list[Callable[[Notification, str], bool]]
Gets the list of handlers registered for some notification type. This list can be modified in place to change the order of handlers for example. It is NOT a copy.
- init_elicitation(preferences: IPUtilityFunction | Distribution | None, **kwargs)[source]
Called once to initialize the elicitation process
- Parameters:
preferences – The probabilistic utility function
**kwargs
- Remarks:
If no
ufunis given one will be created with 0-1 uniform distributions and zero reserved value.If a single
Distributionis given asufun, it is repeated for all outcomes (and the reserved value is set to zero).If a list of
Distributions is given, it must have the same length as the list of outcomes of this negotiation and is used to set theufun.The opponent model
- is_acceptable_as_agreement(outcome: Outcome) bool
Whether the given outcome is acceptable as a final agreement of a negotiation.
The default behavior is to reject only if a reserved value is defined for the agent and is known to be higher than the utility of the outcome.
- isin(negotiation_id: str | None) bool
Is that agent participating in the given negotiation? Tests if the agent is participating in the given negotiation.
- join(nmi: NegotiatorMechanismInterface, state: MechanismState, *, preferences: Preferences | None = None, role: str = 'negotiator', **kwargs) bool
Called to join a negotiation.
- Remarks:
uses the base_negotiator to join the negotiation.
creates a
MappingUtilityFunctionthat maps every outcome to the result of the expector applied to the corresponding utility value.The reserved value of the created ufun is set to -inf
- maximum_attainable_utility() float
Maximum utility that could even in principle be attained which simply means the utility value of the outcome with maximum utility.
- minimum_guaranteed_utility()
Minimum utility that could even in principle be attained which simply means the utility value of the outcome with minimum utility.
- offering_utilities(state) ndarray
Calculates the offering utility for all outcomes
- Parameters:
state – Calculates the state at which the offering utilities are to be calculated
- Returns:
An ndarray with the offering utility of every outcome (in order)
- Remarks:
This is just a faster version of calling
offering_utilityin a loop.
- offering_utility(outcome, state) Distribution | float
returns expected utlity of offering
outcomeinstate- Parameters:
outcome – The outcome
state – The state
- Returns:
A utility value
- Remarks:
returns $u(o) p(o) + ru(o) (1-p(o))$ where $p$ is the opponent model, $u$ is the utility function, and $r$ is the utility in case of rejections.
stateis needed when calculating $r(o)$ by callingutility_on_rejection.Note that if $u$ or $r$ return a
Distribution, this method will return aDistributionnot a real number.
- on_leave(state: TState) None
A call back called after leaving a negotiation.
- Parameters:
state –
MechanismStategiving current state of the negotiation.
- on_mechanism_error(state: TState) None
A call back called whenever an error happens in the mechanism. The error and its explanation are accessible in
state- Parameters:
state –
MechanismStategiving current state of the negotiation.
- Remarks:
The default behavior is to do nothing.
Override this to hook some action
- on_negotiation_end(state: TState) None
A call back called at each negotiation end
- Parameters:
state –
MechanismStateor one of its descendants giving the state at which the negotiation ended.
- Remarks:
The default behavior is to do nothing.
Override this to hook some action
on_negotiation_startandon_negotiation_endwill always be called once for every agent.
- on_negotiation_start(state: MechanismState)
Called when the negotiation starts. Just passes the call to base_negotiator.
- on_notification(notification: Notification, notifier: str)
Called whenever a notification is received
- Parameters:
notification – The notification
notifier – The notifier entity
- Remarks:
The default implementation only responds to end_negotiation by ending the negotiation
- on_notification_(notification: Notification, notifier: str) bool
Called when a notification is received. Do NOT directly override this method
- Parameters:
notification
notifier
Returns:
- on_opponent_model_updated(outcomes: list[tuple], old: list[float], new: list[float]) None
Called whenever an opponents model is updated.
- Parameters:
outcomes – A list of outcomes for which the acceptance probability are changed
old – The old acceptance probability
new – The new acceptance probability
- on_partner_ended(partner: str)
Called when a partner ends the negotiation.
Note that the negotiator owning this component may never receive this offer. This is only received if the mechanism is sending notifications on every offer.
- on_partner_proposal(state: MechanismState, partner_id: str, offer: tuple)
Called when one of the partners propose (only if enable_callbacks is set in the
SAOMechanism).- Parameters:
state – mechanism state
partner_id – the partner who proposed
offer – The offer from the partner
- Remarks:
Used to update the opponent model by calling
update_offeredthenon_opponent_model_updated.
- on_partner_response(state: MechanismState, partner_id: str, outcome: tuple, response: ResponseType)
Called when one of the partners respond (only if enable_callbacks is set in the
SAOMechanism).- Parameters:
state – mechanism state
partner_id – the partner who offered
outcome – The outcome responded to
response – The partner response including both the response and outcome
- Remarks:
Used to update the opponent model by calling
update_rejectedorupdate_accepted1 then `on_opponent_model_updated.
- on_preferences_changed(changes: list[PreferencesChange])
Called to inform the entity that its ufun has changed.
- Parameters:
changes – An ordered list of changes that happened.
Remarks:
You MUST call the super() version of this function either before or after your code when you are overriding it.
The most general form of change is
PreferencesChange.Generalwhich indicates that you cannot trust anything you knew about the ufun anymore
- on_round_end(state: TState) None
A call back called at each negotiation round end
- Parameters:
state –
MechanismStategiving current state of the negotiation.
- Remarks:
The default behavior is to do nothing.
Override this to hook some action
- on_round_start(state: TState) None
A call back called at each negotiation round start
- Parameters:
state –
MechanismStategiving current state of the negotiation.
- Remarks:
The default behavior is to do nothing.
Override this to hook some action.
- propose(state: MechanismState, dest: str | None = None) tuple
Called to propose an outcome
- Parameters:
state – mechanism state
Remarks:
if the negotiator
can_elicit, it willelicit.always then calls the base negotiator to propose.
- propose_(state: SAOState, dest: str | None = None) tuple | ExtendedOutcome | None
The method directly called by the mechanism (through
counter) to ask for a proposal- Parameters:
state – The mechanism state
dest – the destination (can be ignored in AOP, SAOP, MAOP)
- Returns:
An outcome to offer or None to refuse to offer
- Remarks:
Depending on the
SAOMechanismsettings, refusing to offer may be interpreted as ending the negotiationThe negotiator will only receive this call if it has the ‘propose’ capability.
- remove_capability(name: str) None
Removes named capability from the negotiator
- Parameters:
capabilities – The capabilities to be added as a dict
- Returns:
None
- Remarks:
It is the responsibility of the caller to be really capable of added capabilities.
- remove_handler(notification_type: str, callback: Callable[[Notification, str], bool]) bool
Removes a notification handler from the list of handlers of the given type.
- Parameters:
notification_type – Notification type as specificed in the type member of the Notification class
callback – The callback which must receive a Notification object and a string and returns a boolean. If True is returned from one callback, the remaining callbacks will not be called
- Returns:
Whether or not the handler was in the list of handlers for this type. In all cases, the handler will not be called after this call (either it was not there or it will be removed).
- respond(state: SAOState, source: str | None = None) ResponseType
Called to respond to an offer. This is the method that should be overriden to provide an acceptance strategy.
- Parameters:
state – a
SAOStategiving current state of the negotiation.source – The ID of the negotiator that gave this offer
- Returns:
The response to the offer
- Return type:
- Remarks:
The default implementation never ends the negotiation
The default implementation asks the negotiator to
propose`() and accepts the `offerif its utility was at least as good as the offer that it would have proposed (and above the reserved value).The current offer to respond to can be accessed through
state.current_offer
- respond_(state: MechanismState, offer: tuple) ResponseType
Called by the mechanism directly (through
counter) to respond to offers.- Parameters:
state – mechanism state
offer – the offer to respond to
- Remarks:
Does the following steps:
Finds the the best offer using
best_offerand uses the base negotiator to respond if that offer wasNoneLooks at
offerable_outcomesand applies the elicitation strategy (one step) to the outcome if it was not offerable (or if there are no offerable outcomes defined).Finds the utility of the offer using
utility_functionnot taking into accout elicitation cost and uses the base negotiator if that fails (i.e.utility_functionreturnsNone).Finds the expected utility of the offer using the
expect() method which calls the expector passed during construction.If the maximum attainable utility now (judging from the current estimation of the utility value of each outcome taking elicitation cost into account) is less than the reserved value, end the negotiation
If the utility of my best offer (returned from
best_offer) is less than the offered utility, accept the offerOtherwise, call bhe base negotiator to respond.
- set_preferences(value: Preferences | None, force=False, ignore_exceptions: bool = False) Preferences | None
Sets the utility function/Preferences.
- Parameters:
value – The value to set to
force – If true,
on_preferecnes_changed()will always be called even ifvalue==self.preferences
- classmethod spawn_object(*args, **kwargs)
- user_preferences(outcome: tuple | None) float
Finds the total utility obtained by the user for this outcome after discounting elicitation cost.
- Parameters:
outcome – The outcome to find the user utility for. If None, it returns the reserved value.
- Remarks:
The total elicitation cost is not discounted from the reserved value when the input is None
- utilities_on_rejection(state: MechanismState) list[Distribution | float]
Finds the utility of rejection for all outputs.
- Remarks:
By default it calls
utility_on_rejectionrepeatedly for all outcomes. Override this method if a faster versin can be implemented
- utility_distributions() list[ScipyDistribution]
Returns a
Distributionfor every outcome
- utility_on_acceptance(outcome: tuple) Distribution | float
The utility of acceptance which is simply the utility function applied to
outcome.
- utility_on_rejection(outcome: tuple, state: MechanismState) Distribution | float[source]
Estimated utility if this outcome rejected at this state.
- Parameters:
outcome – The outcome tested
state – The mechanism state
- Remarks:
MUST be implemented by any Elicitor.