├── .gitignore ├── LICENSE ├── README.md ├── data └── simulation_data.tfrecord ├── detailed_explain_of_simulation.pdf ├── generate_simulation_data.py ├── main.py └── python_tf ├── __init__.py ├── configures.py ├── input.py ├── model.py ├── shapley_value.py └── tfrecord_helper.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-ads-data/jd-mta/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-ads-data/jd-mta/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-ads-data/jd-mta/HEAD/README.md -------------------------------------------------------------------------------- /data/simulation_data.tfrecord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-ads-data/jd-mta/HEAD/data/simulation_data.tfrecord -------------------------------------------------------------------------------- /detailed_explain_of_simulation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-ads-data/jd-mta/HEAD/detailed_explain_of_simulation.pdf -------------------------------------------------------------------------------- /generate_simulation_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-ads-data/jd-mta/HEAD/generate_simulation_data.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-ads-data/jd-mta/HEAD/main.py -------------------------------------------------------------------------------- /python_tf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_tf/configures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-ads-data/jd-mta/HEAD/python_tf/configures.py -------------------------------------------------------------------------------- /python_tf/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-ads-data/jd-mta/HEAD/python_tf/input.py -------------------------------------------------------------------------------- /python_tf/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-ads-data/jd-mta/HEAD/python_tf/model.py -------------------------------------------------------------------------------- /python_tf/shapley_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-ads-data/jd-mta/HEAD/python_tf/shapley_value.py -------------------------------------------------------------------------------- /python_tf/tfrecord_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jd-ads-data/jd-mta/HEAD/python_tf/tfrecord_helper.py --------------------------------------------------------------------------------