├── .gitignore ├── LICENSE ├── Makefile ├── README-dev.md ├── README.md ├── causal_da ├── ICML2020_api.py ├── __init__.py ├── algorithm │ ├── __init__.py │ ├── api.py │ └── ica_augmenter.py ├── api_support │ ├── __init__.py │ ├── assessment_base.py │ ├── evaluator.py │ ├── evaluator_runner.py │ ├── index_class_label.py │ ├── logging │ │ ├── __init__.py │ │ ├── base.py │ │ ├── model_logger.py │ │ ├── mongo_sacred.py │ │ └── param_history_manager.py │ └── validator │ │ ├── __init__.py │ │ ├── base.py │ │ ├── performance.py │ │ ├── scores.py │ │ └── timer.py ├── components │ ├── README.md │ ├── __init__.py │ ├── aug_predictor │ │ ├── __init__.py │ │ ├── aug_krr.py │ │ ├── base.py │ │ ├── partial_loo_krr.py │ │ └── util.py │ ├── ica_torch │ │ ├── GCL_nonlinear_ica_train.py │ │ ├── README.md │ │ ├── __init__.py │ │ ├── api.py │ │ ├── gcl_model.py │ │ ├── logging_util.py │ │ └── trainer_util.py │ └── inn_torch │ │ ├── __init__.py │ │ ├── glow_nonexponential.py │ │ ├── layers │ │ ├── __init__.py │ │ ├── actnorm.py │ │ ├── affine_coupling_layer.py │ │ └── invertible_linear.py │ │ └── wrappers │ │ ├── __init__.py │ │ └── sequential_flow.py └── contrib │ ├── __init__.py │ ├── evaluators.py │ └── evaluators_support │ ├── __init__.py │ ├── aug_info_assessment.py │ └── aug_krr_assessment.py ├── docs ├── .buildinfo ├── .doctrees │ ├── causal_da.algorithm.doctree │ ├── causal_da.api_support.doctree │ ├── causal_da.api_support.logging.doctree │ ├── causal_da.api_support.validator.doctree │ ├── causal_da.components.aug_predictor.doctree │ ├── causal_da.components.doctree │ ├── causal_da.components.ica_torch.doctree │ ├── causal_da.components.inn_torch.doctree │ ├── causal_da.components.inn_torch.layers.doctree │ ├── causal_da.components.inn_torch.wrappers.doctree │ ├── causal_da.contrib.doctree │ ├── causal_da.contrib.evaluators_support.doctree │ ├── causal_da.doctree │ ├── environment.pickle │ ├── index.doctree │ └── modules.doctree ├── .nojekyll ├── _sources │ ├── causal_da.algorithm.rst.txt │ ├── causal_da.api_support.logging.rst.txt │ ├── causal_da.api_support.rst.txt │ ├── causal_da.api_support.validator.rst.txt │ ├── causal_da.components.aug_predictor.rst.txt │ ├── causal_da.components.ica_torch.rst.txt │ ├── causal_da.components.inn_torch.layers.rst.txt │ ├── causal_da.components.inn_torch.rst.txt │ ├── causal_da.components.inn_torch.wrappers.rst.txt │ ├── causal_da.components.rst.txt │ ├── causal_da.contrib.evaluators_support.rst.txt │ ├── causal_da.contrib.rst.txt │ ├── causal_da.rst.txt │ ├── index.rst.txt │ └── modules.rst.txt ├── _static │ ├── 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 │ ├── doctools.js │ ├── documentation_options.js │ ├── file.png │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── 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 │ │ │ ├── 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.5.1.js │ ├── jquery.js │ ├── js │ │ ├── badge_only.js │ │ ├── html5shiv-printshiv.min.js │ │ ├── html5shiv.min.js │ │ ├── modernizr.min.js │ │ └── theme.js │ ├── language_data.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── underscore-1.3.1.js │ └── underscore.js ├── causal_da.algorithm.html ├── causal_da.api_support.html ├── causal_da.api_support.logging.html ├── causal_da.api_support.validator.html ├── causal_da.components.aug_predictor.html ├── causal_da.components.html ├── causal_da.components.ica_torch.html ├── causal_da.components.inn_torch.html ├── causal_da.components.inn_torch.layers.html ├── causal_da.components.inn_torch.wrappers.html ├── causal_da.contrib.evaluators_support.html ├── causal_da.contrib.html ├── causal_da.html ├── genindex.html ├── index.html ├── modules.html ├── objects.inv ├── py-modindex.html ├── search.html └── searchindex.js ├── docs_src ├── .gitignore ├── Makefile ├── README.md ├── apidoc_templates │ ├── module.rst_t │ ├── package.rst_t │ └── toc.rst_t ├── conf.py ├── coverage_badge.svg ├── docstr-coverage-output.txt ├── figs │ └── schema_problem_setup.png ├── index.rst ├── make.bat └── modules.rst ├── experiments └── icml2020 │ ├── .gitignore │ ├── README.md │ ├── __init__.py │ ├── config │ ├── config.yaml │ ├── data │ │ └── gasoline.yaml │ ├── database.yaml │ └── method │ │ └── causal_da.yaml │ ├── data │ ├── __init__.py │ ├── base.py │ ├── gasoline.py │ ├── gasoline_raw │ │ ├── README.md │ │ └── gasoline.csv │ └── util.py │ ├── format_results.ipynb │ ├── full_requirements.txt │ ├── output │ └── results_icml2020.tex │ ├── pickle │ ├── README.md │ ├── data │ │ ├── gasoline_AUSTRIA_0_AUSTRIA.dill │ │ ├── gasoline_AUSTRIA_1_AUSTRIA.dill │ │ ├── gasoline_AUSTRIA_2_AUSTRIA.dill │ │ ├── gasoline_AUSTRIA_3_AUSTRIA.dill │ │ ├── gasoline_AUSTRIA_4_AUSTRIA.dill │ │ ├── gasoline_AUSTRIA_5_AUSTRIA.dill │ │ ├── gasoline_AUSTRIA_6_AUSTRIA.dill │ │ ├── gasoline_AUSTRIA_7_AUSTRIA.dill │ │ ├── gasoline_AUSTRIA_8_AUSTRIA.dill │ │ ├── gasoline_AUSTRIA_9_AUSTRIA.dill │ │ ├── gasoline_BELGIUM_0_BELGIUM.dill │ │ ├── gasoline_BELGIUM_1_BELGIUM.dill │ │ ├── gasoline_BELGIUM_2_BELGIUM.dill │ │ ├── gasoline_BELGIUM_3_BELGIUM.dill │ │ ├── gasoline_BELGIUM_4_BELGIUM.dill │ │ ├── gasoline_BELGIUM_5_BELGIUM.dill │ │ ├── gasoline_BELGIUM_6_BELGIUM.dill │ │ ├── gasoline_BELGIUM_7_BELGIUM.dill │ │ ├── gasoline_BELGIUM_8_BELGIUM.dill │ │ ├── gasoline_BELGIUM_9_BELGIUM.dill │ │ ├── gasoline_CANADA_0_CANADA.dill │ │ ├── gasoline_CANADA_1_CANADA.dill │ │ ├── gasoline_CANADA_2_CANADA.dill │ │ ├── gasoline_CANADA_3_CANADA.dill │ │ ├── gasoline_CANADA_4_CANADA.dill │ │ ├── gasoline_CANADA_5_CANADA.dill │ │ ├── gasoline_CANADA_6_CANADA.dill │ │ ├── gasoline_CANADA_7_CANADA.dill │ │ ├── gasoline_CANADA_8_CANADA.dill │ │ ├── gasoline_CANADA_9_CANADA.dill │ │ ├── gasoline_DENMARK_0_DENMARK.dill │ │ ├── gasoline_DENMARK_1_DENMARK.dill │ │ ├── gasoline_DENMARK_2_DENMARK.dill │ │ ├── gasoline_DENMARK_3_DENMARK.dill │ │ ├── gasoline_DENMARK_4_DENMARK.dill │ │ ├── gasoline_DENMARK_5_DENMARK.dill │ │ ├── gasoline_DENMARK_6_DENMARK.dill │ │ ├── gasoline_DENMARK_7_DENMARK.dill │ │ ├── gasoline_DENMARK_8_DENMARK.dill │ │ ├── gasoline_DENMARK_9_DENMARK.dill │ │ ├── gasoline_FRANCE_0_FRANCE.dill │ │ ├── gasoline_FRANCE_1_FRANCE.dill │ │ ├── gasoline_FRANCE_2_FRANCE.dill │ │ ├── gasoline_FRANCE_3_FRANCE.dill │ │ ├── gasoline_FRANCE_4_FRANCE.dill │ │ ├── gasoline_FRANCE_5_FRANCE.dill │ │ ├── gasoline_FRANCE_6_FRANCE.dill │ │ ├── gasoline_FRANCE_7_FRANCE.dill │ │ ├── gasoline_FRANCE_8_FRANCE.dill │ │ ├── gasoline_FRANCE_9_FRANCE.dill │ │ ├── gasoline_GERMANY_0_GERMANY.dill │ │ ├── gasoline_GERMANY_1_GERMANY.dill │ │ ├── gasoline_GERMANY_2_GERMANY.dill │ │ ├── gasoline_GERMANY_3_GERMANY.dill │ │ ├── gasoline_GERMANY_4_GERMANY.dill │ │ ├── gasoline_GERMANY_5_GERMANY.dill │ │ ├── gasoline_GERMANY_6_GERMANY.dill │ │ ├── gasoline_GERMANY_7_GERMANY.dill │ │ ├── gasoline_GERMANY_8_GERMANY.dill │ │ ├── gasoline_GERMANY_9_GERMANY.dill │ │ ├── gasoline_GREECE_0_GREECE.dill │ │ ├── gasoline_GREECE_1_GREECE.dill │ │ ├── gasoline_GREECE_2_GREECE.dill │ │ ├── gasoline_GREECE_3_GREECE.dill │ │ ├── gasoline_GREECE_4_GREECE.dill │ │ ├── gasoline_GREECE_5_GREECE.dill │ │ ├── gasoline_GREECE_6_GREECE.dill │ │ ├── gasoline_GREECE_7_GREECE.dill │ │ ├── gasoline_GREECE_8_GREECE.dill │ │ ├── gasoline_GREECE_9_GREECE.dill │ │ ├── gasoline_IRELAND_0_IRELAND.dill │ │ ├── gasoline_IRELAND_1_IRELAND.dill │ │ ├── gasoline_IRELAND_2_IRELAND.dill │ │ ├── gasoline_IRELAND_3_IRELAND.dill │ │ ├── gasoline_IRELAND_4_IRELAND.dill │ │ ├── gasoline_IRELAND_5_IRELAND.dill │ │ ├── gasoline_IRELAND_6_IRELAND.dill │ │ ├── gasoline_IRELAND_7_IRELAND.dill │ │ ├── gasoline_IRELAND_8_IRELAND.dill │ │ ├── gasoline_IRELAND_9_IRELAND.dill │ │ ├── gasoline_ITALY_0_ITALY.dill │ │ ├── gasoline_ITALY_1_ITALY.dill │ │ ├── gasoline_ITALY_2_ITALY.dill │ │ ├── gasoline_ITALY_3_ITALY.dill │ │ ├── gasoline_ITALY_4_ITALY.dill │ │ ├── gasoline_ITALY_5_ITALY.dill │ │ ├── gasoline_ITALY_6_ITALY.dill │ │ ├── gasoline_ITALY_7_ITALY.dill │ │ ├── gasoline_ITALY_8_ITALY.dill │ │ ├── gasoline_ITALY_9_ITALY.dill │ │ ├── gasoline_JAPAN_0_JAPAN.dill │ │ ├── gasoline_JAPAN_1_JAPAN.dill │ │ ├── gasoline_JAPAN_2_JAPAN.dill │ │ ├── gasoline_JAPAN_3_JAPAN.dill │ │ ├── gasoline_JAPAN_4_JAPAN.dill │ │ ├── gasoline_JAPAN_5_JAPAN.dill │ │ ├── gasoline_JAPAN_6_JAPAN.dill │ │ ├── gasoline_JAPAN_7_JAPAN.dill │ │ ├── gasoline_JAPAN_8_JAPAN.dill │ │ ├── gasoline_JAPAN_9_JAPAN.dill │ │ ├── gasoline_NETHERLA_0_NETHERLA.dill │ │ ├── gasoline_NETHERLA_1_NETHERLA.dill │ │ ├── gasoline_NETHERLA_2_NETHERLA.dill │ │ ├── gasoline_NETHERLA_3_NETHERLA.dill │ │ ├── gasoline_NETHERLA_4_NETHERLA.dill │ │ ├── gasoline_NETHERLA_5_NETHERLA.dill │ │ ├── gasoline_NETHERLA_6_NETHERLA.dill │ │ ├── gasoline_NETHERLA_7_NETHERLA.dill │ │ ├── gasoline_NETHERLA_8_NETHERLA.dill │ │ ├── gasoline_NETHERLA_9_NETHERLA.dill │ │ ├── gasoline_NORWAY_0_NORWAY.dill │ │ ├── gasoline_NORWAY_1_NORWAY.dill │ │ ├── gasoline_NORWAY_2_NORWAY.dill │ │ ├── gasoline_NORWAY_3_NORWAY.dill │ │ ├── gasoline_NORWAY_4_NORWAY.dill │ │ ├── gasoline_NORWAY_5_NORWAY.dill │ │ ├── gasoline_NORWAY_6_NORWAY.dill │ │ ├── gasoline_NORWAY_7_NORWAY.dill │ │ ├── gasoline_NORWAY_8_NORWAY.dill │ │ ├── gasoline_NORWAY_9_NORWAY.dill │ │ ├── gasoline_SPAIN_0_SPAIN.dill │ │ ├── gasoline_SPAIN_1_SPAIN.dill │ │ ├── gasoline_SPAIN_2_SPAIN.dill │ │ ├── gasoline_SPAIN_3_SPAIN.dill │ │ ├── gasoline_SPAIN_4_SPAIN.dill │ │ ├── gasoline_SPAIN_5_SPAIN.dill │ │ ├── gasoline_SPAIN_6_SPAIN.dill │ │ ├── gasoline_SPAIN_7_SPAIN.dill │ │ ├── gasoline_SPAIN_8_SPAIN.dill │ │ ├── gasoline_SPAIN_9_SPAIN.dill │ │ ├── gasoline_SWEDEN_0_SWEDEN.dill │ │ ├── gasoline_SWEDEN_1_SWEDEN.dill │ │ ├── gasoline_SWEDEN_2_SWEDEN.dill │ │ ├── gasoline_SWEDEN_3_SWEDEN.dill │ │ ├── gasoline_SWEDEN_4_SWEDEN.dill │ │ ├── gasoline_SWEDEN_5_SWEDEN.dill │ │ ├── gasoline_SWEDEN_6_SWEDEN.dill │ │ ├── gasoline_SWEDEN_7_SWEDEN.dill │ │ ├── gasoline_SWEDEN_8_SWEDEN.dill │ │ ├── gasoline_SWEDEN_9_SWEDEN.dill │ │ ├── gasoline_SWITZERL_0_SWITZERL.dill │ │ ├── gasoline_SWITZERL_1_SWITZERL.dill │ │ ├── gasoline_SWITZERL_2_SWITZERL.dill │ │ ├── gasoline_SWITZERL_3_SWITZERL.dill │ │ ├── gasoline_SWITZERL_4_SWITZERL.dill │ │ ├── gasoline_SWITZERL_5_SWITZERL.dill │ │ ├── gasoline_SWITZERL_6_SWITZERL.dill │ │ ├── gasoline_SWITZERL_7_SWITZERL.dill │ │ ├── gasoline_SWITZERL_8_SWITZERL.dill │ │ ├── gasoline_SWITZERL_9_SWITZERL.dill │ │ ├── gasoline_TURKEY_0_TURKEY.dill │ │ ├── gasoline_TURKEY_1_TURKEY.dill │ │ ├── gasoline_TURKEY_2_TURKEY.dill │ │ ├── gasoline_TURKEY_3_TURKEY.dill │ │ ├── gasoline_TURKEY_4_TURKEY.dill │ │ ├── gasoline_TURKEY_5_TURKEY.dill │ │ ├── gasoline_TURKEY_6_TURKEY.dill │ │ ├── gasoline_TURKEY_7_TURKEY.dill │ │ ├── gasoline_TURKEY_8_TURKEY.dill │ │ ├── gasoline_TURKEY_9_TURKEY.dill │ │ ├── gasoline_U.K._0_U.K..dill │ │ ├── gasoline_U.K._1_U.K..dill │ │ ├── gasoline_U.K._2_U.K..dill │ │ ├── gasoline_U.K._3_U.K..dill │ │ ├── gasoline_U.K._4_U.K..dill │ │ ├── gasoline_U.K._5_U.K..dill │ │ ├── gasoline_U.K._6_U.K..dill │ │ ├── gasoline_U.K._7_U.K..dill │ │ ├── gasoline_U.K._8_U.K..dill │ │ ├── gasoline_U.K._9_U.K..dill │ │ ├── gasoline_U.S.A._0_U.S.A..dill │ │ ├── gasoline_U.S.A._1_U.S.A..dill │ │ ├── gasoline_U.S.A._2_U.S.A..dill │ │ ├── gasoline_U.S.A._3_U.S.A..dill │ │ ├── gasoline_U.S.A._4_U.S.A..dill │ │ ├── gasoline_U.S.A._5_U.S.A..dill │ │ ├── gasoline_U.S.A._6_U.S.A..dill │ │ ├── gasoline_U.S.A._7_U.S.A..dill │ │ ├── gasoline_U.S.A._8_U.S.A..dill │ │ └── gasoline_U.S.A._9_U.S.A..dill │ └── records │ │ ├── icml2020_baseline_records.pkl │ │ ├── icml2020_proposed_raw_metrics.pkl │ │ └── icml2020_proposed_records.pkl │ ├── requirements.txt │ ├── results_icml2020.tex.j2 │ ├── run_experiment.py │ ├── scripts │ ├── config.sh │ ├── mongo.sh │ ├── omniboard.sh │ └── run_all_experiments.sh │ └── support │ ├── __init__.py │ ├── data.py │ ├── database │ ├── __init__.py │ ├── mongo.py │ └── records_aggregator.py │ ├── evaluate.py │ ├── mexlet │ ├── __init__.py │ ├── jupyter.py │ ├── latex │ │ ├── __init__.py │ │ └── util.py │ ├── records │ │ ├── __init__.py │ │ ├── aggregator.py │ │ └── virtual_validation.py │ └── views │ │ ├── __init__.py │ │ ├── pandas.py │ │ └── sacred.py │ └── util.py ├── requirements-dev.txt ├── requirements-full.txt ├── requirements.txt ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/Makefile -------------------------------------------------------------------------------- /README-dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/README-dev.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/README.md -------------------------------------------------------------------------------- /causal_da/ICML2020_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/ICML2020_api.py -------------------------------------------------------------------------------- /causal_da/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /causal_da/algorithm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /causal_da/algorithm/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/algorithm/api.py -------------------------------------------------------------------------------- /causal_da/algorithm/ica_augmenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/algorithm/ica_augmenter.py -------------------------------------------------------------------------------- /causal_da/api_support/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /causal_da/api_support/assessment_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/api_support/assessment_base.py -------------------------------------------------------------------------------- /causal_da/api_support/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/api_support/evaluator.py -------------------------------------------------------------------------------- /causal_da/api_support/evaluator_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/api_support/evaluator_runner.py -------------------------------------------------------------------------------- /causal_da/api_support/index_class_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/api_support/index_class_label.py -------------------------------------------------------------------------------- /causal_da/api_support/logging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/api_support/logging/__init__.py -------------------------------------------------------------------------------- /causal_da/api_support/logging/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/api_support/logging/base.py -------------------------------------------------------------------------------- /causal_da/api_support/logging/model_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/api_support/logging/model_logger.py -------------------------------------------------------------------------------- /causal_da/api_support/logging/mongo_sacred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/api_support/logging/mongo_sacred.py -------------------------------------------------------------------------------- /causal_da/api_support/logging/param_history_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/api_support/logging/param_history_manager.py -------------------------------------------------------------------------------- /causal_da/api_support/validator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/api_support/validator/__init__.py -------------------------------------------------------------------------------- /causal_da/api_support/validator/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/api_support/validator/base.py -------------------------------------------------------------------------------- /causal_da/api_support/validator/performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/api_support/validator/performance.py -------------------------------------------------------------------------------- /causal_da/api_support/validator/scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/api_support/validator/scores.py -------------------------------------------------------------------------------- /causal_da/api_support/validator/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/api_support/validator/timer.py -------------------------------------------------------------------------------- /causal_da/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/components/README.md -------------------------------------------------------------------------------- /causal_da/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /causal_da/components/aug_predictor/__init__.py: -------------------------------------------------------------------------------- 1 | from .aug_krr import * 2 | -------------------------------------------------------------------------------- /causal_da/components/aug_predictor/aug_krr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/components/aug_predictor/aug_krr.py -------------------------------------------------------------------------------- /causal_da/components/aug_predictor/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/components/aug_predictor/base.py -------------------------------------------------------------------------------- /causal_da/components/aug_predictor/partial_loo_krr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/components/aug_predictor/partial_loo_krr.py -------------------------------------------------------------------------------- /causal_da/components/aug_predictor/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/components/aug_predictor/util.py -------------------------------------------------------------------------------- /causal_da/components/ica_torch/GCL_nonlinear_ica_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/components/ica_torch/GCL_nonlinear_ica_train.py -------------------------------------------------------------------------------- /causal_da/components/ica_torch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/components/ica_torch/README.md -------------------------------------------------------------------------------- /causal_da/components/ica_torch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /causal_da/components/ica_torch/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/components/ica_torch/api.py -------------------------------------------------------------------------------- /causal_da/components/ica_torch/gcl_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/components/ica_torch/gcl_model.py -------------------------------------------------------------------------------- /causal_da/components/ica_torch/logging_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/components/ica_torch/logging_util.py -------------------------------------------------------------------------------- /causal_da/components/ica_torch/trainer_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/components/ica_torch/trainer_util.py -------------------------------------------------------------------------------- /causal_da/components/inn_torch/__init__.py: -------------------------------------------------------------------------------- 1 | from .glow_nonexponential import * 2 | -------------------------------------------------------------------------------- /causal_da/components/inn_torch/glow_nonexponential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/components/inn_torch/glow_nonexponential.py -------------------------------------------------------------------------------- /causal_da/components/inn_torch/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/components/inn_torch/layers/__init__.py -------------------------------------------------------------------------------- /causal_da/components/inn_torch/layers/actnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/components/inn_torch/layers/actnorm.py -------------------------------------------------------------------------------- /causal_da/components/inn_torch/layers/affine_coupling_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/components/inn_torch/layers/affine_coupling_layer.py -------------------------------------------------------------------------------- /causal_da/components/inn_torch/layers/invertible_linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/components/inn_torch/layers/invertible_linear.py -------------------------------------------------------------------------------- /causal_da/components/inn_torch/wrappers/__init__.py: -------------------------------------------------------------------------------- 1 | from .sequential_flow import * 2 | -------------------------------------------------------------------------------- /causal_da/components/inn_torch/wrappers/sequential_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/components/inn_torch/wrappers/sequential_flow.py -------------------------------------------------------------------------------- /causal_da/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /causal_da/contrib/evaluators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/contrib/evaluators.py -------------------------------------------------------------------------------- /causal_da/contrib/evaluators_support/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /causal_da/contrib/evaluators_support/aug_info_assessment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/contrib/evaluators_support/aug_info_assessment.py -------------------------------------------------------------------------------- /causal_da/contrib/evaluators_support/aug_krr_assessment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/causal_da/contrib/evaluators_support/aug_krr_assessment.py -------------------------------------------------------------------------------- /docs/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/.buildinfo -------------------------------------------------------------------------------- /docs/.doctrees/causal_da.algorithm.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/.doctrees/causal_da.algorithm.doctree -------------------------------------------------------------------------------- /docs/.doctrees/causal_da.api_support.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/.doctrees/causal_da.api_support.doctree -------------------------------------------------------------------------------- /docs/.doctrees/causal_da.api_support.logging.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/.doctrees/causal_da.api_support.logging.doctree -------------------------------------------------------------------------------- /docs/.doctrees/causal_da.api_support.validator.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/.doctrees/causal_da.api_support.validator.doctree -------------------------------------------------------------------------------- /docs/.doctrees/causal_da.components.aug_predictor.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/.doctrees/causal_da.components.aug_predictor.doctree -------------------------------------------------------------------------------- /docs/.doctrees/causal_da.components.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/.doctrees/causal_da.components.doctree -------------------------------------------------------------------------------- /docs/.doctrees/causal_da.components.ica_torch.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/.doctrees/causal_da.components.ica_torch.doctree -------------------------------------------------------------------------------- /docs/.doctrees/causal_da.components.inn_torch.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/.doctrees/causal_da.components.inn_torch.doctree -------------------------------------------------------------------------------- /docs/.doctrees/causal_da.components.inn_torch.layers.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/.doctrees/causal_da.components.inn_torch.layers.doctree -------------------------------------------------------------------------------- /docs/.doctrees/causal_da.components.inn_torch.wrappers.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/.doctrees/causal_da.components.inn_torch.wrappers.doctree -------------------------------------------------------------------------------- /docs/.doctrees/causal_da.contrib.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/.doctrees/causal_da.contrib.doctree -------------------------------------------------------------------------------- /docs/.doctrees/causal_da.contrib.evaluators_support.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/.doctrees/causal_da.contrib.evaluators_support.doctree -------------------------------------------------------------------------------- /docs/.doctrees/causal_da.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/.doctrees/causal_da.doctree -------------------------------------------------------------------------------- /docs/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/.doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/.doctrees/index.doctree -------------------------------------------------------------------------------- /docs/.doctrees/modules.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/.doctrees/modules.doctree -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_sources/causal_da.algorithm.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_sources/causal_da.algorithm.rst.txt -------------------------------------------------------------------------------- /docs/_sources/causal_da.api_support.logging.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_sources/causal_da.api_support.logging.rst.txt -------------------------------------------------------------------------------- /docs/_sources/causal_da.api_support.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_sources/causal_da.api_support.rst.txt -------------------------------------------------------------------------------- /docs/_sources/causal_da.api_support.validator.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_sources/causal_da.api_support.validator.rst.txt -------------------------------------------------------------------------------- /docs/_sources/causal_da.components.aug_predictor.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_sources/causal_da.components.aug_predictor.rst.txt -------------------------------------------------------------------------------- /docs/_sources/causal_da.components.ica_torch.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_sources/causal_da.components.ica_torch.rst.txt -------------------------------------------------------------------------------- /docs/_sources/causal_da.components.inn_torch.layers.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_sources/causal_da.components.inn_torch.layers.rst.txt -------------------------------------------------------------------------------- /docs/_sources/causal_da.components.inn_torch.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_sources/causal_da.components.inn_torch.rst.txt -------------------------------------------------------------------------------- /docs/_sources/causal_da.components.inn_torch.wrappers.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_sources/causal_da.components.inn_torch.wrappers.rst.txt -------------------------------------------------------------------------------- /docs/_sources/causal_da.components.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_sources/causal_da.components.rst.txt -------------------------------------------------------------------------------- /docs/_sources/causal_da.contrib.evaluators_support.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_sources/causal_da.contrib.evaluators_support.rst.txt -------------------------------------------------------------------------------- /docs/_sources/causal_da.contrib.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_sources/causal_da.contrib.rst.txt -------------------------------------------------------------------------------- /docs/_sources/causal_da.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_sources/causal_da.rst.txt -------------------------------------------------------------------------------- /docs/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/_sources/modules.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_sources/modules.rst.txt -------------------------------------------------------------------------------- /docs/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/basic.css -------------------------------------------------------------------------------- /docs/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/css/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/css/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/css/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/css/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/css/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/css/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/css/fonts/lato-bold.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/css/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/css/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/css/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/css/fonts/lato-normal.woff -------------------------------------------------------------------------------- /docs/_static/css/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/css/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /docs/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/css/theme.css -------------------------------------------------------------------------------- /docs/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/doctools.js -------------------------------------------------------------------------------- /docs/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/file.png -------------------------------------------------------------------------------- /docs/_static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/Lato/lato-bold.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/Lato/lato-bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/Lato/lato-bold.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/Lato/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/Lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/Lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/Lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/Lato/lato-bolditalic.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/Lato/lato-italic.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/Lato/lato-italic.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/Lato/lato-italic.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/Lato/lato-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/Lato/lato-regular.eot -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/Lato/lato-regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/Lato/lato-regular.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Lato/lato-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/Lato/lato-regular.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Roboto-Slab-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/Roboto-Slab-Light.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Roboto-Slab-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/Roboto-Slab-Light.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/Roboto-Slab-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/Roboto-Slab-Thin.woff -------------------------------------------------------------------------------- /docs/_static/fonts/Roboto-Slab-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/Roboto-Slab-Thin.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.eot -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.eot -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff -------------------------------------------------------------------------------- /docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/_static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /docs/_static/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/lato-bold.woff -------------------------------------------------------------------------------- /docs/_static/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /docs/_static/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /docs/_static/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/lato-normal.woff -------------------------------------------------------------------------------- /docs/_static/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /docs/_static/jquery-3.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/jquery-3.5.1.js -------------------------------------------------------------------------------- /docs/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/jquery.js -------------------------------------------------------------------------------- /docs/_static/js/badge_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/js/badge_only.js -------------------------------------------------------------------------------- /docs/_static/js/html5shiv-printshiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/js/html5shiv-printshiv.min.js -------------------------------------------------------------------------------- /docs/_static/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/js/html5shiv.min.js -------------------------------------------------------------------------------- /docs/_static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/js/modernizr.min.js -------------------------------------------------------------------------------- /docs/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/js/theme.js -------------------------------------------------------------------------------- /docs/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/language_data.js -------------------------------------------------------------------------------- /docs/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/minus.png -------------------------------------------------------------------------------- /docs/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/plus.png -------------------------------------------------------------------------------- /docs/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/pygments.css -------------------------------------------------------------------------------- /docs/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/_static/underscore.js -------------------------------------------------------------------------------- /docs/causal_da.algorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/causal_da.algorithm.html -------------------------------------------------------------------------------- /docs/causal_da.api_support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/causal_da.api_support.html -------------------------------------------------------------------------------- /docs/causal_da.api_support.logging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/causal_da.api_support.logging.html -------------------------------------------------------------------------------- /docs/causal_da.api_support.validator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/causal_da.api_support.validator.html -------------------------------------------------------------------------------- /docs/causal_da.components.aug_predictor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/causal_da.components.aug_predictor.html -------------------------------------------------------------------------------- /docs/causal_da.components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/causal_da.components.html -------------------------------------------------------------------------------- /docs/causal_da.components.ica_torch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/causal_da.components.ica_torch.html -------------------------------------------------------------------------------- /docs/causal_da.components.inn_torch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/causal_da.components.inn_torch.html -------------------------------------------------------------------------------- /docs/causal_da.components.inn_torch.layers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/causal_da.components.inn_torch.layers.html -------------------------------------------------------------------------------- /docs/causal_da.components.inn_torch.wrappers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/causal_da.components.inn_torch.wrappers.html -------------------------------------------------------------------------------- /docs/causal_da.contrib.evaluators_support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/causal_da.contrib.evaluators_support.html -------------------------------------------------------------------------------- /docs/causal_da.contrib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/causal_da.contrib.html -------------------------------------------------------------------------------- /docs/causal_da.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/causal_da.html -------------------------------------------------------------------------------- /docs/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/genindex.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/modules.html -------------------------------------------------------------------------------- /docs/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/objects.inv -------------------------------------------------------------------------------- /docs/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/py-modindex.html -------------------------------------------------------------------------------- /docs/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/search.html -------------------------------------------------------------------------------- /docs/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs/searchindex.js -------------------------------------------------------------------------------- /docs_src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs_src/.gitignore -------------------------------------------------------------------------------- /docs_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs_src/Makefile -------------------------------------------------------------------------------- /docs_src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs_src/README.md -------------------------------------------------------------------------------- /docs_src/apidoc_templates/module.rst_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs_src/apidoc_templates/module.rst_t -------------------------------------------------------------------------------- /docs_src/apidoc_templates/package.rst_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs_src/apidoc_templates/package.rst_t -------------------------------------------------------------------------------- /docs_src/apidoc_templates/toc.rst_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs_src/apidoc_templates/toc.rst_t -------------------------------------------------------------------------------- /docs_src/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs_src/conf.py -------------------------------------------------------------------------------- /docs_src/coverage_badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs_src/coverage_badge.svg -------------------------------------------------------------------------------- /docs_src/docstr-coverage-output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs_src/docstr-coverage-output.txt -------------------------------------------------------------------------------- /docs_src/figs/schema_problem_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs_src/figs/schema_problem_setup.png -------------------------------------------------------------------------------- /docs_src/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs_src/index.rst -------------------------------------------------------------------------------- /docs_src/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs_src/make.bat -------------------------------------------------------------------------------- /docs_src/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/docs_src/modules.rst -------------------------------------------------------------------------------- /experiments/icml2020/.gitignore: -------------------------------------------------------------------------------- 1 | mongodb/ 2 | outputs/ -------------------------------------------------------------------------------- /experiments/icml2020/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/README.md -------------------------------------------------------------------------------- /experiments/icml2020/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /experiments/icml2020/config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/config/config.yaml -------------------------------------------------------------------------------- /experiments/icml2020/config/data/gasoline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/config/data/gasoline.yaml -------------------------------------------------------------------------------- /experiments/icml2020/config/database.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/config/database.yaml -------------------------------------------------------------------------------- /experiments/icml2020/config/method/causal_da.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/config/method/causal_da.yaml -------------------------------------------------------------------------------- /experiments/icml2020/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /experiments/icml2020/data/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/data/base.py -------------------------------------------------------------------------------- /experiments/icml2020/data/gasoline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/data/gasoline.py -------------------------------------------------------------------------------- /experiments/icml2020/data/gasoline_raw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/data/gasoline_raw/README.md -------------------------------------------------------------------------------- /experiments/icml2020/data/gasoline_raw/gasoline.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/data/gasoline_raw/gasoline.csv -------------------------------------------------------------------------------- /experiments/icml2020/data/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/data/util.py -------------------------------------------------------------------------------- /experiments/icml2020/format_results.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/format_results.ipynb -------------------------------------------------------------------------------- /experiments/icml2020/full_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/full_requirements.txt -------------------------------------------------------------------------------- /experiments/icml2020/output/results_icml2020.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/output/results_icml2020.tex -------------------------------------------------------------------------------- /experiments/icml2020/pickle/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_AUSTRIA_0_AUSTRIA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_AUSTRIA_0_AUSTRIA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_AUSTRIA_1_AUSTRIA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_AUSTRIA_1_AUSTRIA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_AUSTRIA_2_AUSTRIA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_AUSTRIA_2_AUSTRIA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_AUSTRIA_3_AUSTRIA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_AUSTRIA_3_AUSTRIA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_AUSTRIA_4_AUSTRIA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_AUSTRIA_4_AUSTRIA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_AUSTRIA_5_AUSTRIA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_AUSTRIA_5_AUSTRIA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_AUSTRIA_6_AUSTRIA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_AUSTRIA_6_AUSTRIA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_AUSTRIA_7_AUSTRIA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_AUSTRIA_7_AUSTRIA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_AUSTRIA_8_AUSTRIA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_AUSTRIA_8_AUSTRIA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_AUSTRIA_9_AUSTRIA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_AUSTRIA_9_AUSTRIA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_BELGIUM_0_BELGIUM.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_BELGIUM_0_BELGIUM.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_BELGIUM_1_BELGIUM.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_BELGIUM_1_BELGIUM.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_BELGIUM_2_BELGIUM.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_BELGIUM_2_BELGIUM.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_BELGIUM_3_BELGIUM.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_BELGIUM_3_BELGIUM.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_BELGIUM_4_BELGIUM.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_BELGIUM_4_BELGIUM.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_BELGIUM_5_BELGIUM.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_BELGIUM_5_BELGIUM.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_BELGIUM_6_BELGIUM.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_BELGIUM_6_BELGIUM.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_BELGIUM_7_BELGIUM.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_BELGIUM_7_BELGIUM.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_BELGIUM_8_BELGIUM.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_BELGIUM_8_BELGIUM.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_BELGIUM_9_BELGIUM.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_BELGIUM_9_BELGIUM.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_CANADA_0_CANADA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_CANADA_0_CANADA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_CANADA_1_CANADA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_CANADA_1_CANADA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_CANADA_2_CANADA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_CANADA_2_CANADA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_CANADA_3_CANADA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_CANADA_3_CANADA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_CANADA_4_CANADA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_CANADA_4_CANADA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_CANADA_5_CANADA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_CANADA_5_CANADA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_CANADA_6_CANADA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_CANADA_6_CANADA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_CANADA_7_CANADA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_CANADA_7_CANADA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_CANADA_8_CANADA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_CANADA_8_CANADA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_CANADA_9_CANADA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_CANADA_9_CANADA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_DENMARK_0_DENMARK.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_DENMARK_0_DENMARK.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_DENMARK_1_DENMARK.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_DENMARK_1_DENMARK.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_DENMARK_2_DENMARK.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_DENMARK_2_DENMARK.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_DENMARK_3_DENMARK.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_DENMARK_3_DENMARK.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_DENMARK_4_DENMARK.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_DENMARK_4_DENMARK.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_DENMARK_5_DENMARK.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_DENMARK_5_DENMARK.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_DENMARK_6_DENMARK.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_DENMARK_6_DENMARK.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_DENMARK_7_DENMARK.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_DENMARK_7_DENMARK.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_DENMARK_8_DENMARK.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_DENMARK_8_DENMARK.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_DENMARK_9_DENMARK.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_DENMARK_9_DENMARK.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_FRANCE_0_FRANCE.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_FRANCE_0_FRANCE.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_FRANCE_1_FRANCE.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_FRANCE_1_FRANCE.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_FRANCE_2_FRANCE.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_FRANCE_2_FRANCE.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_FRANCE_3_FRANCE.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_FRANCE_3_FRANCE.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_FRANCE_4_FRANCE.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_FRANCE_4_FRANCE.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_FRANCE_5_FRANCE.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_FRANCE_5_FRANCE.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_FRANCE_6_FRANCE.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_FRANCE_6_FRANCE.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_FRANCE_7_FRANCE.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_FRANCE_7_FRANCE.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_FRANCE_8_FRANCE.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_FRANCE_8_FRANCE.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_FRANCE_9_FRANCE.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_FRANCE_9_FRANCE.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_GERMANY_0_GERMANY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_GERMANY_0_GERMANY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_GERMANY_1_GERMANY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_GERMANY_1_GERMANY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_GERMANY_2_GERMANY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_GERMANY_2_GERMANY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_GERMANY_3_GERMANY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_GERMANY_3_GERMANY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_GERMANY_4_GERMANY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_GERMANY_4_GERMANY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_GERMANY_5_GERMANY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_GERMANY_5_GERMANY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_GERMANY_6_GERMANY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_GERMANY_6_GERMANY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_GERMANY_7_GERMANY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_GERMANY_7_GERMANY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_GERMANY_8_GERMANY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_GERMANY_8_GERMANY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_GERMANY_9_GERMANY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_GERMANY_9_GERMANY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_GREECE_0_GREECE.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_GREECE_0_GREECE.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_GREECE_1_GREECE.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_GREECE_1_GREECE.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_GREECE_2_GREECE.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_GREECE_2_GREECE.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_GREECE_3_GREECE.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_GREECE_3_GREECE.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_GREECE_4_GREECE.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_GREECE_4_GREECE.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_GREECE_5_GREECE.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_GREECE_5_GREECE.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_GREECE_6_GREECE.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_GREECE_6_GREECE.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_GREECE_7_GREECE.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_GREECE_7_GREECE.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_GREECE_8_GREECE.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_GREECE_8_GREECE.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_GREECE_9_GREECE.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_GREECE_9_GREECE.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_IRELAND_0_IRELAND.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_IRELAND_0_IRELAND.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_IRELAND_1_IRELAND.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_IRELAND_1_IRELAND.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_IRELAND_2_IRELAND.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_IRELAND_2_IRELAND.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_IRELAND_3_IRELAND.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_IRELAND_3_IRELAND.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_IRELAND_4_IRELAND.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_IRELAND_4_IRELAND.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_IRELAND_5_IRELAND.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_IRELAND_5_IRELAND.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_IRELAND_6_IRELAND.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_IRELAND_6_IRELAND.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_IRELAND_7_IRELAND.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_IRELAND_7_IRELAND.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_IRELAND_8_IRELAND.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_IRELAND_8_IRELAND.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_IRELAND_9_IRELAND.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_IRELAND_9_IRELAND.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_ITALY_0_ITALY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_ITALY_0_ITALY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_ITALY_1_ITALY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_ITALY_1_ITALY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_ITALY_2_ITALY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_ITALY_2_ITALY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_ITALY_3_ITALY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_ITALY_3_ITALY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_ITALY_4_ITALY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_ITALY_4_ITALY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_ITALY_5_ITALY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_ITALY_5_ITALY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_ITALY_6_ITALY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_ITALY_6_ITALY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_ITALY_7_ITALY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_ITALY_7_ITALY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_ITALY_8_ITALY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_ITALY_8_ITALY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_ITALY_9_ITALY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_ITALY_9_ITALY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_JAPAN_0_JAPAN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_JAPAN_0_JAPAN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_JAPAN_1_JAPAN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_JAPAN_1_JAPAN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_JAPAN_2_JAPAN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_JAPAN_2_JAPAN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_JAPAN_3_JAPAN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_JAPAN_3_JAPAN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_JAPAN_4_JAPAN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_JAPAN_4_JAPAN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_JAPAN_5_JAPAN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_JAPAN_5_JAPAN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_JAPAN_6_JAPAN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_JAPAN_6_JAPAN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_JAPAN_7_JAPAN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_JAPAN_7_JAPAN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_JAPAN_8_JAPAN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_JAPAN_8_JAPAN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_JAPAN_9_JAPAN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_JAPAN_9_JAPAN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_NETHERLA_0_NETHERLA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_NETHERLA_0_NETHERLA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_NETHERLA_1_NETHERLA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_NETHERLA_1_NETHERLA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_NETHERLA_2_NETHERLA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_NETHERLA_2_NETHERLA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_NETHERLA_3_NETHERLA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_NETHERLA_3_NETHERLA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_NETHERLA_4_NETHERLA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_NETHERLA_4_NETHERLA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_NETHERLA_5_NETHERLA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_NETHERLA_5_NETHERLA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_NETHERLA_6_NETHERLA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_NETHERLA_6_NETHERLA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_NETHERLA_7_NETHERLA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_NETHERLA_7_NETHERLA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_NETHERLA_8_NETHERLA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_NETHERLA_8_NETHERLA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_NETHERLA_9_NETHERLA.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_NETHERLA_9_NETHERLA.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_NORWAY_0_NORWAY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_NORWAY_0_NORWAY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_NORWAY_1_NORWAY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_NORWAY_1_NORWAY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_NORWAY_2_NORWAY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_NORWAY_2_NORWAY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_NORWAY_3_NORWAY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_NORWAY_3_NORWAY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_NORWAY_4_NORWAY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_NORWAY_4_NORWAY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_NORWAY_5_NORWAY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_NORWAY_5_NORWAY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_NORWAY_6_NORWAY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_NORWAY_6_NORWAY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_NORWAY_7_NORWAY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_NORWAY_7_NORWAY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_NORWAY_8_NORWAY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_NORWAY_8_NORWAY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_NORWAY_9_NORWAY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_NORWAY_9_NORWAY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SPAIN_0_SPAIN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SPAIN_0_SPAIN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SPAIN_1_SPAIN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SPAIN_1_SPAIN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SPAIN_2_SPAIN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SPAIN_2_SPAIN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SPAIN_3_SPAIN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SPAIN_3_SPAIN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SPAIN_4_SPAIN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SPAIN_4_SPAIN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SPAIN_5_SPAIN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SPAIN_5_SPAIN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SPAIN_6_SPAIN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SPAIN_6_SPAIN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SPAIN_7_SPAIN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SPAIN_7_SPAIN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SPAIN_8_SPAIN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SPAIN_8_SPAIN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SPAIN_9_SPAIN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SPAIN_9_SPAIN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SWEDEN_0_SWEDEN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SWEDEN_0_SWEDEN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SWEDEN_1_SWEDEN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SWEDEN_1_SWEDEN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SWEDEN_2_SWEDEN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SWEDEN_2_SWEDEN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SWEDEN_3_SWEDEN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SWEDEN_3_SWEDEN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SWEDEN_4_SWEDEN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SWEDEN_4_SWEDEN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SWEDEN_5_SWEDEN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SWEDEN_5_SWEDEN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SWEDEN_6_SWEDEN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SWEDEN_6_SWEDEN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SWEDEN_7_SWEDEN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SWEDEN_7_SWEDEN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SWEDEN_8_SWEDEN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SWEDEN_8_SWEDEN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SWEDEN_9_SWEDEN.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SWEDEN_9_SWEDEN.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SWITZERL_0_SWITZERL.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SWITZERL_0_SWITZERL.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SWITZERL_1_SWITZERL.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SWITZERL_1_SWITZERL.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SWITZERL_2_SWITZERL.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SWITZERL_2_SWITZERL.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SWITZERL_3_SWITZERL.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SWITZERL_3_SWITZERL.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SWITZERL_4_SWITZERL.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SWITZERL_4_SWITZERL.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SWITZERL_5_SWITZERL.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SWITZERL_5_SWITZERL.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SWITZERL_6_SWITZERL.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SWITZERL_6_SWITZERL.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SWITZERL_7_SWITZERL.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SWITZERL_7_SWITZERL.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SWITZERL_8_SWITZERL.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SWITZERL_8_SWITZERL.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_SWITZERL_9_SWITZERL.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_SWITZERL_9_SWITZERL.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_TURKEY_0_TURKEY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_TURKEY_0_TURKEY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_TURKEY_1_TURKEY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_TURKEY_1_TURKEY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_TURKEY_2_TURKEY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_TURKEY_2_TURKEY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_TURKEY_3_TURKEY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_TURKEY_3_TURKEY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_TURKEY_4_TURKEY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_TURKEY_4_TURKEY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_TURKEY_5_TURKEY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_TURKEY_5_TURKEY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_TURKEY_6_TURKEY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_TURKEY_6_TURKEY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_TURKEY_7_TURKEY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_TURKEY_7_TURKEY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_TURKEY_8_TURKEY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_TURKEY_8_TURKEY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_TURKEY_9_TURKEY.dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_TURKEY_9_TURKEY.dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_U.K._0_U.K..dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_U.K._0_U.K..dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_U.K._1_U.K..dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_U.K._1_U.K..dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_U.K._2_U.K..dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_U.K._2_U.K..dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_U.K._3_U.K..dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_U.K._3_U.K..dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_U.K._4_U.K..dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_U.K._4_U.K..dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_U.K._5_U.K..dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_U.K._5_U.K..dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_U.K._6_U.K..dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_U.K._6_U.K..dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_U.K._7_U.K..dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_U.K._7_U.K..dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_U.K._8_U.K..dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_U.K._8_U.K..dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_U.K._9_U.K..dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_U.K._9_U.K..dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_U.S.A._0_U.S.A..dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_U.S.A._0_U.S.A..dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_U.S.A._1_U.S.A..dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_U.S.A._1_U.S.A..dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_U.S.A._2_U.S.A..dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_U.S.A._2_U.S.A..dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_U.S.A._3_U.S.A..dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_U.S.A._3_U.S.A..dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_U.S.A._4_U.S.A..dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_U.S.A._4_U.S.A..dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_U.S.A._5_U.S.A..dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_U.S.A._5_U.S.A..dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_U.S.A._6_U.S.A..dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_U.S.A._6_U.S.A..dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_U.S.A._7_U.S.A..dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_U.S.A._7_U.S.A..dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_U.S.A._8_U.S.A..dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_U.S.A._8_U.S.A..dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/data/gasoline_U.S.A._9_U.S.A..dill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/data/gasoline_U.S.A._9_U.S.A..dill -------------------------------------------------------------------------------- /experiments/icml2020/pickle/records/icml2020_baseline_records.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/records/icml2020_baseline_records.pkl -------------------------------------------------------------------------------- /experiments/icml2020/pickle/records/icml2020_proposed_raw_metrics.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/records/icml2020_proposed_raw_metrics.pkl -------------------------------------------------------------------------------- /experiments/icml2020/pickle/records/icml2020_proposed_records.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/pickle/records/icml2020_proposed_records.pkl -------------------------------------------------------------------------------- /experiments/icml2020/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/requirements.txt -------------------------------------------------------------------------------- /experiments/icml2020/results_icml2020.tex.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/results_icml2020.tex.j2 -------------------------------------------------------------------------------- /experiments/icml2020/run_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/run_experiment.py -------------------------------------------------------------------------------- /experiments/icml2020/scripts/config.sh: -------------------------------------------------------------------------------- 1 | MONGODB_DBPATH=/experiments/remote/mongodb 2 | -------------------------------------------------------------------------------- /experiments/icml2020/scripts/mongo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/scripts/mongo.sh -------------------------------------------------------------------------------- /experiments/icml2020/scripts/omniboard.sh: -------------------------------------------------------------------------------- 1 | PORT=9001 omniboard --mu "mongodb://me:pass@localhost:27017/sacred" 2 | -------------------------------------------------------------------------------- /experiments/icml2020/scripts/run_all_experiments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/scripts/run_all_experiments.sh -------------------------------------------------------------------------------- /experiments/icml2020/support/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /experiments/icml2020/support/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/support/data.py -------------------------------------------------------------------------------- /experiments/icml2020/support/database/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /experiments/icml2020/support/database/mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/support/database/mongo.py -------------------------------------------------------------------------------- /experiments/icml2020/support/database/records_aggregator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/support/database/records_aggregator.py -------------------------------------------------------------------------------- /experiments/icml2020/support/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/support/evaluate.py -------------------------------------------------------------------------------- /experiments/icml2020/support/mexlet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /experiments/icml2020/support/mexlet/jupyter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/support/mexlet/jupyter.py -------------------------------------------------------------------------------- /experiments/icml2020/support/mexlet/latex/__init__.py: -------------------------------------------------------------------------------- 1 | from .util import tex_escape 2 | -------------------------------------------------------------------------------- /experiments/icml2020/support/mexlet/latex/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/support/mexlet/latex/util.py -------------------------------------------------------------------------------- /experiments/icml2020/support/mexlet/records/__init__.py: -------------------------------------------------------------------------------- 1 | from .virtual_validation import * 2 | -------------------------------------------------------------------------------- /experiments/icml2020/support/mexlet/records/aggregator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/support/mexlet/records/aggregator.py -------------------------------------------------------------------------------- /experiments/icml2020/support/mexlet/records/virtual_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/support/mexlet/records/virtual_validation.py -------------------------------------------------------------------------------- /experiments/icml2020/support/mexlet/views/__init__.py: -------------------------------------------------------------------------------- 1 | from .pandas import * 2 | -------------------------------------------------------------------------------- /experiments/icml2020/support/mexlet/views/pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/support/mexlet/views/pandas.py -------------------------------------------------------------------------------- /experiments/icml2020/support/mexlet/views/sacred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/support/mexlet/views/sacred.py -------------------------------------------------------------------------------- /experiments/icml2020/support/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/experiments/icml2020/support/util.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements-full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/requirements-full.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [yapf] 2 | based_on_style = pep8 3 | split_before_logical_operator = true -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/takeshi-teshima/few-shot-domain-adaptation-by-causal-mechanism-transfer/HEAD/setup.py --------------------------------------------------------------------------------