Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 1.25 KB

README.md

File metadata and controls

31 lines (19 loc) · 1.25 KB

NTL.jl

Code to accompany UAI 2018 paper 'Sampling and Inference for Beta Neutral-to-the-Left Models of Sparse Networks' (supplement).

Data

SNAP datasets

The Stanford Large Network Dataset Collection contains a number of interesting temporal networks. We recommend preprocessing the datasets as follows:

wget https://snap.stanford.edu/data/$NAME.txt.gz
gunzip $NAME.txt.gz
sort -k3 -n $NAME.txt > sorted-$NAME.txt

Maximum likelihood parameter estimation

See examples/mle.jl for an example of computing MLEs on massive datasets.

Gibbs sampling arrival order, arrival times, parameters

See examples/gibbs.jl for an example of performing posterior inference over parameters and latent variables on datasets of modest size (e.g., hundreds or thousands of nodes). The code can be run interactively (i.e., section by section) or as a script from the Julia REPL or command line.

See examples/gibbs_plots.jl for some example plots for assessing sampler output.

See examples/gibbs_ess_experiments.jl for code used to produce the tables in Section 5.1 of the paper.