├── ABCEI ├── ab_net.py ├── evaluation.py ├── loader.py ├── logger.py ├── plotting.py └── util.py ├── LICENSE ├── README.md ├── abcei_param_search.py ├── abcei_train.py ├── configs └── ihdp.txt ├── data ├── ihdp_npci_1-100.test.npz └── ihdp_npci_1-100.train.npz ├── evaluate.py └── ihdp.sh /ABCEI/ab_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octeufer/Adversarial-Balancing-based-representation-learning-for-Causal-Effect-Inference/HEAD/ABCEI/ab_net.py -------------------------------------------------------------------------------- /ABCEI/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octeufer/Adversarial-Balancing-based-representation-learning-for-Causal-Effect-Inference/HEAD/ABCEI/evaluation.py -------------------------------------------------------------------------------- /ABCEI/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octeufer/Adversarial-Balancing-based-representation-learning-for-Causal-Effect-Inference/HEAD/ABCEI/loader.py -------------------------------------------------------------------------------- /ABCEI/logger.py: -------------------------------------------------------------------------------- 1 | class Logger(): 2 | VERBOSE = False 3 | -------------------------------------------------------------------------------- /ABCEI/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octeufer/Adversarial-Balancing-based-representation-learning-for-Causal-Effect-Inference/HEAD/ABCEI/plotting.py -------------------------------------------------------------------------------- /ABCEI/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octeufer/Adversarial-Balancing-based-representation-learning-for-Causal-Effect-Inference/HEAD/ABCEI/util.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octeufer/Adversarial-Balancing-based-representation-learning-for-Causal-Effect-Inference/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octeufer/Adversarial-Balancing-based-representation-learning-for-Causal-Effect-Inference/HEAD/README.md -------------------------------------------------------------------------------- /abcei_param_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octeufer/Adversarial-Balancing-based-representation-learning-for-Causal-Effect-Inference/HEAD/abcei_param_search.py -------------------------------------------------------------------------------- /abcei_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octeufer/Adversarial-Balancing-based-representation-learning-for-Causal-Effect-Inference/HEAD/abcei_train.py -------------------------------------------------------------------------------- /configs/ihdp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octeufer/Adversarial-Balancing-based-representation-learning-for-Causal-Effect-Inference/HEAD/configs/ihdp.txt -------------------------------------------------------------------------------- /data/ihdp_npci_1-100.test.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octeufer/Adversarial-Balancing-based-representation-learning-for-Causal-Effect-Inference/HEAD/data/ihdp_npci_1-100.test.npz -------------------------------------------------------------------------------- /data/ihdp_npci_1-100.train.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octeufer/Adversarial-Balancing-based-representation-learning-for-Causal-Effect-Inference/HEAD/data/ihdp_npci_1-100.train.npz -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octeufer/Adversarial-Balancing-based-representation-learning-for-Causal-Effect-Inference/HEAD/evaluate.py -------------------------------------------------------------------------------- /ihdp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octeufer/Adversarial-Balancing-based-representation-learning-for-Causal-Effect-Inference/HEAD/ihdp.sh --------------------------------------------------------------------------------