Skip to main content

ORIGINAL RESEARCH article

Front. Big Data, 26 June 2019
Sec. Data Mining and Management
Volume 2 - 2019 | https://doi.org/10.3389/fdata.2019.00015

Applying Answer Set Programming for Knowledge-Based Link Prediction on Social Interaction Networks

Çiçek Güven* Martin Atzmueller
  • Computational Sensemaking Lab, Department of Cognitive Science and Artificial Intelligence, Tilburg University, Tilburg, Netherlands

Link prediction targets the prediction of possible future links in a social network, i. e., we aim to predict the next most likely links of the network given the current state. However, predicting the future solely based on (scarce) historic data is often challenging. In this paper, we investigate, if we can make use of additional (domain) knowledge to tackle this problem. For this purpose, we apply answer set programming (ASP) for formalizing the domain knowledge for social network (and graph) analysis. In particular, we investigate link prediction via ASP based on node proximity and its enhancement with background knowledge, in order to test intuitions that common features, e. g., a common educational background of students, imply common interests. In addition, then the applied ASP formalism enables explanation-aware prediction approaches.

1. Introduction

Social interaction networks are mediated via social media in various forms and can be modeled using many diverse approaches, particularly using network theory. According to the idea of social interaction networks (Atzmueller, 2014), we adopt an intuitive definition of social media, regarding it as online systems and services in the ubiquitous web, which create and provide social data generated by human interaction and communication (Atzmueller, 2012). Specifically, we target link prediction for predicting future links in a network using background knowledge, formalized by logical formalisms. These allow to provide crucial domain knowledge: in scenarios when historic (link) data is still scarce—similar to the cold-start problem for link prediction— domain knowledge can complement structure-based link prediction. Thus, we utilize domain knowledge to enrich interaction networks, leading to knowledge-based feature-rich networks.

In this paper, we propose to use Answer Set Programming (ASP) for formalizing domain knowledge in order to enable hybrid link prediction (an approach that combines using the network itself as well as background knowledge to predict future links) in a social interaction network. ASP is a form of declarative programming that is used for difficult (NP hard) search problems, c. f., Lifschitz (2008). Here, ASP is relevant since it allows to specify interesting structures and patterns in a compact way, and due to its strength in including background knowledge by facts (and rules) intuitively. The ASP approach involves passing the (graph) structure and the conditions, and returns the (answer) set satisfying the conditions.

The proposed approach is exemplified using a real-world data set capturing networks of face-to-face proximity at a student event. In the interaction network, which is studied for the link prediction task, there are actors (nodes) who only start interacting with the other actors after a while. In network terms, that means they are disconnected from the rest of the nodes given that a connection is there when there is an interaction. This is known in the literature as the cold start problem, (Leroy et al., 2010). An illustration of this is shown in Figure 1; links are split into two classes based on time. The links which correspond to interactions in the earliest interval, namely ‘time interval 1’ have color green, and are the thicker ones, whereas the color of the edges for the second interval is red.

FIGURE 1
www.frontiersin.org

Figure 1. Interaction network (links are split into subsets based on time).

In this example, we observe that there are nodes which only have connections with red colored edges; this means, that the corresponding interaction happened after the first interval. For those, we cannot apply, e. g., neighborhood features or path-based features for prediction, since no prior links/paths exist between these nodes and the others in the first interval. However, this data is complemented by attributive nodal information, which will be formalized as domain knowledge. Then, these might be informative to make predictions. That is, links between actors can be predicted based on a relation between actors and attributive information. With ASP, it is easy to incorporate such domain knowledge in the form of simple logical predicates and rules. That is why we consider it as an ideal tool in order to incorporate additional information.

It is important to note, that the purpose of this paper is not on analyzing specific patterns and insights on link prediction in social interaction networks, or to show that an ASP approach results in the best performance. Instead, we aim to provide a “proof of concept” of its applicability for link prediction, and to demonstrate its advantages like explainability and enabling a simple formalization and refinement of domain knowledge. The contribution of this paper is thus 2-fold:

1. We introduce the application of ASP as a novel approach for link prediction.

2. We demonstrate how to improve link prediction with contextual domain knowledge modeled using ASP.

The rest of the paper is structured as follows: section 2 discussed necessary background including basic definitions on graphs, and a brief introduction into ASP. After that, section 3 discusses related work. Next, section 4 outlines the proposed method using ASP for link prediction. Then, section 5 presents our results. Finally, section 6 concludes with a summary and outlines interesting directions for future work.

2. Background

In this section, we define basic concepts in graph theory that are relevant for this paper. For further background in graph theory we refer the work of Diestel (2017). Next, we provide a brief overview on ASP.

2.1. Basic Definitions: Graph Theory and Link Prediction

A graph G is an ordered pair (V, E) consisting of a set of vertices (nodes) and a set of edges. An edge (u, v) consists of a pair of nodes u, v representing a relationship between them. A social network can be abstracted by a graph, where actors correspond to nodes and the links in between them corresponds to edges. A node v is a neighbor of (adjacent to) a node u if there is an edge (u, v) between them. Γ(u) stands for the set of neighbors of a node u. Let G = {Gt = o, Gt = 1, ⋯ , Gt = n} be a temporal sequence of evolving graphs where Gt = i = (Vt = i, Et = i). For link prediction on such sequences, given t = n the goal is to predict the structure of a graph in t = n+1, i. e., Gt = n+1. Specifically, we try to identify pairs (u, v), such that u, vVt = n+1 and (u, v) ∈ Et = n+1.

Prominent approaches for link prediction consider similarity scores between pairs of nodes, e. g., based on neighborhoods of pairs of nodes. Here, we will enhance link prediction based on neighborhood-based similarity scores with background knowledge. As one prominent neighborhood-based similarity score, we use the Common neighbors score: It counts the number of common neighbors of a pair of nodes. Given, (u, v) the pair of nodes under observation, the common neighbors can formally be written as:

CN(u,v)=|Γ(u)Γ(v)|

2.2. Overview on Answer Set Programming

Answer Set Programming (ASP) (Niemelä, 1999) is a declarative problem solving approach; it is one of the three major logic programming families next to Prolog and Datalog. Logic programming is a programming paradigm mainly based on formal logic; such a program consists of facts and rules about the problem domain expressed as sentences in logical form. Given a problem, ASP aims to find one or several possible solutions; these are the so-called answer sets, i. e., all possible sets of facts that are consistent with the facts stated earlier) to the original problem (c. f., e. g., Gebser and Schaub, 2016; Kaufmann et al., 2016). This requires expressing the problem in a formal way. So, we transform and model the problem in the form of a logic program, which consists of rules and variables. A special program, i. e., the grounder then eliminates all instances of the variables and replaces them by ground terms (which can be considered as “values,” i. e., propositional atoms) in the language. This facilitates the application of the subsequent step, i. e., applying the answer set solver, which typically works on variable-free programs. Finally, the resulting propositional program, which is free of variables, only consists of propositional atoms. This is then the input to the solver which computes the answer sets. Those are all possible sets of facts that are consistent with the facts stated earlier to the original problem. For a more detailed discussion, we refer to e. g., (Niemelä, 1999; Gebser and Schaub, 2016; Kaufmann et al., 2016).

The ASP rules include user defined predicates and variables, as in the following example for common neighbors (CN):

  

  CN(X, Y, Z) :-edge(X, Y), edge(X, Z),

  not edge(Y, Z), Y!=Z. 

 

In this notation, “,” means “and,” “:-” means “if,” and “not” stands for negation. Here, “CN ,” and “edge ” are examples of user defined predicates, which can be true or false for object(s) represented by a specific term replacing a user defined variable(s) such as ‘(1,2) '. The rules without any conditions are called facts. Our example rule is used to formalize the following information: X is a common neighbor of a pair of distinct vertices Y and Z, if there are edges between pairs X, Y and X, Z but not between Y and Z. The if symbol ‘:- ’ is omitted for the facts, so that ‘edge(1,2). ’ is a fact.

The solution to a problem is called an “answer set", which consists of propositions that are supposed to be true in the answer set. A solution to the above rule and the two facts ‘edge(1,2). ’, and ‘edge(1,4). ’ is the answer set containing these facts and the propositions ‘CN(1,2,4). ’, and ‘CN(1,4,2). ’.

We used ASP to enhance link prediction in a network with background knowledge and used a small data set for this proof of concept. However, ASP is designed for NP-hard problems as stated earlier and finds its applications in large instances of industrial problems, since it offers a rich representation language and high performance solvers; some recent applications are listed in Falkner et al. (2018). Some examples of ASP solvers that are considered to be efficient are Smodels (Syrjänen and Niemelä, 2001), WASP (Dodaro, 2013), Clasp (Gebser et al., 2012) and Clingo (Gebser et al., 2014b). Clingo1 itself combines a powerful grounder (Gringo) with Clasp (for solving) into an integrated system. For ease of use, and due to its efficiency (e. g., Guyet et al., 2018; Schäpers et al., 2018), we utilized Clingo in the context of this paper.

3. Related Work

The focus of link prediction is the dynamics and mechanisms in the creation of links between the parties in social networks (Liben-Nowell and Kleinberg, 2003). The purpose is to learn a model for predicting the links accurately. There is already a large body of research for link prediction concerning online social networks, e. g., (Katz, 1953; Adamic and Adar, 2003; Liben-Nowell and Kleinberg, 2003; Murata and Moriyasu, 2007; Lü and Zhou, 2010; Scholz et al., 2013, 2014) considering neighborhood-based and path-based measures. A first comprehensive fundamental analysis was done by Liben-Nowell and Kleinberg (2003), where the link prediction problem was defined as the search to carefully predict edges that will be added to a given snapshot of a social network during a given interval, using network proximity measures. This shows a strong connection to the approach to this paper, while we apply a novel approach, i. e., ASP for performing the search. In addition, we also include domain knowledge for a knowledge-based link prediction approach, also tackling the common cold start problem in link prediction (Leroy et al., 2010).

