├── .gitignore ├── LICENSE ├── README.md ├── ResearchIpynb.ipynb ├── __init__.py ├── baselines ├── __init__.py └── filters.py ├── default.pkl ├── expt-polyphonic-fast ├── locked_write.py ├── setup_experiments.py ├── template.q └── train_dkf.py ├── expt-polyphonic ├── README.md ├── dkf_polyphonic.py ├── hpc_uas1 │ ├── mdata_MFLR.q │ ├── mdata_STLR.q │ ├── mdata_STR.q │ ├── mdata_STR_MLP.q │ ├── mdata_STR_ar.q │ ├── mdata_STR_ar_aug.q │ ├── mdata_STR_ar_aug_nade.q │ ├── nott_MFLR.q │ ├── nott_STLR.q │ ├── nott_STR.q │ ├── nott_STR_MLP.q │ ├── nott_STR_ar.q │ ├── nott_STR_ar_aug.q │ ├── nott_STR_ar_aug_nade.q │ ├── piano_MFLR.q │ ├── piano_STLR.q │ ├── piano_STR.q │ ├── piano_STR_MLP.q │ ├── piano_STR_ar.q │ ├── piano_STR_ar_aug.q │ └── piano_STR_ar_aug_nade.q ├── jsb_expts.sh ├── musedata_expt.sh ├── nott_expt.sh ├── piano_expt.sh └── train_dkf.py ├── expt-synthetic-fast ├── create_expt.py ├── run_baselines.py └── train.py ├── expt-synthetic ├── README.md ├── create_expt.py ├── run_baselines.py └── train.py ├── expt-template ├── README.md ├── load.py ├── runme.sh └── train.py ├── images ├── ELBO.png └── dkf.png ├── ipynb └── synthetic │ ├── VisualizeSynthetic-fast.ipynb │ ├── VisualizeSynthetic.ipynb │ └── VisualizeSyntheticScaling.ipynb ├── paper.pdf ├── parse_args_dkf.py ├── polyphonic_samples ├── jsb0.mp3 ├── jsb1.mp3 ├── musedata0.mp3 ├── musedata1.mp3 ├── nott0.mp3 ├── nott1.mp3 ├── piano0.mp3 └── piano1.mp3 ├── stinfmodel ├── README.md ├── __init__.py ├── dkf.py ├── evaluate.py ├── learning.py └── testall.sh └── stinfmodel_fast ├── __init__.py ├── dkf.py ├── evaluate.py └── learning.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/README.md -------------------------------------------------------------------------------- /ResearchIpynb.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/ResearchIpynb.ipynb -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | all=['stinfmodel'] 2 | -------------------------------------------------------------------------------- /baselines/__init__.py: -------------------------------------------------------------------------------- 1 | all=['filters'] 2 | -------------------------------------------------------------------------------- /baselines/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/baselines/filters.py -------------------------------------------------------------------------------- /default.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/default.pkl -------------------------------------------------------------------------------- /expt-polyphonic-fast/locked_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic-fast/locked_write.py -------------------------------------------------------------------------------- /expt-polyphonic-fast/setup_experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic-fast/setup_experiments.py -------------------------------------------------------------------------------- /expt-polyphonic-fast/template.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic-fast/template.q -------------------------------------------------------------------------------- /expt-polyphonic-fast/train_dkf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic-fast/train_dkf.py -------------------------------------------------------------------------------- /expt-polyphonic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/README.md -------------------------------------------------------------------------------- /expt-polyphonic/dkf_polyphonic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/dkf_polyphonic.py -------------------------------------------------------------------------------- /expt-polyphonic/hpc_uas1/mdata_MFLR.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/hpc_uas1/mdata_MFLR.q -------------------------------------------------------------------------------- /expt-polyphonic/hpc_uas1/mdata_STLR.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/hpc_uas1/mdata_STLR.q -------------------------------------------------------------------------------- /expt-polyphonic/hpc_uas1/mdata_STR.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/hpc_uas1/mdata_STR.q -------------------------------------------------------------------------------- /expt-polyphonic/hpc_uas1/mdata_STR_MLP.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/hpc_uas1/mdata_STR_MLP.q -------------------------------------------------------------------------------- /expt-polyphonic/hpc_uas1/mdata_STR_ar.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/hpc_uas1/mdata_STR_ar.q -------------------------------------------------------------------------------- /expt-polyphonic/hpc_uas1/mdata_STR_ar_aug.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/hpc_uas1/mdata_STR_ar_aug.q -------------------------------------------------------------------------------- /expt-polyphonic/hpc_uas1/mdata_STR_ar_aug_nade.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/hpc_uas1/mdata_STR_ar_aug_nade.q -------------------------------------------------------------------------------- /expt-polyphonic/hpc_uas1/nott_MFLR.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/hpc_uas1/nott_MFLR.q -------------------------------------------------------------------------------- /expt-polyphonic/hpc_uas1/nott_STLR.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/hpc_uas1/nott_STLR.q -------------------------------------------------------------------------------- /expt-polyphonic/hpc_uas1/nott_STR.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/hpc_uas1/nott_STR.q -------------------------------------------------------------------------------- /expt-polyphonic/hpc_uas1/nott_STR_MLP.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/hpc_uas1/nott_STR_MLP.q -------------------------------------------------------------------------------- /expt-polyphonic/hpc_uas1/nott_STR_ar.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/hpc_uas1/nott_STR_ar.q -------------------------------------------------------------------------------- /expt-polyphonic/hpc_uas1/nott_STR_ar_aug.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/hpc_uas1/nott_STR_ar_aug.q -------------------------------------------------------------------------------- /expt-polyphonic/hpc_uas1/nott_STR_ar_aug_nade.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/hpc_uas1/nott_STR_ar_aug_nade.q -------------------------------------------------------------------------------- /expt-polyphonic/hpc_uas1/piano_MFLR.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/hpc_uas1/piano_MFLR.q -------------------------------------------------------------------------------- /expt-polyphonic/hpc_uas1/piano_STLR.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/hpc_uas1/piano_STLR.q -------------------------------------------------------------------------------- /expt-polyphonic/hpc_uas1/piano_STR.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/hpc_uas1/piano_STR.q -------------------------------------------------------------------------------- /expt-polyphonic/hpc_uas1/piano_STR_MLP.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/hpc_uas1/piano_STR_MLP.q -------------------------------------------------------------------------------- /expt-polyphonic/hpc_uas1/piano_STR_ar.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/hpc_uas1/piano_STR_ar.q -------------------------------------------------------------------------------- /expt-polyphonic/hpc_uas1/piano_STR_ar_aug.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/hpc_uas1/piano_STR_ar_aug.q -------------------------------------------------------------------------------- /expt-polyphonic/hpc_uas1/piano_STR_ar_aug_nade.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/hpc_uas1/piano_STR_ar_aug_nade.q -------------------------------------------------------------------------------- /expt-polyphonic/jsb_expts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/jsb_expts.sh -------------------------------------------------------------------------------- /expt-polyphonic/musedata_expt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/musedata_expt.sh -------------------------------------------------------------------------------- /expt-polyphonic/nott_expt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/nott_expt.sh -------------------------------------------------------------------------------- /expt-polyphonic/piano_expt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/piano_expt.sh -------------------------------------------------------------------------------- /expt-polyphonic/train_dkf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-polyphonic/train_dkf.py -------------------------------------------------------------------------------- /expt-synthetic-fast/create_expt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-synthetic-fast/create_expt.py -------------------------------------------------------------------------------- /expt-synthetic-fast/run_baselines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-synthetic-fast/run_baselines.py -------------------------------------------------------------------------------- /expt-synthetic-fast/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-synthetic-fast/train.py -------------------------------------------------------------------------------- /expt-synthetic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-synthetic/README.md -------------------------------------------------------------------------------- /expt-synthetic/create_expt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-synthetic/create_expt.py -------------------------------------------------------------------------------- /expt-synthetic/run_baselines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-synthetic/run_baselines.py -------------------------------------------------------------------------------- /expt-synthetic/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-synthetic/train.py -------------------------------------------------------------------------------- /expt-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-template/README.md -------------------------------------------------------------------------------- /expt-template/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-template/load.py -------------------------------------------------------------------------------- /expt-template/runme.sh: -------------------------------------------------------------------------------- 1 | python2.7 train.py -vm R -infm structured -ds 10 -dh 50 2 | -------------------------------------------------------------------------------- /expt-template/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/expt-template/train.py -------------------------------------------------------------------------------- /images/ELBO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/images/ELBO.png -------------------------------------------------------------------------------- /images/dkf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/images/dkf.png -------------------------------------------------------------------------------- /ipynb/synthetic/VisualizeSynthetic-fast.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/ipynb/synthetic/VisualizeSynthetic-fast.ipynb -------------------------------------------------------------------------------- /ipynb/synthetic/VisualizeSynthetic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/ipynb/synthetic/VisualizeSynthetic.ipynb -------------------------------------------------------------------------------- /ipynb/synthetic/VisualizeSyntheticScaling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/ipynb/synthetic/VisualizeSyntheticScaling.ipynb -------------------------------------------------------------------------------- /paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/paper.pdf -------------------------------------------------------------------------------- /parse_args_dkf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/parse_args_dkf.py -------------------------------------------------------------------------------- /polyphonic_samples/jsb0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/polyphonic_samples/jsb0.mp3 -------------------------------------------------------------------------------- /polyphonic_samples/jsb1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/polyphonic_samples/jsb1.mp3 -------------------------------------------------------------------------------- /polyphonic_samples/musedata0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/polyphonic_samples/musedata0.mp3 -------------------------------------------------------------------------------- /polyphonic_samples/musedata1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/polyphonic_samples/musedata1.mp3 -------------------------------------------------------------------------------- /polyphonic_samples/nott0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/polyphonic_samples/nott0.mp3 -------------------------------------------------------------------------------- /polyphonic_samples/nott1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/polyphonic_samples/nott1.mp3 -------------------------------------------------------------------------------- /polyphonic_samples/piano0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/polyphonic_samples/piano0.mp3 -------------------------------------------------------------------------------- /polyphonic_samples/piano1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/polyphonic_samples/piano1.mp3 -------------------------------------------------------------------------------- /stinfmodel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/stinfmodel/README.md -------------------------------------------------------------------------------- /stinfmodel/__init__.py: -------------------------------------------------------------------------------- 1 | all=['dkf','evaluate','learning'] 2 | -------------------------------------------------------------------------------- /stinfmodel/dkf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/stinfmodel/dkf.py -------------------------------------------------------------------------------- /stinfmodel/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/stinfmodel/evaluate.py -------------------------------------------------------------------------------- /stinfmodel/learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/stinfmodel/learning.py -------------------------------------------------------------------------------- /stinfmodel/testall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/stinfmodel/testall.sh -------------------------------------------------------------------------------- /stinfmodel_fast/__init__.py: -------------------------------------------------------------------------------- 1 | all=['dkf','evaluate','learning'] 2 | -------------------------------------------------------------------------------- /stinfmodel_fast/dkf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/stinfmodel_fast/dkf.py -------------------------------------------------------------------------------- /stinfmodel_fast/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/stinfmodel_fast/evaluate.py -------------------------------------------------------------------------------- /stinfmodel_fast/learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clinicalml/structuredinference/HEAD/stinfmodel_fast/learning.py --------------------------------------------------------------------------------