Skip to content
New issue

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

Migrated documentation from Jupyter to Documenter.jl #127

Merged
merged 60 commits into from
May 5, 2021
Merged
Changes from 1 commit
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
dee9382
initial commit, added make.jl
dvdzhang Mar 10, 2021
e2e2bb2
added table of contents and index.md
dvdzhang Mar 10, 2021
40fd2d3
fixed latex rendering via images
dvdzhang Mar 10, 2021
aa1a47e
added install.md
dvdzhang Mar 10, 2021
c0a917f
added concepts.md
dvdzhang Mar 12, 2021
05bb4fd
added usage.md, started on inference section
dvdzhang Mar 12, 2021
973e7df
added concepts.md
dvdzhang Mar 12, 2021
2495621
added usage.md
dvdzhang Mar 12, 2021
9986931
moved description of bayes nets from index.md to concepts.md
dvdzhang Mar 12, 2021
420ef5d
added parameter learning section
dwijenchawra Mar 18, 2021
67dd46d
added xdsl section and code sample for specifying inference method
dvdzhang Mar 18, 2021
e19621d
added section on bayesian score for a network structure
dvdzhang Mar 18, 2021
ea73655
added section on structure learning
dvdzhang Mar 18, 2021
354acd9
moved bayesian score section so that it is directly below the structu…
dvdzhang Mar 18, 2021
af52e12
added rerpresentation, likelihood, sampling sections
dwijenchawra Mar 18, 2021
4a86db7
removed image placeholders
dwijenchawra Mar 21, 2021
d8dccd8
Merge remote-tracking branch 'origin/documentation' into documentation
dwijenchawra Mar 21, 2021
fdb7c40
added required info for documentation website
dwijenchawra Mar 21, 2021
eab9807
finished cpd
dwijenchawra Mar 30, 2021
77d4622
finished cpd
dwijenchawra Apr 26, 2021
c1920fe
added deploydocs
dwijenchawra Apr 26, 2021
592eff8
added travis
dwijenchawra Apr 26, 2021
a58e818
changed travis to match freudenthenal
dwijenchawra Apr 26, 2021
f7ad4e5
Create CNAME
dwijenchawra Apr 26, 2021
b16ee11
Delete CNAME
dwijenchawra Apr 26, 2021
2f1f60e
Create main.yml
dwijenchawra Apr 26, 2021
4f75778
updated toml
dwijenchawra Apr 26, 2021
4d52de5
updated push trigger branch
dwijenchawra Apr 26, 2021
dd734ae
testing documentation
dwijenchawra Apr 26, 2021
6b8c0eb
Merge pull request #1 from dwijenchawra/documentation
dwijenchawra Apr 26, 2021
d8b31fa
refactor
dwijenchawra Apr 27, 2021
b55c640
fixed pkg bug
dwijenchawra Apr 27, 2021
3f1d3d3
changed push target branch
dwijenchawra Apr 27, 2021
b5242b8
fixed README.md
dwijenchawra Apr 27, 2021
e57842c
updated gitignore
dwijenchawra Apr 27, 2021
287b6c2
testing julia formatting
dwijenchawra Apr 27, 2021
92d3e8f
updated mathjax and math formatting
dwijenchawra Apr 28, 2021
5092dae
formatting
dwijenchawra Apr 28, 2021
7fd9955
testing the @example code block
dwijenchawra May 1, 2021
0585147
finished adding plots and formatting
dwijenchawra May 2, 2021
a7a13b4
testing second toml
dwijenchawra May 2, 2021
79efbbe
testing lualatex environment
dwijenchawra May 2, 2021
fc94532
typo
dwijenchawra May 2, 2021
ee62866
testing another command
dwijenchawra May 2, 2021
a89a26f
fixed version misalignment
dwijenchawra May 2, 2021
3657a20
testing lualatex command??
dwijenchawra May 2, 2021
bc09944
installing texlive on my own
dwijenchawra May 2, 2021
04b03a0
forgot sudo :(
dwijenchawra May 2, 2021
51a5a63
typo
dwijenchawra May 2, 2021
a11bb91
forgot how to use apt-get
dwijenchawra May 2, 2021
841eeec
tested locally and no need for lualatex command
dwijenchawra May 2, 2021
f0a0c52
removed all traces of old code
dwijenchawra May 2, 2021
60cf7cb
added more dependencies
dwijenchawra May 2, 2021
5dbfb59
more dependencies
dwijenchawra May 2, 2021
f69f82f
oh my more typos
dwijenchawra May 2, 2021
8d6b92d
trying texlive-full
dwijenchawra May 3, 2021
8364ad3
small typo
dwijenchawra May 3, 2021
39daa91
changed title formatting and small fixes
dwijenchawra May 3, 2021
d62f41a
changed repository url and build tags
dwijenchawra May 3, 2021
917e1ce
Renamed doc to docs to reflect directory change
dwijenchawra May 5, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
added usage.md
  • Loading branch information
dvdzhang committed Mar 12, 2021
commit 24956212633d55dd879e4045a01cb20a95cae12b
11 changes: 0 additions & 11 deletions doc/src/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,3 @@ Several inference methods are available. Exact inference is the default.
| `LoopyBelief` | The loopy belief propagation algorithm |
| `GibbsSamplingNodewise` | Gibbs sampling where each iteration changes one node |
| `GibbsSamplingFull` | Gibbs sampling where each iteration changes all nodes |

## Example

### Getting Started

```julia
using Random
Random.seed!(0) # seed the random number generator to 0, for a reproducible demonstration
using BayesNets
using TikzGraphs # required to plot tex-formatted graphs (recommended), otherwise GraphPlot.jl is used
```