Link predictions can be used for different prominent applications: recommending and suggesting promising interactions between two individuals in such a social network (Li and Chen, 2009; Papadimitriou et al., 2011), the prediction of missing links, (Liben-Nowell and Kleinberg, 2003), and improving collaborative filtering (Huang et al., 2005). In this paper, we mainly focus on the perspective of utilizing link prediction for recommendation and collaborative filtering, while also target explainability and transparency of the predictions which is also facilitated by our proposed approach.

To the best of the authors' knowledge, the idea of merging Answer Set Programming and link prediction in the context of social networks is new. De Raedt et al. (2007) studied a probabilistic version of Prolog, to discover links in large network of biological concepts. The probabilistic Prolog would then aim to compute the success probability for the existence of a link between nodes such as genes and diseases. Furthermore, there have been earlier studies relating ASP and social network analysis: Jost et al. (2012) modeled a way to suggest new interactions related to events in a social network for a personal assistant of the network platform (EasyReach) which monitors interactions. A study relating social networks with ASP in the privacy and security context is described in Hu et al. (2013). There, multiparty access control for online social networks is studied. Marra et al. (2014, 2016) studied properties of social networks, and information diffusion in Social Network Analysis. They applied ASP for analyzing properties of social networks, in a multi-social-network setting. The study of Seo et al. (2013) also combines social network analysis and logic programming. In that study a high-level graph query language SociaLite based on Datalog is proposed, due to its expressive power and efficiency, an tested on real life social graphs. We have a similar motivation in terms of the ease of use, and of expressivity, where we target explicative link prediction in the context of social networks, utilizing topological network information as well as attributive relations. Furthermore, explainable social network analysis is a further feature of the ASP-based approach, where first approaches in the context of explicative data mining (Atzmueller, 2017, 2018) have been discussed by Masiala and Atzmueller (2018a,b).

4. Methods

In the following, we outline our method for link prediction using ASP. The main strength of ASP is its intuitive way to state a problem, also allowing to scale the problem up easily, and the availability of computationally powerful ASP solvers. For this study, the former two points are more relevant since in our application context we utilize a relatively small data set so far. As an ASP solver, we use Clingo (Gebser et al., 2014a) embedded in Python.

Below, we will first illustrate our approach via a small hypothetical example. Then we will describe the data set, and finally we will discuss our findings on the data set.

4.1. Example

We consider a social interaction network between students as actors, and attributive information collecting information such as gender, affiliation, and area of study of the students. For those, we provide two according network structures: one indicating the interactions, the other (bimodal) one modeling information of the students as actors in the network. Regarding the left network, the graph G shown in Figure 2 represents interaction between actors at an event, split into two time frames. The edges E1 = {(1, 2), (2, 3), (1, 4), (3, 4), (2, 5)} represent the interactions in the first interval T1, E2 = {(2, 4), (1, 5), (3, 5), (2, 6)} represent the interactions that happened in the second time interval T2 afterwards. The bipartite graph GA shown on the right of Figure 2 represents the choices of the attributive information provided as background knowledge. The nodes 4, 5, 6, 7, 8 represents students, and the nodes f, m represent their gender (f: female, m: male). The nodes dsbg, csai are standing for the master programs the students are enrolled to, e. g., “Cognitive Science and Artificial Intelligence" or “Data Science for Business and Governance". The edges in E2 are aimed to be predicted by using information coming from prior interactions captured by E1 as well as captured by background knowledge given GA.

FIGURE 2
www.frontiersin.org

