├── .coveragerc ├── .github └── workflows │ ├── build.yml │ ├── flowdelete.yml │ ├── formatter.yml │ └── testinst.yml ├── .gitignore ├── .readthedocs.yaml ├── LICENSE.md ├── MLAB_data.txt ├── README.md ├── X_redux.csv ├── augmented_cali.csv ├── basedata ├── CURSim.py ├── Curacao_EXP.csv ├── Curacao_EXP_922.csv ├── Data.csv ├── HongKong.csv ├── HubeiSCM.csv ├── Tyla_data.csv ├── basque_data.csv ├── german_reunification.csv ├── smoking_data.csv └── trust.dta ├── book.bib ├── coverage.svg ├── dev ├── exp.py ├── proxfunctions.py └── proximalsc.py ├── docs ├── Makefile ├── about.rst ├── clustersc.rst ├── conf.py ├── data.rst ├── est.rst ├── exp.rst ├── fdid.rst ├── fma.rst ├── fscm.rst ├── helpers.rst ├── index.rst ├── pda.rst ├── proximal.rst ├── references.rst ├── requirements.txt ├── scmo.rst ├── selector.rst ├── shc.rst ├── si.rst ├── spill.rst ├── src.rst ├── static │ └── custom_mathjax.js └── tssc.rst ├── examples ├── FMA │ └── HK_Integration.png ├── GermanyCLUSTERSC.py ├── L1PDA │ └── HK_Integration.png ├── PROXIMAL │ ├── PanicProx.png │ └── PanicSurrogates.png ├── TSSC │ ├── Showroom.png │ └── treatedvsdonors.png ├── clustersc │ ├── Cluster_Germany.png │ └── German.png ├── extended │ └── Spotify.py ├── fdid │ └── FDID_Basque.png ├── fdidbasque.py ├── fma.py ├── fsPDA │ └── HK_Integration_fs.png ├── l2relax │ └── HK_Integration.png ├── paneldata.py ├── proximal.py ├── theme.py └── tssc.py ├── mlsynth ├── __init__.py ├── config_models.py ├── estimators │ ├── __init__.py │ ├── clustersc.py │ ├── fdid.py │ ├── fma.py │ ├── fscm.py │ ├── laxscm.py │ ├── nsc.py │ ├── pda.py │ ├── proximal.py │ ├── scexp.py │ ├── scmo.py │ ├── sdid.py │ ├── shc.py │ ├── si.py │ ├── src.py │ └── tssc.py ├── exceptions.py ├── tests │ ├── conftest.py │ ├── exp_simdata.py │ ├── test_bayesutils.py │ ├── test_clustersc.py │ ├── test_config_models.py │ ├── test_datautils.py │ ├── test_denoiseutils.py │ ├── test_estutils.py │ ├── test_fdid.py │ ├── test_fma.py │ ├── test_fscm.py │ ├── test_helperutils.py │ ├── test_inferutils.py │ ├── test_marex.py │ ├── test_nsc.py │ ├── test_pda.py │ ├── test_proximal.py │ ├── test_resultutils.py │ ├── test_scmo.py │ ├── test_sdid.py │ ├── test_sdidutils.py │ ├── test_selectorutils.py │ ├── test_si.py │ ├── test_src.py │ └── test_tssc.py └── utils │ ├── __init__.py │ ├── bayesutils.py │ ├── datautils.py │ ├── denoiseutils.py │ ├── estutils.py │ ├── exprelutils.py │ ├── exputils.py │ ├── helperutils.py │ ├── inferutils.py │ ├── resultutils.py │ ├── sdidutils.py │ ├── selector_helpers.py │ ├── selectorsutils.py │ └── spillover.py ├── ols.qmd ├── regols.qmd ├── requirements.txt └── setup.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/flowdelete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/.github/workflows/flowdelete.yml -------------------------------------------------------------------------------- /.github/workflows/formatter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/.github/workflows/formatter.yml -------------------------------------------------------------------------------- /.github/workflows/testinst.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/.github/workflows/testinst.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MLAB_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/MLAB_data.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/README.md -------------------------------------------------------------------------------- /X_redux.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/X_redux.csv -------------------------------------------------------------------------------- /augmented_cali.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/augmented_cali.csv -------------------------------------------------------------------------------- /basedata/CURSim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/basedata/CURSim.py -------------------------------------------------------------------------------- /basedata/Curacao_EXP.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/basedata/Curacao_EXP.csv -------------------------------------------------------------------------------- /basedata/Curacao_EXP_922.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/basedata/Curacao_EXP_922.csv -------------------------------------------------------------------------------- /basedata/Data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/basedata/Data.csv -------------------------------------------------------------------------------- /basedata/HongKong.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/basedata/HongKong.csv -------------------------------------------------------------------------------- /basedata/HubeiSCM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/basedata/HubeiSCM.csv -------------------------------------------------------------------------------- /basedata/Tyla_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/basedata/Tyla_data.csv -------------------------------------------------------------------------------- /basedata/basque_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/basedata/basque_data.csv -------------------------------------------------------------------------------- /basedata/german_reunification.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/basedata/german_reunification.csv -------------------------------------------------------------------------------- /basedata/smoking_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/basedata/smoking_data.csv -------------------------------------------------------------------------------- /basedata/trust.dta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/basedata/trust.dta -------------------------------------------------------------------------------- /book.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/book.bib -------------------------------------------------------------------------------- /coverage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/coverage.svg -------------------------------------------------------------------------------- /dev/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/dev/exp.py -------------------------------------------------------------------------------- /dev/proxfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/dev/proxfunctions.py -------------------------------------------------------------------------------- /dev/proximalsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/dev/proximalsc.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/about.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/docs/about.rst -------------------------------------------------------------------------------- /docs/clustersc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/docs/clustersc.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/docs/data.rst -------------------------------------------------------------------------------- /docs/est.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/docs/est.rst -------------------------------------------------------------------------------- /docs/exp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/docs/exp.rst -------------------------------------------------------------------------------- /docs/fdid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/docs/fdid.rst -------------------------------------------------------------------------------- /docs/fma.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/docs/fma.rst -------------------------------------------------------------------------------- /docs/fscm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/docs/fscm.rst -------------------------------------------------------------------------------- /docs/helpers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/docs/helpers.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/pda.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/docs/pda.rst -------------------------------------------------------------------------------- /docs/proximal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/docs/proximal.rst -------------------------------------------------------------------------------- /docs/references.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/docs/references.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/scmo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/docs/scmo.rst -------------------------------------------------------------------------------- /docs/selector.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/docs/selector.rst -------------------------------------------------------------------------------- /docs/shc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/docs/shc.rst -------------------------------------------------------------------------------- /docs/si.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/docs/si.rst -------------------------------------------------------------------------------- /docs/spill.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/docs/spill.rst -------------------------------------------------------------------------------- /docs/src.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/docs/src.rst -------------------------------------------------------------------------------- /docs/static/custom_mathjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/docs/static/custom_mathjax.js -------------------------------------------------------------------------------- /docs/tssc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/docs/tssc.rst -------------------------------------------------------------------------------- /examples/FMA/HK_Integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/examples/FMA/HK_Integration.png -------------------------------------------------------------------------------- /examples/GermanyCLUSTERSC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/examples/GermanyCLUSTERSC.py -------------------------------------------------------------------------------- /examples/L1PDA/HK_Integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/examples/L1PDA/HK_Integration.png -------------------------------------------------------------------------------- /examples/PROXIMAL/PanicProx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/examples/PROXIMAL/PanicProx.png -------------------------------------------------------------------------------- /examples/PROXIMAL/PanicSurrogates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/examples/PROXIMAL/PanicSurrogates.png -------------------------------------------------------------------------------- /examples/TSSC/Showroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/examples/TSSC/Showroom.png -------------------------------------------------------------------------------- /examples/TSSC/treatedvsdonors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/examples/TSSC/treatedvsdonors.png -------------------------------------------------------------------------------- /examples/clustersc/Cluster_Germany.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/examples/clustersc/Cluster_Germany.png -------------------------------------------------------------------------------- /examples/clustersc/German.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/examples/clustersc/German.png -------------------------------------------------------------------------------- /examples/extended/Spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/examples/extended/Spotify.py -------------------------------------------------------------------------------- /examples/fdid/FDID_Basque.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/examples/fdid/FDID_Basque.png -------------------------------------------------------------------------------- /examples/fdidbasque.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/examples/fdidbasque.py -------------------------------------------------------------------------------- /examples/fma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/examples/fma.py -------------------------------------------------------------------------------- /examples/fsPDA/HK_Integration_fs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/examples/fsPDA/HK_Integration_fs.png -------------------------------------------------------------------------------- /examples/l2relax/HK_Integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/examples/l2relax/HK_Integration.png -------------------------------------------------------------------------------- /examples/paneldata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/examples/paneldata.py -------------------------------------------------------------------------------- /examples/proximal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/examples/proximal.py -------------------------------------------------------------------------------- /examples/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/examples/theme.py -------------------------------------------------------------------------------- /examples/tssc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/examples/tssc.py -------------------------------------------------------------------------------- /mlsynth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/__init__.py -------------------------------------------------------------------------------- /mlsynth/config_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/config_models.py -------------------------------------------------------------------------------- /mlsynth/estimators/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mlsynth/estimators/clustersc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/estimators/clustersc.py -------------------------------------------------------------------------------- /mlsynth/estimators/fdid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/estimators/fdid.py -------------------------------------------------------------------------------- /mlsynth/estimators/fma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/estimators/fma.py -------------------------------------------------------------------------------- /mlsynth/estimators/fscm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/estimators/fscm.py -------------------------------------------------------------------------------- /mlsynth/estimators/laxscm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/estimators/laxscm.py -------------------------------------------------------------------------------- /mlsynth/estimators/nsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/estimators/nsc.py -------------------------------------------------------------------------------- /mlsynth/estimators/pda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/estimators/pda.py -------------------------------------------------------------------------------- /mlsynth/estimators/proximal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/estimators/proximal.py -------------------------------------------------------------------------------- /mlsynth/estimators/scexp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/estimators/scexp.py -------------------------------------------------------------------------------- /mlsynth/estimators/scmo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/estimators/scmo.py -------------------------------------------------------------------------------- /mlsynth/estimators/sdid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/estimators/sdid.py -------------------------------------------------------------------------------- /mlsynth/estimators/shc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/estimators/shc.py -------------------------------------------------------------------------------- /mlsynth/estimators/si.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/estimators/si.py -------------------------------------------------------------------------------- /mlsynth/estimators/src.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/estimators/src.py -------------------------------------------------------------------------------- /mlsynth/estimators/tssc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/estimators/tssc.py -------------------------------------------------------------------------------- /mlsynth/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/exceptions.py -------------------------------------------------------------------------------- /mlsynth/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/tests/conftest.py -------------------------------------------------------------------------------- /mlsynth/tests/exp_simdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/tests/exp_simdata.py -------------------------------------------------------------------------------- /mlsynth/tests/test_bayesutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/tests/test_bayesutils.py -------------------------------------------------------------------------------- /mlsynth/tests/test_clustersc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/tests/test_clustersc.py -------------------------------------------------------------------------------- /mlsynth/tests/test_config_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/tests/test_config_models.py -------------------------------------------------------------------------------- /mlsynth/tests/test_datautils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/tests/test_datautils.py -------------------------------------------------------------------------------- /mlsynth/tests/test_denoiseutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/tests/test_denoiseutils.py -------------------------------------------------------------------------------- /mlsynth/tests/test_estutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/tests/test_estutils.py -------------------------------------------------------------------------------- /mlsynth/tests/test_fdid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/tests/test_fdid.py -------------------------------------------------------------------------------- /mlsynth/tests/test_fma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/tests/test_fma.py -------------------------------------------------------------------------------- /mlsynth/tests/test_fscm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/tests/test_fscm.py -------------------------------------------------------------------------------- /mlsynth/tests/test_helperutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/tests/test_helperutils.py -------------------------------------------------------------------------------- /mlsynth/tests/test_inferutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/tests/test_inferutils.py -------------------------------------------------------------------------------- /mlsynth/tests/test_marex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/tests/test_marex.py -------------------------------------------------------------------------------- /mlsynth/tests/test_nsc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/tests/test_nsc.py -------------------------------------------------------------------------------- /mlsynth/tests/test_pda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/tests/test_pda.py -------------------------------------------------------------------------------- /mlsynth/tests/test_proximal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/tests/test_proximal.py -------------------------------------------------------------------------------- /mlsynth/tests/test_resultutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/tests/test_resultutils.py -------------------------------------------------------------------------------- /mlsynth/tests/test_scmo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/tests/test_scmo.py -------------------------------------------------------------------------------- /mlsynth/tests/test_sdid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/tests/test_sdid.py -------------------------------------------------------------------------------- /mlsynth/tests/test_sdidutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/tests/test_sdidutils.py -------------------------------------------------------------------------------- /mlsynth/tests/test_selectorutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/tests/test_selectorutils.py -------------------------------------------------------------------------------- /mlsynth/tests/test_si.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/tests/test_si.py -------------------------------------------------------------------------------- /mlsynth/tests/test_src.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/tests/test_src.py -------------------------------------------------------------------------------- /mlsynth/tests/test_tssc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/tests/test_tssc.py -------------------------------------------------------------------------------- /mlsynth/utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /mlsynth/utils/bayesutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/utils/bayesutils.py -------------------------------------------------------------------------------- /mlsynth/utils/datautils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/utils/datautils.py -------------------------------------------------------------------------------- /mlsynth/utils/denoiseutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/utils/denoiseutils.py -------------------------------------------------------------------------------- /mlsynth/utils/estutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/utils/estutils.py -------------------------------------------------------------------------------- /mlsynth/utils/exprelutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/utils/exprelutils.py -------------------------------------------------------------------------------- /mlsynth/utils/exputils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/utils/exputils.py -------------------------------------------------------------------------------- /mlsynth/utils/helperutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/utils/helperutils.py -------------------------------------------------------------------------------- /mlsynth/utils/inferutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/utils/inferutils.py -------------------------------------------------------------------------------- /mlsynth/utils/resultutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/utils/resultutils.py -------------------------------------------------------------------------------- /mlsynth/utils/sdidutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/utils/sdidutils.py -------------------------------------------------------------------------------- /mlsynth/utils/selector_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/utils/selector_helpers.py -------------------------------------------------------------------------------- /mlsynth/utils/selectorsutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/utils/selectorsutils.py -------------------------------------------------------------------------------- /mlsynth/utils/spillover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/mlsynth/utils/spillover.py -------------------------------------------------------------------------------- /ols.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/ols.qmd -------------------------------------------------------------------------------- /regols.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/regols.qmd -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgreathouse9/mlsynth/HEAD/setup.py --------------------------------------------------------------------------------