Challenge: agents can make use of bids in previous negotiation sessions. Therefore, we explicitly permit the use of local file and a popular machine learning library (scikit-learn).
The performance of the agents will be determined by the average individual utilities gained by each agent, and the average social welfares (the sum of individual utilities of each agent) gained by each agent, separately. That means, we have two categories for the winners: individual utility winners and social welfare winners. The teams of the top performing agents will be notified, and the final results and awards will be announced at PRIANAC session. It is expected that teams that make it through to the finals will have a representative attending PRIANAC session. We reserve the right to disqualify agents under certain circumstances. Teams in the final will be given the opportunity to give a brief presentation describing their agent at the session.
Domains define negotiation spaces which represent valid bids. In multi-issue negotiations adopted in PRIANAC, domains consist of issues and values of each issue. Agents select a value for each issue and propose it. A set of selected value is called bid.
A simple example is lunch-domain. Issues are Food and Drink, and values are Hamburger, Pizza, and so on. A bid is represented as .
Issue | Value 1 | Value 2 |
---|---|---|
Food | Hamburger | Pizza |
Drink | Cola | Beer |
Let be the number of issues and be the weight of each issue . Utility function of bid is
, where is a chosen value in issue represented as a one-hot vector.
For each issue , let be the number of values of the issue and utility function be
, where is an evaluation value of and normalized to satisfy .
Agents have unique and to represent its preference. These parameters are defined in a profile.
Now, let us consider lunch-domain. We assume and as the following table. Utility function of bid is
Issue | Value 1 | Value 2 |
---|---|---|
We can explain utility function in vector notation. In lunch-domain, let be a bid and be weights and evaluation values.
Utility function of bid is
Hamburger | Pizza | Cola | Beer |
---|---|---|---|
Hamburger | Pizza | Cola | Beer |
---|---|---|---|
The negotiation protocol adopted in PRIANAC is Alternating Offers Protocol (AOP). In AOP, agents take one of the following actions alternately.
Negotiations end in the following cases.
Each agent obtains utility when Accept for is performed. In other cases, each agent obtains a reservation value.
A Negotiation has timeline , which is normalized to the range . represents the time of starting a negotiation, and means the deadline.
Discount factor decreases agent’s utility depending on . Discounted utility is
, where is a discount coefficient define in a profile. means utility is independent of .
Reservation value is utility of agents when negotiations failed. Reservation value is defined in profiles. Considering discount factor, utility in failed negotiations is
, where is a reservation value define in a profile.
Following pages would help you when you make an agent.