├── .gitignore ├── README.md ├── data ├── action_head.csv └── jdata_product.csv ├── data_process.py ├── gpu_process ├── EGES_module.py ├── run_EGES.py ├── run_EGES_multi_gpu.py └── stream_EGES.py ├── native_process ├── EGES_model.py ├── README.md ├── run_EGES.py └── walker.py ├── requirements.txt └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhegeek/EGES/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhegeek/EGES/HEAD/README.md -------------------------------------------------------------------------------- /data/action_head.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhegeek/EGES/HEAD/data/action_head.csv -------------------------------------------------------------------------------- /data/jdata_product.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhegeek/EGES/HEAD/data/jdata_product.csv -------------------------------------------------------------------------------- /data_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhegeek/EGES/HEAD/data_process.py -------------------------------------------------------------------------------- /gpu_process/EGES_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhegeek/EGES/HEAD/gpu_process/EGES_module.py -------------------------------------------------------------------------------- /gpu_process/run_EGES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhegeek/EGES/HEAD/gpu_process/run_EGES.py -------------------------------------------------------------------------------- /gpu_process/run_EGES_multi_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhegeek/EGES/HEAD/gpu_process/run_EGES_multi_gpu.py -------------------------------------------------------------------------------- /gpu_process/stream_EGES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhegeek/EGES/HEAD/gpu_process/stream_EGES.py -------------------------------------------------------------------------------- /native_process/EGES_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhegeek/EGES/HEAD/native_process/EGES_model.py -------------------------------------------------------------------------------- /native_process/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhegeek/EGES/HEAD/native_process/README.md -------------------------------------------------------------------------------- /native_process/run_EGES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhegeek/EGES/HEAD/native_process/run_EGES.py -------------------------------------------------------------------------------- /native_process/walker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhegeek/EGES/HEAD/native_process/walker.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhegeek/EGES/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangzhegeek/EGES/HEAD/utils.py --------------------------------------------------------------------------------