Figure 2. Example: interaction and attributive/knowledge-based networks. (A) Interaction network (links are split into subsets based on two different time intervals. (B) Graph capturing attributive data: students on the left, and attributive information on the right.

The following code predicts a link between a pair of nodes in G for T2 if they have two common neighbors in G during T1 or GA. That is, a link is predicted for a node pair u, v without an existing link in the interaction graph for T1 [(u, v) ∉ E1] when they are similar in terms of their neighbors, or when they are similar based on their respective attribute values, in this case having the same gender and following the same program are necessary. Then the code compares the links in G for T2, E2 (which we can see as a test set), and returns the matches between the predicted links E2pred and the test set. The ASP program is composed of two parts: The facts describing the networks, and the rules for inferring the prediction.

  #const n=2.

  #const n_attrib=2.

  

  % ASP facts

  % Defining the networks/graphs

  node(1.6). % Nodes of the interaction graph

  edge(1, 2).  edge(1, 4). edge(2, 5). edge(2, 3). edge(3, 4). % Edges, first time interval

  test(2, 4). test(4, 5). test(5, 6). % Edges, second time interval (test set)

  % Nodes and edges of the attributive graph:

  node_attrib(4.8). node_attrib(csai). node_attrib(dsbg). node_attrib(f). node_attrib(m).

  edge_attrib(5, csai). edge_attrib(8, dsbg). edge_attrib(7, dsbg).

  edge_attrib(4, csai). edge_attrib(6, csai). edge_attrib(5, m). edge_attrib(4, m).

  edge_attrib(8, m). edge_attrib(7, f). edge_attrib(6, m).

  

  % ASP rules

  % This is an undirected graph,  hence there is symmetry in edges.

  edge(Y, X) :- edge(X, Y).

  edge_attrib(Y, X) :- edge_attrib(X, Y).

  % X is a common neighbor of Y and Z where they are not connected.

  c(X, Y, Z) :- edge(X, Y), edge(X, Z),  not edge(Y, Z), Y!=Z.

  c_attrib(X, Y, Z) :- edge_attrib(X, Y), edge_attrib(X, Z),  not edge_attrib(Y, Z), Y!=Z.

  % a link is predicted when there are 2 common neighbors in the interaction graph

  cn_lp(Y, Z) :- node(Y), node(Z), not edge(Y, Z), Y!=Z,  n=#count{X:c(X, Y, Z)}.

  % a link is predicted  when there are 2 common neighbors in the attributive graph

  cn_lp(Y, Z) :- node(Y), node(Z), not edge(Y, Z), Y!=Z,  n_attrib=#count{X:c_attrib(X, Y, Z)}.

  test(Y, X) :- test(X, Y).

  % The match rule compares the predicted set of links with the test set

  match(X, Y) :- test(X, Y),  cn_lp(X, Y).

  

  #show cn_lp/2.

  #show match/2.

 

This example is designed in such a way that, there is 100% overlap between the predicted links and the test set. Thus, the output is:

 

  match(2,4) match(4,5) match(5,6) match(6,5) match(5,4) match(4,2) cn_lp

            (4,2) cn_lp(2,4) cn_lp(1,3) cn_lp(3,1) cn_lp(4,6) cn_lp(5,6) cn_lp

            (6,4) cn_lp(5,4) cn_lp(6,5) cn_lp(4,5)

 

It is easy to see that–depending on the formalization of the predicates and rules used in the ASP program, the answer set itself can accommodate helpful explanations of why a link was predicted. This can be supported by a trace of the applied rule structure, e. g., utilizing a reconstructive explanation methodology (Wick and Thompson, 1992; Atzmueller and Roth-Berghofer, 2010), complemented by further background knowledge and/or context information from the network structure.

Since the graph derived from the attributive information connects the students to other parameters, a prediction based on its common neighbors will predict links between students when constructed as above. The rules can be modified in such a way that for a constant n, where ΓA(x) stands for the neighborhood of node x in GA, E2pred stands for the predicted edges for T2:

u, v, x, yV ∣ (u, v) ∉ E1, |ΓA(u) ∩ ΓA(v)| = n ⇒ ∀x ∈ ΓG1(u)\ΓG1(v), (x, v) ∈ E2pred and ∀y ∈ ΓG1(v)\ΓG1(u), (x, u) ∈ E2pred.

4.2. Data Set Description

For this study, we utilized a real life data set, which had been collected during a student event. This included information on face-to-face interactions and attributive information including gender, academic degree, age group, area of studies.2 For that, active proximity tags based on Radio Frequency Identification technology (RFID-chips) developed by the SocioPatterns Collaboration3 were applied. These are able to detect face-to-face interactions at large scale, using the radio packets exchange between two devices provided that the devices are in a distance of 1–1.5 m, and the parties remained in contact for at least 20 s. An interaction ends, when no packets are detected within a 20 s interval. The sensor data is used to construct social interaction networks capturing offline interactions between people. For more details on the data preprocessing, we refer to Barrat et al. (2010).

For constructing feature-rich networks, we utilized the data set focussing on its two components: One is capturing the interactions collected via sensors between students, and the other one is based on the given attributive information. The interaction data set contains data from 56 students attending the student event. First, using the proximity contacts, we generated a social interaction network. Then, an edge {u, v} is created, if a face-to-face contact with a duration of at least 20 s among participants u and v was detected. There were 340 interactions with the lower bound of 20 s, the maximal interaction length being 1,042 s (on average 69.5 s), over the course of 8 hours. After removing duplicate edges (only the first interactions are kept between parties in case there were more than one interaction), only 97 edges are left. These edges are split into two subsets E1, and E2 with corresponding graphs G1, G2 while the order based on time is preserved with ratio (6:4).

The attributive data set is relevant to capture the similarities based on the attribute values, which is structured as a bipartite graph GA. One of the partitions consists of the student ids (anonymous) and the other partition consists of attributes about gender, age group, academic degree, area of studies. For instance, there is a node corresponding to value ‘female’ for the gender attribute, “Data Science” for the area of studies. There is an edge between the node representing a student and the nodes representing the attribute. This resulted in a data set consisting of two columns corresponding to the sets of nodes representing the partition, where each row represents an edge. There are 456 rows in this data set, and 124 vertices partitioned into two sets as described above for students and attributive information of respective sizes 76 and 48. Some characteristics of the graphs GA, G1, G2 can be seen in Table 1. The sparsity in the interaction graphs makes link prediction a hard problem there.

TABLE 1
www.frontiersin.org

Table 1. Network characteristics: Attributive network, and the interaction network in two time intervals.

5. Results and Discussion

We first focused on the cold start problem. There are 9 nodes which showed up in the second time interval. There are 14 edges for these nodes in E2. For any pair of vertices in the graph, if there is an edge between them in the test set, then that is an actual positive, otherwise actual negative. A match between the predicted and actual positive is a true positive. We predicted edges for the newcomers based on a simple similarity measure in GA. We predicted an edge between a pair of students if there had been no edge between them in G1, and they had n common neighbors in GA graph where n is in {4, 5}. This implied 7 true positives, and 65 predicted positives out of 315 possible edges in G2. These imply a precision of 10.7%, a recall of 50% and an F1 score of 18%.

The following rules are used to augment the common neighbor method described by an example above, with the formalized background knowledge coming from the attributive information. An edge is predicted between a pair of vertices in V2, if there is no such edge in G1, these vertices are distinct and they have four or five common neighbors in GA.

 

  #const n_attrib1=4.

  #const n_attrib2=5.

  attributive_edge(Y,X):- attributive_edge(X,Y).

  c_attrib(X,Y,Z) :- attributive_edge(X,Y), attributive_edge(X,Z), not 

            attributive_edge(Y,Z),Y!=Z.

  pn(Y,Z) :- e_2_node(Y), e_2_node(Z), Y!=Z, not e_1_edge(Y,Z), n_attrib1

              =#count{X:c_attrib(X,Y,Z)}.

  pn(Y,Z) :- e_2_node(Y), e_2_node(Z), Y!=Z, not e_1_edge(Y,Z), n_attrib2

              =#count{X:c_attrib(X,Y,Z)}.

 

We chose the number of common neighbors as the similarity metric, since it is s standard metric, and it is also very explainable and interpretable, as also discussed above. Using ASP we first predicted links based on common neighbors only–utilizing the interaction network. We predicted a link between a pair of non-adjacent nodes in G1, when they have n common neighbors, for different values of n, and compared these with G2 = (E2, V2), treated as the ground truth for this problem. Given that the network G has low density all edges considered (i. e., the data is not balanced across classes) accuracy is not a good metric, hence we look into precision recall and F1 score only, see Table 2. There are 38 edges in G2, which is the size of actual positives, (402) = 780 possible edges, and 742 actual negatives, that is the difference between possible and existing edges.

TABLE 2
www.frontiersin.org

Table 2. Link prediction evaluation metrics.

We see in Table 2, link prediction solely on interaction data does not work well with the common neighbors metric: We only achieve an F1 score of 11.0%. We noted earlier, one limitation of using interaction data is the cold start problem. Here V1\V2 = 16, V1\V1 = 9. That is a big community change, 16 people left and 12 new people arrived. That is a potential explanation to the performance. However, even if we neglect the cold-starters, focusing on the intersection of nodes in G1 and G2 then we still obtain rather comparable bad results, which we also verified using the linkpred package4 using the standard common neighbors, preferential attachment and rooted pagerank metrics. When we start adding new information based on the attributive information in GA, the number of true positives starts increasing as well. In our results, we see an increase on the cold-starters of 18%, leading to an overall F1 measure of 15.4% which clearly outperforms the baseline. A refined exploitation of the background knowledge can then lead to further improved evaluation metrics, e. g., by including social theories and extending our applied simple common neighbors strategy.

Link prediction is quite difficult for this data set, due to sparsity and the cold start problem. Given the results, we can argue common neighbors is not a very strong predictor for future links for this data set. With the attributive information data we see an increase in false positives (wrongly predicted links) decreasing the precision, and F1 but since correctly predicted links also increased, recall increases slightly. It is important to note that we so far applied only a simple strategy for formalizing background knowledge: The purpose here is to propose an approach to the link prediction problem, not to find the best performing method. We aim to refine the model using the attributive information by formalizing appropriate background knowledge, in order to explore options for improving link prediction in future work.

We treated any attribute value equally here, where as in reality, some attributes will be more informative than others. Also, more common attribute values might be less informative. The results can then be improved by exploring those. Overall, ASP remains an ideal way to incorporate and test that additional background knowledge with its flexibility. For example, ASP can be used to incorporate further insights about the population studied by looking further into background data. Some observations whose impact into link prediction could be tested here are the following: for students who consider becoming an entrepreneur, other common characteristics are: being Male, being between 18 and 25 years old, and having a degree in Data science Bachelor. Also among people who are between the ages 26 and 35, “paid job at an existing company” is a more common feature than for example “consider becoming an entrepreneur.”

A further advantage of the proposed approach is given by its explainability: The answer set itself describes the “solutions” for link prediction. By tracing back the applied rules used for inferring the answer set, specific choices can be illustrated for link prediction, i. e., which factors were responsible for establishing a specific link. In that way, ASP provides a transparent and interpretable approach for link prediction, integrating feature-rich networks complemented by background knowledge. In section 4.1, a hypothetical example showcasing link prediction enhanced with an attributive graph is given. That is, pairs of nodes in the interaction network are predicted to be linked, if they are similar in terms of their past behavior (captured by the existing number of common neighbors) or sharing attributes such as gender or area of study in the attributes network. This requires considering the topological information of both graphs, i. e., the list of nodes and edges, as well formalizing the rules defining common neighbors. Other rules then define link prediction based on the number of common neighbors in both graphs, as below.

 

  #const n=2.

  #const n_attrib=2.

  

  % a link is predicted when there are 2 common neighbors in the 

                interaction graph

  cn_lp(Y, Z) :- node(Y), node(Z), not edge(Y, Z), Y!=Z,  n=#count{X:c(X,

             Y, Z)}.

  % a link is predicted  when there are 2 common neighbors in the 

              attributive graph

  cn_lp(Y, Z) :- node(Y), node(Z), not edge(Y, Z), Y!=Z,  n_attrib=#count{

            X:c_attrib(X, Y, Z)}.

 

