-
when run a command " problog web" in CLI, show the following information:
```
File "d:\python\python_env\pytorch14_gpu\lib\site-packages\problog\web\server.py", line 50, in
import resource
…
-
Is it possible to use a regular expression search function in a string offered by python, to make a Problog predicate.
If so, would it be possible to have an example of such programming?
-
% Consider
.85::color(b1,purple); .15::color(b1,yellow).
.90::color(b2,purple); .10::color(b2,yellow).
.05::color(b3,purple); .95::color(b3,yellow).
% This computes that all balls are all the sa…
-
Hi!
Thanks for making ProbLog :-)
When running the Parameter learning (LFI) example (found [here](https://problog.readthedocs.io/en/latest/python.html#)):
```
from problog.logic import Term…
-
Hey All,
I am having some issues with increasingly exponential runtime using predefined rule inference of facts after upgrading to python 3.10 from 3.8.
I have several rules implemented in pytho…
-
Hi,
I'm trying to implement bellow rules in problog python package:
As a simple example of rdfs11 I can use:
(John SUBCLASS student) (student SUBCLASS person) -> (John SUBCLASS person)
w…
-
% Running
0.3::h.
0.6::h:-e. % p(h|e)
0.7::e:-h. % p(e|h)
query(e). % outputs .21.
% Yet isn't it really
% p(e)=p(h)p(e|h)/p(h|e)
% =(.3)(.7)/(.6)
% =.35?
% What doesn't Pro…
-
微博内容精选
-
Hello, My name is Tong Wu. I followed the instruction at https://dtai.cs.kuleuven.be/problog/tutorial/python/01-compile-once.html for one experiment. But when I used the following code
"""
from pr…
-
Hello, I am using Problog for a project, and save a knowledge base as file2.pl, which supports the file1.pl. However, when using the command "problog file2.pl file1.pl" the error shows that the …