-
Notifications
You must be signed in to change notification settings - Fork 468
Open
Description
While trying to replicate the result from the educational examples, I've got this error.
-
url:
https://ibm.github.io/LNN/education/examples/reasoning.html#more-complex-reasoning-example -
code:
from lnn import (Predicate, Variable, Join, And,
Exists, Implies, Forall, Model, Fact, World)
model = Model() # Instantiate a model.
x, y, z, w = map(Variable, ['x', 'y', 'z', 'w'])
# Define and add predicates to the model.
owns = model['owns'] = Predicate('owns', 2) # binary predicate- result:
Traceback (most recent call last):
File "/home/sungjin/home/lnn-examples/complex.py", line 9, in <module>
owns = model['owns'] = Predicate('owns', 2) # binary predicate
TypeError: 'Model' object does not support item assignment
Metadata
Metadata
Assignees
Labels
No labels