-
Notifications
You must be signed in to change notification settings - Fork 22
Grounded Relational Random Walks
by: Navdeep Kaur
- Overview
- Formulating Lifted Random Walks as Clauses
- Facts File
- Background File
- Negative Examples File
- Target Predicate File
- Usage Commands
- References
We obtain valued structure of relational data by randomly walking on a lifted relational graph whose nodes represent different object types and edges denote relations between them. We can obtain first order clauses from these relational random walks; where each random walk forms the body of the clause and object types at the end points of random walks form the arguments of a target predicate.
This idea is now extended to grounded random walks from the given lifted random walks that are expressed in clausal form by unifying them with the fact base. In the following tutorial, we explain how to obtain grounded random walks from the lifted random walks by building on inference in MLN-Boost models.
Suppose we are provided with a lifted random walk as follows:
We are inferring the target relation advisedBy(personid1,personid2)
by converting it into a clausal form that is acceptable to MLN-Boost inference.
( advisedBy(A,B,0) :- SamePerson(A, C), isa(C, D), _isa(D,E), tempAdvisedBy(E, B), !).
Convert the lifted random walks in clausal form above and save them in ./train/models/bRDNs/Trees/advisedByTree0.tree
The name of the output file (advisedByTree0.tree) should always be targetPredicate name followed by Tree0.tree. The third argument of the advisedBy
predicate is the regression value of MLN-Boost. It can be set to any real number for executing grounded random walks.
Refer to our tutorial on Lifted Relational Random Walks to generate the lifted random walks.
/test/test_facts.txt
The facts file should contain all of the facts that would be used to ground the lifted random walks. It should not contain the inverted facts (those starting with underscore: _
) as they are generated internally at runtime.
/test/test_bk.txt
- Background (bk file) should contain modes set for all predicates and all modes should be set to
+
. No modes should be set for inverted predicates. - Random walk constraints should be set for each predicate by utilizing the keyword
randomwalkconstraint
. This constraint will be used to generate the inverse predicates (e.g._is(designation,personid).
) for facts at runtime. These constraints should be set the same way as they were set during generation of lifted random walks. Refer to our tutorial on Lifted Random Walks for more details on setting these constraints.
/test/test_neg.txt
The negative examples file can be left empty. Otherwise, the code is capable of generating random walks for negative examples too.
Create a model file named targetpredicate.model
(in our example: advisedBy.model
). This is required for the internal workings of MLN-Boost inference. This file should contain the following:
1
targetpredicatename
[1.0]
-1.8
targetpredicatename
Store this file in ./train/models/bRDNs/advisedBy.model
java -cp edu.wisc.cs.will.GroundRelationalRandomWalks.RunGroundRelationalRandomWalks -grw -mln -i -test ".\test" -target advisedBy -trees 1 -model ".\train\models"
The output grounded random walks are stored inside ./test/OutputRW.txt
Kindly ignore all the AUC-ROC values and AUC-PR values, they are generated as part of MLN-Boost execution.
-
Tushar Khot, Sriraam Natarajan, Kristian Kersting, Jude Shavlik, "Learning Markov Logic Networks via Functional Gradient Boosting," In ICDM 2011.
-
Ni Lao and William W. Cohen, "Relational Retrieval Using a Combination of Path-Constrained Random Walks," ECML 2011.
BoostSRL Wiki
Home
BoostSRL Basics
- Getting Started
- File Structure
- Basic Usage Parameters
- Advanced Usage Parameters
- Basic Modes Guide
- Advanced Modes Guide
Deep dive into BoostSRL
- Default (RDN-Boost)
- MLN-Boost
- Regression
- Cost-sensitive SRL
- Learning with Advice
- Approximate Counting
- One-class Classification (coming soon)
- Discretization of Continuous Valued Attributes
- Lifted Relational Random Walks
- Grounded Relational Random Walks
Datasets
Applications of BoostSRL