Giter Site home page Giter Site logo

bipartite_b_matching's Introduction

Weighted Bipartite b-Matching algorithm

Weighted bipartite matching is one of the widely studied and fundamental problems in combinatorial optimization for modeling data management applications and resource allocation systems.

Given the bipartite undirected graph G = ((*U, V ), E, W *) in which the two disjoint sets of vertices U and V are fully connected with edges which are weighted based on a score, a bipartite matching algorithm finds a subgraph M ⊆ G such that the total weight W is optimal (maximal or minimal, depending on the objective function).

There are various methods for matching weighted bipartite graphs. One strategy is to exhaustively select all edges over a specific threshold. This strategy is not optimal and can not take constraints into account.

On the other hand, weighted-bipartite matching suggests an optimal solution as a matching where the sum of weights has an optimal value. This method is known as the assignment problem [3]. The Hungarian algorithm is one of the solutions that solve the assignment problem in polynomial time [3].

Although the maximum weight matching is more efficient than the exhaustive method, it only yields one-to-one links between the vertices. Therefore, the matching subgraph does not consider any more-than-one incident between two edges. To remedy this, the weighted bipartite b-matching (WBbM) algorithm has been proposed which finds the subgraph H = ((U, V ), E′, W ) which maximizes ∑W (e) having every vertex u ∈ (U ∪ V) adjacent to at most b(u) edges. b is the capacity vector of the graph G.

The following figure (from [2]) shows a bipartite graph with a total weight of 2.2. The maximum matching solution is shown in blue, with the highest score of 1.6. The red degree constraints refer to the capacity of each vertex.

bipartite_b_matching_chen_et_al

Implementation

This repository is a fork of Ahmed et al's work titled "Diverse Weighted Bipartite b-Matching" [1]. The original paper studies a complementary goal of balancing diversity and efficiency, therefore it goes beyond the WBbM algorithm. The current repository is a fork and addresses only the WBbM problem. A representative example that has been mentioned in the original work and can be helpful for modeling similar problems is matching academic papers (left of the graph) to possible reviewers (right of the graph). Each reviewer has a minimum number of articles and a maximum number, called capacity.

Usage

In order to initialize an object of the WBbM class, you need to pass the following arguments to the constructor:

  • num_left: number of the vertices in the left side of the graph.
  • num_right: number of the vertices in the right side of the graph.
  • W: the weight matrix. Not that in an undirected weighted bipartite graph, edges in the two sides have identical weights.
  • lda: minimum papers every reviewer has to review.
  • uda: maximum papers one reviewer will review with the minimum value of 2. It can also be a list of capacities with different values.
  • ldp: minimum paper cardinality.
  • udp: maximum paper cardinality with the minimum value of 2. It can also be a list of capacities with different values.
  • (optional) LogToConsole=0 enables you to have the computation details of Gorubi in your console.

Example

In the main.pycontains an example. A bipartite weighted graph is created with random weights [0-10], using NetworkX, and an optimal solution for the WBbM algorithm is found using the WBbM class. The following figures show the output of the algorithm for matching edges over a specific threshold. The figures in left show the graph with a weight over the threshold 9 and those in right show the matched outputs. Note that the graphs in the two figures do not have the same weights.

  • Model parameters: lda=0, uda=2, udp=2, ldp=0. WBbM_1

  • Model parameters: lda=1, uda=2, udp=2, ldp=1. WBbM_1

##Requirements

If you use the code in this repository, please cite the following paper:

@inproceedings{ahmadi2019lexical,
  title={Lexical sense alignment using weighted bipartite b-matching},
  author={Ahmadi, Sina and Arcan, Mihael and McCrae, John},
  organization={2nd Conference on Language, Data and Knowledge (LDK 2019)},
  year={2019},
  booktitle={Proceedings of the LDK 2019 Workshops}
}

References

[1] Ahmed, Faez, John P. Dickerson, and Mark Fuge. "Diverse weighted bipartite b-matching." arXiv preprint arXiv:1702.07134 (2017).

[2] Chen, Cheng, et al. "Group-aware weighted bipartite b-matching." Proceedings of the 25th ACM International on Conference on Information and Knowledge Management. ACM, 2016.

[3] Munkres, James. "Algorithms for the assignment and transportation problems." Journal of the society for industrial and applied mathematics 5.1 (1957): 32-38.

To discover more about matching algorithms, see this, this and this.

bipartite_b_matching's People

Contributors

sinaahmadi avatar faezahmed avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.