We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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:
The text was updated successfully, but these errors were encountered: