Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
167 lines (144 sloc)
5.52 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; | |
; flows.scm -- Flowing Values between Atoms. | |
; | |
; Atoms can be thought of as "pipes", and Values as the thing that | |
; "flows through the pipes". This is a reasonable analogy, because | |
; Atoms are fairly heavyweight and are immutable, and require a lot of | |
; machinery to be placed in the AtomSpace. That machinery is required | |
; in order to be able to search (perform queries) over Atoms. Values, | |
; by contrast, are much smaller and simpler. They are mutable, | |
; ephemeral, and can change rapidly. (The price for this: they cannot | |
; be searched!). | |
; | |
; But how does the "fluid" flow in the "pipes"? The example below walks | |
; through ways in which TruthValues (in the first part of the example) | |
; and general Values can be pulled out of specific Atoms, then | |
; transformed or mutated in some specific way, and then re-injected. | |
; In these examples, the mutations are arithmetic formulas that are | |
; applied to the Values. The formulas themselves are expressed as | |
; Atomese. | |
; | |
; The goal of having formulas in Atomese is that such formulas, rather | |
; than being hard-coded in Python, C++ or scheme, can instead be | |
; imported from either existing datasets (such as the Systems Biology | |
; Markup Language) or they can be obtained by machine learning (such | |
; as MOSES). | |
; | |
; See the `flow-formulas.scm` example for how to work with dynamically | |
; updating flows. | |
(use-modules (opencog) (opencog exec)) | |
; An atom with a TruthValue on it... See below for a way of setting | |
; TruthValues directly, using NumberNodes. | |
(Concept "foo" (stv 0.3 0.7)) | |
; The TruthValue can be fetched in either of two ways. | |
(cog-evaluate! (TruthValueOf (Concept "foo"))) | |
(cog-execute! (TruthValueOf (Concept "foo"))) | |
; Transfer the TruthValue from "foo" to "bar" ... copy it. | |
(cog-execute! | |
(SetTV | |
(Concept "bar") | |
(TruthValueOf (Concept "foo")))) | |
; Verify that the TV on "bar" has changed. | |
(cog-tv (Concept "bar")) | |
; The DefinedFormulaLink can be used to create SimpleTruthValues out | |
; of a pair of numbers. For example: | |
(cog-execute! (SetTV (Concept "bar") | |
(PredicateFormula (Number 0.2718) (Number 0.314)))) | |
; Explicitly look at it. | |
(cog-tv (Concept "bar")) | |
; SetTV is interesting because it allows complex arithmetic expressions | |
; to be specified in Atomese. Below, simply take the square of the TV. | |
(cog-execute! | |
(SetTV | |
(Concept "bar") | |
(Times | |
(TruthValueOf (Concept "foo")) | |
(TruthValueOf (Concept "foo"))))) | |
; Formulas can be used to compute TV's, as shown in the `formula.scm` | |
; example. Consider a named formula, with variables. | |
(DefineLink | |
(DefinedPredicate "has a reddish color") | |
(PredicateFormula | |
(Minus | |
(Number 1) | |
(Times | |
(StrengthOf (Variable "$X")) | |
(StrengthOf (Variable "$Y")))) | |
(Times | |
(ConfidenceOf (Variable "$X")) | |
(ConfidenceOf (Variable "$Y"))))) | |
; Some data... | |
(Concept "A" (stv 0.9 0.98)) | |
(Concept "B" (stv 0.9 0.98)) | |
; Use the formula to compute a new TV, and attach that TV to some Atom. | |
; This is little more than the copy above, except that the Evaluation | |
; is actually performed, so that the new TV is computed, before being | |
; copied. In general, if the second Atom passed to SetTV is evaluatable, | |
; then it will be evaluated to obtain the TV. | |
(cog-execute! | |
(SetTV | |
(Concept "bar") | |
(Evaluation | |
(DefinedPredicate "has a reddish color") | |
(List (Concept "A") (Concept "B"))))) | |
; That the above really does flow the TV from one place to another can | |
; be seen by looking at dynamic changes. So -- change the TV on A, | |
; and recompute... | |
(Concept "A" (stv 0.8 0.9)) | |
(cog-execute! | |
(SetTV | |
(Concept "bar") | |
(Evaluation | |
(DefinedPredicate "has a reddish color") | |
(List (Concept "A") (Concept "B"))))) | |
; In many ways, the SetTVLink behaves a lot like a generalized | |
; EvaluationLink. So: normally, an EvaluationLink consists of a | |
; predicate, and the list of arguments that it applies to. The | |
; SetTVLink is similar, except that it couples the predicate to | |
; the target Atom that it should apply to. This can be seen in | |
; the equivalent form, below. | |
(cog-execute! | |
(SetTV | |
(Concept "bar") | |
(DefinedPredicate "has a reddish color") | |
(List (Concept "A") (Concept "B")))) | |
; ----------------------------------------------------------- | |
; Everything demonstrated above can be done in a generalized way, for | |
; arbitrary values. The primary difference is that the SetValueLink is | |
; used for this, and a key must be provided as an additional argument. | |
(define foo (Concept "foo")) | |
(define bar (Concept "bar")) | |
(define key (Predicate "some key")) | |
(define kee (Predicate "other key")) | |
; Start by setting a value in the "traditional fashion" | |
(cog-set-value! foo key (FloatValue 1 2 3 4 5)) | |
; Take a look at it | |
(cog-execute! (ValueOf foo key)) | |
; Copy from foo to bar | |
(cog-execute! (SetValue bar kee (ValueOf foo key))) | |
; Take a look at it | |
(cog-execute! (ValueOf bar kee)) | |
; Try out some math | |
(cog-execute! (SetValue bar kee | |
(Times (ValueOf foo key) (ValueOf foo key)))) | |
; Verify | |
(cog-execute! (ValueOf bar kee)) | |
; Define a schema that computes N(N+1)/2 aka a "triangle number". | |
; A Schema is used, instead of a DefinedPredicate, since, in principle, | |
; DefinedPredicates should be limited to TruthValues, whereas this | |
; can be applied to arbitrary (numeric) expressions. | |
(DefineLink | |
(DefinedSchema "triangle numbers") | |
(Lambda | |
(Variable "$X") | |
(Divide | |
(Times (Variable "$X") (Plus (Variable "$X") (Number 1))) | |
(Number 2)))) | |
; Apply the schema to a vector of numbers, and attach the result to | |
; the bar Atom, much as before. | |
(cog-execute! | |
(SetValue bar kee | |
(DefinedSchema "triangle numbers") | |
(ValueOf foo key))) | |
; | |
; -------- THE END ----------- |