Source code for embedded_voting.rules.singlewinner_rules.rule_max_parallelepiped

from itertools import combinations
import numpy as np
from embedded_voting.rules.singlewinner_rules.rule import Rule
from embedded_voting.ratings.ratings import Ratings
from embedded_voting.embeddings.embeddings import Embeddings
from embedded_voting.utils.miscellaneous import volume_parallelepiped


[docs]class RuleMaxParallelepiped(Rule): """ Voting rule in which the aggregated score of a candidate is the volume of a parallelepiped described by :attr:`~embedded_voting.Embeddings.embeddings.n_dim` rows of the candidate embedding matrix `M` such that `M[i] = score[i, candidate] * embeddings[i]`. (cf :meth:`~embedded_voting.Embeddings.times_ratings_candidate`). For each candidate, the rank `r` of her associated matrix is computed. Then we choose `r` voters in order to maximize the volume of the parallelepiped associated to the submatrix keeping only these voters (cf. :func:`volume_parallelepiped`). The score of the candidate is then `(r, volume)`. Parameters ---------- embeddings_from_ratings: EmbeddingsFromRatings If no embeddings are specified in the call, this `EmbeddingsFromRatings` object is use to generate the embeddings from the ratings. Default: `EmbeddingsFromRatingsIdentity()`. Examples -------- >>> ratings = Ratings(np.array([[.5, .6, .3], [.7, 0, .2], [.2, 1, .8]])) >>> embeddings = Embeddings(np.array([[1, 1], [1, 0], [0, 1]]), norm=True) >>> election = RuleMaxParallelepiped()(ratings, embeddings) >>> election.scores_ # doctest: +ELLIPSIS [(2, 0.24...), (2, 0.42...), (2, 0.16...)] >>> election.ranking_ [1, 0, 2] >>> election.winner_ 1 >>> election.welfare_ # doctest: +ELLIPSIS [0.305..., 1.0, 0.0] >>> ratings = Ratings([[1, 10], [1, 10], [1, 0]]) >>> embeddings = Embeddings([[1, 0, 0], [0, 1, 0], [0, 0, 1]], norm=False) >>> election = RuleMaxParallelepiped()(ratings, embeddings) >>> election.scores_ # doctest: +ELLIPSIS [(3, 1.0), (2, 100.0...)] >>> election.scores_focus_on_last_ [1.0, 0] """ def __init__(self, embeddings_from_ratings=None): super().__init__(score_components=2, embeddings_from_ratings=embeddings_from_ratings) def _score_(self, candidate): m_candidate = self.embeddings_.times_ratings_candidate(self.ratings_.candidate_ratings(candidate)) matrix_rank = np.linalg.matrix_rank(m_candidate) volume = max([ volume_parallelepiped(m_candidate[subset_of_voters, :]) for subset_of_voters in combinations(range(self.embeddings_.n_voters), matrix_rank) ]) return matrix_rank, volume