These rules simply state for a pair of distinct nodes Y, Z, which are not linked by an edge, a link is predicted between them when they have n (or n_attrib) common neighbors in the interactions or the attributive graph, respectively. Of course, the names can always be chosen to be more descriptive so that the logical statement resembles natural language more (link_predicted_based_on_common_neighbors instead of cn_lp). Basic understanding of logical expressions is enough to make sense of the rules. The answer set then itself captures the respective cn_lp facts, together with all those (new) facts that were applied in the solving process. Taken together, this then supplies an explanation as a trace of the applied rules, which can of course be complemented with further information such as, e. g., topological features in the form of statistical network descriptors.

6. Conclusions

In this paper, we proposed using ASP to incorporate background knowledge to the link prediction problem, which is not possible using some other approaches, for example, using standard social network analysis methods, e.g., proximity-based or path-based methods. In that way, we also introduced the application of ASP as a novel approach for link prediction. We explored that using a real-world data set capturing networks of face-to-face proximity at a student event: The dataset is relatively sparse, thus the link prediction problem is quite difficult, and becomes even more challenging in the context of the cold start problem. Therefore, the application of background knowledge proved to be especially relevant.

Our experiments using a standard common neighbors approach for link prediction showed, that providing background knowledge considerably improved the prediction performance. Furthermore, we showed how ASP can be conveniently applied in such a knowledge-based approach, in particular also relating to explanation-aware techniques since the result of ASP, i. e., the answer set, can be directly mapped to extensive explanations on the link prediction method. In this paper, we thus specifically demonstrated how to improve link prediction with contextual domain knowledge modeled using ASP – as a “proof of concept” of its applicability for link prediction. Furthermore, we demonstrated its advantages like explainability and enabling a simple formalization and refinement of domain knowledge.

