├── .DS_Store ├── 2_dim_experiments ├── W2-minimax-tf.py ├── baselines │ ├── __pycache__ │ │ ├── base_model.cpython-36.pyc │ │ ├── bot_model.cpython-36.pyc │ │ ├── data_loader.cpython-36.pyc │ │ ├── losses.cpython-36.pyc │ │ ├── networks.cpython-36.pyc │ │ ├── options.cpython-36.pyc │ │ ├── utils.cpython-36.pyc │ │ ├── w1_model.cpython-36.pyc │ │ └── w2_model.cpython-36.pyc │ ├── bary_ot_8gaussians │ │ ├── trial_1 │ │ │ ├── data.npy │ │ │ ├── final_transport_plot.pdf │ │ │ ├── final_transport_plot.png │ │ │ ├── images │ │ │ │ ├── assignment.png │ │ │ │ ├── data.png │ │ │ │ ├── gz_000001.png │ │ │ │ ├── gz_010000.png │ │ │ │ ├── gz_020000.png │ │ │ │ ├── gz_030000.png │ │ │ │ ├── gz_040000.png │ │ │ │ ├── gz_050000.png │ │ │ │ ├── gz_060000.png │ │ │ │ ├── gz_070000.png │ │ │ │ ├── gz_080000.png │ │ │ │ ├── gz_090000.png │ │ │ │ ├── gz_100000.png │ │ │ │ ├── gz_110000.png │ │ │ │ ├── gz_120000.png │ │ │ │ ├── gz_130000.png │ │ │ │ ├── gz_140000.png │ │ │ │ ├── gz_150000.png │ │ │ │ ├── gz_160000.png │ │ │ │ ├── gz_170000.png │ │ │ │ ├── gz_180000.png │ │ │ │ ├── gz_190000.png │ │ │ │ ├── gz_200000.png │ │ │ │ ├── tx_000001.png │ │ │ │ ├── tx_010000.png │ │ │ │ ├── tx_020000.png │ │ │ │ ├── tx_030000.png │ │ │ │ ├── tx_040000.png │ │ │ │ ├── tx_050000.png │ │ │ │ ├── tx_060000.png │ │ │ │ ├── tx_070000.png │ │ │ │ ├── tx_080000.png │ │ │ │ ├── tx_090000.png │ │ │ │ ├── tx_100000.png │ │ │ │ ├── tx_110000.png │ │ │ │ ├── tx_120000.png │ │ │ │ ├── tx_130000.png │ │ │ │ ├── tx_140000.png │ │ │ │ ├── tx_150000.png │ │ │ │ ├── tx_160000.png │ │ │ │ ├── tx_170000.png │ │ │ │ ├── tx_180000.png │ │ │ │ ├── tx_190000.png │ │ │ │ ├── tx_200000.png │ │ │ │ ├── ty_000001.png │ │ │ │ ├── ty_010000.png │ │ │ │ ├── ty_020000.png │ │ │ │ ├── ty_030000.png │ │ │ │ ├── ty_040000.png │ │ │ │ ├── ty_050000.png │ │ │ │ ├── ty_060000.png │ │ │ │ ├── ty_070000.png │ │ │ │ ├── ty_080000.png │ │ │ │ ├── ty_090000.png │ │ │ │ ├── ty_100000.png │ │ │ │ ├── ty_110000.png │ │ │ │ ├── ty_120000.png │ │ │ │ ├── ty_130000.png │ │ │ │ ├── ty_140000.png │ │ │ │ ├── ty_150000.png │ │ │ │ ├── ty_160000.png │ │ │ │ ├── ty_170000.png │ │ │ │ ├── ty_180000.png │ │ │ │ ├── ty_190000.png │ │ │ │ └── ty_200000.png │ │ │ └── models │ │ │ │ ├── gen.pkl │ │ │ │ ├── phi.pkl │ │ │ │ └── psi.pkl │ │ ├── trial_2 │ │ │ ├── data.npy │ │ │ ├── final_transport_plot.pdf │ │ │ ├── final_transport_plot.png │ │ │ ├── images │ │ │ │ ├── assignment.png │ │ │ │ ├── data.png │ │ │ │ ├── gz_000001.png │ │ │ │ ├── gz_010000.png │ │ │ │ ├── gz_020000.png │ │ │ │ ├── gz_030000.png │ │ │ │ ├── gz_040000.png │ │ │ │ ├── gz_050000.png │ │ │ │ ├── gz_060000.png │ │ │ │ ├── gz_070000.png │ │ │ │ ├── gz_080000.png │ │ │ │ ├── gz_090000.png │ │ │ │ ├── gz_100000.png │ │ │ │ ├── gz_110000.png │ │ │ │ ├── gz_120000.png │ │ │ │ ├── gz_130000.png │ │ │ │ ├── gz_140000.png │ │ │ │ ├── gz_150000.png │ │ │ │ ├── gz_160000.png │ │ │ │ ├── gz_170000.png │ │ │ │ ├── gz_180000.png │ │ │ │ ├── gz_190000.png │ │ │ │ ├── gz_200000.png │ │ │ │ ├── tx_000001.png │ │ │ │ ├── tx_010000.png │ │ │ │ ├── tx_020000.png │ │ │ │ ├── tx_030000.png │ │ │ │ ├── tx_040000.png │ │ │ │ ├── tx_050000.png │ │ │ │ ├── tx_060000.png │ │ │ │ ├── tx_070000.png │ │ │ │ ├── tx_080000.png │ │ │ │ ├── tx_090000.png │ │ │ │ ├── tx_100000.png │ │ │ │ ├── tx_110000.png │ │ │ │ ├── tx_120000.png │ │ │ │ ├── tx_130000.png │ │ │ │ ├── tx_140000.png │ │ │ │ ├── tx_150000.png │ │ │ │ ├── tx_160000.png │ │ │ │ ├── tx_170000.png │ │ │ │ ├── tx_180000.png │ │ │ │ ├── tx_190000.png │ │ │ │ ├── tx_200000.png │ │ │ │ ├── ty_000001.png │ │ │ │ ├── ty_010000.png │ │ │ │ ├── ty_020000.png │ │ │ │ ├── ty_030000.png │ │ │ │ ├── ty_040000.png │ │ │ │ ├── ty_050000.png │ │ │ │ ├── ty_060000.png │ │ │ │ ├── ty_070000.png │ │ │ │ ├── ty_080000.png │ │ │ │ ├── ty_090000.png │ │ │ │ ├── ty_100000.png │ │ │ │ ├── ty_110000.png │ │ │ │ ├── ty_120000.png │ │ │ │ ├── ty_130000.png │ │ │ │ ├── ty_140000.png │ │ │ │ ├── ty_150000.png │ │ │ │ ├── ty_160000.png │ │ │ │ ├── ty_170000.png │ │ │ │ ├── ty_180000.png │ │ │ │ ├── ty_190000.png │ │ │ │ └── ty_200000.png │ │ │ └── models │ │ │ │ ├── gen.pkl │ │ │ │ ├── phi.pkl │ │ │ │ └── psi.pkl │ │ └── trial_3 │ │ │ ├── data.npy │ │ │ ├── final_transport_plot.pdf │ │ │ ├── final_transport_plot.png │ │ │ ├── images │ │ │ ├── assignment.png │ │ │ ├── data.png │ │ │ ├── gz_000001.png │ │ │ ├── gz_010000.png │ │ │ ├── gz_020000.png │ │ │ ├── gz_030000.png │ │ │ ├── gz_040000.png │ │ │ ├── gz_050000.png │ │ │ ├── gz_060000.png │ │ │ ├── gz_070000.png │ │ │ ├── gz_080000.png │ │ │ ├── gz_090000.png │ │ │ ├── gz_100000.png │ │ │ ├── gz_110000.png │ │ │ ├── gz_120000.png │ │ │ ├── gz_130000.png │ │ │ ├── gz_140000.png │ │ │ ├── gz_150000.png │ │ │ ├── gz_160000.png │ │ │ ├── gz_170000.png │ │ │ ├── gz_180000.png │ │ │ ├── gz_190000.png │ │ │ ├── gz_200000.png │ │ │ ├── tx_000001.png │ │ │ ├── tx_010000.png │ │ │ ├── tx_020000.png │ │ │ ├── tx_030000.png │ │ │ ├── tx_040000.png │ │ │ ├── tx_050000.png │ │ │ ├── tx_060000.png │ │ │ ├── tx_070000.png │ │ │ ├── tx_080000.png │ │ │ ├── tx_090000.png │ │ │ ├── tx_100000.png │ │ │ ├── tx_110000.png │ │ │ ├── tx_120000.png │ │ │ ├── tx_130000.png │ │ │ ├── tx_140000.png │ │ │ ├── tx_150000.png │ │ │ ├── tx_160000.png │ │ │ ├── tx_170000.png │ │ │ ├── tx_180000.png │ │ │ ├── tx_190000.png │ │ │ ├── tx_200000.png │ │ │ ├── ty_000001.png │ │ │ ├── ty_010000.png │ │ │ ├── ty_020000.png │ │ │ ├── ty_030000.png │ │ │ ├── ty_040000.png │ │ │ ├── ty_050000.png │ │ │ ├── ty_060000.png │ │ │ ├── ty_070000.png │ │ │ ├── ty_080000.png │ │ │ ├── ty_090000.png │ │ │ ├── ty_100000.png │ │ │ ├── ty_110000.png │ │ │ ├── ty_120000.png │ │ │ ├── ty_130000.png │ │ │ ├── ty_140000.png │ │ │ ├── ty_150000.png │ │ │ ├── ty_160000.png │ │ │ ├── ty_170000.png │ │ │ ├── ty_180000.png │ │ │ ├── ty_190000.png │ │ │ └── ty_200000.png │ │ │ └── models │ │ │ ├── gen.pkl │ │ │ ├── phi.pkl │ │ │ └── psi.pkl │ ├── bary_ot_our_checkerboard │ │ ├── trial_1 │ │ │ ├── data.npy │ │ │ ├── final_transport_plot.pdf │ │ │ ├── final_transport_plot.png │ │ │ ├── images │ │ │ │ ├── assignment.png │ │ │ │ ├── data.png │ │ │ │ ├── gz_000001.png │ │ │ │ ├── gz_010000.png │ │ │ │ ├── gz_020000.png │ │ │ │ ├── gz_030000.png │ │ │ │ ├── gz_040000.png │ │ │ │ ├── gz_050000.png │ │ │ │ ├── gz_060000.png │ │ │ │ ├── gz_070000.png │ │ │ │ ├── gz_080000.png │ │ │ │ ├── gz_090000.png │ │ │ │ ├── gz_100000.png │ │ │ │ ├── gz_110000.png │ │ │ │ ├── gz_120000.png │ │ │ │ ├── gz_130000.png │ │ │ │ ├── gz_140000.png │ │ │ │ ├── gz_150000.png │ │ │ │ ├── gz_160000.png │ │ │ │ ├── gz_170000.png │ │ │ │ ├── gz_180000.png │ │ │ │ ├── gz_190000.png │ │ │ │ ├── gz_200000.png │ │ │ │ ├── tx_000001.png │ │ │ │ ├── tx_010000.png │ │ │ │ ├── tx_020000.png │ │ │ │ ├── tx_030000.png │ │ │ │ ├── tx_040000.png │ │ │ │ ├── tx_050000.png │ │ │ │ ├── tx_060000.png │ │ │ │ ├── tx_070000.png │ │ │ │ ├── tx_080000.png │ │ │ │ ├── tx_090000.png │ │ │ │ ├── tx_100000.png │ │ │ │ ├── tx_110000.png │ │ │ │ ├── tx_120000.png │ │ │ │ ├── tx_130000.png │ │ │ │ ├── tx_140000.png │ │ │ │ ├── tx_150000.png │ │ │ │ ├── tx_160000.png │ │ │ │ ├── tx_170000.png │ │ │ │ ├── tx_180000.png │ │ │ │ ├── tx_190000.png │ │ │ │ ├── tx_200000.png │ │ │ │ ├── ty_000001.png │ │ │ │ ├── ty_010000.png │ │ │ │ ├── ty_020000.png │ │ │ │ ├── ty_030000.png │ │ │ │ ├── ty_040000.png │ │ │ │ ├── ty_050000.png │ │ │ │ ├── ty_060000.png │ │ │ │ ├── ty_070000.png │ │ │ │ ├── ty_080000.png │ │ │ │ ├── ty_090000.png │ │ │ │ ├── ty_100000.png │ │ │ │ ├── ty_110000.png │ │ │ │ ├── ty_120000.png │ │ │ │ ├── ty_130000.png │ │ │ │ ├── ty_140000.png │ │ │ │ ├── ty_150000.png │ │ │ │ ├── ty_160000.png │ │ │ │ ├── ty_170000.png │ │ │ │ ├── ty_180000.png │ │ │ │ ├── ty_190000.png │ │ │ │ └── ty_200000.png │ │ │ └── models │ │ │ │ ├── gen.pkl │ │ │ │ ├── phi.pkl │ │ │ │ └── psi.pkl │ │ ├── trial_2 │ │ │ ├── data.npy │ │ │ ├── final_transport_plot.pdf │ │ │ ├── final_transport_plot.png │ │ │ ├── images │ │ │ │ ├── assignment.png │ │ │ │ ├── data.png │ │ │ │ ├── gz_000001.png │ │ │ │ ├── gz_010000.png │ │ │ │ ├── gz_020000.png │ │ │ │ ├── gz_030000.png │ │ │ │ ├── gz_040000.png │ │ │ │ ├── gz_050000.png │ │ │ │ ├── gz_060000.png │ │ │ │ ├── gz_070000.png │ │ │ │ ├── gz_080000.png │ │ │ │ ├── gz_090000.png │ │ │ │ ├── gz_100000.png │ │ │ │ ├── gz_110000.png │ │ │ │ ├── gz_120000.png │ │ │ │ ├── gz_130000.png │ │ │ │ ├── gz_140000.png │ │ │ │ ├── gz_150000.png │ │ │ │ ├── gz_160000.png │ │ │ │ ├── gz_170000.png │ │ │ │ ├── gz_180000.png │ │ │ │ ├── gz_190000.png │ │ │ │ ├── gz_200000.png │ │ │ │ ├── tx_000001.png │ │ │ │ ├── tx_010000.png │ │ │ │ ├── tx_020000.png │ │ │ │ ├── tx_030000.png │ │ │ │ ├── tx_040000.png │ │ │ │ ├── tx_050000.png │ │ │ │ ├── tx_060000.png │ │ │ │ ├── tx_070000.png │ │ │ │ ├── tx_080000.png │ │ │ │ ├── tx_090000.png │ │ │ │ ├── tx_100000.png │ │ │ │ ├── tx_110000.png │ │ │ │ ├── tx_120000.png │ │ │ │ ├── tx_130000.png │ │ │ │ ├── tx_140000.png │ │ │ │ ├── tx_150000.png │ │ │ │ ├── tx_160000.png │ │ │ │ ├── tx_170000.png │ │ │ │ ├── tx_180000.png │ │ │ │ ├── tx_190000.png │ │ │ │ ├── tx_200000.png │ │ │ │ ├── ty_000001.png │ │ │ │ ├── ty_010000.png │ │ │ │ ├── ty_020000.png │ │ │ │ ├── ty_030000.png │ │ │ │ ├── ty_040000.png │ │ │ │ ├── ty_050000.png │ │ │ │ ├── ty_060000.png │ │ │ │ ├── ty_070000.png │ │ │ │ ├── ty_080000.png │ │ │ │ ├── ty_090000.png │ │ │ │ ├── ty_100000.png │ │ │ │ ├── ty_110000.png │ │ │ │ ├── ty_120000.png │ │ │ │ ├── ty_130000.png │ │ │ │ ├── ty_140000.png │ │ │ │ ├── ty_150000.png │ │ │ │ ├── ty_160000.png │ │ │ │ ├── ty_170000.png │ │ │ │ ├── ty_180000.png │ │ │ │ ├── ty_190000.png │ │ │ │ └── ty_200000.png │ │ │ └── models │ │ │ │ ├── gen.pkl │ │ │ │ ├── phi.pkl │ │ │ │ └── psi.pkl │ │ └── trial_3 │ │ │ ├── data.npy │ │ │ ├── final_transport_plot.pdf │ │ │ ├── final_transport_plot.png │ │ │ ├── images │ │ │ ├── assignment.png │ │ │ ├── data.png │ │ │ ├── gz_000001.png │ │ │ ├── gz_010000.png │ │ │ ├── gz_020000.png │ │ │ ├── gz_030000.png │ │ │ ├── gz_040000.png │ │ │ ├── gz_050000.png │ │ │ ├── gz_060000.png │ │ │ ├── gz_070000.png │ │ │ ├── gz_080000.png │ │ │ ├── gz_090000.png │ │ │ ├── gz_100000.png │ │ │ ├── gz_110000.png │ │ │ ├── gz_120000.png │ │ │ ├── gz_130000.png │ │ │ ├── gz_140000.png │ │ │ ├── gz_150000.png │ │ │ ├── gz_160000.png │ │ │ ├── gz_170000.png │ │ │ ├── gz_180000.png │ │ │ ├── gz_190000.png │ │ │ ├── gz_200000.png │ │ │ ├── tx_000001.png │ │ │ ├── tx_010000.png │ │ │ ├── tx_020000.png │ │ │ ├── tx_030000.png │ │ │ ├── tx_040000.png │ │ │ ├── tx_050000.png │ │ │ ├── tx_060000.png │ │ │ ├── tx_070000.png │ │ │ ├── tx_080000.png │ │ │ ├── tx_090000.png │ │ │ ├── tx_100000.png │ │ │ ├── tx_110000.png │ │ │ ├── tx_120000.png │ │ │ ├── tx_130000.png │ │ │ ├── tx_140000.png │ │ │ ├── tx_150000.png │ │ │ ├── tx_160000.png │ │ │ ├── tx_170000.png │ │ │ ├── tx_180000.png │ │ │ ├── tx_190000.png │ │ │ ├── tx_200000.png │ │ │ ├── ty_000001.png │ │ │ ├── ty_010000.png │ │ │ ├── ty_020000.png │ │ │ ├── ty_030000.png │ │ │ ├── ty_040000.png │ │ │ ├── ty_050000.png │ │ │ ├── ty_060000.png │ │ │ ├── ty_070000.png │ │ │ ├── ty_080000.png │ │ │ ├── ty_090000.png │ │ │ ├── ty_100000.png │ │ │ ├── ty_110000.png │ │ │ ├── ty_120000.png │ │ │ ├── ty_130000.png │ │ │ ├── ty_140000.png │ │ │ ├── ty_150000.png │ │ │ ├── ty_160000.png │ │ │ ├── ty_170000.png │ │ │ ├── ty_180000.png │ │ │ ├── ty_190000.png │ │ │ └── ty_200000.png │ │ │ └── models │ │ │ ├── gen.pkl │ │ │ ├── phi.pkl │ │ │ └── psi.pkl │ ├── base_model.py │ ├── bot_model.py │ ├── create_plot.py │ ├── data_loader.py │ ├── losses.py │ ├── main.py │ ├── networks.py │ ├── options.py │ ├── utils.py │ ├── w1_8gaussians │ │ ├── trial_1 │ │ │ ├── data.npy │ │ │ ├── final_transport_plot.pdf │ │ │ ├── final_transport_plot.png │ │ │ ├── images │ │ │ │ ├── assignment.png │ │ │ │ ├── data.png │ │ │ │ ├── ty_198000.png │ │ │ │ ├── ty_199000.png │ │ │ │ └── ty_200000.png │ │ │ └── models │ │ │ │ ├── gen.pkl │ │ │ │ └── phi.pkl │ │ ├── trial_2 │ │ │ ├── data.npy │ │ │ ├── final_transport_plot.pdf │ │ │ ├── final_transport_plot.png │ │ │ ├── images │ │ │ │ ├── ty_190000.png │ │ │ │ └── ty_200000.png │ │ │ └── models │ │ │ │ ├── gen.pkl │ │ │ │ └── phi.pkl │ │ └── trial_3 │ │ │ ├── data.npy │ │ │ ├── final_transport_plot.pdf │ │ │ ├── final_transport_plot.png │ │ │ ├── images │ │ │ ├── assignment.png │ │ │ ├── data.png │ │ │ ├── ty_190000.png │ │ │ └── ty_200000.png │ │ │ └── models │ │ │ ├── gen.pkl │ │ │ └── phi.pkl │ ├── w1_model.py │ ├── w1_our_checkerboard │ │ ├── trial_1 │ │ │ ├── data.npy │ │ │ ├── final_transport_plot.pdf │ │ │ ├── final_transport_plot.png │ │ │ ├── images │ │ │ │ ├── assignment.png │ │ │ │ ├── data.png │ │ │ │ ├── ty_199000.png │ │ │ │ └── ty_200000.png │ │ │ └── models │ │ │ │ ├── gen.pkl │ │ │ │ └── phi.pkl │ │ ├── trial_2 │ │ │ ├── data.npy │ │ │ ├── final_transport_plot.pdf │ │ │ ├── final_transport_plot.png │ │ │ ├── images │ │ │ │ ├── assignment.png │ │ │ │ ├── data.png │ │ │ │ └── ty_200000.png │ │ │ └── models │ │ │ │ ├── gen.pkl │ │ │ │ └── phi.pkl │ │ └── trial_3 │ │ │ ├── data.npy │ │ │ ├── final_transport_plot.pdf │ │ │ ├── final_transport_plot.png │ │ │ ├── images │ │ │ ├── assignment.png │ │ │ ├── data.png │ │ │ ├── gz_000001.png │ │ │ ├── gz_010000.png │ │ │ ├── gz_020000.png │ │ │ ├── gz_030000.png │ │ │ ├── gz_040000.png │ │ │ ├── gz_050000.png │ │ │ ├── gz_060000.png │ │ │ ├── gz_070000.png │ │ │ ├── gz_080000.png │ │ │ ├── gz_090000.png │ │ │ ├── gz_100000.png │ │ │ ├── gz_110000.png │ │ │ ├── gz_120000.png │ │ │ ├── gz_130000.png │ │ │ ├── gz_140000.png │ │ │ ├── gz_150000.png │ │ │ ├── gz_160000.png │ │ │ ├── gz_170000.png │ │ │ ├── gz_180000.png │ │ │ ├── gz_190000.png │ │ │ ├── gz_200000.png │ │ │ ├── tx_000001.png │ │ │ ├── tx_010000.png │ │ │ ├── tx_020000.png │ │ │ ├── tx_030000.png │ │ │ ├── tx_040000.png │ │ │ ├── tx_050000.png │ │ │ ├── tx_060000.png │ │ │ ├── tx_070000.png │ │ │ ├── tx_080000.png │ │ │ ├── tx_090000.png │ │ │ ├── tx_100000.png │ │ │ ├── tx_110000.png │ │ │ ├── tx_120000.png │ │ │ ├── tx_130000.png │ │ │ ├── tx_140000.png │ │ │ ├── tx_150000.png │ │ │ ├── tx_160000.png │ │ │ ├── tx_170000.png │ │ │ ├── tx_180000.png │ │ │ ├── tx_190000.png │ │ │ ├── tx_200000.png │ │ │ ├── ty_000001.png │ │ │ ├── ty_010000.png │ │ │ ├── ty_020000.png │ │ │ ├── ty_030000.png │ │ │ ├── ty_040000.png │ │ │ ├── ty_050000.png │ │ │ ├── ty_060000.png │ │ │ ├── ty_070000.png │ │ │ ├── ty_080000.png │ │ │ ├── ty_090000.png │ │ │ ├── ty_100000.png │ │ │ ├── ty_110000.png │ │ │ ├── ty_120000.png │ │ │ ├── ty_130000.png │ │ │ ├── ty_140000.png │ │ │ ├── ty_150000.png │ │ │ ├── ty_160000.png │ │ │ ├── ty_170000.png │ │ │ ├── ty_180000.png │ │ │ ├── ty_190000.png │ │ │ └── ty_200000.png │ │ │ └── models │ │ │ ├── gen.pkl │ │ │ └── phi.pkl │ ├── w2_gen1_8gaussians │ │ └── trial_1 │ │ │ ├── data.npy │ │ │ ├── final_transport_plot.pdf │ │ │ ├── final_transport_plot.png │ │ │ ├── images │ │ │ ├── assignment.png │ │ │ ├── data.png │ │ │ ├── ty_199000.png │ │ │ └── ty_200000.png │ │ │ └── models │ │ │ ├── eps.pkl │ │ │ ├── gen.pkl │ │ │ └── phi.pkl │ ├── w2_gen1_our_checkerboard │ │ ├── trial_1 │ │ │ ├── data.npy │ │ │ ├── final_transport_plot.pdf │ │ │ ├── final_transport_plot.png │ │ │ ├── images │ │ │ │ ├── assignment.png │ │ │ │ ├── data.png │ │ │ │ ├── gz_000001.png │ │ │ │ ├── gz_010000.png │ │ │ │ ├── gz_020000.png │ │ │ │ ├── gz_030000.png │ │ │ │ ├── gz_040000.png │ │ │ │ ├── gz_050000.png │ │ │ │ ├── gz_060000.png │ │ │ │ ├── gz_070000.png │ │ │ │ ├── gz_080000.png │ │ │ │ ├── gz_090000.png │ │ │ │ ├── gz_100000.png │ │ │ │ ├── gz_110000.png │ │ │ │ ├── gz_120000.png │ │ │ │ ├── gz_130000.png │ │ │ │ ├── gz_140000.png │ │ │ │ ├── gz_150000.png │ │ │ │ ├── gz_160000.png │ │ │ │ ├── gz_170000.png │ │ │ │ ├── gz_180000.png │ │ │ │ ├── gz_190000.png │ │ │ │ ├── gz_200000.png │ │ │ │ ├── tx_000001.png │ │ │ │ ├── tx_010000.png │ │ │ │ ├── tx_020000.png │ │ │ │ ├── tx_030000.png │ │ │ │ ├── tx_040000.png │ │ │ │ ├── tx_050000.png │ │ │ │ ├── tx_060000.png │ │ │ │ ├── tx_070000.png │ │ │ │ ├── tx_080000.png │ │ │ │ ├── tx_090000.png │ │ │ │ ├── tx_100000.png │ │ │ │ ├── tx_110000.png │ │ │ │ ├── tx_120000.png │ │ │ │ ├── tx_130000.png │ │ │ │ ├── tx_140000.png │ │ │ │ ├── tx_150000.png │ │ │ │ ├── tx_160000.png │ │ │ │ ├── tx_170000.png │ │ │ │ ├── tx_180000.png │ │ │ │ ├── tx_190000.png │ │ │ │ ├── tx_200000.png │ │ │ │ ├── ty_000001.png │ │ │ │ ├── ty_010000.png │ │ │ │ ├── ty_020000.png │ │ │ │ ├── ty_030000.png │ │ │ │ ├── ty_040000.png │ │ │ │ ├── ty_050000.png │ │ │ │ ├── ty_060000.png │ │ │ │ ├── ty_070000.png │ │ │ │ ├── ty_080000.png │ │ │ │ ├── ty_090000.png │ │ │ │ ├── ty_100000.png │ │ │ │ ├── ty_110000.png │ │ │ │ ├── ty_120000.png │ │ │ │ ├── ty_130000.png │ │ │ │ ├── ty_140000.png │ │ │ │ ├── ty_150000.png │ │ │ │ ├── ty_160000.png │ │ │ │ ├── ty_170000.png │ │ │ │ ├── ty_180000.png │ │ │ │ ├── ty_190000.png │ │ │ │ └── ty_200000.png │ │ │ └── models │ │ │ │ ├── eps.pkl │ │ │ │ ├── gen.pkl │ │ │ │ └── phi.pkl │ │ ├── trial_2 │ │ │ ├── data.npy │ │ │ ├── final_transport_plot.pdf │ │ │ ├── final_transport_plot.png │ │ │ ├── images │ │ │ │ ├── assignment.png │ │ │ │ ├── data.png │ │ │ │ ├── gz_000001.png │ │ │ │ ├── gz_010000.png │ │ │ │ ├── gz_020000.png │ │ │ │ ├── gz_030000.png │ │ │ │ ├── gz_040000.png │ │ │ │ ├── gz_050000.png │ │ │ │ ├── gz_060000.png │ │ │ │ ├── gz_070000.png │ │ │ │ ├── gz_080000.png │ │ │ │ ├── gz_090000.png │ │ │ │ ├── gz_100000.png │ │ │ │ ├── gz_110000.png │ │ │ │ ├── gz_120000.png │ │ │ │ ├── gz_130000.png │ │ │ │ ├── gz_140000.png │ │ │ │ ├── gz_150000.png │ │ │ │ ├── gz_160000.png │ │ │ │ ├── gz_170000.png │ │ │ │ ├── gz_180000.png │ │ │ │ ├── gz_190000.png │ │ │ │ ├── gz_200000.png │ │ │ │ ├── tx_000001.png │ │ │ │ ├── tx_010000.png │ │ │ │ ├── tx_020000.png │ │ │ │ ├── tx_030000.png │ │ │ │ ├── tx_040000.png │ │ │ │ ├── tx_050000.png │ │ │ │ ├── tx_060000.png │ │ │ │ ├── tx_070000.png │ │ │ │ ├── tx_080000.png │ │ │ │ ├── tx_090000.png │ │ │ │ ├── tx_100000.png │ │ │ │ ├── tx_110000.png │ │ │ │ ├── tx_120000.png │ │ │ │ ├── tx_130000.png │ │ │ │ ├── tx_140000.png │ │ │ │ ├── tx_150000.png │ │ │ │ ├── tx_160000.png │ │ │ │ ├── tx_170000.png │ │ │ │ ├── tx_180000.png │ │ │ │ ├── tx_190000.png │ │ │ │ ├── tx_200000.png │ │ │ │ ├── ty_000001.png │ │ │ │ ├── ty_010000.png │ │ │ │ ├── ty_020000.png │ │ │ │ ├── ty_030000.png │ │ │ │ ├── ty_040000.png │ │ │ │ ├── ty_050000.png │ │ │ │ ├── ty_060000.png │ │ │ │ ├── ty_070000.png │ │ │ │ ├── ty_080000.png │ │ │ │ ├── ty_090000.png │ │ │ │ ├── ty_100000.png │ │ │ │ ├── ty_110000.png │ │ │ │ ├── ty_120000.png │ │ │ │ ├── ty_130000.png │ │ │ │ ├── ty_140000.png │ │ │ │ ├── ty_150000.png │ │ │ │ ├── ty_160000.png │ │ │ │ ├── ty_170000.png │ │ │ │ ├── ty_180000.png │ │ │ │ ├── ty_190000.png │ │ │ │ └── ty_200000.png │ │ │ └── models │ │ │ │ ├── eps.pkl │ │ │ │ ├── gen.pkl │ │ │ │ └── phi.pkl │ │ ├── trial_3 │ │ │ ├── data.npy │ │ │ ├── final_transport_plot.pdf │ │ │ ├── final_transport_plot.png │ │ │ ├── images │ │ │ │ ├── assignment.png │ │ │ │ ├── data.png │ │ │ │ ├── gz_000001.png │ │ │ │ ├── gz_010000.png │ │ │ │ ├── gz_020000.png │ │ │ │ ├── gz_030000.png │ │ │ │ ├── gz_040000.png │ │ │ │ ├── gz_050000.png │ │ │ │ ├── gz_060000.png │ │ │ │ ├── gz_070000.png │ │ │ │ ├── gz_080000.png │ │ │ │ ├── gz_090000.png │ │ │ │ ├── gz_100000.png │ │ │ │ ├── gz_110000.png │ │ │ │ ├── gz_120000.png │ │ │ │ ├── gz_130000.png │ │ │ │ ├── gz_140000.png │ │ │ │ ├── gz_150000.png │ │ │ │ ├── gz_160000.png │ │ │ │ ├── gz_170000.png │ │ │ │ ├── gz_180000.png │ │ │ │ ├── gz_190000.png │ │ │ │ ├── gz_200000.png │ │ │ │ ├── tx_000001.png │ │ │ │ ├── tx_010000.png │ │ │ │ ├── tx_020000.png │ │ │ │ ├── tx_030000.png │ │ │ │ ├── tx_040000.png │ │ │ │ ├── tx_050000.png │ │ │ │ ├── tx_060000.png │ │ │ │ ├── tx_070000.png │ │ │ │ ├── tx_080000.png │ │ │ │ ├── tx_090000.png │ │ │ │ ├── tx_100000.png │ │ │ │ ├── tx_110000.png │ │ │ │ ├── tx_120000.png │ │ │ │ ├── tx_130000.png │ │ │ │ ├── tx_140000.png │ │ │ │ ├── tx_150000.png │ │ │ │ ├── tx_160000.png │ │ │ │ ├── tx_170000.png │ │ │ │ ├── tx_180000.png │ │ │ │ ├── tx_190000.png │ │ │ │ ├── tx_200000.png │ │ │ │ ├── ty_000001.png │ │ │ │ ├── ty_010000.png │ │ │ │ ├── ty_020000.png │ │ │ │ ├── ty_030000.png │ │ │ │ ├── ty_040000.png │ │ │ │ ├── ty_050000.png │ │ │ │ ├── ty_060000.png │ │ │ │ ├── ty_070000.png │ │ │ │ ├── ty_080000.png │ │ │ │ ├── ty_090000.png │ │ │ │ ├── ty_100000.png │ │ │ │ ├── ty_110000.png │ │ │ │ ├── ty_120000.png │ │ │ │ ├── ty_130000.png │ │ │ │ ├── ty_140000.png │ │ │ │ ├── ty_150000.png │ │ │ │ ├── ty_160000.png │ │ │ │ ├── ty_170000.png │ │ │ │ ├── ty_180000.png │ │ │ │ ├── ty_190000.png │ │ │ │ └── ty_200000.png │ │ │ └── models │ │ │ │ ├── eps.pkl │ │ │ │ ├── gen.pkl │ │ │ │ └── phi.pkl │ │ └── trial_4 │ │ │ ├── images │ │ │ ├── assignment.png │ │ │ ├── data.png │ │ │ ├── gz_000001.png │ │ │ ├── gz_010000.png │ │ │ ├── gz_020000.png │ │ │ ├── gz_030000.png │ │ │ ├── gz_040000.png │ │ │ ├── gz_050000.png │ │ │ ├── gz_060000.png │ │ │ ├── gz_070000.png │ │ │ ├── gz_080000.png │ │ │ ├── gz_090000.png │ │ │ ├── gz_100000.png │ │ │ ├── gz_110000.png │ │ │ ├── gz_120000.png │ │ │ ├── gz_130000.png │ │ │ ├── gz_140000.png │ │ │ ├── gz_150000.png │ │ │ ├── gz_160000.png │ │ │ ├── gz_170000.png │ │ │ ├── gz_180000.png │ │ │ ├── gz_190000.png │ │ │ ├── gz_200000.png │ │ │ ├── tx_000001.png │ │ │ ├── tx_010000.png │ │ │ ├── tx_020000.png │ │ │ ├── tx_030000.png │ │ │ ├── tx_040000.png │ │ │ ├── tx_050000.png │ │ │ ├── tx_060000.png │ │ │ ├── tx_070000.png │ │ │ ├── tx_080000.png │ │ │ ├── tx_090000.png │ │ │ ├── tx_100000.png │ │ │ ├── tx_110000.png │ │ │ ├── tx_120000.png │ │ │ ├── tx_130000.png │ │ │ ├── tx_140000.png │ │ │ ├── tx_150000.png │ │ │ ├── tx_160000.png │ │ │ ├── tx_170000.png │ │ │ ├── tx_180000.png │ │ │ ├── tx_190000.png │ │ │ ├── tx_200000.png │ │ │ ├── ty_000001.png │ │ │ ├── ty_010000.png │ │ │ ├── ty_020000.png │ │ │ ├── ty_030000.png │ │ │ ├── ty_040000.png │ │ │ ├── ty_050000.png │ │ │ ├── ty_060000.png │ │ │ ├── ty_070000.png │ │ │ ├── ty_080000.png │ │ │ ├── ty_090000.png │ │ │ ├── ty_100000.png │ │ │ ├── ty_110000.png │ │ │ ├── ty_120000.png │ │ │ ├── ty_130000.png │ │ │ ├── ty_140000.png │ │ │ ├── ty_150000.png │ │ │ ├── ty_160000.png │ │ │ ├── ty_170000.png │ │ │ ├── ty_180000.png │ │ │ ├── ty_190000.png │ │ │ └── ty_200000.png │ │ │ └── models │ │ │ ├── eps.pkl │ │ │ ├── gen.pkl │ │ │ └── phi.pkl │ └── w2_model.py ├── create-2dim-figures.py ├── create-figures.py └── data │ ├── GMM_high_dim.npy │ ├── bary_ot_8gaussians_1.npy │ ├── bary_ot_8gaussians_2.npy │ ├── bary_ot_8gaussians_3.npy │ ├── bary_ot_checkerboard_1.npy │ ├── bary_ot_checkerboard_2.npy │ ├── bary_ot_checkerboard_3.npy │ ├── minimax_8gaussians_1.npy │ ├── minimax_checkerboard_1.npy │ ├── w1_8gaussians_1.npy │ ├── w1_8gaussians_2.npy │ ├── w1_8gaussians_3.npy │ ├── w1_checkerboard_1.npy │ ├── w1_checkerboard_2.npy │ ├── w1_checkerboard_3.npy │ ├── w2_8gaussians_1.npy │ ├── w2_checkerboard_1.npy │ ├── w2_checkerboard_2.npy │ └── w2_checkerboard_3.npy ├── High_dim_experiments ├── GMM_to_GMM.py ├── Gaussian_to_Gaussian.py ├── Gaussian_to_Gaussian_Plots.py ├── Gaussian_to_MNIST_Plots.py ├── Gaussian_to_vaeMNIST.py ├── MNIST_to_MNIST_Plots.py ├── create-GMM-figure.py ├── mnist_data_loader.py ├── mnist_utils.py ├── optimal_transport_modules │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── all_losses.cpython-36.pyc │ │ ├── icnn_modules.cpython-36.pyc │ │ ├── icnn_modules.cpython-37.pyc │ │ └── networks_W2_GAN.cpython-36.pyc │ ├── all_losses.py │ ├── icnn_modules.py │ └── networks_W2_GAN.py ├── readme.md ├── relative_mean_loss_stuff.csv ├── utils.py └── vaeMNIST_to_vaeMNIST.py └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/.DS_Store -------------------------------------------------------------------------------- /2_dim_experiments/W2-minimax-tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/W2-minimax-tf.py -------------------------------------------------------------------------------- /2_dim_experiments/baselines/__pycache__/base_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/__pycache__/base_model.cpython-36.pyc -------------------------------------------------------------------------------- /2_dim_experiments/baselines/__pycache__/bot_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/__pycache__/bot_model.cpython-36.pyc -------------------------------------------------------------------------------- /2_dim_experiments/baselines/__pycache__/data_loader.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/__pycache__/data_loader.cpython-36.pyc -------------------------------------------------------------------------------- /2_dim_experiments/baselines/__pycache__/losses.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/__pycache__/losses.cpython-36.pyc -------------------------------------------------------------------------------- /2_dim_experiments/baselines/__pycache__/networks.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/__pycache__/networks.cpython-36.pyc -------------------------------------------------------------------------------- /2_dim_experiments/baselines/__pycache__/options.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/__pycache__/options.cpython-36.pyc -------------------------------------------------------------------------------- /2_dim_experiments/baselines/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /2_dim_experiments/baselines/__pycache__/w1_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/__pycache__/w1_model.cpython-36.pyc -------------------------------------------------------------------------------- /2_dim_experiments/baselines/__pycache__/w2_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/__pycache__/w2_model.cpython-36.pyc -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/data.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/data.npy -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/final_transport_plot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/final_transport_plot.pdf -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/final_transport_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/final_transport_plot.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/assignment.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/data.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_000001.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_010000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_010000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_020000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_020000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_030000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_030000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_040000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_040000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_050000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_050000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_060000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_060000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_070000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_070000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_080000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_080000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_090000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_090000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_100000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_110000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_110000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_120000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_120000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_130000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_130000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_140000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_140000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_150000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_150000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_160000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_160000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_170000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_170000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_180000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_180000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_190000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_190000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/gz_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_000001.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_010000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_010000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_020000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_020000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_030000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_030000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_040000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_040000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_050000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_050000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_060000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_060000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_070000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_070000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_080000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_080000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_090000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_090000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_100000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_110000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_110000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_120000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_120000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_130000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_130000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_140000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_140000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_150000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_150000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_160000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_160000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_170000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_170000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_180000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_180000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_190000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_190000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/tx_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_000001.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_010000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_010000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_020000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_020000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_030000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_030000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_040000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_040000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_050000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_050000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_060000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_060000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_070000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_070000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_080000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_080000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_090000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_090000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_100000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_110000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_110000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_120000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_120000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_130000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_130000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_140000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_140000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_150000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_150000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_160000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_160000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_170000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_170000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_180000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_180000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_190000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_190000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/images/ty_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/models/gen.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/models/gen.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/models/phi.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/models/phi.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/models/psi.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_1/models/psi.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/data.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/data.npy -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/final_transport_plot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/final_transport_plot.pdf -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/final_transport_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/final_transport_plot.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/assignment.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/data.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_000001.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_010000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_010000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_020000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_020000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_030000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_030000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_040000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_040000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_050000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_050000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_060000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_060000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_070000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_070000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_080000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_080000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_090000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_090000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_100000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_110000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_110000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_120000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_120000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_130000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_130000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_140000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_140000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_150000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_150000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_160000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_160000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_170000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_170000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_180000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_180000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_190000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_190000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/gz_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_000001.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_010000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_010000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_020000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_020000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_030000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_030000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_040000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_040000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_050000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_050000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_060000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_060000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_070000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_070000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_080000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_080000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_090000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_090000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_100000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_110000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_110000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_120000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_120000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_130000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_130000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_140000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_140000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_150000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_150000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_160000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_160000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_170000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_170000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_180000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_180000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_190000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_190000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/tx_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_000001.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_010000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_010000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_020000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_020000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_030000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_030000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_040000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_040000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_050000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_050000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_060000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_060000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_070000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_070000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_080000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_080000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_090000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_090000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_100000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_110000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_110000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_120000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_120000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_130000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_130000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_140000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_140000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_150000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_150000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_160000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_160000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_170000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_170000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_180000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_180000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_190000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_190000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/images/ty_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/models/gen.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/models/gen.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/models/phi.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/models/phi.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/models/psi.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_2/models/psi.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/data.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/data.npy -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/final_transport_plot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/final_transport_plot.pdf -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/final_transport_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/final_transport_plot.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/assignment.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/data.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_000001.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_010000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_010000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_020000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_020000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_030000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_030000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_040000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_040000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_050000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_050000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_060000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_060000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_070000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_070000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_080000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_080000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_090000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_090000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_100000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_110000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_110000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_120000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_120000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_130000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_130000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_140000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_140000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_150000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_150000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_160000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_160000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_170000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_170000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_180000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_180000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_190000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_190000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/gz_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_000001.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_010000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_010000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_020000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_020000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_030000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_030000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_040000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_040000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_050000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_050000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_060000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_060000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_070000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_070000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_080000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_080000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_090000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_090000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_100000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_110000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_110000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_120000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_120000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_130000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_130000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_140000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_140000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_150000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_150000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_160000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_160000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_170000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_170000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_180000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_180000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_190000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_190000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/tx_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_000001.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_010000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_010000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_020000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_020000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_030000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_030000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_040000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_040000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_050000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_050000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_060000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_060000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_070000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_070000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_080000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_080000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_090000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_090000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_100000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_110000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_110000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_120000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_120000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_130000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_130000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_140000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_140000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_150000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_150000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_160000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_160000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_170000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_170000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_180000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_180000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_190000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_190000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/images/ty_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/models/gen.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/models/gen.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/models/phi.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/models/phi.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/models/psi.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_8gaussians/trial_3/models/psi.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/data.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/data.npy -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/data.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_000001.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_010000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_010000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_020000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_020000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_030000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_030000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_040000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_040000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_050000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_050000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_060000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_060000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_070000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_070000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_080000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_080000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_090000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_090000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_100000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_110000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_110000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_120000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_120000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_130000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_130000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_140000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_140000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_150000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_150000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_160000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_160000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_170000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_170000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_180000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_180000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_190000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_190000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/gz_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_000001.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_010000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_010000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_020000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_020000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_030000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_030000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_040000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_040000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_050000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_050000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_060000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_060000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_070000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_070000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_080000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_080000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_090000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_090000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_100000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_110000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_110000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_120000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_120000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_130000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_130000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_140000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_140000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_150000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_150000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_160000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_160000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_170000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_170000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_180000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_180000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_190000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_190000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/tx_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_000001.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_010000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_010000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_020000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_020000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_030000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_030000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_040000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_040000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_050000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_050000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_060000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_060000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_070000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_070000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_080000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_080000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_090000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_090000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_100000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_110000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_110000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_120000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_120000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_130000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_130000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_140000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_140000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_150000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_150000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_160000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_160000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_170000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_170000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_180000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_180000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_190000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_190000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/images/ty_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/models/gen.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/models/gen.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/models/phi.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/models/phi.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/models/psi.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_1/models/psi.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/data.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/data.npy -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/data.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_000001.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_010000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_010000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_020000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_020000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_030000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_030000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_040000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_040000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_050000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_050000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_060000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_060000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_070000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_070000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_080000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_080000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_090000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_090000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_100000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_110000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_110000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_120000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_120000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_130000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_130000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_140000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_140000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_150000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_150000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_160000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_160000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_170000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_170000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_180000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_180000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_190000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_190000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/gz_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_000001.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_010000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_010000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_020000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_020000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_030000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_030000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_040000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_040000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_050000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_050000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_060000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_060000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_070000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_070000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_080000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_080000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_090000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_090000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_100000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_110000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_110000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_120000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_120000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_130000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_130000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_140000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_140000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_150000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_150000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_160000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_160000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_170000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_170000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_180000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_180000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_190000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_190000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/tx_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_000001.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_010000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_010000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_020000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_020000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_030000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_030000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_040000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_040000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_050000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_050000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_060000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_060000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_070000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_070000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_080000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_080000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_090000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_090000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_100000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_110000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_110000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_120000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_120000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_130000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_130000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_140000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_140000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_150000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_150000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_160000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_160000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_170000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_170000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_180000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_180000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_190000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_190000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/images/ty_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/models/gen.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/models/gen.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/models/phi.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/models/phi.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/models/psi.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_2/models/psi.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/data.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/data.npy -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/data.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_000001.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_010000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_010000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_020000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_020000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_030000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_030000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_040000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_040000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_050000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_050000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_060000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_060000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_070000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_070000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_080000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_080000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_090000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_090000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_100000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_110000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_110000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_120000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_120000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_130000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_130000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_140000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_140000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_150000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_150000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_160000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_160000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_170000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_170000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_180000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_180000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_190000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_190000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/gz_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_000001.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_010000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_010000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_020000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_020000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_030000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_030000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_040000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_040000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_050000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_050000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_060000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_060000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_070000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_070000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_080000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_080000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_090000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_090000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_100000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_110000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_110000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_120000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_120000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_130000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_130000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_140000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_140000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_150000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_150000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_160000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_160000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_170000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_170000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_180000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_180000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_190000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_190000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/tx_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_000001.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_010000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_010000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_020000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_020000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_030000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_030000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_040000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_040000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_050000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_050000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_060000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_060000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_070000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_070000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_080000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_080000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_090000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_090000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_100000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_110000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_110000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_120000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_120000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_130000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_130000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_140000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_140000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_150000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_150000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_160000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_160000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_170000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_170000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_180000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_180000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_190000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_190000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/images/ty_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/models/gen.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/models/gen.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/models/phi.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/models/phi.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/models/psi.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bary_ot_our_checkerboard/trial_3/models/psi.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/base_model.py -------------------------------------------------------------------------------- /2_dim_experiments/baselines/bot_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/bot_model.py -------------------------------------------------------------------------------- /2_dim_experiments/baselines/create_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/create_plot.py -------------------------------------------------------------------------------- /2_dim_experiments/baselines/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/data_loader.py -------------------------------------------------------------------------------- /2_dim_experiments/baselines/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/losses.py -------------------------------------------------------------------------------- /2_dim_experiments/baselines/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/main.py -------------------------------------------------------------------------------- /2_dim_experiments/baselines/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/networks.py -------------------------------------------------------------------------------- /2_dim_experiments/baselines/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/options.py -------------------------------------------------------------------------------- /2_dim_experiments/baselines/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/utils.py -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_1/data.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_1/data.npy -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_1/final_transport_plot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_1/final_transport_plot.pdf -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_1/final_transport_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_1/final_transport_plot.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_1/images/assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_1/images/assignment.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_1/images/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_1/images/data.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_1/images/ty_198000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_1/images/ty_198000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_1/images/ty_199000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_1/images/ty_199000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_1/images/ty_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_1/images/ty_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_1/models/gen.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_1/models/gen.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_1/models/phi.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_1/models/phi.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_2/data.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_2/data.npy -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_2/final_transport_plot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_2/final_transport_plot.pdf -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_2/final_transport_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_2/final_transport_plot.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_2/images/ty_190000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_2/images/ty_190000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_2/images/ty_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_2/images/ty_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_2/models/gen.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_2/models/gen.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_2/models/phi.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_2/models/phi.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_3/data.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_3/data.npy -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_3/final_transport_plot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_3/final_transport_plot.pdf -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_3/final_transport_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_3/final_transport_plot.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_3/images/assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_3/images/assignment.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_3/images/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_3/images/data.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_3/images/ty_190000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_3/images/ty_190000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_3/images/ty_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_3/images/ty_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_3/models/gen.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_3/models/gen.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_8gaussians/trial_3/models/phi.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_8gaussians/trial_3/models/phi.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_model.py -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_1/data.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_1/data.npy -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_1/final_transport_plot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_1/final_transport_plot.pdf -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_1/final_transport_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_1/final_transport_plot.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_1/images/assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_1/images/assignment.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_1/images/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_1/images/data.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_1/images/ty_199000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_1/images/ty_199000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_1/images/ty_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_1/images/ty_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_1/models/gen.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_1/models/gen.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_1/models/phi.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_1/models/phi.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_2/data.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_2/data.npy -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_2/final_transport_plot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_2/final_transport_plot.pdf -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_2/final_transport_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_2/final_transport_plot.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_2/images/assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_2/images/assignment.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_2/images/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_2/images/data.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_2/images/ty_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_2/images/ty_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_2/models/gen.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_2/models/gen.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_2/models/phi.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_2/models/phi.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/data.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/data.npy -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/final_transport_plot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/final_transport_plot.pdf -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/final_transport_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/final_transport_plot.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/assignment.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/data.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_000001.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_010000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_010000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_020000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_020000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_030000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_030000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_040000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_040000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_050000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_050000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_060000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_060000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_070000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_070000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_080000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_080000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_090000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_090000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_100000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_110000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_110000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_120000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_120000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_130000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_130000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_140000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_140000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_150000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_150000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_160000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_160000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_170000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_170000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_180000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_180000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_190000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_190000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/gz_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_000001.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_010000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_010000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_020000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_020000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_030000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_030000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_040000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_040000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_050000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_050000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_060000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_060000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_070000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_070000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_080000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_080000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_090000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_090000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_100000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_110000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_110000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_120000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_120000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_130000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_130000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_140000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_140000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_150000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_150000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_160000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_160000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_170000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_170000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_180000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_180000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_190000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_190000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/tx_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_000001.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_010000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_010000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_020000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_020000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_030000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_030000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_040000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_040000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_050000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_050000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_060000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_060000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_070000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_070000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_080000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_080000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_090000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_090000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_100000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_110000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_110000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_120000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_120000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_130000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_130000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_140000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_140000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_150000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_150000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_160000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_160000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_170000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_170000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_180000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_180000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_190000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_190000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/images/ty_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/models/gen.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/models/gen.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w1_our_checkerboard/trial_3/models/phi.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w1_our_checkerboard/trial_3/models/phi.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_8gaussians/trial_1/data.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_8gaussians/trial_1/data.npy -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_8gaussians/trial_1/final_transport_plot.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_8gaussians/trial_1/final_transport_plot.pdf -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_8gaussians/trial_1/final_transport_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_8gaussians/trial_1/final_transport_plot.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_8gaussians/trial_1/images/assignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_8gaussians/trial_1/images/assignment.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_8gaussians/trial_1/images/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_8gaussians/trial_1/images/data.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_8gaussians/trial_1/images/ty_199000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_8gaussians/trial_1/images/ty_199000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_8gaussians/trial_1/images/ty_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_8gaussians/trial_1/images/ty_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_8gaussians/trial_1/models/eps.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_8gaussians/trial_1/models/eps.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_8gaussians/trial_1/models/gen.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_8gaussians/trial_1/models/gen.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_8gaussians/trial_1/models/phi.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_8gaussians/trial_1/models/phi.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/data.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/data.npy -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/data.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_000001.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_010000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_010000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_020000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_020000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_030000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_030000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_040000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_040000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_050000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_050000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_060000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_060000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_070000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_070000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_080000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_080000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_090000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_090000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_100000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_110000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_110000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_120000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_120000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_130000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_130000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_140000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_140000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_150000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_150000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_160000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_160000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_170000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_170000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_180000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_180000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_190000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_190000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/gz_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_000001.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_010000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_010000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_020000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_020000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_030000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_030000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_040000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_040000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_050000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_050000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_060000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_060000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_070000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_070000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_080000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_080000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_090000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_090000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_100000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_100000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_110000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_110000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_120000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_120000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_130000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_130000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_140000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_140000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_150000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_150000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_160000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_160000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_170000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_170000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_180000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_180000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_190000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_190000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_200000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/tx_200000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/ty_000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/ty_000001.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/ty_010000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/ty_010000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/ty_020000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/ty_020000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/ty_030000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/ty_030000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/ty_040000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/ty_040000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/ty_050000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/ty_050000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/ty_060000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/ty_060000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/ty_070000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/ty_070000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/ty_080000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/images/ty_080000.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/models/eps.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/models/eps.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/models/gen.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/models/gen.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/models/phi.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_1/models/phi.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_2/data.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_2/data.npy -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_2/images/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_2/images/data.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_2/models/eps.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_2/models/eps.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_2/models/gen.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_2/models/gen.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_2/models/phi.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_2/models/phi.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_3/data.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_3/data.npy -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_3/images/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_3/images/data.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_3/models/eps.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_3/models/eps.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_3/models/gen.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_3/models/gen.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_3/models/phi.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_3/models/phi.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_4/images/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_4/images/data.png -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_4/models/eps.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_4/models/eps.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_4/models/gen.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_4/models/gen.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_4/models/phi.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_gen1_our_checkerboard/trial_4/models/phi.pkl -------------------------------------------------------------------------------- /2_dim_experiments/baselines/w2_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/baselines/w2_model.py -------------------------------------------------------------------------------- /2_dim_experiments/create-2dim-figures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/create-2dim-figures.py -------------------------------------------------------------------------------- /2_dim_experiments/create-figures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/create-figures.py -------------------------------------------------------------------------------- /2_dim_experiments/data/GMM_high_dim.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/data/GMM_high_dim.npy -------------------------------------------------------------------------------- /2_dim_experiments/data/bary_ot_8gaussians_1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/data/bary_ot_8gaussians_1.npy -------------------------------------------------------------------------------- /2_dim_experiments/data/bary_ot_8gaussians_2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/data/bary_ot_8gaussians_2.npy -------------------------------------------------------------------------------- /2_dim_experiments/data/bary_ot_8gaussians_3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/data/bary_ot_8gaussians_3.npy -------------------------------------------------------------------------------- /2_dim_experiments/data/bary_ot_checkerboard_1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/data/bary_ot_checkerboard_1.npy -------------------------------------------------------------------------------- /2_dim_experiments/data/bary_ot_checkerboard_2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/data/bary_ot_checkerboard_2.npy -------------------------------------------------------------------------------- /2_dim_experiments/data/bary_ot_checkerboard_3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/data/bary_ot_checkerboard_3.npy -------------------------------------------------------------------------------- /2_dim_experiments/data/minimax_8gaussians_1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/data/minimax_8gaussians_1.npy -------------------------------------------------------------------------------- /2_dim_experiments/data/minimax_checkerboard_1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/data/minimax_checkerboard_1.npy -------------------------------------------------------------------------------- /2_dim_experiments/data/w1_8gaussians_1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/data/w1_8gaussians_1.npy -------------------------------------------------------------------------------- /2_dim_experiments/data/w1_8gaussians_2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/data/w1_8gaussians_2.npy -------------------------------------------------------------------------------- /2_dim_experiments/data/w1_8gaussians_3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/data/w1_8gaussians_3.npy -------------------------------------------------------------------------------- /2_dim_experiments/data/w1_checkerboard_1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/data/w1_checkerboard_1.npy -------------------------------------------------------------------------------- /2_dim_experiments/data/w1_checkerboard_2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/data/w1_checkerboard_2.npy -------------------------------------------------------------------------------- /2_dim_experiments/data/w1_checkerboard_3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/data/w1_checkerboard_3.npy -------------------------------------------------------------------------------- /2_dim_experiments/data/w2_8gaussians_1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/data/w2_8gaussians_1.npy -------------------------------------------------------------------------------- /2_dim_experiments/data/w2_checkerboard_1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/data/w2_checkerboard_1.npy -------------------------------------------------------------------------------- /2_dim_experiments/data/w2_checkerboard_2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/data/w2_checkerboard_2.npy -------------------------------------------------------------------------------- /2_dim_experiments/data/w2_checkerboard_3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/2_dim_experiments/data/w2_checkerboard_3.npy -------------------------------------------------------------------------------- /High_dim_experiments/GMM_to_GMM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/High_dim_experiments/GMM_to_GMM.py -------------------------------------------------------------------------------- /High_dim_experiments/Gaussian_to_Gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/High_dim_experiments/Gaussian_to_Gaussian.py -------------------------------------------------------------------------------- /High_dim_experiments/Gaussian_to_Gaussian_Plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/High_dim_experiments/Gaussian_to_Gaussian_Plots.py -------------------------------------------------------------------------------- /High_dim_experiments/Gaussian_to_MNIST_Plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/High_dim_experiments/Gaussian_to_MNIST_Plots.py -------------------------------------------------------------------------------- /High_dim_experiments/Gaussian_to_vaeMNIST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/High_dim_experiments/Gaussian_to_vaeMNIST.py -------------------------------------------------------------------------------- /High_dim_experiments/MNIST_to_MNIST_Plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/High_dim_experiments/MNIST_to_MNIST_Plots.py -------------------------------------------------------------------------------- /High_dim_experiments/create-GMM-figure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/High_dim_experiments/create-GMM-figure.py -------------------------------------------------------------------------------- /High_dim_experiments/mnist_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/High_dim_experiments/mnist_data_loader.py -------------------------------------------------------------------------------- /High_dim_experiments/mnist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/High_dim_experiments/mnist_utils.py -------------------------------------------------------------------------------- /High_dim_experiments/optimal_transport_modules/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | from .icnn_modules import * 3 | 4 | -------------------------------------------------------------------------------- /High_dim_experiments/optimal_transport_modules/all_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/High_dim_experiments/optimal_transport_modules/all_losses.py -------------------------------------------------------------------------------- /High_dim_experiments/optimal_transport_modules/icnn_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/High_dim_experiments/optimal_transport_modules/icnn_modules.py -------------------------------------------------------------------------------- /High_dim_experiments/optimal_transport_modules/networks_W2_GAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/High_dim_experiments/optimal_transport_modules/networks_W2_GAN.py -------------------------------------------------------------------------------- /High_dim_experiments/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/High_dim_experiments/readme.md -------------------------------------------------------------------------------- /High_dim_experiments/relative_mean_loss_stuff.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/High_dim_experiments/relative_mean_loss_stuff.csv -------------------------------------------------------------------------------- /High_dim_experiments/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/High_dim_experiments/utils.py -------------------------------------------------------------------------------- /High_dim_experiments/vaeMNIST_to_vaeMNIST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/High_dim_experiments/vaeMNIST_to_vaeMNIST.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmirTag/OT-ICNN/HEAD/README.md --------------------------------------------------------------------------------