├── .gitattributes ├── .gitignore ├── CausalDiscoveryToolbox ├── .codecov.yml ├── .github │ └── ISSUE_TEMPLATE │ │ └── bug_report.md ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.md ├── README.md ├── cdt │ ├── __init__.py │ ├── causality │ │ ├── __init__.py │ │ ├── graph │ │ │ ├── CAM.py │ │ │ ├── CCDr.py │ │ │ ├── CGNN.py │ │ │ ├── GES.py │ │ │ ├── GIES.py │ │ │ ├── LiNGAM.py │ │ │ ├── PC.py │ │ │ ├── R_templates │ │ │ │ ├── CCDr.R │ │ │ │ ├── bnlearn.R │ │ │ │ ├── cam.R │ │ │ │ ├── ges.R │ │ │ │ ├── gies.R │ │ │ │ ├── lingam.R │ │ │ │ └── pc.R │ │ │ ├── SAM.py │ │ │ ├── SAMv1.py │ │ │ ├── __init__.py │ │ │ ├── bnlearn.py │ │ │ └── model.py │ │ └── pairwise │ │ │ ├── ANM.py │ │ │ ├── Bivariate_fit.py │ │ │ ├── CDS.py │ │ │ ├── GNN.py │ │ │ ├── IGCI.py │ │ │ ├── Jarfo.py │ │ │ ├── Jarfo_model │ │ │ ├── README.md │ │ │ ├── SETTINGS.json │ │ │ ├── __init__.py │ │ │ ├── estimator.py │ │ │ ├── features.py │ │ │ ├── hsic.py │ │ │ ├── train.py │ │ │ └── util.py │ │ │ ├── NCC.py │ │ │ ├── RCC.py │ │ │ ├── RECI.py │ │ │ ├── __init__.py │ │ │ └── model.py │ ├── data │ │ ├── __init__.py │ │ ├── acyclic_graph_generator.py │ │ ├── causal_mechanisms.py │ │ ├── causal_pair_generator.py │ │ └── loader.py │ ├── independence │ │ ├── __init__.py │ │ ├── graph │ │ │ ├── FSGNN.py │ │ │ ├── FSRegression.py │ │ │ ├── HSICLasso.py │ │ │ ├── Lasso.py │ │ │ ├── __init__.py │ │ │ └── model.py │ │ └── stats │ │ │ ├── __init__.py │ │ │ ├── all_types.py │ │ │ ├── model.py │ │ │ └── numerical.py │ ├── metrics.py │ ├── timeseries │ │ ├── __init__.py │ │ ├── graph │ │ │ ├── VARLiNGAM.py │ │ │ └── __init__.py │ │ └── pairwise │ │ │ └── __init__.py │ └── utils │ │ ├── R.py │ │ ├── R_templates │ │ ├── cpdag.R │ │ ├── sid.R │ │ ├── sid_cpdag.R │ │ └── test_import.R │ │ ├── Settings.py │ │ ├── __init__.py │ │ ├── graph.py │ │ ├── io.py │ │ ├── loss.py │ │ ├── parallel.py │ │ └── torch.py ├── docs │ ├── .doctrees │ │ ├── index.doctree │ │ └── installation-link.doctree │ ├── .nojekyll │ ├── .old.index │ ├── Makefile │ ├── _static │ │ └── custom.css │ ├── causality.rst │ ├── conf.py │ ├── data.rst │ ├── developer.rst │ ├── html │ │ ├── .doctrees │ │ │ ├── causality.doctree │ │ │ ├── data.doctree │ │ │ ├── developer.doctree │ │ │ ├── environment.pickle │ │ │ ├── generators.doctree │ │ │ ├── independence.doctree │ │ │ ├── index.doctree │ │ │ ├── metrics.doctree │ │ │ ├── models.doctree │ │ │ ├── settings.doctree │ │ │ ├── tutorial.doctree │ │ │ ├── tutorial_1.doctree │ │ │ ├── tutorial_2.doctree │ │ │ └── utils.doctree │ │ ├── .nojekyll │ │ ├── _modules │ │ │ ├── cdt │ │ │ │ ├── causality │ │ │ │ │ ├── graph │ │ │ │ │ │ ├── CAM.html │ │ │ │ │ │ ├── CCDr.html │ │ │ │ │ │ ├── CGNN.html │ │ │ │ │ │ ├── GES.html │ │ │ │ │ │ ├── GIES.html │ │ │ │ │ │ ├── LiNGAM.html │ │ │ │ │ │ ├── PC.html │ │ │ │ │ │ ├── SAM.html │ │ │ │ │ │ ├── SAMv1.html │ │ │ │ │ │ ├── bnlearn.html │ │ │ │ │ │ └── model.html │ │ │ │ │ └── pairwise │ │ │ │ │ │ ├── ANM.html │ │ │ │ │ │ ├── Bivariate_fit.html │ │ │ │ │ │ ├── CDS.html │ │ │ │ │ │ ├── GNN.html │ │ │ │ │ │ ├── IGCI.html │ │ │ │ │ │ ├── Jarfo.html │ │ │ │ │ │ ├── NCC.html │ │ │ │ │ │ ├── RCC.html │ │ │ │ │ │ ├── RECI.html │ │ │ │ │ │ └── model.html │ │ │ │ ├── data │ │ │ │ │ ├── acyclic_graph_generator.html │ │ │ │ │ ├── causal_pair_generator.html │ │ │ │ │ └── loader.html │ │ │ │ ├── independence │ │ │ │ │ ├── graph │ │ │ │ │ │ ├── FSGNN.html │ │ │ │ │ │ ├── FSRegression.html │ │ │ │ │ │ ├── Lasso.html │ │ │ │ │ │ └── model.html │ │ │ │ │ └── stats │ │ │ │ │ │ ├── all_types.html │ │ │ │ │ │ ├── model.html │ │ │ │ │ │ └── numerical.html │ │ │ │ ├── metrics.html │ │ │ │ └── utils │ │ │ │ │ ├── R.html │ │ │ │ │ ├── Settings.html │ │ │ │ │ ├── graph.html │ │ │ │ │ ├── io.html │ │ │ │ │ ├── loss.html │ │ │ │ │ ├── metrics.html │ │ │ │ │ ├── parallel.html │ │ │ │ │ └── torch.html │ │ │ └── index.html │ │ ├── _sources │ │ │ ├── causality.rst.txt │ │ │ ├── data.rst.txt │ │ │ ├── developer.rst.txt │ │ │ ├── generators.rst.txt │ │ │ ├── independence.rst.txt │ │ │ ├── index.md.txt │ │ │ ├── index.rst.txt │ │ │ ├── metrics.rst.txt │ │ │ ├── models.rst.txt │ │ │ ├── settings.rst.txt │ │ │ ├── tutorial.rst.txt │ │ │ ├── tutorial_1.rst.txt │ │ │ ├── tutorial_2.rst.txt │ │ │ └── utils.rst.txt │ │ ├── _static │ │ │ ├── ajax-loader.gif │ │ │ ├── basic.css │ │ │ ├── css │ │ │ │ ├── badge_only.css │ │ │ │ ├── fonts │ │ │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ │ ├── lato-bold-italic.woff │ │ │ │ │ ├── lato-bold-italic.woff2 │ │ │ │ │ ├── lato-bold.woff │ │ │ │ │ ├── lato-bold.woff2 │ │ │ │ │ ├── lato-normal-italic.woff │ │ │ │ │ ├── lato-normal-italic.woff2 │ │ │ │ │ ├── lato-normal.woff │ │ │ │ │ └── lato-normal.woff2 │ │ │ │ └── theme.css │ │ │ ├── custom.css │ │ │ ├── doctools.js │ │ │ ├── documentation_options.js │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── Inconsolata-Bold.ttf │ │ │ │ ├── Inconsolata-Regular.ttf │ │ │ │ ├── Inconsolata.ttf │ │ │ │ ├── Lato-Bold.ttf │ │ │ │ ├── Lato-Regular.ttf │ │ │ │ ├── Lato │ │ │ │ │ ├── lato-bold.eot │ │ │ │ │ ├── lato-bold.ttf │ │ │ │ │ ├── lato-bold.woff │ │ │ │ │ ├── lato-bold.woff2 │ │ │ │ │ ├── lato-bolditalic.eot │ │ │ │ │ ├── lato-bolditalic.ttf │ │ │ │ │ ├── lato-bolditalic.woff │ │ │ │ │ ├── lato-bolditalic.woff2 │ │ │ │ │ ├── lato-italic.eot │ │ │ │ │ ├── lato-italic.ttf │ │ │ │ │ ├── lato-italic.woff │ │ │ │ │ ├── lato-italic.woff2 │ │ │ │ │ ├── lato-regular.eot │ │ │ │ │ ├── lato-regular.ttf │ │ │ │ │ ├── lato-regular.woff │ │ │ │ │ └── lato-regular.woff2 │ │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ │ ├── Roboto-Slab-Light.woff │ │ │ │ ├── Roboto-Slab-Light.woff2 │ │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ │ ├── Roboto-Slab-Thin.woff │ │ │ │ ├── Roboto-Slab-Thin.woff2 │ │ │ │ ├── RobotoSlab-Bold.ttf │ │ │ │ ├── RobotoSlab-Regular.ttf │ │ │ │ ├── RobotoSlab │ │ │ │ │ ├── roboto-slab-v7-bold.eot │ │ │ │ │ ├── roboto-slab-v7-bold.ttf │ │ │ │ │ ├── roboto-slab-v7-bold.woff │ │ │ │ │ ├── roboto-slab-v7-bold.woff2 │ │ │ │ │ ├── roboto-slab-v7-regular.eot │ │ │ │ │ ├── roboto-slab-v7-regular.ttf │ │ │ │ │ ├── roboto-slab-v7-regular.woff │ │ │ │ │ └── roboto-slab-v7-regular.woff2 │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── lato-bold-italic.woff │ │ │ │ ├── lato-bold-italic.woff2 │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bold.woff2 │ │ │ │ ├── lato-normal-italic.woff │ │ │ │ ├── lato-normal-italic.woff2 │ │ │ │ ├── lato-normal.woff │ │ │ │ └── lato-normal.woff2 │ │ │ ├── jquery-3.2.1.js │ │ │ ├── jquery-3.4.1.js │ │ │ ├── jquery-3.5.1.js │ │ │ ├── jquery.js │ │ │ ├── js │ │ │ │ ├── badge_only.js │ │ │ │ ├── html5shiv-printshiv.min.js │ │ │ │ ├── html5shiv.min.js │ │ │ │ ├── modernizr.min.js │ │ │ │ └── theme.js │ │ │ ├── language_data.js │ │ │ ├── pygments.css │ │ │ ├── searchtools.js │ │ │ ├── underscore-1.3.1.js │ │ │ ├── underscore.js │ │ │ └── websupport.js │ │ ├── causality.html │ │ ├── data.html │ │ ├── developer.html │ │ ├── generators.html │ │ ├── genindex.html │ │ ├── independence.html │ │ ├── index.html │ │ ├── metrics.html │ │ ├── models.html │ │ ├── objects.inv │ │ ├── py-modindex.html │ │ ├── search.html │ │ ├── searchindex.js │ │ ├── settings.html │ │ ├── tutorial.html │ │ ├── tutorial_1.html │ │ ├── tutorial_2.html │ │ └── utils.html │ ├── independence.rst │ ├── index.html │ ├── index.md │ ├── index.rst │ ├── make.bat │ ├── metrics.rst │ ├── models.rst │ ├── settings.rst │ ├── tutorial.rst │ ├── tutorial_1.rst │ ├── tutorial_2.rst │ └── utils.rst ├── documentation.md ├── examples │ └── example_cgnn.ipynb ├── install-deps │ ├── Dockerfile-env │ ├── Dockerfile-env-1.1 │ └── install-dependencies.sh ├── installation_instructions.md ├── nv-Dockerfile ├── pytest.ini ├── r_requirements.txt ├── requirements.txt ├── setup.py └── tests │ └── scripts │ ├── graph_generators.py │ ├── test_Jarfo.py │ ├── test_causality_graph.py │ ├── test_causality_pairwise.py │ ├── test_datasetloader.py │ ├── test_generators.py │ ├── test_independence_graph.py │ ├── test_independence_stats.py │ ├── test_io.py │ ├── test_metrics.py │ ├── test_pipeline_CGNN.py │ └── test_varLINGAM.py ├── LICENSE ├── README.md ├── bacadi ├── __init__.py ├── config │ └── example.py ├── eval │ ├── __init__.py │ ├── metrics.py │ └── target.py ├── exceptions.py ├── graph │ ├── __init__.py │ └── graph.py ├── inference │ ├── __init__.py │ ├── bacadi_base.py │ ├── bacadi_joint.py │ ├── bacadi_marginal.py │ ├── dibs.py │ ├── joint_dibs_svgd.py │ └── marginal_dibs_svgd.py ├── kernel │ ├── __init__.py │ ├── interv.py │ ├── joint.py │ └── marginal.py ├── models │ ├── __init__.py │ ├── basic.py │ ├── linearGaussian.py │ ├── linearGaussianEquivalent.py │ ├── nonlinearGaussian.py │ └── sobolev.py └── utils │ ├── __init__.py │ ├── func.py │ ├── graph.py │ ├── tree.py │ ├── version_control.py │ └── visualize.py ├── baselines ├── bootstrap.py ├── dcdi │ ├── __init__.py │ ├── dag_optim.py │ ├── data.py │ ├── main.py │ ├── models │ │ ├── __init__.py │ │ ├── base_model.py │ │ ├── flows.py │ │ └── learnables.py │ ├── plot.py │ ├── prox.py │ ├── torchkit.py │ ├── train.py │ └── utils │ │ ├── __init__.py │ │ ├── gumbel.py │ │ ├── metrics.py │ │ ├── penalty.py │ │ └── save.py ├── igsp │ ├── igsp.py │ └── main.py ├── jci │ ├── fisher.R │ ├── indepTests │ │ ├── gaussCIFishertest.R │ │ ├── gaussCIcontexttest.R │ │ ├── gaussCIcontexttest_slow.R │ │ ├── gaussCIsincontest.R │ │ └── parcortest.R │ ├── main_pc.py │ ├── pc.R │ ├── pc.py │ ├── pc_function.R │ ├── pc_wrapper.R │ └── prepare_pc.R └── learners.py ├── config.py ├── environment.yml ├── eval ├── __init__.py ├── class_maker.py ├── eval.py ├── launch_experiments.py ├── parser.py ├── result.py ├── run_experiment.py └── util.py ├── gputil ├── .gitignore ├── GPUtil │ ├── GPUtil.py │ ├── __init__.py │ └── demo_GPUtil.py ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── setup.cfg └── setup.py ├── install_R.sh ├── plots ├── bge_metrics.pdf ├── fcgauss_metrics.pdf ├── fcgauss_metrics_doubledata.pdf ├── lingauss_metrics.pdf ├── lingauss_metrics_50nodes_doubledata.pdf ├── lingauss_metrics_doubledata.pdf ├── obs_interv_metrics.pdf └── sergio_metrics.pdf ├── requirements.txt ├── results ├── bge1405_20nodes_v1 │ ├── synthetic_IGSP_unknown_interv │ │ ├── 4271222230025986197 │ │ │ ├── 1129458704279767218.json │ │ │ ├── 1500851250819797503.json │ │ │ ├── 1579545596641444594.json │ │ │ ├── 1659252542257088789.json │ │ │ ├── 2455037313498707792.json │ │ │ ├── 2510375760864187440.json │ │ │ ├── 2967708624167594056.json │ │ │ ├── 3019559772130634404.json │ │ │ ├── 3515811053008286938.json │ │ │ ├── 3988127437950517658.json │ │ │ ├── 4038016292780995114.json │ │ │ ├── 4540174195990887572.json │ │ │ ├── 4553892085661481790.json │ │ │ ├── 4577622722635182267.json │ │ │ ├── 4735869964223887087.json │ │ │ ├── 4859566848310505227.json │ │ │ ├── 5922457061388196838.json │ │ │ ├── 6025290572373437542.json │ │ │ ├── 6056914227947747639.json │ │ │ ├── 6110580481873525295.json │ │ │ ├── 6271583122908556049.json │ │ │ ├── 7187721240942292215.json │ │ │ ├── 738885927573881835.json │ │ │ ├── 7523877785083657095.json │ │ │ ├── 7605790922832966452.json │ │ │ ├── 8091096170718654847.json │ │ │ ├── 8136435999926770331.json │ │ │ ├── 8349802554564526120.json │ │ │ ├── 8477857824330615634.json │ │ │ └── 8650531451659431560.json │ │ └── 673597940890787814 │ │ │ ├── 1081809486535703843.json │ │ │ ├── 1124402363744130994.json │ │ │ ├── 1227649834842713587.json │ │ │ ├── 1230415848467435728.json │ │ │ ├── 191957287030044063.json │ │ │ ├── 3114894456662429432.json │ │ │ ├── 3196846901006729816.json │ │ │ ├── 3329724665352652489.json │ │ │ ├── 3424462326693654271.json │ │ │ ├── 3637055760694238969.json │ │ │ ├── 3937932699494105140.json │ │ │ ├── 401149160035516115.json │ │ │ ├── 4050521794028394157.json │ │ │ ├── 4179711484709656523.json │ │ │ ├── 4369691182927334772.json │ │ │ ├── 4499725539301591824.json │ │ │ ├── 4891669542203014617.json │ │ │ ├── 5476956220430866105.json │ │ │ ├── 6162506948849350175.json │ │ │ ├── 6803506496416255116.json │ │ │ ├── 6880534226068636056.json │ │ │ ├── 718715413435067496.json │ │ │ ├── 75792959787690417.json │ │ │ ├── 7600891252662022387.json │ │ │ ├── 797851076837699470.json │ │ │ ├── 8455892276156788454.json │ │ │ ├── 8516039797723919591.json │ │ │ ├── 8572874539734956269.json │ │ │ ├── 8777473963796222971.json │ │ │ └── 917664963170559764.json │ ├── synthetic_JCI-PC_unknown_interv │ │ ├── 1675836751522820581 │ │ │ ├── 2099270759733308971.json │ │ │ ├── 2152213425522042364.json │ │ │ ├── 2846900837032750514.json │ │ │ ├── 287555939338851341.json │ │ │ ├── 3028299361358780326.json │ │ │ ├── 3557528584221512250.json │ │ │ ├── 3851523888628283113.json │ │ │ ├── 4331013626923583121.json │ │ │ ├── 4344306310551041577.json │ │ │ ├── 4426248282391501029.json │ │ │ ├── 4430847204998384259.json │ │ │ ├── 4447596554093524724.json │ │ │ ├── 4448938113089921135.json │ │ │ ├── 4542962922818205398.json │ │ │ ├── 5841855506950130297.json │ │ │ ├── 5891623356700338272.json │ │ │ ├── 6317449014212612899.json │ │ │ ├── 6365821345970163104.json │ │ │ ├── 6486271930731806524.json │ │ │ ├── 6969939897821442233.json │ │ │ ├── 7064521923258519984.json │ │ │ ├── 7290449142720336129.json │ │ │ ├── 7343643388690483386.json │ │ │ ├── 7964682456237764128.json │ │ │ ├── 8037105219339764795.json │ │ │ ├── 8470122230925774774.json │ │ │ ├── 8572973851751861077.json │ │ │ ├── 8663246638349151408.json │ │ │ ├── 8915655395312823508.json │ │ │ └── 9220062785830877437.json │ │ └── 5352753345304681777 │ │ │ ├── 1390676374481661893.json │ │ │ ├── 1417306368804656581.json │ │ │ ├── 16671738231096950.json │ │ │ ├── 300369620504220265.json │ │ │ ├── 3493831877256700225.json │ │ │ ├── 4135029639846458028.json │ │ │ ├── 4439917135341279138.json │ │ │ ├── 453958438901224164.json │ │ │ ├── 5086251303576375219.json │ │ │ ├── 5516830115674416383.json │ │ │ ├── 557319564435523975.json │ │ │ ├── 568216713881771166.json │ │ │ ├── 6137408432618362943.json │ │ │ ├── 6193794506209314825.json │ │ │ ├── 6271457757340943114.json │ │ │ ├── 6346245914619707230.json │ │ │ ├── 6359464355584237231.json │ │ │ ├── 6558004591675073442.json │ │ │ ├── 6754982522536930243.json │ │ │ ├── 6860392913003192863.json │ │ │ ├── 7371073565142424743.json │ │ │ ├── 7532070148411932744.json │ │ │ ├── 7692612434485865815.json │ │ │ ├── 830059518822056775.json │ │ │ ├── 8476903108385542361.json │ │ │ ├── 8613182174979752859.json │ │ │ ├── 8892601690723595953.json │ │ │ ├── 8939401755493737022.json │ │ │ └── 8991125912512192738.json │ └── synthetic_bacadi_unknown_interv │ │ ├── 1423981259255717569 │ │ ├── 1039387471224040802.json │ │ ├── 1068098330349418680.json │ │ ├── 1071176262418485983.json │ │ ├── 1773514362250426539.json │ │ ├── 2551363015786827156.json │ │ ├── 2768790421979538339.json │ │ ├── 3104375381329654.json │ │ ├── 3142442578337532923.json │ │ ├── 3207873011543706260.json │ │ ├── 4024603374474913042.json │ │ ├── 4686118754541485449.json │ │ ├── 4700612620437419642.json │ │ ├── 4774886715222471219.json │ │ ├── 5371331329708259283.json │ │ ├── 5820590584749197790.json │ │ ├── 6034983035669249420.json │ │ ├── 608706726059129458.json │ │ ├── 6679405018181131120.json │ │ ├── 6733964581227488908.json │ │ ├── 8559493094748824007.json │ │ ├── 8597133212195366381.json │ │ ├── 870340884458267919.json │ │ ├── 8731366059746257213.json │ │ ├── 9185090294992294929.json │ │ └── 946320067767463600.json │ │ └── 8823518397427194794 │ │ ├── 1759679280579522558.json │ │ ├── 1849310792124534412.json │ │ ├── 2592825766187440591.json │ │ ├── 3726830448904611266.json │ │ ├── 4794114985821357791.json │ │ ├── 4822433918377612087.json │ │ ├── 4851210023121826956.json │ │ ├── 5129426158016873835.json │ │ ├── 5593775200492991414.json │ │ ├── 6096636562998184559.json │ │ ├── 6134388541186650575.json │ │ ├── 6546866538490223550.json │ │ └── 7067237229661583273.json ├── fcgauss1405_20nodes_v1 │ └── synthetic_IGSP_unknown_interv │ │ ├── 1521488760567248419 │ │ ├── 1284899231094435446.json │ │ ├── 2466835763851454870.json │ │ ├── 2526736348058010299.json │ │ ├── 3448006545336537396.json │ │ ├── 3836565612709548414.json │ │ ├── 41884084514038710.json │ │ ├── 4256880186181760197.json │ │ ├── 4380585751426012648.json │ │ ├── 5017885180939096165.json │ │ ├── 5580586722925209039.json │ │ ├── 5744463024485834191.json │ │ ├── 5938892755358658848.json │ │ ├── 6941975987161628965.json │ │ ├── 7020209401662425057.json │ │ ├── 7250494425460931118.json │ │ ├── 727230097776056715.json │ │ ├── 7379694894462448497.json │ │ ├── 7521194925050158665.json │ │ ├── 7696232592033819354.json │ │ ├── 7869280896979295399.json │ │ ├── 8089015919594252681.json │ │ ├── 8124050661595501664.json │ │ ├── 8253680824032197960.json │ │ ├── 8348895524953722714.json │ │ ├── 8480654156433953121.json │ │ ├── 8531907455008243688.json │ │ ├── 8670257027720370786.json │ │ ├── 8702738398774200467.json │ │ ├── 9151558486190610950.json │ │ └── 92062580724150510.json │ │ └── 2174141621805202226 │ │ ├── 1030456582766921643.json │ │ ├── 1500379947628733627.json │ │ ├── 2183124668830037693.json │ │ ├── 2193764775062726299.json │ │ ├── 2648114171604085416.json │ │ ├── 2707786677770825964.json │ │ ├── 2742905291351610161.json │ │ ├── 3156467451439679442.json │ │ ├── 36955587497081159.json │ │ ├── 4522640022110516576.json │ │ ├── 4588559676398649467.json │ │ ├── 4919496936666230343.json │ │ ├── 5037841523651672699.json │ │ ├── 5048467249690399656.json │ │ ├── 5797415794217538648.json │ │ ├── 5832600646012388161.json │ │ ├── 5896663618288815512.json │ │ ├── 6095934159764974844.json │ │ ├── 6322249823849384772.json │ │ ├── 6495127647564327262.json │ │ ├── 679994533760665865.json │ │ ├── 6807956157046419963.json │ │ ├── 7017171367210734465.json │ │ ├── 7361418537522409639.json │ │ ├── 7435017239857002474.json │ │ ├── 809138083572258287.json │ │ ├── 8511735120948166336.json │ │ ├── 8626868787140897349.json │ │ ├── 8711202851284144227.json │ │ └── 9193729106974201946.json ├── fcgauss1405_20nodes_v1_copy │ ├── synthetic_JCI-PC_unknown_interv │ │ ├── 1323406223509194926 │ │ │ ├── 1166268470220553084.json │ │ │ ├── 1189274094192821544.json │ │ │ ├── 1234998387049850638.json │ │ │ ├── 1401358751063226329.json │ │ │ ├── 1688370248911938127.json │ │ │ ├── 2357403668440499963.json │ │ │ ├── 2458085910163232206.json │ │ │ ├── 3127928256973094171.json │ │ │ ├── 3300609207321943426.json │ │ │ ├── 3718727401384776673.json │ │ │ ├── 4080298647196514181.json │ │ │ ├── 4637110864702411354.json │ │ │ ├── 474809807667754354.json │ │ │ ├── 4888774695678378493.json │ │ │ ├── 5493891388246959355.json │ │ │ ├── 5503762927991485312.json │ │ │ ├── 5532427511690869322.json │ │ │ ├── 5711741631778052328.json │ │ │ ├── 5818184459335174777.json │ │ │ ├── 5940587014596025203.json │ │ │ ├── 6188224388726573195.json │ │ │ ├── 7107010050840872582.json │ │ │ ├── 7149480966218965829.json │ │ │ ├── 7273866240949850763.json │ │ │ ├── 7715842101740174740.json │ │ │ ├── 8211134316839547442.json │ │ │ ├── 8309271893201768418.json │ │ │ ├── 8433289395082917114.json │ │ │ ├── 8541597966598839823.json │ │ │ └── 993521324615085008.json │ │ └── 29249582541447628 │ │ │ ├── 1619869139565336062.json │ │ │ ├── 2050236200212224617.json │ │ │ ├── 232963556668126959.json │ │ │ ├── 2792050873069096321.json │ │ │ ├── 2851706928599052058.json │ │ │ ├── 4089869992978187071.json │ │ │ ├── 4278275547736280620.json │ │ │ ├── 4433825732454752365.json │ │ │ ├── 4799518305043612342.json │ │ │ ├── 4855943067896657196.json │ │ │ ├── 4968336016089086197.json │ │ │ ├── 5595331224155270108.json │ │ │ ├── 588668721222364033.json │ │ │ ├── 5949701131965432593.json │ │ │ ├── 6288730429398554058.json │ │ │ ├── 6658438159538197860.json │ │ │ ├── 6691072553082006656.json │ │ │ ├── 6996580625539892046.json │ │ │ ├── 7020595701804499441.json │ │ │ ├── 7328659868230577273.json │ │ │ ├── 7584176346362404605.json │ │ │ ├── 7895459795819105042.json │ │ │ ├── 8075019111810469610.json │ │ │ ├── 8447487768372187185.json │ │ │ ├── 8531937409119836494.json │ │ │ ├── 8539135636910175254.json │ │ │ ├── 8757832783586292367.json │ │ │ ├── 8868933821566082014.json │ │ │ ├── 9127573330304731922.json │ │ │ └── 9179088984651838096.json │ └── synthetic_bacadi_fcgauss_unknown_interv │ │ ├── 2649460096289106393 │ │ ├── 1044643185440608073.json │ │ ├── 213671231251450869.json │ │ ├── 2271719458314911812.json │ │ ├── 2423910983199488917.json │ │ ├── 2467629177463261348.json │ │ ├── 2656635721859232133.json │ │ ├── 2716917718501087053.json │ │ ├── 271858269061137915.json │ │ ├── 2751349550614645659.json │ │ ├── 3515007311044765390.json │ │ ├── 3859867985986840210.json │ │ ├── 4073084488007541537.json │ │ ├── 4158384272765001577.json │ │ ├── 4558816611088337403.json │ │ ├── 4738929697198064736.json │ │ ├── 4821558213076199501.json │ │ ├── 4949089257416627195.json │ │ ├── 52404786479281586.json │ │ ├── 5346837499130770627.json │ │ ├── 5587685062649999801.json │ │ ├── 6206882919419975474.json │ │ ├── 6763790350597273978.json │ │ ├── 6944179859089146610.json │ │ ├── 6959108500551438444.json │ │ ├── 7037042505528042832.json │ │ ├── 707867089386207275.json │ │ ├── 7620569083967235669.json │ │ ├── 7965774214648974696.json │ │ ├── 8320113778115641570.json │ │ └── 8623451486415642731.json │ │ └── 8089626190405569154 │ │ ├── 1132212468077214169.json │ │ ├── 1428016180551288693.json │ │ ├── 1912773762815014716.json │ │ ├── 2241532173234221986.json │ │ ├── 2650627401853370727.json │ │ ├── 2667292449561511575.json │ │ ├── 2710632340745828836.json │ │ ├── 2802801556331289095.json │ │ ├── 3051790481345291846.json │ │ ├── 3098548753650325760.json │ │ ├── 3178348480991888645.json │ │ ├── 3342253431297709454.json │ │ ├── 335019888832060609.json │ │ ├── 3819548166006916439.json │ │ ├── 4196807863425742091.json │ │ ├── 4322088488795760022.json │ │ ├── 5681919501357709796.json │ │ ├── 6277235039489937587.json │ │ ├── 6278060922907499927.json │ │ ├── 6417895036448092331.json │ │ ├── 6635525778201892303.json │ │ ├── 6689727756488628470.json │ │ ├── 6875485607523455048.json │ │ ├── 7017354839903128247.json │ │ ├── 7168701045809133299.json │ │ ├── 7292886574740996382.json │ │ ├── 7344284863038219925.json │ │ ├── 7349724838396133427.json │ │ ├── 8680873388206099979.json │ │ └── 8702679987934976810.json ├── fcgauss1905_20nodes_v1 │ └── synthetic_DCDI-G_unknown_interv │ │ ├── 279654528501157411 │ │ ├── 1154368140297198315.json │ │ ├── 1429986646603186530.json │ │ ├── 1759757160061815470.json │ │ ├── 1856880530146024852.json │ │ ├── 2107621130063558822.json │ │ ├── 2210330978156716865.json │ │ ├── 226194558815184469.json │ │ ├── 2294264170554072649.json │ │ ├── 2338100141741378700.json │ │ ├── 2664242552085591160.json │ │ ├── 4141808344603307047.json │ │ ├── 4336823459187513659.json │ │ ├── 4936351647918463451.json │ │ ├── 5277447887244513984.json │ │ ├── 5365836610449437240.json │ │ ├── 5729893900517220044.json │ │ ├── 5791705091191197371.json │ │ ├── 6286798491206224717.json │ │ ├── 6565667673767663317.json │ │ ├── 6821880759285822385.json │ │ ├── 6861301118712375104.json │ │ ├── 7102097068174020907.json │ │ ├── 716627853629870554.json │ │ ├── 7428412737874116283.json │ │ ├── 7529598842888354410.json │ │ ├── 7789805002467068198.json │ │ ├── 7998019344393253959.json │ │ ├── 8420878014190433433.json │ │ ├── 859620240410106048.json │ │ └── 9192349918643831200.json │ │ └── 9184752844498045151 │ │ ├── 103242268807942079.json │ │ ├── 111210830303768901.json │ │ ├── 134752499938766672.json │ │ ├── 1351501440209693256.json │ │ ├── 137346652900866932.json │ │ ├── 16664932325122540.json │ │ ├── 189555062021228789.json │ │ ├── 2054157552985149110.json │ │ ├── 2507470199139759523.json │ │ ├── 2637036599536608626.json │ │ ├── 3196376399444511111.json │ │ ├── 3209614371253199786.json │ │ ├── 325764954000669503.json │ │ ├── 3392359314981298658.json │ │ ├── 3397843800952677446.json │ │ ├── 3670044487649094287.json │ │ ├── 4332006823625960554.json │ │ ├── 433214754686682653.json │ │ ├── 5507849401198341279.json │ │ ├── 5672255109154888347.json │ │ ├── 6122640234862951568.json │ │ ├── 6139982674202945393.json │ │ ├── 7141414069987111650.json │ │ ├── 7349683188691102337.json │ │ ├── 7877806803053647986.json │ │ ├── 8354919315708910316.json │ │ ├── 8410812384033517975.json │ │ ├── 8814002196088603578.json │ │ └── 9144788028022560923.json ├── fcgauss3007_20nodes_v1 │ └── synthetic_bacadi_fcgauss_unknown_interv │ │ ├── 7062532024974682193 │ │ ├── 1113692735476072281.json │ │ ├── 1178529300225908730.json │ │ ├── 1249903199031354555.json │ │ ├── 2187665461161132437.json │ │ ├── 2367615058698598941.json │ │ ├── 2664713478953896238.json │ │ ├── 3475985809699566453.json │ │ ├── 3737804448516824422.json │ │ ├── 3925381053958060893.json │ │ ├── 4430452538629686990.json │ │ ├── 4433268537600323563.json │ │ ├── 4645782096541287919.json │ │ ├── 4682087338089727247.json │ │ ├── 4685204484019103185.json │ │ ├── 5154797707623863885.json │ │ ├── 5289242193583773845.json │ │ ├── 648702158280199929.json │ │ ├── 6489480314321943643.json │ │ ├── 6790847657781522837.json │ │ ├── 6870726397603230146.json │ │ ├── 7398327566114244785.json │ │ ├── 741560653393722489.json │ │ ├── 7553484773111585208.json │ │ ├── 758912093425994532.json │ │ ├── 7974788973525907269.json │ │ ├── 8257995086227197868.json │ │ ├── 8392250280841515191.json │ │ ├── 8436371088314425530.json │ │ ├── 8550421409321855101.json │ │ └── 9001359327023541285.json │ │ └── 7359201081573045649 │ │ ├── 1181659013354503541.json │ │ ├── 1744574017648392725.json │ │ ├── 2053417896041234967.json │ │ ├── 2427087366282355560.json │ │ ├── 2703529905278387652.json │ │ ├── 2774813411273160272.json │ │ ├── 3959384076907754046.json │ │ ├── 4403464797291359034.json │ │ ├── 4758576877716054171.json │ │ ├── 4821894456513267634.json │ │ ├── 4842122707709365572.json │ │ ├── 4877248076526262254.json │ │ ├── 4993004622278561378.json │ │ ├── 5006111135931678805.json │ │ ├── 5158716830458042209.json │ │ ├── 5248803102300677332.json │ │ ├── 5586272171781022747.json │ │ ├── 5594656815971681651.json │ │ ├── 6411896278191168460.json │ │ ├── 6438570293375376833.json │ │ ├── 6597983047859311076.json │ │ ├── 6698894699268781762.json │ │ ├── 7358566530182613268.json │ │ ├── 7542835054840876311.json │ │ ├── 8249006275065422167.json │ │ ├── 847202369640103584.json │ │ ├── 853259210400945774.json │ │ ├── 8594809022381931170.json │ │ ├── 884615437193473919.json │ │ └── 941840682076960906.json ├── fcgauss_doubledata2305_20nodes_v1 │ ├── synthetic_DCDI-G_unknown_interv │ │ ├── 2877370592787819327 │ │ │ ├── 1088794024772660307.json │ │ │ ├── 1273687514112155014.json │ │ │ ├── 131054275551268777.json │ │ │ ├── 1661258569155123681.json │ │ │ ├── 2860727745273835359.json │ │ │ ├── 3078876634866927177.json │ │ │ ├── 310358095556231217.json │ │ │ ├── 3510994038958160126.json │ │ │ ├── 3797254889100857536.json │ │ │ ├── 3967820318200878707.json │ │ │ ├── 425327416662657451.json │ │ │ ├── 4536839337002744389.json │ │ │ ├── 498342984539291876.json │ │ │ ├── 5485736394835977489.json │ │ │ ├── 5586137032378053368.json │ │ │ ├── 5820223027036393473.json │ │ │ ├── 5992173054133353576.json │ │ │ ├── 6300658594885374760.json │ │ │ ├── 7345464792943919492.json │ │ │ ├── 7345502755852627164.json │ │ │ ├── 7801928346021208515.json │ │ │ ├── 8340365908351777108.json │ │ │ ├── 8765295061895587168.json │ │ │ ├── 8832398388617555265.json │ │ │ ├── 9059211162797378339.json │ │ │ ├── 9069204497648187188.json │ │ │ ├── 9087588256333402115.json │ │ │ ├── 9125021641002668730.json │ │ │ ├── 937487490896448515.json │ │ │ └── 947094912098800764.json │ │ └── 3990305195171738525 │ │ │ ├── 1204711512453982002.json │ │ │ ├── 1447625446580293021.json │ │ │ ├── 1631432185435190278.json │ │ │ ├── 1834268480648828058.json │ │ │ ├── 1859787379338695833.json │ │ │ ├── 1874970822152926518.json │ │ │ ├── 1994746513377363748.json │ │ │ ├── 2183929143545290992.json │ │ │ ├── 2309876851367764242.json │ │ │ ├── 2455499696775229990.json │ │ │ ├── 2481998615764433537.json │ │ │ ├── 2824609685629988195.json │ │ │ ├── 3283587979141380899.json │ │ │ ├── 3410108883272212205.json │ │ │ ├── 3547980198755490243.json │ │ │ ├── 3557285659997155425.json │ │ │ ├── 3585614030903584569.json │ │ │ ├── 4007373352425857160.json │ │ │ ├── 446073204572773858.json │ │ │ ├── 4478446786441417514.json │ │ │ ├── 4786380618153977748.json │ │ │ ├── 5378058134144584975.json │ │ │ ├── 6100204501764389276.json │ │ │ ├── 6490951887063150145.json │ │ │ ├── 6585914762701746061.json │ │ │ ├── 6794593582345336962.json │ │ │ ├── 6955133421511427607.json │ │ │ ├── 8041546185086709143.json │ │ │ ├── 8797365764506008731.json │ │ │ └── 8922033986180172889.json │ ├── synthetic_IGSP_unknown_interv │ │ ├── 3465474416686618199 │ │ │ ├── 117923445029250247.json │ │ │ ├── 1877810471789809181.json │ │ │ ├── 2391220261478909882.json │ │ │ ├── 241734329307131270.json │ │ │ ├── 2981149043051398807.json │ │ │ ├── 3927189582949652043.json │ │ │ ├── 4010328120728597350.json │ │ │ ├── 4118041006770128728.json │ │ │ ├── 4167026422003917422.json │ │ │ ├── 4564993280295936611.json │ │ │ ├── 4624777778101401907.json │ │ │ ├── 4695538647134836908.json │ │ │ ├── 49488796067041458.json │ │ │ ├── 5149567545006105449.json │ │ │ ├── 5335167646180430921.json │ │ │ ├── 5527909178297600473.json │ │ │ ├── 6049795121832039216.json │ │ │ ├── 6341447019592344168.json │ │ │ ├── 6384204764496270114.json │ │ │ ├── 6390667946269726190.json │ │ │ ├── 6645089587289816793.json │ │ │ ├── 6870772164528854465.json │ │ │ ├── 6958177574962535419.json │ │ │ ├── 7684358224954091886.json │ │ │ ├── 7765053899606487254.json │ │ │ ├── 8047219461744554548.json │ │ │ ├── 8515841639391653377.json │ │ │ ├── 8758775798272380601.json │ │ │ ├── 8857411603059614465.json │ │ │ └── 9152461556330514469.json │ │ └── 4704454105620319481 │ │ │ ├── 1624785763914023105.json │ │ │ ├── 1960047180300413544.json │ │ │ ├── 2081418099389030729.json │ │ │ ├── 2247655116897885888.json │ │ │ ├── 2249420239189475144.json │ │ │ ├── 2480954996462695228.json │ │ │ ├── 270979063448808112.json │ │ │ ├── 3112820321012521923.json │ │ │ ├── 3145205947036613803.json │ │ │ ├── 3847954078069256783.json │ │ │ ├── 3916707245073769650.json │ │ │ ├── 3928378883981523070.json │ │ │ ├── 4059633047749084431.json │ │ │ ├── 4154448732619546106.json │ │ │ ├── 4598680864213619428.json │ │ │ ├── 5054056026458294637.json │ │ │ ├── 50663689803481898.json │ │ │ ├── 5157590758785769653.json │ │ │ ├── 5461041959371537262.json │ │ │ ├── 5795846181910512479.json │ │ │ ├── 6381151343240255724.json │ │ │ ├── 6587591397240270725.json │ │ │ ├── 6912044670564105995.json │ │ │ ├── 6913098044203499077.json │ │ │ ├── 7261728192492695627.json │ │ │ ├── 7529553982065994923.json │ │ │ ├── 8669153800588172690.json │ │ │ ├── 8818855202589740269.json │ │ │ ├── 9064595839143371718.json │ │ │ └── 9140795511729388185.json │ ├── synthetic_JCI-PC_unknown_interv │ │ ├── 1138745440487275877 │ │ │ ├── 1030339726738218332.json │ │ │ ├── 1047091982549797649.json │ │ │ ├── 1170232274550273237.json │ │ │ ├── 1523279153531206206.json │ │ │ ├── 2069780531481009737.json │ │ │ ├── 2079641821459167595.json │ │ │ ├── 2827548426355873639.json │ │ │ ├── 3219258993583399203.json │ │ │ ├── 349242065755057906.json │ │ │ ├── 3716952719411698281.json │ │ │ ├── 3753019932336225779.json │ │ │ ├── 4033157099320688966.json │ │ │ ├── 4493524552719435277.json │ │ │ ├── 4670910381057707612.json │ │ │ ├── 4836692576898408263.json │ │ │ ├── 5038333989333409622.json │ │ │ ├── 5077503288601481637.json │ │ │ ├── 5148944178750399822.json │ │ │ ├── 5178020808999020372.json │ │ │ ├── 560121716778113633.json │ │ │ ├── 6281701478933610293.json │ │ │ ├── 6684079849467031258.json │ │ │ ├── 715420095881795135.json │ │ │ ├── 7423261503779960167.json │ │ │ ├── 7615942178188247981.json │ │ │ ├── 7654920729833939834.json │ │ │ ├── 7683933421158057663.json │ │ │ ├── 7785953420578372617.json │ │ │ ├── 8136163127217120860.json │ │ │ └── 950120657989518788.json │ │ └── 6504988270652523582 │ │ │ ├── 1126394093480646516.json │ │ │ ├── 1919194122403602164.json │ │ │ ├── 2171097853917789399.json │ │ │ ├── 2323624861115167881.json │ │ │ ├── 233347053450929108.json │ │ │ ├── 2840918684229664651.json │ │ │ ├── 2916548654924435138.json │ │ │ ├── 3012280161338274292.json │ │ │ ├── 3813787354767590782.json │ │ │ ├── 3873072380362339252.json │ │ │ ├── 4093921510995188164.json │ │ │ ├── 4695951956394932188.json │ │ │ ├── 4812796017081730719.json │ │ │ ├── 4898447902692930097.json │ │ │ ├── 5164739306842921296.json │ │ │ ├── 5379786888223131663.json │ │ │ ├── 5594955225841652306.json │ │ │ ├── 6224807779665622052.json │ │ │ ├── 6229396387185080192.json │ │ │ ├── 6347007686118202807.json │ │ │ ├── 6563288695949336948.json │ │ │ ├── 7073231101497993538.json │ │ │ ├── 7241774482404514139.json │ │ │ ├── 795070687791196631.json │ │ │ ├── 8092355402045036215.json │ │ │ ├── 8387927063572094981.json │ │ │ ├── 9028825673268423995.json │ │ │ ├── 9069316276096981749.json │ │ │ ├── 908025749934946428.json │ │ │ └── 953351299651819233.json │ └── synthetic_bacadi_fcgauss_unknown_interv │ │ ├── 6473987027191733079 │ │ ├── 3029905706808127897.json │ │ └── 5234960601025736086.json │ │ └── 8601957485813222417 │ │ ├── 1256097062057604928.json │ │ ├── 3674524595361030639.json │ │ ├── 6786680240507838176.json │ │ └── 8607262439775977767.json ├── fcgauss_obs2505_20nodes_v1 │ ├── synthetic_bacadi_fcgauss_known_interv │ │ ├── 4421677958936975178 │ │ │ ├── 1339423437629339573.json │ │ │ ├── 1558269655442592589.json │ │ │ ├── 1682702669459187722.json │ │ │ ├── 1732078554828001590.json │ │ │ ├── 1840554414959340512.json │ │ │ ├── 1852246325628760997.json │ │ │ ├── 1928041216288784458.json │ │ │ ├── 2903860761104478457.json │ │ │ ├── 2904224502963724420.json │ │ │ ├── 2993183517476087446.json │ │ │ ├── 2993237657575474190.json │ │ │ ├── 3120117942525362713.json │ │ │ ├── 5115454931371897212.json │ │ │ ├── 5344243782488491672.json │ │ │ ├── 5589381759045853252.json │ │ │ ├── 578174371799228421.json │ │ │ ├── 5849147879103439054.json │ │ │ ├── 5864683588407489756.json │ │ │ ├── 6066422340525421947.json │ │ │ ├── 6101857394218049552.json │ │ │ ├── 6347318321340278125.json │ │ │ ├── 650521604627611588.json │ │ │ ├── 6647802053055667492.json │ │ │ ├── 7797793228410085733.json │ │ │ ├── 8024830434049618371.json │ │ │ ├── 8227003739744684622.json │ │ │ ├── 8318489093873384370.json │ │ │ ├── 8531250370268129085.json │ │ │ ├── 8922746826633198857.json │ │ │ └── 9221205254155830619.json │ │ └── 5411304040418703688 │ │ │ ├── 1380715330306459865.json │ │ │ ├── 1406476994585125810.json │ │ │ ├── 1647653548842586247.json │ │ │ ├── 1682760169943993782.json │ │ │ ├── 1768028989169866061.json │ │ │ ├── 2164746482562484280.json │ │ │ ├── 233853592859047931.json │ │ │ ├── 2370873435366907501.json │ │ │ ├── 2554352183882518635.json │ │ │ ├── 2751864270334343145.json │ │ │ ├── 2831886861572223229.json │ │ │ ├── 2936635546284788607.json │ │ │ ├── 3022082559732205491.json │ │ │ ├── 3206129108131243636.json │ │ │ ├── 348616778051431356.json │ │ │ ├── 364179739914706471.json │ │ │ ├── 4598519936822133745.json │ │ │ ├── 4715601127595876873.json │ │ │ ├── 5221373314308993576.json │ │ │ ├── 5519750664011445790.json │ │ │ ├── 5607074882283393157.json │ │ │ ├── 5698742426339665250.json │ │ │ ├── 6010677807022555601.json │ │ │ ├── 6126357691280037010.json │ │ │ ├── 6863413219226659536.json │ │ │ ├── 7432193693741219214.json │ │ │ ├── 7868725468625718224.json │ │ │ ├── 8181801093225133840.json │ │ │ ├── 8311531341840378661.json │ │ │ └── 8555989665534996253.json │ └── synthetic_bacadi_fcgauss_obs │ │ ├── 3772708703403832763 │ │ ├── 2254532790625699513.json │ │ ├── 228843568008204860.json │ │ ├── 2308084111489635335.json │ │ ├── 2456389413838852032.json │ │ ├── 2586204881031996643.json │ │ ├── 2629179270412479142.json │ │ ├── 296117593110720989.json │ │ ├── 3267517828076670644.json │ │ ├── 4159487009224878125.json │ │ ├── 4852352200550936909.json │ │ ├── 5272009205984955508.json │ │ ├── 5410104707537046279.json │ │ ├── 5779485108873126532.json │ │ ├── 6075006709370382602.json │ │ ├── 695821565478330859.json │ │ ├── 7395962767626558890.json │ │ ├── 7497507946499988311.json │ │ ├── 7844461403746248557.json │ │ ├── 7883861687732991134.json │ │ ├── 8002152033901312934.json │ │ ├── 8552319607392346922.json │ │ ├── 8936509834215566319.json │ │ └── 9071819155330846976.json │ │ └── 8142462468261839642 │ │ ├── 1186782733491814006.json │ │ ├── 1191414692543951732.json │ │ ├── 2375594917439273609.json │ │ ├── 2416196598839219312.json │ │ ├── 2581889471219196161.json │ │ ├── 2821258855393737072.json │ │ ├── 3124336297097273058.json │ │ ├── 3153009810335448462.json │ │ ├── 370947016168536029.json │ │ ├── 3777692773314964207.json │ │ ├── 4087925798210243762.json │ │ ├── 7143425335048449031.json │ │ ├── 7168980737362798049.json │ │ ├── 7315092838765535958.json │ │ ├── 7483045102155491791.json │ │ ├── 7537325163048971653.json │ │ ├── 7679790099374510963.json │ │ ├── 7939871896256349441.json │ │ ├── 818293241476133638.json │ │ ├── 8258301823656507057.json │ │ ├── 8473440142943883220.json │ │ ├── 8956420314554122751.json │ │ └── 9025156980077787460.json ├── lingauss1405_20nodes_v1 │ ├── synthetic_IGSP_unknown_interv │ │ └── 1680928129342933286 │ │ │ ├── 1083126765058838771.json │ │ │ ├── 1083759987527035298.json │ │ │ ├── 1099574735845461834.json │ │ │ ├── 1632245911598713959.json │ │ │ ├── 1693695843090474940.json │ │ │ ├── 1703629628276201262.json │ │ │ ├── 1920221861891670227.json │ │ │ ├── 2361758206021297053.json │ │ │ ├── 2388690820909049170.json │ │ │ ├── 251376645545873039.json │ │ │ ├── 3625538380838196684.json │ │ │ ├── 3968125319877789911.json │ │ │ ├── 4058829338936414871.json │ │ │ ├── 4085376950209856101.json │ │ │ ├── 4216238572701132019.json │ │ │ ├── 434682873385364596.json │ │ │ ├── 4840194992595728043.json │ │ │ ├── 487905376312327100.json │ │ │ ├── 5214660127616936818.json │ │ │ ├── 5276412306540104431.json │ │ │ ├── 5596197542680396477.json │ │ │ ├── 5748717933344513200.json │ │ │ ├── 5899916840845517506.json │ │ │ ├── 6371373156228061163.json │ │ │ ├── 7111070631944021502.json │ │ │ ├── 7885348126654859346.json │ │ │ ├── 8039680336760778609.json │ │ │ ├── 8345617742225628253.json │ │ │ ├── 8382874280866317465.json │ │ │ └── 9082127945147092138.json │ └── synthetic_JCI-PC_unknown_interv │ │ └── 1273192460692766319 │ │ ├── 1320321788122328613.json │ │ ├── 1379201118727884943.json │ │ ├── 1799782854601888295.json │ │ ├── 2341823147430408573.json │ │ ├── 3015965104389112999.json │ │ ├── 305448066770733075.json │ │ ├── 3703475687983142973.json │ │ ├── 3786514782211024492.json │ │ ├── 4133577064038684181.json │ │ ├── 4933576861905761618.json │ │ ├── 50514858918552819.json │ │ ├── 5159240630448397374.json │ │ ├── 5346489283991389589.json │ │ ├── 5468315985281632626.json │ │ ├── 566368306484316959.json │ │ ├── 6003039988952010625.json │ │ ├── 6109560115233320967.json │ │ ├── 6501987205872065543.json │ │ ├── 655700839837500826.json │ │ ├── 6727679504473524842.json │ │ ├── 698040323193583025.json │ │ ├── 7069537606336520017.json │ │ ├── 7272774218292812906.json │ │ ├── 7351047622850968364.json │ │ ├── 7746315790892407101.json │ │ ├── 7969588328106796086.json │ │ ├── 872407486777073758.json │ │ ├── 895808836276087691.json │ │ ├── 9177562603998738617.json │ │ └── 935119032789311333.json ├── lingauss1405_20nodes_v1_copy │ ├── synthetic_IGSP_unknown_interv │ │ └── 5919574287101225375 │ │ │ ├── 1087846083735051930.json │ │ │ ├── 1130049259764499445.json │ │ │ ├── 1354495388527160125.json │ │ │ ├── 2004812610696369593.json │ │ │ ├── 2269674255932646001.json │ │ │ ├── 2303947367448728409.json │ │ │ ├── 2551658424746830298.json │ │ │ ├── 2658097452403315516.json │ │ │ ├── 2674314383138638680.json │ │ │ ├── 2793345729680818320.json │ │ │ ├── 3048545354793115944.json │ │ │ ├── 3780018116783414455.json │ │ │ ├── 4689380991174741802.json │ │ │ ├── 4692930858835014322.json │ │ │ ├── 4932322319532385312.json │ │ │ ├── 5051971304730740464.json │ │ │ ├── 5564040441796298750.json │ │ │ ├── 6710120947334607790.json │ │ │ ├── 6720518377464481948.json │ │ │ ├── 7255534981302870375.json │ │ │ ├── 7490932879568026374.json │ │ │ ├── 7532820578589862022.json │ │ │ ├── 8005297697289038244.json │ │ │ ├── 8098848535942441859.json │ │ │ ├── 829507952267340340.json │ │ │ ├── 8354396818439614442.json │ │ │ ├── 8446172953037237429.json │ │ │ ├── 8812339762518805770.json │ │ │ ├── 9072165983669196773.json │ │ │ └── 9111841504809891722.json │ └── synthetic_JCI-PC_unknown_interv │ │ └── 598322374597402408 │ │ ├── 1073835763316018484.json │ │ ├── 1262834917911323846.json │ │ ├── 1615513684101770880.json │ │ ├── 205309724370108757.json │ │ ├── 2328537900431462257.json │ │ ├── 2660011391332576028.json │ │ ├── 2982793730203420344.json │ │ ├── 3492797913767794801.json │ │ ├── 4132182060041700163.json │ │ ├── 4351926767333146236.json │ │ ├── 4371419379404093117.json │ │ ├── 4780220282132267205.json │ │ ├── 5236131833336353642.json │ │ ├── 5505345434219287875.json │ │ ├── 5520148923263918378.json │ │ ├── 5788608237934644296.json │ │ ├── 6058468792734902314.json │ │ ├── 6996492420628496909.json │ │ ├── 7096395454326185432.json │ │ ├── 7317771955385574519.json │ │ ├── 7343866812885259603.json │ │ ├── 7383889477453959823.json │ │ ├── 7875254133597108859.json │ │ ├── 7965784867240527885.json │ │ ├── 8150854303685761666.json │ │ ├── 8201907408066236412.json │ │ ├── 8269114760743865351.json │ │ ├── 8467904797316674587.json │ │ ├── 8745747486739279937.json │ │ └── 8969742365444998288.json ├── lingauss1905_20nodes_v1 │ └── synthetic_DCDI-G_unknown_interv │ │ ├── 668539336521743855 │ │ ├── 164997372543071602.json │ │ ├── 2395872605010920421.json │ │ ├── 2564287058309311027.json │ │ ├── 2621986521248641258.json │ │ ├── 2929656828912745068.json │ │ ├── 2996680336163213865.json │ │ ├── 3091743628605848311.json │ │ ├── 3542980196801836464.json │ │ ├── 3727534470740149869.json │ │ ├── 415617004333043321.json │ │ ├── 4443133073898153766.json │ │ ├── 5401028106820489951.json │ │ ├── 5840534548599200231.json │ │ ├── 6263169997422323474.json │ │ ├── 6265290754135366713.json │ │ ├── 6474732417771648213.json │ │ ├── 6498503750687376480.json │ │ ├── 6744485584910217805.json │ │ ├── 7013690170602671172.json │ │ ├── 7131581723917081001.json │ │ ├── 7292208148439286663.json │ │ ├── 7300299456743427814.json │ │ ├── 7545479331134846970.json │ │ ├── 7618326287734948040.json │ │ ├── 7785131727874412512.json │ │ ├── 8221762282442365621.json │ │ ├── 8812574160307562615.json │ │ ├── 8961808293317163568.json │ │ ├── 9052552085051550545.json │ │ └── 9141145105697451964.json │ │ └── 9119843253167383750 │ │ ├── 1380404458747401932.json │ │ ├── 1678679508755065069.json │ │ ├── 1698542305480653375.json │ │ ├── 2215243652429632528.json │ │ ├── 2273725767384415467.json │ │ ├── 2533556388912171598.json │ │ ├── 2750643649392926975.json │ │ ├── 2911535390527785109.json │ │ ├── 299737660999395283.json │ │ ├── 3160946099825019290.json │ │ ├── 349370255673936210.json │ │ ├── 3870391779963834734.json │ │ ├── 4089122360217245913.json │ │ ├── 4292637465328610188.json │ │ ├── 4423666620572789591.json │ │ ├── 4841317031702819506.json │ │ ├── 5514485673980185097.json │ │ ├── 5725247796571575836.json │ │ ├── 5898341611281807191.json │ │ ├── 6714342051504986987.json │ │ ├── 7256041386359697932.json │ │ ├── 7259332068023926088.json │ │ ├── 7699456614722843405.json │ │ ├── 7728297830745233488.json │ │ ├── 7750097025754490733.json │ │ ├── 8127129722036433711.json │ │ ├── 8518261379685911964.json │ │ ├── 8590123518612648384.json │ │ ├── 8755495030040557771.json │ │ └── 999240359083058238.json ├── lingauss3007_20nodes_v1 │ └── synthetic_bacadi_lingauss_unknown_interv │ │ └── 7996752904207021747 │ │ ├── 2036678310294850240.json │ │ ├── 2271617410801362105.json │ │ ├── 2392466613005020988.json │ │ ├── 2436128023398379933.json │ │ ├── 2616312215090456851.json │ │ ├── 2742041776617648500.json │ │ ├── 3720042185129676620.json │ │ ├── 3915949999650306367.json │ │ ├── 3969355003829119738.json │ │ ├── 3979124057216792938.json │ │ ├── 4366662817677088725.json │ │ ├── 4571370995254606584.json │ │ ├── 5100902107310727210.json │ │ ├── 5110881362076279304.json │ │ ├── 5117056387057812095.json │ │ ├── 5326512975836107284.json │ │ ├── 5459662626821470583.json │ │ ├── 5651662676630669989.json │ │ ├── 6342333788668244121.json │ │ ├── 6467645741583515961.json │ │ ├── 6719153853174949779.json │ │ ├── 6776472868022028008.json │ │ ├── 6821552923886179290.json │ │ ├── 7089669752215474843.json │ │ ├── 7120300623678781857.json │ │ ├── 7764065918163412529.json │ │ ├── 7868326285192380929.json │ │ ├── 8024657501156994577.json │ │ ├── 8072549461265178051.json │ │ └── 8161871295416002551.json ├── lingauss3007_20nodes_v2 │ └── synthetic_bacadi_lingauss_unknown_interv │ │ └── 6720261755586691985 │ │ ├── 262934208040214003.json │ │ ├── 2747851615571428293.json │ │ ├── 2825500829363549380.json │ │ ├── 3146167060161488065.json │ │ ├── 3183814251750616940.json │ │ ├── 3364073537452989388.json │ │ ├── 3559401360503622617.json │ │ ├── 3660646699832211013.json │ │ ├── 3983870482368796893.json │ │ ├── 4439397543061953542.json │ │ ├── 4547720040336359369.json │ │ ├── 5003675375498936164.json │ │ ├── 5436199824544679302.json │ │ ├── 5457756157281986677.json │ │ ├── 5532770147145000376.json │ │ ├── 5549252832004529288.json │ │ ├── 6265216417882355534.json │ │ ├── 6491133904483845272.json │ │ ├── 6596729383702947642.json │ │ ├── 6642712103220186649.json │ │ ├── 7081621654092330214.json │ │ ├── 7290329960756927323.json │ │ ├── 7493082069405036071.json │ │ ├── 7522139912277735306.json │ │ ├── 7799382590382918030.json │ │ ├── 8186286220957531491.json │ │ ├── 9032209674811406680.json │ │ ├── 9125162691656606370.json │ │ ├── 9170474462114835649.json │ │ └── 9175292208239131971.json ├── lingauss_doubledata2305_20nodes_v1 │ ├── synthetic_DCDI-G_unknown_interv │ │ ├── 468958850887325706 │ │ │ ├── 1079046729829318817.json │ │ │ ├── 1521336518204927656.json │ │ │ ├── 1757073353638465032.json │ │ │ ├── 1803409607061257438.json │ │ │ ├── 1870816676281839679.json │ │ │ ├── 246724356676887108.json │ │ │ ├── 3605579461254062350.json │ │ │ ├── 3740428397194270710.json │ │ │ ├── 387523624765393425.json │ │ │ ├── 4190658296649917931.json │ │ │ ├── 4315059960485290965.json │ │ │ ├── 4506732028170547921.json │ │ │ ├── 5131130520900317597.json │ │ │ ├── 5152161438224204922.json │ │ │ ├── 5352551544694166176.json │ │ │ ├── 5470374810123214408.json │ │ │ ├── 5483990137420057396.json │ │ │ ├── 5588065155828239026.json │ │ │ ├── 5707856317856262881.json │ │ │ ├── 5958248743187151611.json │ │ │ ├── 6075679834336414277.json │ │ │ ├── 765104721438044768.json │ │ │ ├── 7846586612391723839.json │ │ │ ├── 8455137958550579705.json │ │ │ ├── 8616286420733387948.json │ │ │ ├── 8796054452730919426.json │ │ │ ├── 880764443984162296.json │ │ │ ├── 903223576613229524.json │ │ │ ├── 9084007474609927732.json │ │ │ └── 9116427870426629775.json │ │ └── 6876724272590492415 │ │ │ ├── 1720744551431912515.json │ │ │ ├── 1771263811291763129.json │ │ │ ├── 1773053422932981999.json │ │ │ ├── 1835549388679572452.json │ │ │ ├── 2268091796351299216.json │ │ │ ├── 2598217412985651018.json │ │ │ ├── 2794946277768296986.json │ │ │ ├── 2813405906079452093.json │ │ │ ├── 2971858681196792242.json │ │ │ ├── 3508113098444857172.json │ │ │ ├── 3807600046043444283.json │ │ │ ├── 3896187152578905237.json │ │ │ ├── 4535925869863611750.json │ │ │ ├── 4876191950481963858.json │ │ │ ├── 5033700813940353702.json │ │ │ ├── 5159681569291135698.json │ │ │ ├── 5192536783442971484.json │ │ │ ├── 5372719517582693010.json │ │ │ ├── 5384294573654813367.json │ │ │ ├── 607997775911132338.json │ │ │ ├── 6087615575680572749.json │ │ │ ├── 656436555730598326.json │ │ │ ├── 6823662592296887381.json │ │ │ ├── 7462288764982054037.json │ │ │ ├── 7823119579652569909.json │ │ │ ├── 7890650475629848220.json │ │ │ ├── 8117607274616108534.json │ │ │ ├── 8241597200965505056.json │ │ │ ├── 8254664872121080693.json │ │ │ └── 991839605646253703.json │ ├── synthetic_IGSP_unknown_interv │ │ ├── 1084497292091741578 │ │ │ ├── 2028164924626696457.json │ │ │ ├── 3254167835002738141.json │ │ │ ├── 4737728268318503085.json │ │ │ ├── 6708828865052019626.json │ │ │ ├── 7224749679781870139.json │ │ │ └── 7267206467974129778.json │ │ └── 5424687717926729517 │ │ │ ├── 2068049599362545030.json │ │ │ ├── 2220746153049230294.json │ │ │ ├── 5768653110592242096.json │ │ │ ├── 7773058447257147589.json │ │ │ └── 9095724487132591644.json │ ├── synthetic_JCI-PC_unknown_interv │ │ ├── 3326226036902143697 │ │ │ ├── 2330455021872058850.json │ │ │ ├── 2451203878373727839.json │ │ │ ├── 2824373529249576677.json │ │ │ ├── 2828878879148237052.json │ │ │ ├── 3057970147735400140.json │ │ │ ├── 3316709124210899427.json │ │ │ ├── 3375110916504426383.json │ │ │ ├── 3531290010223389452.json │ │ │ ├── 3932851881210471445.json │ │ │ ├── 4288040678243709509.json │ │ │ ├── 4331872383454293336.json │ │ │ ├── 4435283343800457493.json │ │ │ ├── 4981206842141529137.json │ │ │ ├── 6009857375549618415.json │ │ │ ├── 6349576271895513146.json │ │ │ ├── 6412927272181810662.json │ │ │ ├── 6493794012176263854.json │ │ │ ├── 652476665758492085.json │ │ │ ├── 6657934051403865053.json │ │ │ ├── 6799898503166880864.json │ │ │ ├── 7848264105105847863.json │ │ │ ├── 8498543260038740690.json │ │ │ ├── 8508052939809762851.json │ │ │ ├── 8621731804142947602.json │ │ │ ├── 896844309598660760.json │ │ │ ├── 9063902550914470812.json │ │ │ ├── 92352844807114931.json │ │ │ ├── 939779760189511979.json │ │ │ └── 943941014383200856.json │ │ └── 7615918075523183064 │ │ │ ├── 1088241394891318552.json │ │ │ ├── 1565127085262541019.json │ │ │ ├── 1658282371752653705.json │ │ │ ├── 1951369051635644932.json │ │ │ ├── 2378348368620659695.json │ │ │ ├── 2460269600362736176.json │ │ │ ├── 2699711706755271820.json │ │ │ ├── 3082498190616192480.json │ │ │ ├── 3371059528609115908.json │ │ │ ├── 356113816386488081.json │ │ │ ├── 4559073981713217658.json │ │ │ ├── 482496697723671465.json │ │ │ ├── 5031509713970413141.json │ │ │ ├── 5577200037500362156.json │ │ │ ├── 574074987135742153.json │ │ │ ├── 622057511823467205.json │ │ │ ├── 6760766552773285408.json │ │ │ ├── 6908612639874485037.json │ │ │ ├── 7221050098712353510.json │ │ │ ├── 7659520879276198580.json │ │ │ ├── 7807006505934400487.json │ │ │ ├── 7811380994024455679.json │ │ │ ├── 8033148377406152154.json │ │ │ ├── 8390034248406305595.json │ │ │ ├── 8521452042963482348.json │ │ │ ├── 885688444048755642.json │ │ │ └── 9177310629675887504.json │ └── synthetic_bacadi_lingauss_unknown_interv │ │ ├── 2802285971495641188 │ │ ├── 1576309865050062425.json │ │ ├── 1867344327989805753.json │ │ ├── 1929328407503084401.json │ │ ├── 2044927205144919593.json │ │ ├── 2570685189527910534.json │ │ ├── 2754686365793583048.json │ │ ├── 2830528654892787852.json │ │ ├── 3002339097410375548.json │ │ ├── 3637536885226984375.json │ │ ├── 4007942518710530098.json │ │ ├── 4204882586442264756.json │ │ ├── 4361964691604671063.json │ │ ├── 4605379116286447398.json │ │ ├── 4871347216216038002.json │ │ ├── 4976390393321144332.json │ │ ├── 501280728132314177.json │ │ ├── 5142172742811914181.json │ │ ├── 5330452547765859248.json │ │ ├── 536161559016376664.json │ │ ├── 5515449749822210720.json │ │ ├── 5518151215274936395.json │ │ ├── 6328932563984724746.json │ │ ├── 6392156740010412690.json │ │ ├── 717809086648000769.json │ │ ├── 851016388771254975.json │ │ ├── 8744568100306358955.json │ │ ├── 8902985171078534172.json │ │ ├── 9144096689310268000.json │ │ ├── 9158335258956138581.json │ │ └── 9199751638797562641.json │ │ └── 7070357337793012323 │ │ ├── 2310200516032428995.json │ │ ├── 2374103215244278490.json │ │ ├── 2983485149275808247.json │ │ ├── 3137532945223050429.json │ │ ├── 3272546519896466449.json │ │ ├── 3454845928499973744.json │ │ ├── 3568711131098693695.json │ │ ├── 3759997165969425724.json │ │ ├── 3935011498687314704.json │ │ ├── 3985351538297980020.json │ │ ├── 4801900710847015390.json │ │ ├── 5563993584409791030.json │ │ ├── 6486084595656349184.json │ │ ├── 6774967138269634955.json │ │ ├── 6816785481545915714.json │ │ ├── 7102818281253567856.json │ │ ├── 7329482784459899830.json │ │ ├── 739969281796962368.json │ │ ├── 7608789392540588343.json │ │ ├── 7660484427140245619.json │ │ ├── 7712465048809434815.json │ │ ├── 8003227412060098577.json │ │ ├── 8148231623070742909.json │ │ └── 8160910283502132103.json ├── lingauss_doubledata2305_50nodes_v1 │ ├── synthetic_DCDI-G_unknown_interv │ │ ├── 2660051591581849616 │ │ │ ├── 1566230573636318854.json │ │ │ ├── 3074390203691304260.json │ │ │ ├── 4941236962956439071.json │ │ │ ├── 5664276398736026272.json │ │ │ ├── 6514603854324065861.json │ │ │ └── 8160957594076003594.json │ │ └── 5271959378956765883 │ │ │ ├── 1405775666399769197.json │ │ │ ├── 2011972830056102012.json │ │ │ ├── 2404841846060061455.json │ │ │ ├── 2519375659801018567.json │ │ │ ├── 2760568027816498863.json │ │ │ ├── 2807056470745425806.json │ │ │ ├── 4814871317036584108.json │ │ │ ├── 5490368556967302253.json │ │ │ ├── 632729905485478977.json │ │ │ ├── 6511909705702089629.json │ │ │ ├── 6837410987212537969.json │ │ │ ├── 6963656317933920335.json │ │ │ ├── 7170846388963286816.json │ │ │ ├── 7893268059189760384.json │ │ │ └── 946439568324853456.json │ ├── synthetic_IGSP_unknown_interv │ │ ├── 7933974540725944882 │ │ │ ├── 150035006610828659.json │ │ │ ├── 1687106385225171052.json │ │ │ ├── 1766102181571044612.json │ │ │ ├── 1891154079245040974.json │ │ │ ├── 2255459787661489228.json │ │ │ ├── 2390809597753364873.json │ │ │ ├── 2397807443698079398.json │ │ │ ├── 2553177581699848022.json │ │ │ ├── 2678730915871991108.json │ │ │ ├── 2805790995007064500.json │ │ │ ├── 3293629848040026651.json │ │ │ ├── 3457684844975920741.json │ │ │ ├── 3775938940766602044.json │ │ │ ├── 3872131517068600834.json │ │ │ ├── 3914264106488559855.json │ │ │ ├── 4145417549095679672.json │ │ │ ├── 4444038915180044728.json │ │ │ ├── 5622808908412812201.json │ │ │ ├── 5764080096362770586.json │ │ │ ├── 6101902196563741538.json │ │ │ ├── 7097405382177860717.json │ │ │ ├── 7388180743491526412.json │ │ │ ├── 7555535508824362747.json │ │ │ ├── 7569339248129053022.json │ │ │ ├── 7581515295229587588.json │ │ │ ├── 7927770186863363733.json │ │ │ ├── 7955385134653875931.json │ │ │ ├── 8694352702069911305.json │ │ │ ├── 8700131022647552048.json │ │ │ └── 8803868388802250006.json │ │ └── 9106248906740104360 │ │ │ ├── 1180586729624702835.json │ │ │ ├── 1334472015719366407.json │ │ │ ├── 1425059272356243332.json │ │ │ ├── 1548116949591508344.json │ │ │ ├── 2029273910143452062.json │ │ │ ├── 2093906954519650321.json │ │ │ ├── 2118560302393221573.json │ │ │ ├── 2484099890548089410.json │ │ │ ├── 2634296749022799838.json │ │ │ ├── 3165462538800487578.json │ │ │ ├── 3686671760646562842.json │ │ │ ├── 4296599991385657071.json │ │ │ ├── 463387766392537007.json │ │ │ ├── 4742793368849860982.json │ │ │ ├── 4754767335250424315.json │ │ │ ├── 5068764339876931082.json │ │ │ ├── 5177771213984490474.json │ │ │ ├── 5193521802409201939.json │ │ │ ├── 5238852235772676566.json │ │ │ ├── 5426618395226084011.json │ │ │ ├── 6035627080196775644.json │ │ │ ├── 6547303694817540067.json │ │ │ ├── 6933688668580124740.json │ │ │ ├── 7508630054981929376.json │ │ │ ├── 7756616038656101810.json │ │ │ ├── 7805659297081717592.json │ │ │ ├── 8035106196918665107.json │ │ │ ├── 8049018942493460032.json │ │ │ ├── 839103087037176863.json │ │ │ └── 976189907207507356.json │ └── synthetic_bacadi_lingauss_unknown_interv │ │ ├── 3129840835491746350 │ │ ├── 1280908954932905511.json │ │ ├── 1534927116337830354.json │ │ ├── 1883313709771366556.json │ │ ├── 1885532131329647996.json │ │ ├── 2843218256038604461.json │ │ ├── 2982800085490918084.json │ │ ├── 3152459065139607.json │ │ ├── 3566206968600289621.json │ │ ├── 3805020768739928806.json │ │ ├── 3980469066699751602.json │ │ ├── 4292231939604961492.json │ │ ├── 4336949765419090725.json │ │ ├── 4794925783483765078.json │ │ ├── 4834305641554199517.json │ │ ├── 4857811316455422022.json │ │ ├── 5270438006733734627.json │ │ ├── 5283146205263315072.json │ │ ├── 5908901197246348203.json │ │ ├── 5940446095557957117.json │ │ ├── 6226607486661984146.json │ │ ├── 7473595812586104031.json │ │ ├── 7682024138522928617.json │ │ ├── 7990425246463259704.json │ │ ├── 8092665262710998022.json │ │ ├── 8403597654963740917.json │ │ ├── 8479933556279581320.json │ │ ├── 8483460114638996263.json │ │ ├── 8960552445855654036.json │ │ ├── 9201893173935699204.json │ │ └── 988051993807237929.json │ │ └── 8121522171639233805 │ │ ├── 1181189321180357193.json │ │ ├── 1466718004022015868.json │ │ ├── 1521160368996360617.json │ │ ├── 1525253094228578500.json │ │ ├── 1950839638334062215.json │ │ ├── 2147290636415823460.json │ │ ├── 262953026366384964.json │ │ ├── 2741887539854362062.json │ │ ├── 2818584745942589250.json │ │ ├── 3117788006653930393.json │ │ ├── 3851430211197845654.json │ │ ├── 415939988970194280.json │ │ ├── 5223842015665730841.json │ │ ├── 5242072362706800900.json │ │ ├── 5415388626604447959.json │ │ ├── 5466021156409813225.json │ │ ├── 5470434321096249208.json │ │ ├── 548792609127777226.json │ │ ├── 5705807491164776897.json │ │ ├── 5940895422452737347.json │ │ ├── 6632282759053515314.json │ │ ├── 7131206638851226756.json │ │ ├── 7377181492952542439.json │ │ ├── 7411321950172073235.json │ │ ├── 7512398343153452691.json │ │ ├── 7558380652859916291.json │ │ ├── 7924650632833196855.json │ │ ├── 8643406698346139615.json │ │ ├── 9090523603657125552.json │ │ └── 963347396188774482.json ├── lingauss_doubledata2305_50nodes_v2 │ └── synthetic_JCI-PC_unknown_interv │ │ ├── 1604790696860310108 │ │ ├── 1907018345702117361.json │ │ ├── 2200117469068767719.json │ │ ├── 3019039252504417504.json │ │ ├── 3360037558285373563.json │ │ ├── 3449633000018745501.json │ │ ├── 4508014096853242853.json │ │ ├── 5043631889029350071.json │ │ ├── 5251240914637320536.json │ │ ├── 5996647405869286605.json │ │ ├── 6821460438249592755.json │ │ ├── 7153781527754585072.json │ │ ├── 8012018752894598444.json │ │ ├── 8404836063338488333.json │ │ ├── 8608447195293014103.json │ │ ├── 8790368293911971064.json │ │ ├── 8913701925225983419.json │ │ ├── 8946851961835926261.json │ │ ├── 923693965512794442.json │ │ └── 943403750921951257.json │ │ └── 8605751912189358583 │ │ ├── 1039277358654975189.json │ │ ├── 1714284653171942789.json │ │ ├── 19072002538414365.json │ │ ├── 2088333580369255655.json │ │ ├── 2156627469792094623.json │ │ ├── 2659432222445651452.json │ │ ├── 3143345453382372087.json │ │ ├── 4025292684613278623.json │ │ ├── 4068132254790619914.json │ │ ├── 4183066134438441944.json │ │ ├── 4877966324509297325.json │ │ ├── 5768101182568204621.json │ │ ├── 6024096066193317428.json │ │ ├── 6143979838861845808.json │ │ ├── 6298013829387325486.json │ │ ├── 6750432977194891533.json │ │ ├── 7419905053928493755.json │ │ ├── 8003462469878677314.json │ │ ├── 8066001281678955375.json │ │ └── 8760736896947172951.json ├── sergio3007_20nodes_v1 │ ├── sergio_bacadi_fcgauss_unknown_interv │ │ └── 8849191469108681052 │ │ │ ├── 113364794795855826.json │ │ │ ├── 1319421615276327096.json │ │ │ ├── 1580739504191670442.json │ │ │ ├── 1647830744342949276.json │ │ │ ├── 2573918432767232298.json │ │ │ ├── 2666728594839138676.json │ │ │ ├── 2700924471839121292.json │ │ │ ├── 321528836303389755.json │ │ │ ├── 3351076753384250926.json │ │ │ ├── 3470205694266122999.json │ │ │ ├── 3846312794294583306.json │ │ │ ├── 3889085816911960998.json │ │ │ ├── 3972510495087599538.json │ │ │ ├── 4491711710138985051.json │ │ │ ├── 483163863972843103.json │ │ │ ├── 4974737665138556093.json │ │ │ ├── 5337986814051398888.json │ │ │ ├── 5621016619502257859.json │ │ │ ├── 6290381730288367865.json │ │ │ ├── 6467646676542164626.json │ │ │ ├── 7013400244054024136.json │ │ │ ├── 7092865080533756967.json │ │ │ ├── 7107640457647453261.json │ │ │ ├── 744598440500557064.json │ │ │ ├── 7879112078875022294.json │ │ │ ├── 7884177940311718570.json │ │ │ ├── 7977256296998614441.json │ │ │ ├── 8417345065320321192.json │ │ │ ├── 8443290242452966165.json │ │ │ └── 8513916926236475891.json │ └── sergio_bacadi_lingauss_unknown_interv │ │ └── 631707605595472068 │ │ ├── 1014204213169163199.json │ │ ├── 2000144283570408705.json │ │ ├── 217309507886637456.json │ │ ├── 2879337996236323767.json │ │ ├── 3100462333850553027.json │ │ ├── 358162010401822571.json │ │ ├── 3834786057514878716.json │ │ ├── 4248259394096063802.json │ │ ├── 465480679846417224.json │ │ ├── 4828269145374296560.json │ │ ├── 5358629536398530313.json │ │ ├── 5366069375658709307.json │ │ ├── 5538707230099817901.json │ │ ├── 594180874183732445.json │ │ ├── 5949094261656731511.json │ │ ├── 6201028635895559822.json │ │ ├── 6315787388205003410.json │ │ ├── 6556676196650214164.json │ │ ├── 6617027655173863040.json │ │ ├── 7064219290672854323.json │ │ ├── 7118088542503837745.json │ │ ├── 7643422368694825399.json │ │ ├── 7764703329187876989.json │ │ ├── 7919300206759618120.json │ │ ├── 7933818922465640499.json │ │ ├── 8108257742531953421.json │ │ ├── 8213524971142610009.json │ │ ├── 8872224550924271460.json │ │ ├── 8981626311884374854.json │ │ └── 9030297322027775967.json ├── sergio_joint1405_20nodes_v2 │ ├── sergio_IGSP_unknown_interv │ │ └── 5504380058496549900 │ │ │ ├── 1008610723981588396.json │ │ │ ├── 1346682057351377539.json │ │ │ ├── 1549597461569431126.json │ │ │ ├── 255051689291289589.json │ │ │ ├── 3367458879426288052.json │ │ │ ├── 3516461043754411980.json │ │ │ ├── 4285809398256806082.json │ │ │ ├── 4722059161324662545.json │ │ │ ├── 5107534573231280002.json │ │ │ ├── 5465570470968882560.json │ │ │ ├── 6770550906651992990.json │ │ │ ├── 7235515404445444827.json │ │ │ ├── 7256554955275431978.json │ │ │ ├── 7904705299202063235.json │ │ │ ├── 8185684315937377910.json │ │ │ └── 8736819763593249731.json │ └── sergio_JCI-PC_unknown_interv │ │ └── 2398737007030405362 │ │ ├── 1237581551379889139.json │ │ ├── 130042197468076398.json │ │ ├── 1432554380871284484.json │ │ ├── 1833023681075102930.json │ │ ├── 192264274104574472.json │ │ ├── 2267586873962293768.json │ │ ├── 2296548731477585434.json │ │ ├── 2503783229097082937.json │ │ ├── 2849723215594063848.json │ │ ├── 3035693784766807668.json │ │ ├── 3046699431226350755.json │ │ ├── 3631733461544423750.json │ │ ├── 3647780068555278185.json │ │ ├── 3944736505874839511.json │ │ ├── 4060159433553705064.json │ │ ├── 4938670170654030394.json │ │ ├── 4998603257093753915.json │ │ ├── 5551690974003766577.json │ │ ├── 5645332334625350435.json │ │ ├── 568413679242389205.json │ │ ├── 5694419979530032244.json │ │ ├── 5907309790879299918.json │ │ ├── 6215999649611162169.json │ │ ├── 67879771865626553.json │ │ ├── 6855399995139039967.json │ │ ├── 7333141365325448984.json │ │ ├── 7602444346088348013.json │ │ ├── 9014551559873942392.json │ │ └── 9147067043910468851.json └── sergio_joint1905_20nodes_v1 │ └── sergio_DCDI-G_unknown_interv │ └── 5910629912283174740 │ ├── 116596569404206820.json │ ├── 1256795030276552214.json │ ├── 1577983712908718433.json │ ├── 187510967087510749.json │ ├── 1998759343900054939.json │ ├── 2262436094965878374.json │ ├── 2441632186309623182.json │ ├── 2485637984409252064.json │ ├── 2488793801180702004.json │ ├── 3390371918011568064.json │ ├── 3480696046326695863.json │ ├── 3685796687878344468.json │ ├── 3785179358806589838.json │ ├── 3918072828760791852.json │ ├── 4084324843736125562.json │ ├── 4137552011802748868.json │ ├── 4520961777089348050.json │ ├── 5049651949561388987.json │ ├── 5448394401683843468.json │ ├── 5634258965290555027.json │ ├── 6178371076499338141.json │ ├── 6641164379837603426.json │ ├── 7122957926386379764.json │ ├── 7271707267526462665.json │ ├── 7946485860482624468.json │ ├── 847860743512007556.json │ ├── 8549984928569469690.json │ ├── 8805735894163546638.json │ ├── 8959145931875965281.json │ └── 957592336796808648.json ├── sergio ├── __init__.py ├── gene.py ├── noise_config.yaml ├── sergio.py ├── sergio_mod.py └── sergio_sampler.py ├── setup.py └── visualization ├── __init__.py ├── plot_from_path.py ├── plot_runtime_from_path.py ├── plot_specs.py └── util.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.html linguist-detectable=false -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/.gitignore -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/.codecov.yml -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/.gitignore -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/.travis.yml -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/CHANGELOG.md -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/CONTRIBUTING.md -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/Dockerfile -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/LICENSE.md -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/README.md -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/__init__.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/__init__.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/graph/CAM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/graph/CAM.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/graph/CCDr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/graph/CCDr.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/graph/CGNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/graph/CGNN.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/graph/GES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/graph/GES.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/graph/GIES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/graph/GIES.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/graph/LiNGAM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/graph/LiNGAM.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/graph/PC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/graph/PC.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/graph/R_templates/CCDr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/graph/R_templates/CCDr.R -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/graph/R_templates/bnlearn.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/graph/R_templates/bnlearn.R -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/graph/R_templates/cam.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/graph/R_templates/cam.R -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/graph/R_templates/ges.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/graph/R_templates/ges.R -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/graph/R_templates/gies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/graph/R_templates/gies.R -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/graph/R_templates/lingam.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/graph/R_templates/lingam.R -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/graph/R_templates/pc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/graph/R_templates/pc.R -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/graph/SAM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/graph/SAM.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/graph/SAMv1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/graph/SAMv1.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/graph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/graph/__init__.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/graph/bnlearn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/graph/bnlearn.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/graph/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/graph/model.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/pairwise/ANM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/pairwise/ANM.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/pairwise/Bivariate_fit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/pairwise/Bivariate_fit.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/pairwise/CDS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/pairwise/CDS.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/pairwise/GNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/pairwise/GNN.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/pairwise/IGCI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/pairwise/IGCI.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/pairwise/Jarfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/pairwise/Jarfo.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/pairwise/Jarfo_model/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/pairwise/Jarfo_model/README.md -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/pairwise/Jarfo_model/SETTINGS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/pairwise/Jarfo_model/SETTINGS.json -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/pairwise/Jarfo_model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/pairwise/Jarfo_model/__init__.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/pairwise/Jarfo_model/estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/pairwise/Jarfo_model/estimator.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/pairwise/Jarfo_model/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/pairwise/Jarfo_model/features.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/pairwise/Jarfo_model/hsic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/pairwise/Jarfo_model/hsic.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/pairwise/Jarfo_model/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/pairwise/Jarfo_model/train.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/pairwise/Jarfo_model/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/pairwise/Jarfo_model/util.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/pairwise/NCC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/pairwise/NCC.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/pairwise/RCC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/pairwise/RCC.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/pairwise/RECI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/pairwise/RECI.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/pairwise/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/pairwise/__init__.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/causality/pairwise/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/causality/pairwise/model.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/data/__init__.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/data/acyclic_graph_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/data/acyclic_graph_generator.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/data/causal_mechanisms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/data/causal_mechanisms.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/data/causal_pair_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/data/causal_pair_generator.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/data/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/data/loader.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/independence/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/independence/__init__.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/independence/graph/FSGNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/independence/graph/FSGNN.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/independence/graph/FSRegression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/independence/graph/FSRegression.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/independence/graph/HSICLasso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/independence/graph/HSICLasso.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/independence/graph/Lasso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/independence/graph/Lasso.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/independence/graph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/independence/graph/__init__.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/independence/graph/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/independence/graph/model.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/independence/stats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/independence/stats/__init__.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/independence/stats/all_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/independence/stats/all_types.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/independence/stats/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/independence/stats/model.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/independence/stats/numerical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/independence/stats/numerical.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/metrics.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/timeseries/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/timeseries/__init__.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/timeseries/graph/VARLiNGAM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/timeseries/graph/VARLiNGAM.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/timeseries/graph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/timeseries/graph/__init__.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/timeseries/pairwise/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/timeseries/pairwise/__init__.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/utils/R.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/utils/R.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/utils/R_templates/cpdag.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/utils/R_templates/cpdag.R -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/utils/R_templates/sid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/utils/R_templates/sid.R -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/utils/R_templates/sid_cpdag.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/utils/R_templates/sid_cpdag.R -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/utils/R_templates/test_import.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/utils/R_templates/test_import.R -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/utils/Settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/utils/Settings.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/utils/__init__.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/utils/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/utils/graph.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/utils/io.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/utils/loss.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/utils/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/utils/parallel.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/cdt/utils/torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/cdt/utils/torch.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/.doctrees/index.doctree -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/.doctrees/installation-link.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/.doctrees/installation-link.doctree -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/.old.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/.old.index -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/Makefile -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/_static/custom.css -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/causality.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/causality.rst -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/conf.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/data.rst -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/developer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/developer.rst -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/.doctrees/causality.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/.doctrees/causality.doctree -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/.doctrees/data.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/.doctrees/data.doctree -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/.doctrees/developer.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/.doctrees/developer.doctree -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/.doctrees/environment.pickle -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/.doctrees/generators.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/.doctrees/generators.doctree -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/.doctrees/independence.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/.doctrees/independence.doctree -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/.doctrees/index.doctree -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/.doctrees/metrics.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/.doctrees/metrics.doctree -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/.doctrees/models.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/.doctrees/models.doctree -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/.doctrees/settings.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/.doctrees/settings.doctree -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/.doctrees/tutorial.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/.doctrees/tutorial.doctree -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/.doctrees/tutorial_1.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/.doctrees/tutorial_1.doctree -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/.doctrees/tutorial_2.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/.doctrees/tutorial_2.doctree -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/.doctrees/utils.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/.doctrees/utils.doctree -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/graph/CAM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/graph/CAM.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/graph/CCDr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/graph/CCDr.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/graph/CGNN.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/graph/CGNN.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/graph/GES.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/graph/GES.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/graph/GIES.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/graph/GIES.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/graph/LiNGAM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/graph/LiNGAM.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/graph/PC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/graph/PC.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/graph/SAM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/graph/SAM.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/graph/SAMv1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/graph/SAMv1.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/graph/bnlearn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/graph/bnlearn.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/graph/model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/graph/model.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/pairwise/ANM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/pairwise/ANM.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/pairwise/Bivariate_fit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/pairwise/Bivariate_fit.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/pairwise/CDS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/pairwise/CDS.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/pairwise/GNN.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/pairwise/GNN.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/pairwise/IGCI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/pairwise/IGCI.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/pairwise/Jarfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/pairwise/Jarfo.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/pairwise/NCC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/pairwise/NCC.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/pairwise/RCC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/pairwise/RCC.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/pairwise/RECI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/pairwise/RECI.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/pairwise/model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/causality/pairwise/model.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/data/acyclic_graph_generator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/data/acyclic_graph_generator.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/data/causal_pair_generator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/data/causal_pair_generator.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/data/loader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/data/loader.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/independence/graph/FSGNN.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/independence/graph/FSGNN.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/independence/graph/FSRegression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/independence/graph/FSRegression.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/independence/graph/Lasso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/independence/graph/Lasso.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/independence/graph/model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/independence/graph/model.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/independence/stats/all_types.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/independence/stats/all_types.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/independence/stats/model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/independence/stats/model.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/independence/stats/numerical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/independence/stats/numerical.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/metrics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/metrics.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/utils/R.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/utils/R.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/utils/Settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/utils/Settings.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/utils/graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/utils/graph.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/utils/io.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/utils/io.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/utils/loss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/utils/loss.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/utils/metrics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/utils/metrics.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/utils/parallel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/utils/parallel.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/cdt/utils/torch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/cdt/utils/torch.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_modules/index.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_sources/causality.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_sources/causality.rst.txt -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_sources/data.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_sources/data.rst.txt -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_sources/developer.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_sources/developer.rst.txt -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_sources/generators.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_sources/generators.rst.txt -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_sources/independence.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_sources/independence.rst.txt -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_sources/index.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_sources/index.md.txt -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_sources/metrics.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_sources/metrics.rst.txt -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_sources/models.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_sources/models.rst.txt -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_sources/settings.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_sources/settings.rst.txt -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_sources/tutorial.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_sources/tutorial.rst.txt -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_sources/tutorial_1.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_sources/tutorial_1.rst.txt -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_sources/tutorial_2.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_sources/tutorial_2.rst.txt -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_sources/utils.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_sources/utils.rst.txt -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/basic.css -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/css/badge_only.css -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/css/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/css/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/css/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/css/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/css/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/css/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/css/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/css/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/css/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/css/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/css/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/css/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/css/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/css/fonts/lato-bold.woff -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/css/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/css/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/css/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/css/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/css/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/css/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/css/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/css/fonts/lato-normal.woff -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/css/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/css/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/css/theme.css -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/custom.css -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/doctools.js -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/documentation_options.js -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Inconsolata-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Inconsolata-Bold.ttf -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Inconsolata.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Inconsolata.ttf -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-bold.eot -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-bold.ttf -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-bold.woff -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-bold.woff2 -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-bolditalic.woff2 -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-italic.eot -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-italic.ttf -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-italic.woff -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-italic.woff2 -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-regular.eot -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-regular.ttf -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-regular.woff -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Lato/lato-regular.woff2 -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Roboto-Slab-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Roboto-Slab-Light.woff -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Roboto-Slab-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Roboto-Slab-Light.woff2 -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Roboto-Slab-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Roboto-Slab-Thin.woff -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/Roboto-Slab-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/Roboto-Slab-Thin.woff2 -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/RobotoSlab-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/RobotoSlab-Bold.ttf -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/lato-bold.woff -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/lato-normal.woff -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/jquery-3.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/jquery-3.2.1.js -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/jquery-3.4.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/jquery-3.4.1.js -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/jquery-3.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/jquery-3.5.1.js -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/jquery.js -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/js/badge_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/js/badge_only.js -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/js/html5shiv-printshiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/js/html5shiv-printshiv.min.js -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/js/html5shiv.min.js -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/js/modernizr.min.js -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/js/theme.js -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/language_data.js -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/pygments.css -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/searchtools.js -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/underscore.js -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/_static/websupport.js -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/causality.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/causality.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/data.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/developer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/developer.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/generators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/generators.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/genindex.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/independence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/independence.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/index.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/metrics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/metrics.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/models.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/models.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/objects.inv -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/py-modindex.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/search.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/searchindex.js -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/settings.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/tutorial.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/tutorial_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/tutorial_1.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/tutorial_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/tutorial_2.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/html/utils.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/html/utils.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/independence.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/independence.rst -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/index.html -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/index.md -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/index.rst -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/make.bat -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/metrics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/metrics.rst -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/models.rst -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/settings.rst -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/tutorial.rst -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/tutorial_1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/tutorial_1.rst -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/tutorial_2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/tutorial_2.rst -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/docs/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/docs/utils.rst -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/documentation.md -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/examples/example_cgnn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/examples/example_cgnn.ipynb -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/install-deps/Dockerfile-env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/install-deps/Dockerfile-env -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/install-deps/Dockerfile-env-1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/install-deps/Dockerfile-env-1.1 -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/install-deps/install-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/install-deps/install-dependencies.sh -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/installation_instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/installation_instructions.md -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/nv-Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/nv-Dockerfile -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/pytest.ini -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/r_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/r_requirements.txt -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/requirements.txt -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/setup.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/tests/scripts/graph_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/tests/scripts/graph_generators.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/tests/scripts/test_Jarfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/tests/scripts/test_Jarfo.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/tests/scripts/test_causality_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/tests/scripts/test_causality_graph.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/tests/scripts/test_causality_pairwise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/tests/scripts/test_causality_pairwise.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/tests/scripts/test_datasetloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/tests/scripts/test_datasetloader.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/tests/scripts/test_generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/tests/scripts/test_generators.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/tests/scripts/test_independence_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/tests/scripts/test_independence_graph.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/tests/scripts/test_independence_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/tests/scripts/test_independence_stats.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/tests/scripts/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/tests/scripts/test_io.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/tests/scripts/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/tests/scripts/test_metrics.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/tests/scripts/test_pipeline_CGNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/tests/scripts/test_pipeline_CGNN.py -------------------------------------------------------------------------------- /CausalDiscoveryToolbox/tests/scripts/test_varLINGAM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/CausalDiscoveryToolbox/tests/scripts/test_varLINGAM.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/README.md -------------------------------------------------------------------------------- /bacadi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bacadi/config/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/config/example.py -------------------------------------------------------------------------------- /bacadi/eval/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bacadi/eval/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/eval/metrics.py -------------------------------------------------------------------------------- /bacadi/eval/target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/eval/target.py -------------------------------------------------------------------------------- /bacadi/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/exceptions.py -------------------------------------------------------------------------------- /bacadi/graph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/graph/__init__.py -------------------------------------------------------------------------------- /bacadi/graph/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/graph/graph.py -------------------------------------------------------------------------------- /bacadi/inference/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/inference/__init__.py -------------------------------------------------------------------------------- /bacadi/inference/bacadi_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/inference/bacadi_base.py -------------------------------------------------------------------------------- /bacadi/inference/bacadi_joint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/inference/bacadi_joint.py -------------------------------------------------------------------------------- /bacadi/inference/bacadi_marginal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/inference/bacadi_marginal.py -------------------------------------------------------------------------------- /bacadi/inference/dibs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/inference/dibs.py -------------------------------------------------------------------------------- /bacadi/inference/joint_dibs_svgd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/inference/joint_dibs_svgd.py -------------------------------------------------------------------------------- /bacadi/inference/marginal_dibs_svgd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/inference/marginal_dibs_svgd.py -------------------------------------------------------------------------------- /bacadi/kernel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/kernel/__init__.py -------------------------------------------------------------------------------- /bacadi/kernel/interv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/kernel/interv.py -------------------------------------------------------------------------------- /bacadi/kernel/joint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/kernel/joint.py -------------------------------------------------------------------------------- /bacadi/kernel/marginal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/kernel/marginal.py -------------------------------------------------------------------------------- /bacadi/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/models/__init__.py -------------------------------------------------------------------------------- /bacadi/models/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/models/basic.py -------------------------------------------------------------------------------- /bacadi/models/linearGaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/models/linearGaussian.py -------------------------------------------------------------------------------- /bacadi/models/linearGaussianEquivalent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/models/linearGaussianEquivalent.py -------------------------------------------------------------------------------- /bacadi/models/nonlinearGaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/models/nonlinearGaussian.py -------------------------------------------------------------------------------- /bacadi/models/sobolev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/models/sobolev.py -------------------------------------------------------------------------------- /bacadi/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bacadi/utils/func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/utils/func.py -------------------------------------------------------------------------------- /bacadi/utils/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/utils/graph.py -------------------------------------------------------------------------------- /bacadi/utils/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/utils/tree.py -------------------------------------------------------------------------------- /bacadi/utils/version_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/utils/version_control.py -------------------------------------------------------------------------------- /bacadi/utils/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/bacadi/utils/visualize.py -------------------------------------------------------------------------------- /baselines/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/bootstrap.py -------------------------------------------------------------------------------- /baselines/dcdi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /baselines/dcdi/dag_optim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/dcdi/dag_optim.py -------------------------------------------------------------------------------- /baselines/dcdi/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/dcdi/data.py -------------------------------------------------------------------------------- /baselines/dcdi/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/dcdi/main.py -------------------------------------------------------------------------------- /baselines/dcdi/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /baselines/dcdi/models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/dcdi/models/base_model.py -------------------------------------------------------------------------------- /baselines/dcdi/models/flows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/dcdi/models/flows.py -------------------------------------------------------------------------------- /baselines/dcdi/models/learnables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/dcdi/models/learnables.py -------------------------------------------------------------------------------- /baselines/dcdi/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/dcdi/plot.py -------------------------------------------------------------------------------- /baselines/dcdi/prox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/dcdi/prox.py -------------------------------------------------------------------------------- /baselines/dcdi/torchkit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/dcdi/torchkit.py -------------------------------------------------------------------------------- /baselines/dcdi/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/dcdi/train.py -------------------------------------------------------------------------------- /baselines/dcdi/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /baselines/dcdi/utils/gumbel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/dcdi/utils/gumbel.py -------------------------------------------------------------------------------- /baselines/dcdi/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/dcdi/utils/metrics.py -------------------------------------------------------------------------------- /baselines/dcdi/utils/penalty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/dcdi/utils/penalty.py -------------------------------------------------------------------------------- /baselines/dcdi/utils/save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/dcdi/utils/save.py -------------------------------------------------------------------------------- /baselines/igsp/igsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/igsp/igsp.py -------------------------------------------------------------------------------- /baselines/igsp/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/igsp/main.py -------------------------------------------------------------------------------- /baselines/jci/fisher.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/jci/fisher.R -------------------------------------------------------------------------------- /baselines/jci/indepTests/gaussCIFishertest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/jci/indepTests/gaussCIFishertest.R -------------------------------------------------------------------------------- /baselines/jci/indepTests/gaussCIcontexttest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/jci/indepTests/gaussCIcontexttest.R -------------------------------------------------------------------------------- /baselines/jci/indepTests/gaussCIcontexttest_slow.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/jci/indepTests/gaussCIcontexttest_slow.R -------------------------------------------------------------------------------- /baselines/jci/indepTests/gaussCIsincontest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/jci/indepTests/gaussCIsincontest.R -------------------------------------------------------------------------------- /baselines/jci/indepTests/parcortest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/jci/indepTests/parcortest.R -------------------------------------------------------------------------------- /baselines/jci/main_pc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/jci/main_pc.py -------------------------------------------------------------------------------- /baselines/jci/pc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/jci/pc.R -------------------------------------------------------------------------------- /baselines/jci/pc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/jci/pc.py -------------------------------------------------------------------------------- /baselines/jci/pc_function.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/jci/pc_function.R -------------------------------------------------------------------------------- /baselines/jci/pc_wrapper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/jci/pc_wrapper.R -------------------------------------------------------------------------------- /baselines/jci/prepare_pc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/jci/prepare_pc.R -------------------------------------------------------------------------------- /baselines/learners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/baselines/learners.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/config.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/environment.yml -------------------------------------------------------------------------------- /eval/__init__.py: -------------------------------------------------------------------------------- 1 | from .eval import callback, get_metrics, run_bootstrap -------------------------------------------------------------------------------- /eval/class_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/eval/class_maker.py -------------------------------------------------------------------------------- /eval/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/eval/eval.py -------------------------------------------------------------------------------- /eval/launch_experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/eval/launch_experiments.py -------------------------------------------------------------------------------- /eval/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/eval/parser.py -------------------------------------------------------------------------------- /eval/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/eval/result.py -------------------------------------------------------------------------------- /eval/run_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/eval/run_experiment.py -------------------------------------------------------------------------------- /eval/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/eval/util.py -------------------------------------------------------------------------------- /gputil/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/gputil/.gitignore -------------------------------------------------------------------------------- /gputil/GPUtil/GPUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/gputil/GPUtil/GPUtil.py -------------------------------------------------------------------------------- /gputil/GPUtil/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/gputil/GPUtil/__init__.py -------------------------------------------------------------------------------- /gputil/GPUtil/demo_GPUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/gputil/GPUtil/demo_GPUtil.py -------------------------------------------------------------------------------- /gputil/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/gputil/LICENSE.txt -------------------------------------------------------------------------------- /gputil/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE.txt 2 | -------------------------------------------------------------------------------- /gputil/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/gputil/README.md -------------------------------------------------------------------------------- /gputil/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/gputil/setup.cfg -------------------------------------------------------------------------------- /gputil/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/gputil/setup.py -------------------------------------------------------------------------------- /install_R.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/install_R.sh -------------------------------------------------------------------------------- /plots/bge_metrics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/plots/bge_metrics.pdf -------------------------------------------------------------------------------- /plots/fcgauss_metrics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/plots/fcgauss_metrics.pdf -------------------------------------------------------------------------------- /plots/fcgauss_metrics_doubledata.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/plots/fcgauss_metrics_doubledata.pdf -------------------------------------------------------------------------------- /plots/lingauss_metrics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/plots/lingauss_metrics.pdf -------------------------------------------------------------------------------- /plots/lingauss_metrics_50nodes_doubledata.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/plots/lingauss_metrics_50nodes_doubledata.pdf -------------------------------------------------------------------------------- /plots/lingauss_metrics_doubledata.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/plots/lingauss_metrics_doubledata.pdf -------------------------------------------------------------------------------- /plots/obs_interv_metrics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/plots/obs_interv_metrics.pdf -------------------------------------------------------------------------------- /plots/sergio_metrics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/plots/sergio_metrics.pdf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/1129458704279767218.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/1129458704279767218.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/1500851250819797503.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/1500851250819797503.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/1579545596641444594.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/1579545596641444594.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/1659252542257088789.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/1659252542257088789.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/2455037313498707792.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/2455037313498707792.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/2510375760864187440.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/2510375760864187440.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/2967708624167594056.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/2967708624167594056.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/3019559772130634404.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/3019559772130634404.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/3515811053008286938.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/3515811053008286938.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/3988127437950517658.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/3988127437950517658.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/4038016292780995114.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/4038016292780995114.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/4540174195990887572.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/4540174195990887572.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/4553892085661481790.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/4553892085661481790.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/4577622722635182267.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/4577622722635182267.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/4735869964223887087.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/4735869964223887087.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/4859566848310505227.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/4859566848310505227.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/5922457061388196838.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/5922457061388196838.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/6025290572373437542.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/6025290572373437542.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/6056914227947747639.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/6056914227947747639.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/6110580481873525295.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/6110580481873525295.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/6271583122908556049.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/6271583122908556049.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/7187721240942292215.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/7187721240942292215.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/738885927573881835.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/738885927573881835.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/7523877785083657095.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/7523877785083657095.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/7605790922832966452.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/7605790922832966452.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/8091096170718654847.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/8091096170718654847.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/8136435999926770331.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/8136435999926770331.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/8349802554564526120.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/8349802554564526120.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/8477857824330615634.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/8477857824330615634.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/8650531451659431560.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/4271222230025986197/8650531451659431560.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/1081809486535703843.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/1081809486535703843.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/1124402363744130994.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/1124402363744130994.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/1227649834842713587.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/1227649834842713587.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/1230415848467435728.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/1230415848467435728.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/191957287030044063.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/191957287030044063.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/3114894456662429432.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/3114894456662429432.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/3196846901006729816.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/3196846901006729816.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/3329724665352652489.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/3329724665352652489.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/3424462326693654271.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/3424462326693654271.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/3637055760694238969.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/3637055760694238969.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/3937932699494105140.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/3937932699494105140.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/401149160035516115.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/401149160035516115.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/4050521794028394157.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/4050521794028394157.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/4179711484709656523.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/4179711484709656523.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/4369691182927334772.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/4369691182927334772.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/4499725539301591824.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/4499725539301591824.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/4891669542203014617.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/4891669542203014617.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/5476956220430866105.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/5476956220430866105.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/6162506948849350175.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/6162506948849350175.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/6803506496416255116.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/6803506496416255116.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/6880534226068636056.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/6880534226068636056.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/718715413435067496.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/718715413435067496.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/75792959787690417.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/75792959787690417.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/7600891252662022387.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/7600891252662022387.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/797851076837699470.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/797851076837699470.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/8455892276156788454.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/8455892276156788454.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/8516039797723919591.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/8516039797723919591.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/8572874539734956269.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/8572874539734956269.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/8777473963796222971.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/8777473963796222971.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/917664963170559764.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_IGSP_unknown_interv/673597940890787814/917664963170559764.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/2099270759733308971.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/2099270759733308971.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/2152213425522042364.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/2152213425522042364.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/2846900837032750514.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/2846900837032750514.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/287555939338851341.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/287555939338851341.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/3028299361358780326.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/3028299361358780326.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/3557528584221512250.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/3557528584221512250.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/3851523888628283113.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/3851523888628283113.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/4331013626923583121.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/4331013626923583121.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/4344306310551041577.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/4344306310551041577.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/4426248282391501029.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/4426248282391501029.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/4430847204998384259.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/4430847204998384259.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/4447596554093524724.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/4447596554093524724.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/4448938113089921135.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/4448938113089921135.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/4542962922818205398.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/4542962922818205398.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/5841855506950130297.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/5841855506950130297.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/5891623356700338272.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/5891623356700338272.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/6317449014212612899.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/6317449014212612899.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/6365821345970163104.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/6365821345970163104.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/6486271930731806524.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/6486271930731806524.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/6969939897821442233.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/6969939897821442233.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/7064521923258519984.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/7064521923258519984.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/7290449142720336129.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/7290449142720336129.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/7343643388690483386.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/7343643388690483386.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/7964682456237764128.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/7964682456237764128.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/8037105219339764795.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/8037105219339764795.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/8470122230925774774.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/8470122230925774774.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/8572973851751861077.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/8572973851751861077.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/8663246638349151408.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/8663246638349151408.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/8915655395312823508.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/8915655395312823508.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/9220062785830877437.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/1675836751522820581/9220062785830877437.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/1390676374481661893.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/1390676374481661893.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/1417306368804656581.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/1417306368804656581.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/16671738231096950.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/16671738231096950.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/300369620504220265.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/300369620504220265.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/3493831877256700225.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/3493831877256700225.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/4135029639846458028.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/4135029639846458028.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/4439917135341279138.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/4439917135341279138.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/453958438901224164.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/453958438901224164.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/5086251303576375219.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/5086251303576375219.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/5516830115674416383.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/5516830115674416383.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/557319564435523975.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/557319564435523975.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/568216713881771166.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/568216713881771166.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/6137408432618362943.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/6137408432618362943.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/6193794506209314825.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/6193794506209314825.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/6271457757340943114.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/6271457757340943114.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/6346245914619707230.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/6346245914619707230.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/6359464355584237231.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/6359464355584237231.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/6558004591675073442.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/6558004591675073442.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/6754982522536930243.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/6754982522536930243.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/6860392913003192863.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/6860392913003192863.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/7371073565142424743.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/7371073565142424743.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/7532070148411932744.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/7532070148411932744.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/7692612434485865815.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/7692612434485865815.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/830059518822056775.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/830059518822056775.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/8476903108385542361.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/8476903108385542361.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/8613182174979752859.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/8613182174979752859.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/8892601690723595953.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/8892601690723595953.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/8939401755493737022.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/8939401755493737022.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/8991125912512192738.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_JCI-PC_unknown_interv/5352753345304681777/8991125912512192738.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/1039387471224040802.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/1039387471224040802.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/1068098330349418680.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/1068098330349418680.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/1071176262418485983.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/1071176262418485983.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/1773514362250426539.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/1773514362250426539.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/2551363015786827156.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/2551363015786827156.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/2768790421979538339.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/2768790421979538339.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/3104375381329654.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/3104375381329654.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/3142442578337532923.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/3142442578337532923.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/3207873011543706260.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/3207873011543706260.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/4024603374474913042.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/4024603374474913042.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/4686118754541485449.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/4686118754541485449.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/4700612620437419642.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/4700612620437419642.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/4774886715222471219.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/4774886715222471219.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/5371331329708259283.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/5371331329708259283.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/5820590584749197790.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/5820590584749197790.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/6034983035669249420.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/6034983035669249420.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/608706726059129458.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/608706726059129458.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/6679405018181131120.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/6679405018181131120.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/6733964581227488908.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/6733964581227488908.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/8559493094748824007.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/8559493094748824007.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/8597133212195366381.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/8597133212195366381.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/870340884458267919.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/870340884458267919.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/8731366059746257213.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/8731366059746257213.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/9185090294992294929.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/9185090294992294929.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/946320067767463600.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/1423981259255717569/946320067767463600.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/1759679280579522558.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/1759679280579522558.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/1849310792124534412.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/1849310792124534412.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/2592825766187440591.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/2592825766187440591.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/3726830448904611266.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/3726830448904611266.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/4794114985821357791.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/4794114985821357791.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/4822433918377612087.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/4822433918377612087.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/4851210023121826956.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/4851210023121826956.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/5129426158016873835.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/5129426158016873835.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/5593775200492991414.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/5593775200492991414.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/6096636562998184559.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/6096636562998184559.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/6134388541186650575.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/6134388541186650575.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/6546866538490223550.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/6546866538490223550.json -------------------------------------------------------------------------------- /results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/7067237229661583273.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/bge1405_20nodes_v1/synthetic_bacadi_unknown_interv/8823518397427194794/7067237229661583273.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/1284899231094435446.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/1284899231094435446.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/2466835763851454870.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/2466835763851454870.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/2526736348058010299.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/2526736348058010299.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/3448006545336537396.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/3448006545336537396.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/3836565612709548414.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/3836565612709548414.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/41884084514038710.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/41884084514038710.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/4256880186181760197.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/4256880186181760197.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/4380585751426012648.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/4380585751426012648.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/5017885180939096165.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/5017885180939096165.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/5580586722925209039.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/5580586722925209039.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/5744463024485834191.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/5744463024485834191.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/5938892755358658848.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/5938892755358658848.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/6941975987161628965.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/6941975987161628965.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/7020209401662425057.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/7020209401662425057.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/7250494425460931118.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/7250494425460931118.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/727230097776056715.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/727230097776056715.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/7379694894462448497.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/7379694894462448497.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/7521194925050158665.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/7521194925050158665.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/7696232592033819354.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/7696232592033819354.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/7869280896979295399.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/7869280896979295399.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/8089015919594252681.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/8089015919594252681.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/8124050661595501664.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/8124050661595501664.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/8253680824032197960.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/8253680824032197960.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/8348895524953722714.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/8348895524953722714.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/8480654156433953121.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/8480654156433953121.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/8531907455008243688.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/8531907455008243688.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/8670257027720370786.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/8670257027720370786.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/8702738398774200467.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/8702738398774200467.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/9151558486190610950.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/9151558486190610950.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/92062580724150510.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1521488760567248419/92062580724150510.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/1030456582766921643.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/1030456582766921643.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/1500379947628733627.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/1500379947628733627.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/2183124668830037693.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/2183124668830037693.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/2193764775062726299.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/2193764775062726299.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/2648114171604085416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/2648114171604085416.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/2707786677770825964.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/2707786677770825964.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/2742905291351610161.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/2742905291351610161.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/3156467451439679442.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/3156467451439679442.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/36955587497081159.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/36955587497081159.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/4522640022110516576.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/4522640022110516576.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/4588559676398649467.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/4588559676398649467.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/4919496936666230343.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/4919496936666230343.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/5037841523651672699.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/5037841523651672699.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/5048467249690399656.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/5048467249690399656.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/5797415794217538648.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/5797415794217538648.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/5832600646012388161.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/5832600646012388161.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/5896663618288815512.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/5896663618288815512.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/6095934159764974844.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/6095934159764974844.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/6322249823849384772.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/6322249823849384772.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/6495127647564327262.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/6495127647564327262.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/679994533760665865.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/679994533760665865.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/6807956157046419963.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/6807956157046419963.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/7017171367210734465.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/7017171367210734465.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/7361418537522409639.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/7361418537522409639.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/7435017239857002474.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/7435017239857002474.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/809138083572258287.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/809138083572258287.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/8511735120948166336.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/8511735120948166336.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/8626868787140897349.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/8626868787140897349.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/8711202851284144227.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/8711202851284144227.json -------------------------------------------------------------------------------- /results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/9193729106974201946.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/2174141621805202226/9193729106974201946.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/1154368140297198315.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/1154368140297198315.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/1429986646603186530.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/1429986646603186530.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/1759757160061815470.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/1759757160061815470.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/1856880530146024852.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/1856880530146024852.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/2107621130063558822.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/2107621130063558822.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/2210330978156716865.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/2210330978156716865.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/226194558815184469.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/226194558815184469.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/2294264170554072649.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/2294264170554072649.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/2338100141741378700.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/2338100141741378700.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/2664242552085591160.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/2664242552085591160.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/4141808344603307047.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/4141808344603307047.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/4336823459187513659.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/4336823459187513659.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/4936351647918463451.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/4936351647918463451.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/5277447887244513984.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/5277447887244513984.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/5365836610449437240.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/5365836610449437240.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/5729893900517220044.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/5729893900517220044.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/5791705091191197371.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/5791705091191197371.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/6286798491206224717.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/6286798491206224717.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/6565667673767663317.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/6565667673767663317.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/6821880759285822385.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/6821880759285822385.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/6861301118712375104.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/6861301118712375104.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/7102097068174020907.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/7102097068174020907.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/716627853629870554.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/716627853629870554.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/7428412737874116283.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/7428412737874116283.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/7529598842888354410.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/7529598842888354410.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/7789805002467068198.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/7789805002467068198.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/7998019344393253959.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/7998019344393253959.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/8420878014190433433.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/8420878014190433433.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/859620240410106048.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/859620240410106048.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/9192349918643831200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/279654528501157411/9192349918643831200.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/9184752844498045151/103242268807942079.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/9184752844498045151/103242268807942079.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/9184752844498045151/111210830303768901.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/9184752844498045151/111210830303768901.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/9184752844498045151/134752499938766672.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/9184752844498045151/134752499938766672.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/9184752844498045151/137346652900866932.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/9184752844498045151/137346652900866932.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/9184752844498045151/16664932325122540.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/9184752844498045151/16664932325122540.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/9184752844498045151/189555062021228789.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/9184752844498045151/189555062021228789.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/9184752844498045151/325764954000669503.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/9184752844498045151/325764954000669503.json -------------------------------------------------------------------------------- /results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/9184752844498045151/433214754686682653.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/fcgauss1905_20nodes_v1/synthetic_DCDI-G_unknown_interv/9184752844498045151/433214754686682653.json -------------------------------------------------------------------------------- /results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/1083126765058838771.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/1083126765058838771.json -------------------------------------------------------------------------------- /results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/1083759987527035298.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/1083759987527035298.json -------------------------------------------------------------------------------- /results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/1099574735845461834.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/1099574735845461834.json -------------------------------------------------------------------------------- /results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/1632245911598713959.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/1632245911598713959.json -------------------------------------------------------------------------------- /results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/1693695843090474940.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/1693695843090474940.json -------------------------------------------------------------------------------- /results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/1703629628276201262.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/1703629628276201262.json -------------------------------------------------------------------------------- /results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/1920221861891670227.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/1920221861891670227.json -------------------------------------------------------------------------------- /results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/2361758206021297053.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/2361758206021297053.json -------------------------------------------------------------------------------- /results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/2388690820909049170.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/2388690820909049170.json -------------------------------------------------------------------------------- /results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/251376645545873039.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/251376645545873039.json -------------------------------------------------------------------------------- /results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/3625538380838196684.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/3625538380838196684.json -------------------------------------------------------------------------------- /results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/3968125319877789911.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/3968125319877789911.json -------------------------------------------------------------------------------- /results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/4058829338936414871.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/4058829338936414871.json -------------------------------------------------------------------------------- /results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/4085376950209856101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/4085376950209856101.json -------------------------------------------------------------------------------- /results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/4216238572701132019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/results/lingauss1405_20nodes_v1/synthetic_IGSP_unknown_interv/1680928129342933286/4216238572701132019.json -------------------------------------------------------------------------------- /sergio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sergio/gene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/sergio/gene.py -------------------------------------------------------------------------------- /sergio/noise_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/sergio/noise_config.yaml -------------------------------------------------------------------------------- /sergio/sergio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/sergio/sergio.py -------------------------------------------------------------------------------- /sergio/sergio_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/sergio/sergio_mod.py -------------------------------------------------------------------------------- /sergio/sergio_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/sergio/sergio_sampler.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/setup.py -------------------------------------------------------------------------------- /visualization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /visualization/plot_from_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/visualization/plot_from_path.py -------------------------------------------------------------------------------- /visualization/plot_runtime_from_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/visualization/plot_runtime_from_path.py -------------------------------------------------------------------------------- /visualization/plot_specs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/visualization/plot_specs.py -------------------------------------------------------------------------------- /visualization/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haeggee/bacadi/HEAD/visualization/util.py --------------------------------------------------------------------------------