For future work, we aim to extend and refine the model further, investigating different theory-based formalizations, like structural holes and social capital (Burt, 2002), and social roles (Scripps et al., 2007). Further future directions include the characterization of unpredicted links and extending the features used for the prediction toward temporal relationships, the order of the interactions, and information coming from the duration of conversations, as well as the existence of multiple edges–toward advanced link prediction in feature-rich complex interaction networks (Interdonato et al., 2019).

Data Availability

The datasets generated for this study are available on request to the corresponding author.

Author Contributions

ÇG and MA conceived of the idea, interpretation of the data and wrote the manuscript. ÇG implemented the method and ran the experiments.

Conflict of Interest Statement

The authors declare that the research was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest.

Acknowledgments

This work has been partially supported by the German Research Foundation (DFG) under grant AT 88/4-1.

Footnotes

1. ^Available at: https://potassco.org/

2. ^Participants were invited to wear RFID proximity tags. Study participants also gave their written informed consent for the use of their data in scientific studies. Data were collected in an anonymous way.

3. ^http://www.sociopatterns.org/

4. ^https://github.com/rafguns/linkpred/

References

Adamic, L. A., and Adar, E. (2003). Friends and neighbors on the web. Soc. Netw. 25, 211–230. doi: 10.1016/S0378-8733(03)00009-1

CrossRef Full Text | Google Scholar

Atzmueller, M. (2012). Mining social media: key players, sentiments, and communities. WIREs Data Min. Knowl. Disc. 2, 411–419. doi: 10.1002/widm.1069

CrossRef Full Text | Google Scholar

Atzmueller, M. (2014). Data mining on social interaction networks. arXiv:1312.6675v2.

Google Scholar

Atzmueller, M. (2017). “Onto explicative data mining: exploratory, interpretable and explainable analysis,” in Proceedings of Dutch-Belgian Database Day (Eindhoven).

Google Scholar

