gitextract_wn7uutsx/ ├── .gitignore ├── Baselines/ │ ├── BuildOrderPrediction/ │ │ ├── test.py │ │ ├── train.py │ │ └── train_spatial.py │ └── GlobalStateEvaluation/ │ ├── requirements.txt │ ├── test.py │ ├── train.py │ └── train_spatial.py ├── README.md ├── _config.yml ├── data_loader/ │ └── BatchEnv.py ├── extract_features/ │ ├── SpatialFeatures.py │ ├── compute_stat.sh │ ├── extract_features.sh │ ├── game_state.py │ ├── global_feature_vector.py │ ├── replay_stat.py │ ├── spatial_feature_tensor.py │ └── split.py ├── instructions/ │ ├── EasyWay.md │ └── HardWay.md ├── parse_replay/ │ ├── extract_actions.py │ ├── parse_replay.py │ ├── parse_replay.sh │ ├── replay2global_features.py │ └── sample_actions.py ├── preprocess/ │ ├── parse_replay_info.py │ ├── preprocess.py │ └── preprocess.sh ├── requirements.txt └── train_val_test/ ├── Protoss_vs_Protoss/ │ ├── test.json │ ├── train.json │ └── val.json ├── Protoss_vs_Terran/ │ ├── test.json │ ├── train.json │ └── val.json ├── Protoss_vs_Zerg/ │ ├── test.json │ ├── train.json │ └── val.json ├── Terran_vs_Terran/ │ ├── test.json │ ├── train.json │ └── val.json ├── Terran_vs_Zerg/ │ ├── test.json │ ├── train.json │ └── val.json └── Zerg_vs_Zerg/ ├── test.json ├── train.json └── val.json