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

Documentation #1

Merged
merged 27 commits into from
Apr 26, 2021
Merged
Changes from 1 commit
Commits
Show all changes
27 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
4f75778
updated toml
dwijenchawra Apr 26, 2021
dd734ae
testing documentation
dwijenchawra Apr 26, 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 travis
  • Loading branch information
dwijenchawra committed Apr 26, 2021
commit 592eff8e6c00f32046e9cc227975a293ba16abb3
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,16 @@ matrix:
- julia: 1.0
notifications:
email: false
jobs:
include:
- stage: "Documentation"
julia: 1.6
os: linux
script:
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd()));
Pkg.instantiate()'
- julia --project=docs/ docs/make.jl
after_success: skip
after_success:
- julia -e 'Pkg.add("Documenter")'
- julia -e 'cd(Pkg.dir("PACKAGE_NAME")); include(joinpath("docs", "make.jl"))'