Atzmueller, M. (2018). “Declarative Aspects in Explicative Data Mining for Computational Sensemaking,” in Proceedings of International Conference on Declarative Programming (DECLARE) (Heidelberg: Springer).

Google Scholar

Atzmueller, M., and Roth-Berghofer, T. (2010). “The mining and analysis continuum of explaining uncovered,” in Proceedings of SGAI International Conference on Artificial Intelligence (AI-2010) Cambridge.

Google Scholar

Barrat, A., Cattuto, C., Colizza, V., Pinton, J., den Broeck, W. V., and Vespignani, A. (2010). High resolution dynamical mapping of social interactions with active RFID. PLoS ONE 5:e11596. doi: 10.1371/journal.pone.0011596

CrossRef Full Text | Google Scholar

Burt, R. S. (2002). “The social capital of structural holes,” in The New Economic Sociology: Developments in an Emerging Field, Vol. 148, eds F. Mauro, R. C. GuillÈn, E. Paula, and M. Marshall (New York, NY: Russell Sage Foundation), 90.

Google Scholar

De Raedt, L., Kimmig, A., and Toivonen, H. (2007). “ProbLog: a probabilistic prolog and its application in link discovery,” in Proceedings of IJCAI (Hyderabad), Vol. 7, 2462–2467.

Google Scholar

Diestel, R. (2017). Graph Theory. Graduate Texts in Mathematics, 5th Edn. Berlin; Heidelberg: Springer.

Google Scholar

Dodaro, C. (2013). Engineering an Efficient Native ASP Solver. TPLP 13.

Google Scholar

Falkner, A., Friedrich, G., Schekotihin, K., Taupe, R., and Teppan, E. C. (2018). Industrial applications of answer set programming. KI-Künstliche Intel. 32, 165–176. doi: 10.1007/s13218-018-0548-6

CrossRef Full Text | Google Scholar

Gebser, M., Kaminski, R., Kaufmann, B., and Schaub, T. (2014a). Clingo=ASP + control: preliminary report. CoRR abs/1405.3694.

Google Scholar

Gebser, M., Kaminski, R., Kaufmann, B., and Schaub, T. (2014b). Clingo= ASP+ control: preliminary report. arXiv [preprint] arXiv:1405.3694

Google Scholar

Gebser, M., Kaufmann, B., and Schaub, T. (2012). Conflict-driven answer set solving: from theory to practice. Artif. Intel. 187, 52–89. doi: 10.1016/j.artint.2012.04.001

CrossRef Full Text | Google Scholar

Gebser, M., and Schaub, T. (2016). Modeling and language extensions. AI Mag. 37, 33–44. doi: 10.1609/aimag.v37i3.2673

CrossRef Full Text | Google Scholar

Guyet, T., Moinard, Y., Quiniou, R., and Schaub, T. (2018). “Efficiency analysis of ASP encodings for sequential pattern mining tasks,” in Advances in Knowledge Discovery and Management (Berlin; Heidelberg: Springer), 41–81.

Google Scholar

Hu, H., Ahn, G.-J., and Jorgensen, J. (2013). Multiparty access control for online social networks: model and mechanisms. IEEE Trans. Knowl. Data Eng. 25, 1614–1627. doi: 10.1109/TKDE.2012.97

CrossRef Full Text | Google Scholar

Huang, Z., Li, X., and Chen, H. (2005). “Link prediction approach to collaborative filtering,” in Proceedings of 5th ACM/IEEE-CS Joint Conference on Digital Libraries (New York, NY: ACM), JCDL '05, 141–142.

Google Scholar

Interdonato, R., Atzmueller, M., Gaito, S., Kanawati, R., Largeron, C., and Sala, A. (2019). Feature-rich networks: going beyond complex network topologies. Appl. Netw. Sci. 4:4. doi: 10.1007/s41109-019-0111-x

CrossRef Full Text | Google Scholar

Jost, H., Sabuncu, O., and Schaub, T. (2012). “Suggesting new interactions related to events in a social network for elderly,” in Proceedings of International Workshop on Design and Implementation of Independent and Assisted Living Technology.

Google Scholar

Katz, L. (1953). A new status index derived from sociometric analysis. Psychometrika 18, 39–43. doi: 10.1007/BF02289026

CrossRef Full Text | Google Scholar

Kaufmann, B., Leone, N., Perri, S., and Schaub, T. (2016). Grounding and solving in answer set programming. AI Mag. 37, 25–32. doi: 10.1609/aimag.v37i3.2672

CrossRef Full Text | Google Scholar

Leroy, V., Cambazoglu, B. B., and Bonchi, F. (2010). “Cold start link prediction,” in Proceedings SIGKDD (New York, NY: ACM), 393–402.

Google Scholar

Li, X., and Chen, H. (2009). “Recommendation as link prediction: a graph kernel-based machine learning approach,” in Proceedings of ACM/IEEE JCDL (New York, NY: ACM), 213–216.

Google Scholar

Liben-Nowell, D., and Kleinberg, J. M. (2003). “The link prediction problem for social networks,” in Proceedings of CIKM (New York, NY: ACM), 556–559.

