You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This package implements a tensor network based probabilistic modeling toolbox, which covers the probability inference functionalities in [this page](https://uaicompetition.github.io/uci-2022/competition-entry/tasks/):
11
-
* PR: computing the partition function or probability of evidence,
12
-
* MAR: computing the marginal probability distribution over all variables given evidence.
13
-
* MAP: computing the most likely assignment to all variables given evidence.
14
-
* MMAP: computing the most likely assignment to the query variables after marginalizing out the remaining variables.
10
+
This package presents a tensor network-based probabilistic modeling toolbox for
11
+
probabilistic inference. It features solutions for the [probability inference
12
+
tasks](https://uaicompetition.github.io/uci-2022/competition-entry/tasks/) of
13
+
the [UAI inference competitions](https://uaicompetition.github.io/uci-2022/),
14
+
which include:
15
+
16
+
-**PR**: Computing the partition function or probability of evidence.
17
+
-**MAR**: Computing the marginal probability distribution over all variables
18
+
given evidence.
19
+
-**MAP**: Computing the most likely assignment to all variables given evidence.
20
+
-**MMAP**: Computing the most likely assignment to the query variables after
21
+
marginalizing out the remaining variables.
15
22
16
23
## Installation
17
24
<p>
@@ -21,29 +28,29 @@ This package implements a tensor network based probabilistic modeling toolbox, w
21
28
Julia Language
22
29
</a>
23
30
package. To install <code>TensorInference</code>,
Julia's interactive session (known as REPL)</a> and press <kbd>]</kbd> key in the REPL to use the package mode, then type
31
+
start Julia's <ahref="https://docs.julialang.org/en/v1/manual/getting-started/">REPL</a> and press <kbd>]</kbd> key in the REPL to use the package mode, then type
26
32
</p>
27
33
28
34
```julia
29
35
pkg> add TensorInference
30
36
```
31
37
32
-
To update, just type `up` in the package mode.
38
+
To update, type `up` in the package mode.
33
39
34
40
## Examples
35
-
Examples are in the [examples](examples) folder, which contains the following list of example problems
36
-
-[asia network](examples/asia)
37
41
42
+
Check out the [examples](examples) directory to learn how to use the API of
43
+
*TensorInference.jl*.
38
44
39
45
## Supporting and Citing
40
46
41
-
Much of the software in this ecosystem was developed as a part of an academic research project.
42
-
If you would like to help support it, please star the repository.
43
-
If you use our software as part of your research, teaching, or other activities, we would like to request you to cite our [work (TBA)]().
44
-
The
45
-
[CITATION.bib](CITATION.bib)file in the root of this repository lists the relevant papers.
47
+
Much of the software in this ecosystem was developed as a part of an academic
48
+
research project. If you would like to help support it, please star the
49
+
repository. If you use our software as part of your research, teaching, or other
0 commit comments