Probabilistic Soft Logic

From GM-RKB
Jump to navigation Jump to search

A Probabilistic Soft Logic is a probabilistic logic language.



References

2016

2016

  • https://github.com/linqs/psl/wiki/Glossary
    • Hinge-loss Markov random field: A factor graph defined over continuous variables in the [0,1] interval with (log) factors that are hinge-loss functions. Many classes in PSL work together to implement the functionality of HL-MRFs, but the class for storing collections of hinge-loss potentials, which define HL-MRFs, is GroundRuleStore.java.
    • Ground atom: A logical relationship corresponding to a random variable in a HL-MRF. For example, Friends("Steve","Jay") is an alias for a specific random variable. Implemented in GroundAtom.java.
    • Random variable atom: A ground atom that is unobserved, i.e., no value is known for it. A HL-MRF assigns probability densities to assignments to random variable atoms. Implemented in RandomVariableAtom.java.
    • Observed atom: A ground atom that has an observed, immutable value. HL-MRFs are conditioned on observed atoms. Implemented in ObservedAtom.java.
    • Atom: A generalization of ground atoms that allow logical variables as placeholders for constant arguments. For example, Friends("Steve", A) is a placeholder for all the ground atoms that can be obtained by substituting constants for the logical variable A. Implemented in Atom.java.
    • PSL Program: A set of rules, each of which is a template for hinge-loss potentials or hard linear constraints. When grounded over a base of ground atoms, a PSL program induces a HL-MRF conditioned on any specified observations. Implemented in Model.java.
    • Rule:
    • Logical rule:
    • Arithmetic rule:
    • Unweighted rule:
    • Weighted rule:
    • Data Store: An entire data repository, such as a relational database management system (RDBMS). Implemented in DataStore.java.
    • Partition: A logical division of ground atoms in a data store. Implemented in Partition.java.
    • Database: A logical view of a data store, constructed by specifying a write partition and one or more read partitions of a data store. Implemented in Database.java.
    • Open Predicate: A predicate whose atoms can be random variable atoms, i.e., unobserved. The only time a ground atom will be loaded as a random variable atom is when it is stored in the database's write partition and its predicate is not specified as closed. Otherwise it will be loaded as an observed atom. Whether a predicate is open or closed is specific to each database.
    • Closed Predicate: A predicate whose atoms are always observed atoms. The only time a ground atom will be loaded as a random variable atom is when it is stored in the database's write partition and its predicate is not specified as closed. Otherwise it will be loaded as an observed atom. Whether a predicate is open or closed is specific to each database.

2015

2012

2010