Google Scholar

Lifschitz, V. (2008). “What is answer set programming?” in Association for the Advancement of Artificial Intelligence (Palo Alto, CA), 1594–1597.

Google Scholar

Lü, L., and Zhou, T. (2010). Link prediction in weighted networks: the role of weak ties. EPL Europhy. Lett. 89:18001. doi: 10.1209/0295-5075/89/18001

CrossRef Full Text | Google Scholar

Marra, G., Ricca, F., Terracina, G., and Ursino, D. (2014). “Exploiting answer set programming for handling information diffusion in a multi-social-network scenario,” in Proceedings of JELIA (Berlin; Heidelberg: Springer), 618–627.

Google Scholar

Marra, G., Ursino, D., Ricca, F., and Terracina, G. (2016). Information diffusion in a multi-social-network scenario: framework and ASP-based analysis. Knowl. Inf. Syst. 48, 619–648. doi: 10.1007/s10115-015-0890-z

CrossRef Full Text | Google Scholar

Masiala, S., and Atzmueller, M. (2018a). “First perspectives on explanation in complex network analysis,” in Proceedings of BNAIC (Den Bosch: Jheronimus Academy of Data Science).

Google Scholar

Masiala, S., and Atzmueller, M. (2018b). “Towards explainable complex network analysis,” in Proceedings of Dutch-Belgian Database Day (Belgium: Hasselt University).

Google Scholar

Murata, T., and Moriyasu, S. (2007). “Link prediction of social networks based on weighted proximity measures,” in Web Intelligence (Fremont, CA: IEEE), 85–88.

Google Scholar

Niemelä, I. (1999). Logic programs with stable model semantics as a constraint programming paradigm. Ann. Math. Artif. Intel. 25, 241–273. doi: 10.1023/A:1018930122475

CrossRef Full Text | Google Scholar

Papadimitriou, A., Symeonidis, P., and Manolopoulos, Y. (2011). “Friendlink: link prediction in social networks via bounded local path traversal,” in Proceedings of CASoN (Fremont, CA: IEEE), 66–71.

Google Scholar

Schäpers, B., Niemueller, T., Lakemeyer, G., Gebser, M., and Schaub, T. (2018). “ASP-based time-bounded planning for logistics robots,” in Proceedings of International Conference on Automated Planning and Scheduling (ICAPS).

Google Scholar

Scholz, C., Atzmueller, M., Barrat, A., Cattuto, C., and Stumme, G. (2013). “New insights and methods for predicting face-to-face contacts,” in Proceedings of ICWSM (Palo Alto, CA: AAAI Press).

Google Scholar

Scholz, C., Atzmueller, M., and Stumme, G. (2014). “On the predictability of recurring links in networks of face-to-face proximity,” in Proceedings of WWW 2014 (Companion) (New York, NY: IW3C2/ACM).

Google Scholar

Scripps, J., Tan, P.-N., and Esfahanian, A.-H. (2007). “Exploration of link structure and community-based node roles in network analysis,” in Proceedings of 7th IEEE International Conference on Data Mining (ICDM) (Washington, DC: IEEE Computer Society), 649–654.

Google Scholar

Seo, J., Guo, S., and Lam, M. S. (2013). “SociaLite: datalog extensions for efficient social network analysis,” in Proceedings of IEEE International Conference on Data Engineering (ICDE) (Washington, DC: IEEE), 278–289.

Google Scholar

Syrjänen, T., and Niemelä, I. (2001). “The smodels system,” in Proceedings of International Conference on Logic Programming and NonMonotonic Reasoning (Berlin; Heidelberg: Springer), 434–438.

Google Scholar

Wick, M. R., and Thompson, W. B. (1992). Reconstructive expert system explanation. Artif. Intel. 54, 33–70. doi: 10.1016/0004-3702(92)90087-E

CrossRef Full Text | Google Scholar

Keywords: modeling social media, social network analysis, link prediction, answer set programming, knowledge-based

Citation: Güven Ç and Atzmueller M (2019) Applying Answer Set Programming for Knowledge-Based Link Prediction on Social Interaction Networks. Front. Big Data 2:15. doi: 10.3389/fdata.2019.00015

Received: 03 April 2019; Accepted: 28 May 2019;
Published: 26 June 2019.

Edited by:

Andrea Tagarelli, University of Calabria, Italy

Reviewed by:

Cristian Molinaro, University of Calabria, Italy
Luca Maria Aiello, Nokia, United Kingdom

Copyright © 2019 Güven and Atzmueller. This is an open-access article distributed under the terms of the Creative Commons Attribution License (CC BY). The use, distribution or reproduction in other forums is permitted, provided the original author(s) and the copyright owner(s) are credited and that the original publication in this journal is cited, in accordance with accepted academic practice. No use, distribution or reproduction is permitted which does not comply with these terms.

*Correspondence: Çiçek Güven, c.guven@uvt.nl

Download