Abstract
Probabilistic logical models deal effectively with uncertain relations and entities typical of many real world domains. In the field of probabilistic logic programming usually the aim is to learn these kinds of models to predict specific atoms or predicates of the domain, called target atoms/predicates. However, it might also be useful to learn classifiers for interpretations as a whole: to this end, we consider the models produced by the inductive constraint logic system, represented by sets of integrity constraints, and we propose a probabilistic version of them. Each integrity constraint is annotated with a probability, and the resulting probabilistic logical constraint model assigns a probability of being positive to interpretations. To learn both the structure and the parameters of such probabilistic models we propose the system PASCAL for “probabilistic inductive constraint logic”. Parameter learning can be performed using gradient descent or L-BFGS. PASCAL has been tested on 11 datasets and compared with a few statistical relational systems and a system that builds relational decision trees (TILDE): we demonstrate that this system achieves better or comparable results in terms of area under the precision–recall and receiver operating characteristic curves, in a comparable execution time.
1 Introduction
Uncertain information is being taken into account in an increasing number of application fields. Probabilistic logical models are a suitable framework to handle uncertain information, but usually require expensive inference and learning procedures. For this reason, in the last decade many languages that impose limitations to the form of sentences have been proposed.
A possible way to pursue this goal is the application of learning from interpretations (De Raedt and Džeroski 1994; Blockeel et al. 1999) instead of the classical setting of learning from entailment. In fact, given fixed bounds on the maximal length of clauses and the maximal arity of literals, first-order clausal theories are polynomial-sample polynomial-time PAC-learnable (De Raedt and Džeroski 1994). Moreover, examples in learning from interpretations can be considered in isolation (Blockeel et al. 1999), so coverage tests are local and learning algorithms take a time that is linear in the number of examples.
A particularly interesting system that learns from interpretations is inductive constraint logic (ICL) (De Raedt and Van Laer 1995), based on the language of constraint logic theories. It performs discriminative learning and it generates models in the form of sets of integrity constraints. It can be seen as the dual of ILP systems based on learning from entailment.
In this paper we propose a probabilistic version of integrity constraints, called probabilistic constraint logic theories (PCLTs) (Alberti et al. 2016), where each integrity constraint is annotated with a probability. Under our formalism, models assign a probability of being positive to interpretations. This probability can be computed in a time that is logarithmic in the number of groundings of the constraints that are violated in an interpretation.
We also present the system PASCAL for “probabilistic inductive constraint logic” that learns both the structure and the parameters of these models.
On an experimental level, PASCAL has been compared with: (1) SLIPCOVER, LIFTCOVER and LEMUR, three state-of-art PLP systems, (2) Markov logic networks (MLNs) and (3) TILDE, a relational decision tree induction algorithm.
SLIPCOVER (Bellodi and Riguzzi 2015) performs structure learning of Logic Programs with Annotated Disjunctions (LPADs) (Vennekens et al. 2004) using knowledge compilation for parameter learning, by means of the language of binary decision diagrams. The head of each clause in a LPAD is composed of a disjunction of logical atoms, each annotated with the probability of being true when the body holds; probabilities in the head must sum up to 1. LEMUR (Di Mauro et al. 2015) learns LPADs by means of a Monte Carlo tree search algorithm. LIFTCOVER (Nguembang Fadja and Riguzzi 2018) performs structure learning of liftable PLP programs, characterized by clauses all having a single atom of the same predicate in the head, annotated with a probability. All algorithms are specialized for discriminative learning, i.e. they guarantee good predictions for the so-called target predicates (the ones appearing in the clauses’ head). TILDE (Blockeel and Raedt 1998) has been adapted to probabilistically classify interpretations.
PASCAL differs from all the previous algorithms in that:
-
it learns probabilistic integrity constraints, i.e. clauses which are annotated with a probability as a whole, while SLIPCOVER, LIFTCOVER and LEMUR learn probabilistic clauses with annotated heads;
-
it performs probabilistic classification of interpretations instead of classifying target atoms (as done by SLIPCOVER, LIFTCOVER, LEMUR and the probabilistic adaptation of TILDE);
-
it is based on a more expressive language than the one allowed by SLIPCOVER, LIFTCOVER, LEMUR and TILDE: probabilistic integrity constraints admit every predicate of the domain both for the head and the body, while LPADs clauses admit only target predicates in the head and TILDE clauses only the positive class for the head;
-
it encodes a distribution on the class variable given the atom variables.
Due to the first three characteristics above, PASCAL can be seen as the dual of SLIPCOVER/LIFTCOVER/LEMUR.
Results show that PASCAL is able to achieve better or comparable results both in terms of quality of the learnt models (measured by the area under the Precision-Recall and the Receiver Operating Characteristic curves) and learning time with respect to all systems. SLIPCOVER, LIFTCOVER and LEMUR, in turn, were shown to be comparable with state-of-art ILP systems (Bellodi and Riguzzi 2015; Nguembang Fadja and Riguzzi 2018).
Finally, we believe that PCLTs may be a suitable formalism to introduce probabilistic reasoning in the framework of interaction protocols in societies of agents (Alberti et al. 2008), where the language of Constraint Logic Theories was defined to verify the compliance of interacting agents (or query answering in Gavanelli et al. (2015)) to a set of integrity constraints, integrated with a knowledge based expressed as an abductive logic program. PCLTs might allow to monitor and verify, for instance at run-time, the compliance of a partial, and still not complete, interpretation (i.e., a narrative of occurred events, but not yet completed).
The paper is organized as follows: Sect. 2 introduces integrity constraints and ICL, Sect. 3 presents probabilistic integrity constraints, Sect. 4 introduces the parameter learning problem, Sect. 5 illustrates PASCAL, Sect. 6 discusses related work, Sect. 7 describes the experiments performed and Sect. 8 concludes the paper.
2 Inductive constraint logic (ICL)
ICL (De Raedt and Van Laer 1995) performs discriminative learning from interpretations. It learns logical theories in the form of Constraint Logic Theories (CLTs).
2.1 Logic preliminaries
We consider a logic without function symbols so a signature is a pair \((\varSigma _c, \varSigma _p)\) where \(\varSigma _c\) is a set of constants, and \(\varSigma _p\) is a set of predicate symbols with arity, containing the equality binary predicate \(\approx\).
A first-order theory is built upon a signature and a countable set of variables. A term is a constant, or a variable. An atom is a predicate symbol applied to as many terms as the symbol’s arity. A literal L is either an atom A (also called a positive literal) or its negation \(\lnot A\) (a negative literal).
A normal logic program \({\mathbf {BG}}\) is a set of formulas, called clauses, of the form
where H is an atom and all the \(B_i\)s are literals. H is called the head of the clause and \(B_1,\ldots ,B_n\) is called the body. If the body is empty the clause is called a fact.
A term, atom, literal or clause is ground if it does not contain variables. A substitution \(\theta\) is an assignment of variables to terms: \(\theta =\{V_1/t_1,\ldots ,V_n/t_n\}\). The application of a substitution \(\theta =\{V_1/t_1,\ldots ,V_n/t_n\}\) to a term, atom, literal or clause r, indicated with \(r\theta\), is the replacement of each variable \(V_i\) appearing in r and in \(\theta\) with \(t_i\). \(r\theta\) is called an instance of r. \(\theta\) is a grounding for r if \(r\theta\) is ground.
The semantics of first-order formulas is given by providing interpretations for the constant and predicate symbols over a universe of individuals. We consider Herbrand interpretations, whose universe are the ground terms of the language. The Herbrand base of a language is the set \(\mathcal{B}_H= \{p(t_1,\ldots ,t_n) | p\) is a predicate symbol of arity n and \(t_1,\ldots ,t_n\) are ground terms\(\}\).
A Herbrand interpretation for a theory is a subset of the Herbrand base for the language built over the constant and predicate symbols that occur in the theory; the atoms included in an interpretation are true in the interpretation. Given an interpretation I, an atom A is true in I, written \(I \models A\), if \(A\in I\), and the negation of an atom \(\lnot A\) is true in I, written \(I\models \lnot A\), if \(A\not \in I\).
Given a logic program, there are various ways to assign it a meaning, corresponding to different semantics. A semantics associates a program with a model or a set of models, usually Herbrand interpretations. We consider here the Clark’s completion semantics (Clark 1978) that assigns a Herbrand interpretation to a program. We indicate such an interpretation for a normal program \({\mathbf {BG}}\) with \(M({\mathbf {BG}})\).
2.2 ICL
A constraint logic theory (CLT) is a set of integrity constraints. In the following, we recall the definition of an integrity constraint from Lamma et al. (2008).
An integrity constraint (IC) is a formula C of the form
where each \(L_i\) is a logical literal (i.e., a logical atom or the negation of a logical atom) and each \(A_j\) is a logical atom. \(L_1,\ldots ,L_b\) is called the body of C (Body(C)) and \(A_1;\ldots ;A_h\) is called the head of C (Head(C)).
The semantics of ICs is based on interpretations as in first-order logic (FOL). We now define the truth of an integrity constraint in an interpretation.
An IC C is true in an interpretation I (\(I \models C\)) if and only if, for each grounding substitution \(\theta\) such that each literal in \(Body(C)\theta\) is true in I, at least one atom in \(Head(C)\theta\) is true in I. Thus, the body of an IC is read as a conjunction and its head as a disjunction.
A CLT can be complemented with a normal logic program \({\mathbf {BG}}\) expressing background knowledge about a domain.
With a slight abuse of notation, we indicate with \({\mathbf {BG}}\cup I\) the normal logic program composed of \({\mathbf {BG}}\) and the fact \(A_i \leftarrow\) for each atom \(A_i\in I\). We indicate \({\mathbf {BG}}\cup I\)’s model according to Clark’s completion semantics (Clark 1978) by \(M({\mathbf {BG}}\cup I)\). Intuitively, \(M({\mathbf {BG}}\cup I)\) is I augmented by the atoms that can be derived by \({\mathbf {BG}}\).
Given a normal logic program \({\mathbf {BG}}\), an interpretation I, and an integrity constraint C, we say that I satisfies C given a background knowledge \({\mathbf {BG}}\), or C is true in I given \({\mathbf {BG}}\), if and only if \(M({\mathbf {BG}}\cup I) \models C\).
We say that a CLT T is true in an interpretation I given \({\mathbf {BG}}\) (or T satisfies I given \({\mathbf {BG}}\), T covers I given \({\mathbf {BG}}\), or I is positive given T and \({\mathbf {BG}}\)) if and only if I satisfies each constraint in T given \({\mathbf {BG}}\).
If T is true in I (\(I \models T\)) we say that I is a model of T. If at least one constraint of the theory is false in an interpretation I, the whole theory T is false in I.
An IC is range-restricted if all the variables that occur in its head also occur in its body. As shown in De Raedt and Dehaspe (1997), a range-restricted IC \(L_1,\ldots ,L_b \rightarrow A_1;\ldots ; A_h\) is true in an interpretation I given a background knowledge \({\mathbf {BG}}\) if and only if the query
fails against a Prolog database containing the atoms of I as facts together with the rules of the normal program \({\mathbf {BG}}\). Note that if \({\mathbf {BG}}\) is range-restricted, every answer to a query Q against \({\mathbf {BG}}\cup I\) completely instantiates Q. Since, by definition, each variable in each query \(\lnot A_j\) occurs in a query \(L_i\), \(\lnot A_j\) is ground when it is called.
Example 1
(from Alberti et al. (2016)) The Bongard Problems were introduced by the Russian scientist M. Bongard in his book (Bongard 1970). Each problem consists of a number of pictures, some positive and some negative. The goal is to discriminate between the two classes. Each picture is composed of one or more figures, such as triangles, squares, circles, etc. Each figure has some properties, such as being small, large, pointing in a direction, etc. Moreover, relationships are defined between figures, such as inside, above, larger, and so on. Figure 1 shows some of these pictures.
Each picture can be defined by a set of atoms describing the properties and relationships of the figures in the pictures, i.e., an interpretation.
For instance, the left picture consists of a small triangle (identified by number 2) inside a small square (1) inside a large triangle (0).
The interpretation that describes the picture is
Additional properties and relationships can be defined, for example by means of the following background knowledge \({\mathbf {BG}}\):
Thus \(M({\mathbf {BG}}\cup I_{l})\) will contain, besides all the atoms in \(I_{l}\), the atoms in(1, 0), in(2, 1) and in(2, 0).
The IC
requires any figure contained in a square to be a square itself. C is false in \(I_{l}\) given \({\mathbf {BG}}\) because, for the grounding substitution \(\theta = \{S/1, T/2\}\), \(Body(C)\theta\) is true and the only disjunct in \(Head(C)\theta\) is false.
In the center picture instead C is true given \({\mathbf {BG}}\) because all the figures contained in squares are squares.
Learning from interpretations in ILP (De Raedt and Džeroski 1994; Blockeel et al. 1999) can be summarized as follows.
Given
-
a set \(\mathcal{I}^+=\{I_1,\ldots ,I_Q\}\) of positive interpretations (positive examples)
-
a set \(\mathcal{I}^-=\{I_{Q+1},\ldots ,I_R\}\) of negative interpretations (negative examples)
-
a normal logic program \({\mathbf {BG}}\) (background knowledge)
-
a hypothesis space \(\mathcal{H}\)
Find: an hypothesis \(T\in \mathcal{H}\) such that
-
for all \(I^+\in \mathcal{I}^+\), \(M({\mathbf {BG}}\cup I^+)\models T\)
-
for all \(I^-\in \mathcal{I}^-\), \(M({\mathbf {BG}}\cup I^-)\not \models T\)
Thus we look for a CLT that discriminates the positive from the negative interpretations.
ICL learns from interpretations using a covering loop on the negative examples, an approach that is dual to the covering loop of top-down ILP algorithms that learn from entailment. ICL starts from an empty theory and adds one IC at a time. After the addition of an IC, the set of negative examples that are ruled out by the IC is removed from \(\mathcal{I}^-\). The covering loop ends when no more ICs can be generated or when \(\mathcal{I}^-\) becomes empty (all the negative examples are ruled out). ICL is shown in Algorithm 1.


The IC to be added in every iteration of the covering loop is returned by the procedure FindBestIC, shown in Algorithm 2. It uses a beam search with \(P(\ominus |{\overline{C}})\) as the heuristic function, where \(P(\ominus |{\overline{C}})\) is the probability that an input example is negative given that it is ruled out by the IC C, i.e., it is the precision on negative examples. The search starts from the IC \(true \rightarrow false\) that rules out all the negative examples but also all the positive examples and gradually refines that clause in order to make it more general. The maximum size of the beam is a user-defined parameter. The heuristic of each generated refinement is compared with the one of the best IC found so far and, if it is larger, the best IC is updated. At the end of the refinement cycle, the best IC found is returned.
The refinement operator exploits \(\theta\)-subsumption for defining a generality relation among ICs: an IC C \(\theta\)-subsumes an IC D, written \(C \le _\theta D\), if there exists a substitution \(\theta\) such that \(C\theta \subseteq D\) where C and D are seen as logical clauses (sets of literals). The generality relation for ICs is defined in terms of \(\theta\)-subsumption as for learning from entailment but in the opposite direction: an IC D is more general than an IC C (\(D\le _g C\)) if \(C\le _\theta D\). So \(true \rightarrow false\) is the most specific constraint and the search in FindBestIC proceeds bottom up.
Refinements are obtained by using a refinement operator that adds a literal to the body or head of the IC or applies a substitution.
Extended IC language In the following, we recall the extended syntax and semantics for ICs from Lamma et al. (2008), which we use in this work. In the extended language, an integrity constraint (IC) is a formula C of the form
where each \(L_i\) is a literal and each \(P_j\) and \(N_k\) is a conjunction of literals. \(L_1,\ldots ,L_b\) is called the body of C (Body(C)) and \(\exists (P_1);\ldots ;\exists (P_n);\forall \lnot (N_1);\ldots ;\) \(\forall \lnot (N_m)\) is called the head of C (Head(C)). The semicolon here represents a disjunction.
We call each \(P_j\) a P conjunction and each \(N_k\) an N conjunction. We call each \(\exists (P_j)\) a P disjunct and each \(\forall \lnot (N_k)\) an N disjunct.
The variables that occur in the body are quantified universally with scope the IC. The variables in the head that do not occur in the body are quantified existentially if they occur in a P disjunct and universally if they occur in a N disjunct, with scope the disjunct they occur in.
A P disjunct \(\exists (P_j)\) is true in an interpretation I if and only if there exists a grounding substitution \(\theta _P\) that makes \(P_j\theta _P\) true. A N disjunct \(\forall \lnot (N_k)\) is true in an interpretation I if and only if for each grounding substitution \(\theta _N\) \(N_k\theta _N\) is false in I.
An IC C is true in an interpretation I (\(I \models C\)) if and only if, for each substitution \(\theta\) such that each literal in \(Body(C)\theta\) is ground and true in I, at least one disjunct in \(Head(C)\theta\) is true in I.
Similarly to disjunctive clauses, the truth of an IC as in formula (8) in an interpretation \(M({\mathbf {BG}}\cup I)\) can be tested by running the query:
in a database containing the clauses of \({\mathbf {BG}}\) and atoms of I as facts. If the N conjunctions in the head share some variables, then the following query must be issued
that ensures that the N conjunctions are tested separately without instantiating the variables. If the query finitely fails, the IC is true in the interpretation; if the query succeeds, the IC is false in the interpretation. Therefore, \({\mathbf {BG}}\) should be written so as to avoid infinite loops; for example, if \({\mathbf {BG}}\) is acyclic then the evaluation will terminate for a large class of queries (Apt and Bezem 1991).
The algorithm DPML (Lamma et al. 2008) was proposed for learning these extended constraints. DPML modifies ICL by using a different refinement operator. Given an IC D, the set of refinements \(\rho (D)\) of D is obtained by performing one of the following operations:
-
adding a literal to the body;
-
adding a disjunct to the head: the disjunct can be
-
a formula \(\exists ( d_1\wedge \ldots \wedge d_k)\) where \(\{d_1,\ldots , d_k\}\) is the set of literals allowed in a P disjunct,
-
a formula \(\forall \lnot (d)\) where d is a literal allowed in a N disjunct;
-
-
removing a literal from a P disjunct in the head;
-
adding a literal to a N disjunct in the head.
3 Probabilistic inductive constraint logic
A Probabilistic Constraint Logic Theory (PCLT) is a set of probabilistic integrity constraints \(C_i\) of the form
Each constraint \(C_i\) is associated with a probability \(p_i\in [0,1]\) and a PCLT T is a set of probabilistic constraints \(\{p_1{:}{:}C_1,\ldots ,p_n{:}{:}C_n\}\).
A PCLT T defines a probability distribution on ground constraint logic theories called possible theories in this way: for each grounding of the body of each IC, we include the IC in a possible theory with probability \(p_i\) and we assume all groundings to be independent. The probability is to be interpreted as the strength of the IC: a probability \(p_i\) means that the sum of the probabilities of the possible theories where a grounding of the constraint is present is \(p_i\).
The notion of possible theory is similar to notion of world in ProbLog (De Raedt et al. 2007) where a world is a normal logic program. However, in De Raedt et al. (2007) the term world is used to denote both logic programs and (least) Herbrand models in literature. In general, the use of the term world is ambiguous and there is no standard de facto for the terminology to be used. For example, Sato rarely uses the word “world” (Sato 1995). For these reasons, to avoid using ambiguous terminology we use the expression “possible theories ”.
Let us assume that constraint \(C_i\) has \(n_i\) substitutions \(\theta _{i_1},...,\theta _{i_{n_i}}\) that ground its body. Let \(C_{i1},\ldots ,C_{in_i}\)be the clauses \(C_i\theta _{i_1},\ldots ,C_i\theta _{i_{n_i}}\) and let us call the ICs \(C_{ij}\) instantiations of \(C_i\), i.e., its partial groundings. Thus, the probability of a possible theory w is given by the product:
\(P({W=w})\) so defined is a probability distribution over the set of possible theories W. In the following, we will indicate \(P({W=w})\) simply as P(w).
The probability \(P(\oplus |w,I)\) of the positive class given an interpretation I, a background knowledge \({\mathbf {BG}}\) and a possible theory w is defined as the probability that w satisfies I given \({\mathbf {BG}}\).Footnote 1 Of course, its value is \(P(\oplus |w,I)=1\) if \(M({\mathbf {BG}}\cup I)\models w\) and 0 otherwise. The probability \(P(\oplus |I)\) of the positive class given an interpretation I and a background \({\mathbf {BG}}\) is the probability of a PCLT T satisfying I given \({\mathbf {BG}}\). From now on we always assume \({\mathbf {BG}}\) as given and we do not mention it again. \(P(\oplus |I)\) is given by
The probability \(P(\ominus |I)\) of the negative class given an interpretation I is the probability of I not satisfying T and is given by \(1-P(\oplus |I)\).
Computing \(P(\oplus |I)\) with Formula (13) is impractical as there is an exponential number of possible theories. We can associate a Boolean random variable \(X_{ij}\) to each instantiated constraint \(C_{ij}\) with the meaning that \(X_{ij} = 1\) in a possible theory if \(C_{ij}\) is included in the possible theory. As \(p_i\) is associated with \(C_i\), \(P(X_{ij})=p_i\) and \(P(\overline{X_{ij}})=1-p_i\). Let \({\mathbf {X}}\) be the set of the \(X_{ij}\) variables. These variables are all mutually independent. A valuation \(\nu\) is an assignment of a truth value to all variables in \({\mathbf {X}}\). There is clearly a one to one correspondence between possible theories and valuations. A valuation can be represented as a set containing \(X_{ij}\) or \(\overline{X_{ij}}\) for each \(X_{ij}\) and corresponds to the formula \(\phi _\nu\) obtained by conjoining all the \(X_{ij}\) variables:
Suppose a ground IC \(C_{ij}\) is violated in I. The possible theories where \(X_{ij}\) holds in the respective valuation are thus excluded from the summation in Formula (13). We must keep only the possible theories where \(\overline{X_{ij}}\) holds in the respective valuation for all ground constraints \(C_{ij}\) violated in I. So I satisfies all the possible theories where the formula
is true in the respective valuations, so
where \(m_i\) is the number of groundings of \(C_i\) that are not satisfied in I, since the random variables are all mutually independent. Since computing \(a^b\) is \(O(\log b)\) with the “square and multiply” algorithm (Gordon 1998), \(P(\oplus |I)\) can be computed in a time that is \(O(n \log m)\) where m is the maximum number of groundings of constraints that are violated. Example 2 shows the application of Eq. 16 to the Bongard Problems domain. Example 3 shows how the computation of the probability has lower complexity than that required, for instance, by LPADs in a similar domain.
Example 2
(Example 1 continued) Consider the PCLT
In the left picture of Fig. 1 the body of \(C_1\) is true for the single substitution T/2 and S/1 thus \(m_1=1\) and \(P(\oplus |I_{l})=0.5\). In the right picture of Fig. 1 the body of \(C_1\) is true for three couples (triangle, square) thus \(m_1=3\) and \(P(\oplus |I_{r})=0.125\).
Example 3
Consider the following LPAD (Vennekens et al. 2004), inspired to the Bongard Problems:
plus an interpretation describing a picture. Notice that we have made the clauses for in/2 probabilistic. We can use this program to classify the picture, that is, we can ask the query class(pos) and obtain its probability. To do so, inference algorithms find all explanations of the query atom and then make them mutually exclusive. Finding all explanations for the query means finding all the rule groundings that contribute to the truth of the query, and making the explanations mutually exclusive is a #P-hard problem. PCLTs do not have this problem because each constraint is independent of the others and we do not allow probabilities in the background knowledge.
Counting the number of groundings that are violated is a generalization of subsumption testing, which is NP-complete (Kapur and Narendran 1986) in the length of both clauses to be tested for subsumption. However, since the length of the clauses we consider in learning is limited by an hyperparameter that is usually small enough, finding the number of groundings is not an issue.
3.1 Discussion of the variable independence assumption
Considering the variables mutually independent may seem a strong restriction. However, in this section we will show that this is not a limitation and that under this assumption we can model every conditional probability distribution of the class variable given the atom variables, possibly by resorting to the addition of extra random variables.
Given a PCLT T containing a positive or negative class and a Herbrand base, we want to define a conditional probability distribution over a random variable C representing the class, given the value of the random variables \(A_1,\ldots ,A_n\) representing the Herbrand base.
In this way, the probability distribution represents the conditional dependence of the class given an interpretation, where the interpretation defines the value of the atoms of the Herbrand base, without modelling at the same time the dependence among atoms of the Herbrand base.
This is strictly related to the definition of discriminative models with conditional random fields (Lafferty et al. 2001) to model a relationship between class variables and input variables, rather than a relationship among input variables.
We can create a Bayesian network as shown in Figure 2 defined by the PCLT T. In this Bayesian network the variables associated with ground atoms are all parents of the class variable.Footnote 2 For example, suppose we want to model a general conditional dependence between the class atom and a Herbrand base containing two atoms: a and b. This dependence can be represented with the Bayesian network of Figure 3, where the conditional probability table (CPT) has four parameters, \(p_1,\ldots ,p_4\), so it is the most general. Let us call \(P'\) the distribution defined by this network.
This model can be represented with the following PCLT
If we consider the interpretation \(\{\}\) assigning value false to each atom of the Herbrand base, only constraint \(C_1\) is violated. Thus, the probability that the class variable assumes value \(\oplus\) is
If we consider the opposite interpretation \(\{a,b\}\), only constraint \(C_4\) is violated and the probability of the positive class \(P(C=\oplus |a,b)=p_4\) is equivalent to the probability assigned by the Bayesian network \(P'(C=\oplus |a,b)\). It is easy to see that this holds also for the other possible interpretations, proving that the probability assigned to the positive class by the above PCLT always coincides with the one assigned by the Bayesian network of Figure 3.
Using the above PCLT is equivalent to representing the Bayesian network of Fig. 3 with the Bayesian network of Fig. 4, where a Boolean variable \(X_i\) represents whether constraint \(C_i\) is included in the possible theory (i.e., if it is enforced) and a Boolean variable \(Y_i\) whether constraint \(C_i\) is violated. Let us call \(P''\) the distribution defined by this network. The conditional probability tables for nodes \(X_i\)s are \(P''(X_i=1)=1-p_i\), those for nodes \(Y_i\)s encode the deterministic functions
and that for C encodes the deterministic function
where C is interpreted as a Boolean variable with 1 corresponding to \(\oplus\) and 0 to \(\ominus\). If we want to compute \(P''(C|\lnot a,\lnot b)\) we get
where \({\mathbf {X}}=\{X_1,\ldots ,X_4\}\) and \({\mathbf {Y}}=\{Y_1,\ldots ,Y_4\}\). Similarly, it is possible to show that P and \(P''\) coincide for the other possible interpretations. If we look at the network in Fig. 4 we see that the \({\mathbf {X}}\) variables are mutually unconditionally independent, showing that it is possible to represent any conditional dependence of C from the Herbrand base by using independent random variables. Of course, not assuming independence may result in a finer modeling of the domain. However, this would preclude PCLTs’ nice computational properties. Achieving tractability requires approximations and we think that constraint independence is a reasonable assumption, similar to the independence among probabilistic choices in the distribution semantics for PLP.
Moreover, PCLTs can compactly encode the dependence because they can take advantage of context specific independence (Poole and Zhang 2003). For example, in the CPT in Table 1 the probability of \(C=\oplus\) does not depend on b when a is true. This dependence can be encoded with
4 Learning the parameters of probabilistic constraint logic theories
Let us consider first the parameter learning problem that can be expressed as follows.
Given
-
a PCLT theory T
-
a set \(\mathcal{I}^+=\{I_1,\ldots ,I_Q\}\) of positive interpretations
-
a set \(\mathcal{I}^-=\{I_{Q+1},\ldots ,I_R\}\) of negative interpretations
-
a normal logic program \({\mathbf {BG}}\)
Find: the parameters of T such that the likelihood
is maximized. The likelihood is given by the probability that the example labels are observed for each example.
The likelihood can be unfolded to
where \(m_{lq}\) (\(m_{lr}\)) is the number of instantiations of \(C_l\) that are false in \(I_q\) (\(I_r\)) and n is the number of ICs. Let us compute the derivative of the likelihood with respect to the parameter \(p_i\). We first aggregate the positive examples
where \(m_{l+}=\sum _{q=1}^Q m_{lq}\). Then the partial derivative with respect to \(p_i\) is
The equation \(\frac{\partial L}{\partial p_i}=0\) does not admit a closed form solution so we must use optimization to find the maximum of L.
We can optimize the likelihood with gradient descent (Cauchy 1847), where weights are updated using the formula
where \(\epsilon\) is the learning rate defining the size of the step done by gradient descent along the gradient and \({\mathbf {p}}\) is the vector containing the parameters \(p_i\), or with a second order method such as limited-memory BFGS (L-BFGS) (Nocedal 1980).
In the experiments we report results only for gradient descent, as it outperforms L-BFGS in most cases in terms of area under the PR and ROC curves, and execution time.
5 Learning the structure of probabilistic constraint logic theories
The structure learning problem can be expressed as
Given
-
a set \(\mathcal{I}^+=\{I_1,\ldots ,I_Q\}\) of positive interpretations
-
a set \(\mathcal{I}^-=\{I_{Q+1},\ldots ,I_R\}\) of negative interpretations
-
a normal logic program \({\mathbf {BG}}\)
-
a language bias
Find: a PCLT T such that the likelihood
is maximized.
The PASCAL algorithm solves this problem by first identifying good candidate ICs and then searching for a theory guided by the log likelihood (LL) of the data.
5.1 The PASCAL algorithm
PASCAL is shown in Algorithm 3. It takes as input the positive and negative interpretations and a list of settings defining the hypothesis space. It returns a theory T of probabilistic ICs. After the search in the space of ICs, encoded in lines 2 - 19, PASCAL performs a greedy search in the space of theories, described in lines 20–28.
Thanks to the last part of the algorithm, based on a greedy search, PASCAL uses a search bias that should work against overfitting. This is confirmed by Section 7, where the experimental results computed through cross-validation are comparable with those of other systems.

Language bias The search over the space of constraints to identify the candidate ones is performed according to a language bias expressed by means of mode declarations. Following (Muggleton 1995), a mode declaration m is either a head declaration modeh(r, s) or a body declaration modeb(r, s), where s, the schema, is a ground literal, and r is an integer called the recall. A schema is a template for literals in the head or body of a constraint and can contain special placemark terms of the form #type, +type and -type, which stand, respectively, for ground terms, input variables and output variables of a type. An input variable in a body literal of a constraint must be an output variable in a preceding body literal in the IC. Similarly, an input variable in the head must be either an output variable in a preceding literal in the same disjunct or in a body literal in the IC. If M is a set of mode declarations, L(M) is the language of M, i.e. the set of ICs \(A_1;\ldots ; A_n \ {:\!-}\ L_1 , \ldots , L_b\) such that the head atoms \(A_i\) (resp. body literals \(L_i\)) are obtained from some head (resp. body) declaration in M by replacing all # placemarks with ground terms and all + (resp. -) placemarks with input (resp. output) variables.
ICs Search The first phase aims at searching the space of constraints for a set of promising ones in terms of log-likelihood (LL). In this step, a beam search is performed: initially the beam contains only the empty clause \(true \rightarrow false\) with score \(LL_0=-\infty\). Then, PASCAL enters the refinement cycle (Alg. 3, lines 6–16) in order to output a list of at most \(BeamSize\) candidate ICs sorted by decreasing LL. \(BeamSize\) is a user-defined setting storing the maximum size of the beam.
For each IC C, refinements are generated by means of the operators described in Section 2 where the literals allowed in the body and in the head are defined by the mode declarations. Moreover, the user can set the following bounds:
-
MLB, the maximum number of literals in the body of ICs;
-
MD, the maximum number of disjuncts in the head of ICs;
-
MLP and MLN, the maximum number of literals allowed in a P disjunct and a N disjunct respectively.
In line 10 of Algorithm 3 parameter learning is executed on a theory composed of the single refined clause - \(\{C'\}\) - by function LearnParams, employing either gradient descent or L-BFGS. The initial values for the parameters are randomly set. The resulting log likelihood \(LL''\) is used as the score of the updated IC \(C''\). The scored refinements are inserted back into the beam in order of decreasing score. If the beam exceeds the maximum size BeamSize, the last element is removed. Function Insert at line 11 is used to update the beam.
Beam search is repeated until the beam becomes empty or a maximum number of Steps is reached.
Theory search The second phase is a greedy search in the space of theories starting with an empty theory T with the lowest value of LL (line 20). Then one IC at a time is added from the \(Beam\). After each addition, parameter learning is run on the extended theory \(T \cup {C}\) and the log likelihood \(LL'\) of the data is computed as the score of the resulting theory \(T'\). If \(LL'\) is better than the current best, the IC is kept in the theory, otherwise it is discarded. This is done for each clause in \(Beam\), until the \(Beam\) is empty or a maximum number NC of ICs, defined by the user, is reached. In line 28 a PCLT T is returned.
5.2 Execution example
We now show an example of execution for the BUPA dataset that is used later in the experiments. BUPAFootnote 3 is a medical dataset for diagnosing liver disorders. The dataset uses 9 predicates, alkphos/2, gammagt/2, mcv/2, sgot/2, sgpt/2, drinks/2, bupa_name/1, bupa_type/1, bupa/2. Each interpretation records a list of ground facts representing values for blood tests (the first five predicates) and the number of half-pints drunk per day (the sixth) for a single male individual. The last three predicates were artificially created by researchers who defined the BUPA dataset in order to split data into train and test sets and give a target predicate, bupa/2, to learn. Positive interpretations represent individuals who have liver disorders.
An example of positive interpretation is:
For a negative interpretation, ‘pos’ in bupa_k is replaced with ‘neg’. Note that the first argument of each fact is the interpretation’s ID (also called key), which is not a descriptive argument of the individual represented by the interpretation. For this reason, it has not been counted in the predicates’ arity listed above.
The language bias used is
and the algorithm settings take the following values: BeamSize=2, MLB=2, MD=2, MLP=MLN=1, NC=8.
When searching the space of ICs, the starting IC \(true \rightarrow false\) is extracted from the initial Beam and is refined using the modeb declarations. Modeh declarations are considered but do not produce revisions as they all have an input argument; since the body is empty, no variable can be placed in the input argument. This leads to the following clauses in the first beam cycle:
-
1.
First refinement: \(C'\)
$$\begin{aligned} 0.5&{:}{:}alkphos(A,B) \rightarrow false. \end{aligned}$$After gradient descent optimization: \(C''\)
$$\begin{aligned} 0.360146&{:}{:}alkphos(A,B) \rightarrow false. \end{aligned}$$with \(LL= -216.919\). The couple (\(C'', -216.919\)) is inserted in the beam.
-
2.
Second refinement: \(C'\)
$$\begin{aligned} 0.5&{:}{:}drinks(A,B) \rightarrow false. \end{aligned}$$After gradient descent optimization: \(C''\)
$$\begin{aligned} 0.356961&{:}{:}drinks(A,B) \rightarrow false. \end{aligned}$$with \(LL= -217.806\). The couple (\(C'', -217.806\)) is inserted in the beam.
Six refinements are generated (one for each modeb), the best being (clause with the largest \(LL=-214.592\))
In the second beam cycle, C:
is extracted (being at the top of the beam) and its body is refined based on all modeb declarations, as \(MLB=2\), leading to:
-
1.
First refinement: \(C'\)
$$\begin{aligned} 0.5&{:}{:}gammagt(A,B), alkphos(C,D) \rightarrow false. \end{aligned}$$After gradient descent optimization: \(C''\)
$$\begin{aligned} 0.372082&{:}{:}gammagt(A,B), alkphos(C,D) \rightarrow false. \end{aligned}$$with \(LL=-213.732\). The couple (\(C'', -213.732\)) is inserted in the beam.
-
2.
Second refinement: according to the placemark terms in the modeb declarations, also the refinement \(C'\):
$$\begin{aligned} 0.5&{:}{:}gammagt(A,B), alkphos(A,C) \rightarrow false. \end{aligned}$$can be generated and optimized.
-
3.
These two types of refinements are repeated by generating and optimizing all rules of the form:
$$\begin{aligned} 0.5&{:}{:}gammagt(A,B), L_2 \rightarrow false. \end{aligned}$$with \(L_2\) being every modeb literal except for gammagt/2.
-
4.
Then, all refinements of the form:
$$\begin{aligned} 0.5&{:}{:}gammagt(A,B) \rightarrow \exists (P_1) .\\ 0.5&{:}{:}gammagt(A,B) \rightarrow \forall \lnot (N_1) . \end{aligned}$$are generated and optimized, with \(P_1\) and \(N_1\) disjuncts containing one of each modeh atom at a time (as \(MLP=MLN=1\)). This is possible because the input arguments of the modeh declarations can be replaced with variables appearing in the body.
-
5.
After having built all possible refinements based on the literal gammagt/2, the current best theory (\(LL=-213.732\)) is still
\(0.372082 {:}{:} gammagt(A,B), alkphos(C,D) \rightarrow false\).
Now, C:
is extracted, being the second clause in the beam with \(LL= -215.119\), and the previous 1–4 steps are repeated using sgot/2.
This is the end of the second beam cycle, terminating with the best theory found among all refinements:
\(0.372082 {:}{:} gammagt(A,B), alkphos(C,D) \rightarrow false\), which is therefore put at the top of the beam.
In the third beam cycle, C:
is extracted and all refinements of the form:
are generated and optimized, with \(P_i\) and \(N_i\) containing one of each modeh atom at a time. Two disjuncts can be present in the head as \(MD=2\); given that \(MLB=2\), no further literal can be added to the body. After having built all possible refinements, the current best theory (\(LL=-213.732\)) is still
\(0.372082 {:}{:} gammagt(A,B), alkphos(C,D) \rightarrow false\).
Now, C:
is extracted, being the second clause in the beam with \(LL=-213.885\), and it is refined by applying the operations listed at the end of Sect. 2.2.
Beam cycles go on until the beam becomes empty and the best IC found so far is kept in Beam (line 17 of Alg. 3), in this case
\(0.372082 {:}{:} gammagt(A,B), alkphos(C,D) \rightarrow false.\)
When the repeat-until cycle ends, Beam has kept the best ICs for the theory search.
When searching the space of theories, PASCAL generates the theory:
with a log likelihood of \(-187.826\). Note that the last clause was the first best IC found.
6 Related work
The approach for assigning a semantics to PCLTs is inspired by the distribution semantics (Sato 1995): a probabilistic theory defines a distribution over non-probabilistic theories by assuming independence among the choices in probabilistic constructs. The distribution semantics has emerged as one of the most successful approaches in probabilistic logic programming (PLP) and underlies many languages such as Probabilistic Horn Abduction (Poole 1993), independent choice logic (Poole 1997), PRISM (Sato and Kameya 1997), Logic Programs with Annotated Disjunctions (Vennekens et al. 2004) and ProbLog (De Raedt et al. 2007).
According to the distribution semantics, probabilistic inference aims at computing the probability that a ground atom is true. However, performing such task requires an expensive procedure that is usually based on knowledge compilation. For example, ProbLog (De Raedt et al. 2007) and PITA (Riguzzi and Swift 2010, 2013) build a Boolean formula and compile it into a language from which the computation of the probability is linear in the size of the resulting formula. However, the compilation procedure is #P in the number of random variables. On the contrary, computing the probability of the positive class given an interpretation in a PCLT is \(O(n \log m)\), where n is the number of clauses and m is the maximum number of groundings, and computing m is polynomial in the database size.
PASCAL is related to the systems SLIPCASE (Bellodi and Riguzzi 2012) and SLIPCOVER (Bellodi and Riguzzi 2015) that learn probabilistic logic programs under the distribution semantics. However, these perform classification of target atoms rather than of interpretations. Recently, the LIFTCOVER algorithm (Nguembang Fadja and Riguzzi 2019) was proposed to perform discriminative learning of probabilistic logic programs that are limited to one layer of rules combined with noisy–or. PCLTs are the dual of this PLP formalism as ICL is the dual of the learning from entailment setting in ILP. In fact in Nguembang Fadja and Riguzzi (2019) a single firing rule is enough to make the query true with a nonzero probability, while in PCLTs one single violated constraint is enough to make the class negative with a nonzero probability. The higher the number of firing rules (violated constraints), the higher is the probability of the positive (negative) class.
PCLTs can be related to Markov Logic Networks (Richardson and Domingos 2006), as they share the capability to encode constraints on possible interpretations. The difference between them relies in the fact that MLNs can either encode a joint distribution over all atoms with a generative approach, or encode conditional probability distributions with a discriminative approach (Singla and Domingos 2005): in the latter case their aim is to predict some query atom variables given the others. PASCAL performs discriminative learning too, but its aim is to classify interpretations, that is, encoding the probability distribution of the class variable given the atom variables. Given a PCLT, it is possible to obtain an MLN encoding the same distribution over the class variable given the values of all the atoms.
For example, the PCLT (18–21) can be emulated with the following MLN:
where C is an atom representing the class. If we compute the conditional probability of C given an interpretation I, we get the same results of the PCLT. In fact, consider the empty interpretation and call \(P'''\) the distribution defined by the MLN. We get
where Z is the partition function. Similarly for the other interpretations. So PCLTs are a specialization of MLNs that, by focusing on a simpler problem, allow better performance of inference algorithms.
In other words, it is only possible to encode PCLTs with MLNs but not viceversa.
Finally, as regards parameter learning, in Singla and Domingos (2005) parameters are learned using gradient descent as in PASCAL and, to limit the complexity, authors approximate expected counts by considering only the map state of the query variables. Differently from them, we do not need to perform approximations when computing the gradient as the model was specifically designed with discriminative inference in mind.
Tractable Markov logic (TML) (Domingos and Webb 2012) is a subset of Markov logic, where inference is kept tractable by imposing restrictions on the language: in particular, only subclass/instance, subpart and relation rules and facts can be expressed, and class hierarchies are required to be forests. Our work differs from TML in two respects. First, inference in TML computes the conditional probability of a query given a theory, while we compute the conditional probability of a class given an interpretation. Second, PCLT constraints are more general than the rules that can be expressed in TML.
PCLTs are also related to FOProbLog (Bruynooghe et al. 2010), an algorithm which defines a probability distribution on interpretations built using ground atoms from the Herbrand base. In a theory, probability values are associated with facts, which are used as activators of the formulae of the theory. To compute the probability of a class C it builds the set of total choices. Then, it extends the total choices by adding ground atoms from the Herbrand base, extensions that are called models. Note that some of these models may be inconsistent, but in this case their probability is 0, thus we concentrate only on consistent extensions. Once all the models are collected, the probability of a query Q is defined as an interval \([p_1,p_2]\), where \(p_1\) is the sum of the probabilities of the models where the query can be proved. On the other hand, \(p_2=1-p_{\lnot Q}\), where \(p_{\lnot Q}\) is the probability of the query \(\lnot Q\) computed in the same way of the probability of Q. The probability interval for the query \(\lnot Q\) will be \([1-p_1,p_{\lnot Q}]\). So FOProbLog is similar to MLNs, it defines a probability distribution over interpretations or queries, while we define a probability distribution over the class only, thus tackling a simpler problem.
Another system related to PASCAL is 1BC (Flach and Lachiche 2004), that induces first-order features in the form of conjunctions of literals and combines them using naive Bayes in order to classify examples. First-order features are similar to integrity constraints with an empty head: they check the existence of values for the variables that satisfy the conjunction. The probability of a feature is computed by relative frequency in 1BC. This can lead to suboptimal results if compared to PASCAL, where the probabilities are optimized to maximize the likelihood.
Another system which is close to our approach is TILDE (Blockeel and Raedt 1998) which applies first-order logical decision trees (FOLDT) to the problem of learning from interpretations. A FOLDT is a binary decision tree in which each node of the tree represents a conjunction of literals defined by the path to that node. Free variables in the literals can be shared across many nodes under the limitation that, starting from the first node that introduces the variable, all the other nodes must be in the left branch of their parent node. Such a limitation is due to the fact that each variable introduced is existentially quantified. The resulting learned clauses are used to classify interpretations given a set of possible classes. These clauses can be associated with the probability distribution of classes in the leaf that corresponds to the learned clause, therefore, TILDE can be used also to perform probabilistic classification. In this way, TILDE can act like relational probability trees (Neville et al. 2003), which build classification trees considering a larger feature space that also includes aggregation operators. However, both TILDE and relational probability trees can only return a probability value that is associated with the leaves of the constructed tree. Instead, PASCAL returns a wider range of values, because it considers also the number of satisfied groundings of the ICs during inference.
7 Experiments
We compared PASCAL with:
-
the PLP algorithms LIFTCOVER (Nguembang Fadja and Riguzzi 2018), SLIPCOVER (Bellodi and Riguzzi 2015) and LEMUR (Di Mauro et al. 2015);
-
the MLNs algorithms BUSL (Mihalkova and Mooney 2007), LSM (Kok and Domingos 2010), MLN-BC/MLN-BT (Khot et al. 2011);
-
TILDE (Blockeel and Raedt 1998) as a representative of (probabilistic) relational classifiers.
We performed tests on the datasets of Nguembang Fadja and Riguzzi (2018) plus the Bongard dataset (Bongard 1970), to which the Bongard Problem of Example 1 is inspired.
Note that SLIPCOVER, LIFTCOVER and LEMUR can be seen as a baseline for comparison with respect to PASCAL, since they have already been compared with many state-of-art systems in our previous works (Bellodi and Riguzzi 2015; Di Mauro et al. 2015), demonstrating that they were competitive or superior with respect to the MLNs learning systems.
All PLP systems, included PASCAL, are implemented in SWI-Prolog (Wielemaker et al. 2012).
Datasets Datasets are specific for the learning from entailment setting as they were used in Nguembang Fadja and Riguzzi (2018) to compare LIFTCOVER with SLIPCOVER: they are composed of a set of mega-interpretations, each possibly containing more than one example (i.e., fact for a target predicate). However, those mega-interpretations contain in practice a single fact for the target predicate, so it is possible to classify each mega-interpretation as positive or negative depending on the target predicate example. For this reason, we could apply PASCAL by considering each mega-interpretation as an input interpretation.
Table 2 shows the datasets’ features: number of different predicates, total number of tuples, number of positive and negative examples, and number of folds for cross-validation.
Algorithms’ settings SLIPCOVER/LIFTCOVER/LEMUR and TILDE allow modeh and predict declarations only for the target predicate(s), respectively. PASCAL, instead, by learning models that provide predictions at the level of interpretations, allows modeh declarations for all predicates of the domain (see Sect. 5.2).
As described in Sect, 5.1, PASCAL offers the following settings: the size \(BeamSize\) of the beam, the maximum number of disjuncts \(MD\) per IC, the maximum number of literals \(MLP\) contained in positive disjuncts and the maximum number of literals \(MLN\) contained in negative disjuncts, the maximum number of body literals \(MLB\), the maximum number \(MaxSteps\) of IC search iterations, and the maximum number of ICs \(NC\) that may be inserted into the final program. Table 3 summarizes the values taken by these settings. They were chosen with the objective of keeping the computation time below 24 hours per fold.
TILDE was executed with default values for its settings.
SLIPCOVER and LIFTCOVER settings can be found in Table 2 of Nguembang Fadja and Riguzzi (2018) for all datasets except Bongard. We applied SLIPCOVER and LIFTCOVER on Bongard by setting \(NB=100, NI=20, NInt=4,NS=NA=1,NV=4,WMin=0, NIS=50\) (see Section 7 of Nguembang Fadja and Riguzzi 2018). LIFTCOVER can exploit either an expectation maximization (EM) algorithm (Dempster et al. 1977) or L-BFGS (Nocedal 1980) to maximize the log-likelihood during parameter learning, so results show both variants. LEMUR settings can be found in subsection 7.1 of Di Mauro et al. (2015) for the three datasets in common (Carcinogenesis, Mondial, Mutagenesis).
Results Experiments with PASCAL were performed on GNU/Linux machines with Intel Xeon E5-2697 v4 (Broadwell) at 2.30 GHz, using cross-validation.
TILDE can only be executed on 32-bit machines: we used a GNU/Linux machine with Intel Core 2 Quad CPU Q6600 at 2.40GHz and 3.6 GB of RAM, using cross validation. To compare the results of TILDE with the others we scaled its runtime of a factor 2.4/2.3.
LEMUR, MLN-BC and MLN-BT in Di Mauro et al. (2015) were executed on GNU/Linux machines with an Intel Core 2 Duo E6550 (2.333 GHz) processor: in order to compare their runtime, we scaled PASCAL learning time of a factor 2300/2333 based on the different CPU clock speeds.
Results for all the other systems are referred to the same machines used for PASCAL.
For performance evaluation, we considered the Area Under the Precision Recall and ROC curves (AUCPR and AUCROC respectively) using the methods described in Davis and Goadrich (2006); Provost and Fawcett (2001).
Tables 4, 5 and 6 show the AUC-PR, AUC-ROC and learning time in seconds respectively, averaged over the folds, for PASCAL, SLIPCOVER, LIFTCOVER and TILDE. SLIPCOVER and LIFTCOVER results are taken from Tables 3, 4 and 5 of Nguembang Fadja and Riguzzi (2018).
In Tables 7, 8 and 9 we report the AUC-PR, AUC-ROC and running time achieved by PASCAL, LEMUR, MLN-BC (with and without sampling) and MLN-BT (with and without sampling) on the datasets in common. LSM and BUSL were also considered, but they are not included in the tables because they were not able to complete the task due to an out of memory error. LEMUR, MLN-BC, MLN-BT results are taken from Tables 3, 4 and 6 of Di Mauro et al. (2015).
Table 10 shows the p-value of a paired two-tailed t-test of the difference in AUC-PR and AUC-ROC between PASCAL and TILDE on all datasets, except for Carcinogenesis/Bongard, where we did not apply cross-validation, and Sisyb, where we got the same AUC values over all folds with both algorithms. The p-value is not reported for the other systems as data were not available.
Discussion As regards the quality of the theories learnt, Tables 4, 5, 7, and 8 show that PASCAL achieves the best AUC-PR 3 times out of 11 and comparable AUC-PR in the other cases except for Bongard. LIFTCOVER-EM and PASCAL are the best algorithms according to AUC-ROC in 4 cases out of 11 (Sisyb is not counted); in the other cases PASCAL gets comparable AUC-ROC except for Bongard and Sisya. PLP algorithms always beat MLNs. By looking at the characteristics of the datasets, we can observe that the three datasets where PASCAL performs well - Triazine, Financial and Carcinogenesis - have a small number of examples but a large number of different predicates, possibly indicating that the expressive language bias is beneficial when the dataset is not very big but has a rich structure.
The quality of the models built by PASCAL is especially influenced by the language bias and the choice of the settings’ values which define the search space of the candidate ICs; datasets’ size impacts execution time and search space. The values reported in Table 3 generated the PCLTs described in Table 11, in terms of average size of the theories (number of learnt ICs), average size of the constraints (number of atoms), characteristics of the constraints (number of P and N disjuncts).
As regards learning time, LIFTCOVER-EM is the fastest system, as can be seen in Tables 6 and 9. Note that, in spite of the greater expressiveness allowed by PASCAL language bias (w.r.t. to the other PLP systems), that is responsible for a larger search space, PASCAL learning times are in line with all algorithms, and in 3 cases out of 11 it is even the second best. Also, with respect to MLNs learning time, PASCAL is always faster except Carcinogenesis (Table 9).
T-tests show that area differences between PASCAL and TILDE are statistically significant, with a confidence level of 0.05, in 7 out of 14 cases.
8 Conclusions
We proposed the PASCAL algorithm for learning probabilistic constraint logic theories from interpretations, a probabilistic extension of integrity constraints (ICs) presented in Alberti et al. (2016). PASCAL can exploit either gradient descent or L-BFGS for tuning the parameters. PASCAL is the first system able to learn probabilistic ICs, and has been demonstrated to achieve comparable or better performance in terms of AUC-PR and AUC-ROC than several state-of-the-art statistical relational learners, based on probabilistic logic programs or on Markov Logic Networks, in a comparable execution time.
The main limitation of PASCAL is that it performs discriminative learning, not generative learning. As such it is not suitable for building domain models but rather for building predictive models, allowing the classification of interpretations but not capturing the dependencies among ground atoms.
In the future we plan to apply PASCAL to domains from the field of Business Process Management, which we believe can benefit from a probabilistic evaluation of business workflows.
Another future work, anticipated in the Introduction, regards investigating how to introduce probabilistic reasoning in the framework of interaction protocols in societies of agents, suitably extending the declarative and operational semantics of Alberti et al. (2008), in order to be able to monitor and verify the compliance of a partial, and still not complete, interpretation (i.e., a narrative of occurred events, but not yet completed).
PASCAL will be also included in the cplint framework and made available in the cplint-on-SWISH web application (Alberti et al. 2016) at http://cplint.eu to facilitate experimenting with it.
Notes
\({\mathbf {BG}}\) is omitted from the formula for the sake of brevity.
Which differs from a naive Bayes model because there the input variables (ground atoms) are all children of the class variable. This is a significant difference because the model in Figure 2 can have up to \(2^n\) parameters if n is the number of ground atoms.
References
Alberti, M., Bellodi, E., Cota, G., Lamma, E., Riguzzi, F., & Zese, R. (2016). Probabilistic constraint logic theories. In: A. Hommersom, S. Abdallah (Eds.) Proceedings of the 3nd international workshop on probabilistic logic programming (PLP), CEUR Workshop Proceedings (vol. 1661, pp. 15–28). Sun SITE Central Europe, Aachen, Germany. http://ceur-ws.org/Vol-1661/#paper-02
Alberti, M., Chesani, F., Gavanelli, M., Lamma, E., Mello, P., & Torroni, P. (2008). Verifiable agent interaction in abductive logic programming: The SCIFF framework. ACM Transactions on Computer Logic, 9(4), 29:1–29:43.
Alberti, M., Cota, G., Riguzzi, F., & Zese, R. (2016). Probabilistic logical inference on the web. In: G. Adorni, S. Cagnoni, M. Gori, M. Maratea (Eds.) AI*IA 2016, Lecture Notes in Computer Science, vol. 10037, pp. 351–363. Springer https://doi.org/10.1007/978-3-319-49130-1_26.
Apt, K. R., & Bezem, M. (1991). Acyclic programs. New Generation Computing, 9(3–4), 335–363.
Bellodi, E., & Riguzzi, F. (2012). Learning the structure of probabilistic logic programs. In S. Muggleton, A. Tamaddoni-Nezhad, & F. Lisi (Eds.) 22nd international conference on inductive logic programming, LNCS (Vol. 7207, pp. 61–75). Berlin: Springer.
Bellodi, E., & Riguzzi, F. (2015). Structure learning of probabilistic logic programs by searching the clause space. Theory and Practice of Logic Programming, 15(2), 169–212. https://doi.org/10.1017/S1471068413000689.
Blockeel, H., De Raedt, L., Jacobs, N., & Demoen, B. (1999). Scaling up inductive logic programming by learning from interpretations. Data Mining and Knowledge Discovery, 3(1), 59–93.
Blockeel, H., & De Raedt, L. (1998). Top-down induction of first-order logical decision trees. Artificial Intelligence, 101(1–2), 285–297. https://doi.org/10.1016/S0004-3702(98)00034-4.
Bongard, M. M. (1970). Pattern recognition. Spartan Books: Hayden Book Co., Spartan Books
Bruynooghe, M., Mantadelis, T., Kimmig, A., Gutmann, B., Vennekens, J., Janssens, G., & De Raedt, L. (2010). Problog technology for inference in a probabilistic first order logic. In ECAI 2010 - 19th European conference on artificial intelligence, Lisbon, Portugal, August 16–20, 2010, proceedings, frontiers in artificial intelligence and applications, vol. 215, pp. 719–724. IOS Press.
Cauchy, A. (1847). Méthode générale pour la résolution des systemes d’équations simultanées. Comptes Rendus Academic Science Paris, 225(83), 536–538.
Clark, K. L. (1978). Negation as failure. In H. Gallaire & J. Minker (Eds.), Logic and data bases. Boston, MA: Springer. https://doi.org/10.1007/978-1-4684-3384-5_11.
Davis, J., & Goadrich, M. (2006). The relationship between precision-recall and ROC curves. In ECML 2006 pp. 233–240). ACM
De Raedt, L., & Dehaspe, L. (1997). Clausal discovery. Machine Learning, 26(2–3), 99–146.
De Raedt, L., & Džeroski, S. (1994). First-Order jk-Clausal Theories are PAC-Learnable. Artificial Intelligence, 70(1–2), 375–392.
De Raedt, L., Kimmig, A., & Toivonen, H. (2007). ProbLog: A probabilistic Prolog and its application in link discovery. In: M.M. Veloso (Ed.) IJCAI 2007 (Vol. 7, pp. 2462–2467). AAAI Press/IJCAI.
De Raedt, L., & Van Laer, W. (1995). Inductive constraint logic. In: ALT 1995, Lecture Notes in Artificial Intelligence (Vol. 997, pp. 80–94). Springer.
Dempster, A. P., Laird, N. M., & Rubin, D. B. (1977). Maximum likelihood from incomplete data via the EM algorithm. Journal of the Royal Statistical Society: Series B (Methodological), 39(1), 1–38.
Di Mauro, N., Bellodi, E., & Riguzzi, F. (2015). Bandit-based Monte-Carlo structure learning of probabilistic logic programs. Machine Learning, 100(1), 127–156. https://doi.org/10.1007/s10994-015-5510-3.
Domingos, P., & Webb, W.A. (2012). A tractable first-order probabilistic logic. In J. Hoffmann, B. Selman (Eds.) Twenty-Sixth AAAI Conference on Artificial Intelligence (AAAI-12). AAAI Press.
Flach, P. A., & Lachiche, N. (2004). Naive Bayesian classification of structured data. Machine Learning, 57(3), 233–269. https://doi.org/10.1023/B:MACH.0000039778.69032.ab.
Gavanelli, M., Lamma, E., Riguzzi, F., Bellodi, E., Zese, R., & Cota, G. (2015). An abductive framework for datalog\(\pm\) ontologies. In: M.D. Vos, T. Eiter, Y. Lierler, F. Toni (Eds.) Technical communications of the 31st international conference on logic programming (ICLP 2015), CEUR workshop proceedings (vol. 1433). CEUR-WS.org.
Gordon, D. M. (1998). A survey of fast exponentiation methods. Journal of Algorithms, 27(1), 129–146. https://doi.org/10.1006/jagm.1997.0913.
Kapur, D., & Narendran, P. (1986). Np-completeness of the set unification and matching problems. In International conference on automated deduction (pp 489–495). Springer.
Khot, T., Natarajan, S., Kersting, K., & Shavlik, J.W. (2011). Learning Markov Logic Networks via functional gradient boosting. In Proceedings of the 11th IEEE international conference on data mining (pp. 320–329). IEEE.
Kok, S., & Domingos, P. (2010). Learning Markov logic networks using structural motifs. In: J. Fürnkranz, T. Joachims (Eds.) ICML 2010 (pp. 551–558). Omnipress.
Lafferty, J., McCallum, A., & Pereira, F. (2001). Conditional random fields: Probabilistic models for segmenting and labeling sequence data. In 18th International Conference on Machine Learning (vol. 1, pp. 282–289).
Lamma, E., Mello, P., Riguzzi, F., & Storari, S. (2008). Applying inductive logic programming to process mining. In Proceedings of the 17th international conference on inductive logic programming, ILP 2007, no. 4894 in lecture notes in artificial intelligence (pp. 132–146). Springer, Heidelberg, Germany. https://doi.org/10.1007/978-3-540-78469-2_16.
Mihalkova, L., & Mooney, R.J. (2007). Bottom-up learning of Markov logic network structure. In Proceedings of the 24th International Conference on Machine Learning (pp. 625–632). ACM.
Muggleton, S. (1995). Inverse entailment and Progol. New Generation Computing, 13, 245–286.
Neville, J., Jensen, D.D., Friedland, L., & Hay, M. (2003). Learning relational probability trees. In: L. Getoor, T.E. Senator, P.M. Domingos, C. Faloutsos (Eds.) Proceedings of the ninth ACM SIGKDD international conference on knowledge discovery and data mining, Washington, DC, USA, August 24–27, 2003, pp. 625–630. ACM Press.
Nguembang Fadja, A., & Riguzzi, F. (2018). Lifted discriminative learning of probabilistic logic programs. Machine Learning,. https://doi.org/10.1007/s10994-018-5750-0.
Nguembang Fadja, A., & Riguzzi, F. (2019). Lifted discriminative learning of probabilistic logic programs. Machine Learning, 108(7), 1111–1135. https://doi.org/10.1007/s10994-018-5750-0. http://ml.unife.it/wp-content/uploads/Papers/NguRig-ML18.pdf.
Nocedal, J. (1980). Updating Quasi-Newton matrices with limited storage. Mathematics of Computation, 35(151), 773–782.
Poole, D. (1993). Logic programming, abduction and probability: A top-down anytime algorithm for estimating prior and posterior probabilities. New Generat. Comput., 11(3), 377–400.
Poole, D. (1997). The independent choice logic for modelling multiple agents under uncertainty. Artificial Intelligence, 94, 7–56.
Poole, D., & Zhang, N. L. (2003). Exploiting contextual independence in probabilistic inference. Journal of Artificial Intelligence Research, 18, 263–313.
Provost, F. J., & Fawcett, T. (2001). Robust classification for imprecise environments. Machine Learning, 42(3), 203–231.
Richardson, M., & Domingos, P. (2006). Markov logic networks. Machine Learning, 62(1–2), 107–136.
Riguzzi, F., & Swift, T. (2010). Tabling and answer subsumption for reasoning on logic programs with annotated disjunctions. In: ICLP TC 2010, LIPIcs (Vol. 7, pp. 162–171). Schloss Dagstuhl - Leibniz-Zentrum fuer Informatik. https://doi.org/10.4230/LIPIcs.ICLP.2010.162.
Riguzzi, F., & Swift, T. (2013). Welldefinedness and efficient inference for probabilistic logic programming under the distribution semantics. Theory and Practice of Logic Programming, 13(2), 279–302. https://doi.org/10.1017/S1471068411000664.
Sato, T. (1995). A statistical learning method for logic programs with distribution semantics. In: L. Sterling (Ed.) ICLP 1995 (pp. 715–729). Cambridge: MIT Press.
Sato, T., & Kameya, Y. (1997). PRISM: A language for symbolic-statistical modeling. In: IJCAI (Vol. 97, pp. 1330–1339).
Singla, P., & Domingos, P. (2005). Discriminative training of Markov logic networks. In: 20th national conference on artificial intelligence (AAAI 2005) (pp. 868–873). AAAI Press/The MIT Press.
Vennekens, J., Verbaeten, S., & Bruynooghe, M. (2004). Logic programs with annotated disjunctions. In: B. Demoen, V. Lifschitz (Eds.) ICLP 2004, lecture notes in computer science (vol. 3131, pp. 431–445). Springer. https://doi.org/10.1007/978-3-540-27775-0_30
Wielemaker, J., Schrijvers, T., Triska, M., & Lager, T. (2012). SWI-Prolog. Theory and Practice of Logic Programming, 12(1–2), 67–96. https://doi.org/10.1017/S1471068411000494.
Acknowledgements
We thank the anonymous reviewers for their insightful comments on previous drafts of this article. This work was partially supported by the “GNCS-INdAM”.
Funding
Open access funding provided by Università degli Studi di Ferrara within the CRUI-CARE Agreement.
Author information
Authors and Affiliations
Corresponding author
Additional information
Publisher's Note
Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.
Editors: Nikos Katzouris, Alexander Artikis, Luc De Raedt, Artur d’Avila Garcez, Ute Schmid, Jay Pujara.
Rights and permissions
Open Access This article is licensed under a Creative Commons Attribution 4.0 International License, which permits use, sharing, adaptation, distribution and reproduction in any medium or format, as long as you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons licence, and indicate if changes were made. The images or other third party material in this article are included in the article's Creative Commons licence, unless indicated otherwise in a credit line to the material. If material is not included in the article's Creative Commons licence and your intended use is not permitted by statutory regulation or exceeds the permitted use, you will need to obtain permission directly from the copyright holder. To view a copy of this licence, visit http://creativecommons.org/licenses/by/4.0/.
About this article
Cite this article
Riguzzi, F., Bellodi, E., Zese, R. et al. Probabilistic inductive constraint logic. Mach Learn 110, 723–754 (2021). https://doi.org/10.1007/s10994-020-05911-6
Received:
Revised:
Accepted:
Published:
Issue Date:
DOI: https://doi.org/10.1007/s10994-020-05911-6