├── .clang-format ├── .github └── workflows │ ├── clang.yml │ ├── pylint.yml │ └── test-cpp.yml ├── .gitignore ├── .pylintrc ├── LICENSE ├── README.md ├── hyperparams ├── default.json ├── nhl94.json ├── pong.json └── pong_tr.json ├── models ├── DefenseZone.pt ├── DefenseZone.zip ├── ScoreGoal.pt ├── ScoreGoal.zip ├── airstriker_nature_cnn.zip └── pong_nature_cnn.zip ├── readmes ├── NHL94-README.md └── WWF-README.md ├── retro_ai_lib ├── .gitignore ├── CMakeLists.txt ├── GameAI.h ├── GameAILocal.cpp ├── GameAILocal.h ├── README.md ├── RetroModel.cpp ├── RetroModel.h ├── data │ ├── .gitignore │ ├── MortalKombatII-Genesis │ │ ├── LiuKang.pt │ │ ├── config.json │ │ └── data.json │ ├── NHL941on1-Genesis │ │ ├── DefenseZone.pt │ │ ├── ScoreGoal.pt │ │ ├── config.json │ │ ├── data.json │ │ └── rom.sha │ ├── SuperMarioBros-Nes │ │ ├── data.json │ │ └── model.pt │ └── VirtuaFighter-32x │ │ ├── Akira.pt │ │ ├── config.json │ │ └── data.json ├── games │ ├── DefaultGameAI.cpp │ ├── DefaultGameAI.h │ ├── NHL94GameAI.cpp │ ├── NHL94GameAI.h │ ├── NHL94GameData.cpp │ └── NHL94GameData.h ├── test.cpp └── utils │ ├── data.cpp │ ├── data.h │ ├── json.hpp │ ├── memory.cpp │ ├── memory.h │ ├── unistd.h │ ├── utils.cpp │ └── utils.h ├── screenshots ├── nhl94.png ├── virtua_fighter.png └── wwf.png └── scripts ├── common.py ├── compare_models.py ├── custom_trainers ├── mk2_trainer.py ├── nhl941on1_trainer.py └── wwf_trainer.py ├── env_utils.py ├── env_wrappers.py ├── es.py ├── export_model.py ├── game_wrappers ├── ai_sys.py ├── display.py ├── display_fullscreen.py ├── display_pvp.py ├── fighter_obs.py ├── nhl94_ai.py ├── nhl94_const.py ├── nhl94_display.py ├── nhl94_display_debug.py ├── nhl94_display_pvp.py ├── nhl94_gamestate.py ├── nhl94_mi.py ├── nhl94_obs.py ├── nhl94_rf.py └── pong_obs.py ├── game_wrappers_mgr.py ├── models.py ├── models_utils.py ├── play.py ├── test.py ├── train.py └── train_live.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/clang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/.github/workflows/clang.yml -------------------------------------------------------------------------------- /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /.github/workflows/test-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/.github/workflows/test-cpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/README.md -------------------------------------------------------------------------------- /hyperparams/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/hyperparams/default.json -------------------------------------------------------------------------------- /hyperparams/nhl94.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/hyperparams/nhl94.json -------------------------------------------------------------------------------- /hyperparams/pong.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/hyperparams/pong.json -------------------------------------------------------------------------------- /hyperparams/pong_tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/hyperparams/pong_tr.json -------------------------------------------------------------------------------- /models/DefenseZone.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/models/DefenseZone.pt -------------------------------------------------------------------------------- /models/DefenseZone.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/models/DefenseZone.zip -------------------------------------------------------------------------------- /models/ScoreGoal.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/models/ScoreGoal.pt -------------------------------------------------------------------------------- /models/ScoreGoal.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/models/ScoreGoal.zip -------------------------------------------------------------------------------- /models/airstriker_nature_cnn.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/models/airstriker_nature_cnn.zip -------------------------------------------------------------------------------- /models/pong_nature_cnn.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/models/pong_nature_cnn.zip -------------------------------------------------------------------------------- /readmes/NHL94-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/readmes/NHL94-README.md -------------------------------------------------------------------------------- /readmes/WWF-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/readmes/WWF-README.md -------------------------------------------------------------------------------- /retro_ai_lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/.gitignore -------------------------------------------------------------------------------- /retro_ai_lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/CMakeLists.txt -------------------------------------------------------------------------------- /retro_ai_lib/GameAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/GameAI.h -------------------------------------------------------------------------------- /retro_ai_lib/GameAILocal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/GameAILocal.cpp -------------------------------------------------------------------------------- /retro_ai_lib/GameAILocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/GameAILocal.h -------------------------------------------------------------------------------- /retro_ai_lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/README.md -------------------------------------------------------------------------------- /retro_ai_lib/RetroModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/RetroModel.cpp -------------------------------------------------------------------------------- /retro_ai_lib/RetroModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/RetroModel.h -------------------------------------------------------------------------------- /retro_ai_lib/data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/data/.gitignore -------------------------------------------------------------------------------- /retro_ai_lib/data/MortalKombatII-Genesis/LiuKang.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/data/MortalKombatII-Genesis/LiuKang.pt -------------------------------------------------------------------------------- /retro_ai_lib/data/MortalKombatII-Genesis/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/data/MortalKombatII-Genesis/config.json -------------------------------------------------------------------------------- /retro_ai_lib/data/MortalKombatII-Genesis/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/data/MortalKombatII-Genesis/data.json -------------------------------------------------------------------------------- /retro_ai_lib/data/NHL941on1-Genesis/DefenseZone.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/data/NHL941on1-Genesis/DefenseZone.pt -------------------------------------------------------------------------------- /retro_ai_lib/data/NHL941on1-Genesis/ScoreGoal.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/data/NHL941on1-Genesis/ScoreGoal.pt -------------------------------------------------------------------------------- /retro_ai_lib/data/NHL941on1-Genesis/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/data/NHL941on1-Genesis/config.json -------------------------------------------------------------------------------- /retro_ai_lib/data/NHL941on1-Genesis/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/data/NHL941on1-Genesis/data.json -------------------------------------------------------------------------------- /retro_ai_lib/data/NHL941on1-Genesis/rom.sha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/data/NHL941on1-Genesis/rom.sha -------------------------------------------------------------------------------- /retro_ai_lib/data/SuperMarioBros-Nes/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/data/SuperMarioBros-Nes/data.json -------------------------------------------------------------------------------- /retro_ai_lib/data/SuperMarioBros-Nes/model.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/data/SuperMarioBros-Nes/model.pt -------------------------------------------------------------------------------- /retro_ai_lib/data/VirtuaFighter-32x/Akira.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/data/VirtuaFighter-32x/Akira.pt -------------------------------------------------------------------------------- /retro_ai_lib/data/VirtuaFighter-32x/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/data/VirtuaFighter-32x/config.json -------------------------------------------------------------------------------- /retro_ai_lib/data/VirtuaFighter-32x/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/data/VirtuaFighter-32x/data.json -------------------------------------------------------------------------------- /retro_ai_lib/games/DefaultGameAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/games/DefaultGameAI.cpp -------------------------------------------------------------------------------- /retro_ai_lib/games/DefaultGameAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/games/DefaultGameAI.h -------------------------------------------------------------------------------- /retro_ai_lib/games/NHL94GameAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/games/NHL94GameAI.cpp -------------------------------------------------------------------------------- /retro_ai_lib/games/NHL94GameAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/games/NHL94GameAI.h -------------------------------------------------------------------------------- /retro_ai_lib/games/NHL94GameData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/games/NHL94GameData.cpp -------------------------------------------------------------------------------- /retro_ai_lib/games/NHL94GameData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/games/NHL94GameData.h -------------------------------------------------------------------------------- /retro_ai_lib/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/test.cpp -------------------------------------------------------------------------------- /retro_ai_lib/utils/data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/utils/data.cpp -------------------------------------------------------------------------------- /retro_ai_lib/utils/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/utils/data.h -------------------------------------------------------------------------------- /retro_ai_lib/utils/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/utils/json.hpp -------------------------------------------------------------------------------- /retro_ai_lib/utils/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/utils/memory.cpp -------------------------------------------------------------------------------- /retro_ai_lib/utils/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/utils/memory.h -------------------------------------------------------------------------------- /retro_ai_lib/utils/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/utils/unistd.h -------------------------------------------------------------------------------- /retro_ai_lib/utils/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/utils/utils.cpp -------------------------------------------------------------------------------- /retro_ai_lib/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/retro_ai_lib/utils/utils.h -------------------------------------------------------------------------------- /screenshots/nhl94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/screenshots/nhl94.png -------------------------------------------------------------------------------- /screenshots/virtua_fighter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/screenshots/virtua_fighter.png -------------------------------------------------------------------------------- /screenshots/wwf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/screenshots/wwf.png -------------------------------------------------------------------------------- /scripts/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/common.py -------------------------------------------------------------------------------- /scripts/compare_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/compare_models.py -------------------------------------------------------------------------------- /scripts/custom_trainers/mk2_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/custom_trainers/mk2_trainer.py -------------------------------------------------------------------------------- /scripts/custom_trainers/nhl941on1_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/custom_trainers/nhl941on1_trainer.py -------------------------------------------------------------------------------- /scripts/custom_trainers/wwf_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/custom_trainers/wwf_trainer.py -------------------------------------------------------------------------------- /scripts/env_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/env_utils.py -------------------------------------------------------------------------------- /scripts/env_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/env_wrappers.py -------------------------------------------------------------------------------- /scripts/es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/es.py -------------------------------------------------------------------------------- /scripts/export_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/export_model.py -------------------------------------------------------------------------------- /scripts/game_wrappers/ai_sys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/game_wrappers/ai_sys.py -------------------------------------------------------------------------------- /scripts/game_wrappers/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/game_wrappers/display.py -------------------------------------------------------------------------------- /scripts/game_wrappers/display_fullscreen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/game_wrappers/display_fullscreen.py -------------------------------------------------------------------------------- /scripts/game_wrappers/display_pvp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/game_wrappers/display_pvp.py -------------------------------------------------------------------------------- /scripts/game_wrappers/fighter_obs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/game_wrappers/fighter_obs.py -------------------------------------------------------------------------------- /scripts/game_wrappers/nhl94_ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/game_wrappers/nhl94_ai.py -------------------------------------------------------------------------------- /scripts/game_wrappers/nhl94_const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/game_wrappers/nhl94_const.py -------------------------------------------------------------------------------- /scripts/game_wrappers/nhl94_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/game_wrappers/nhl94_display.py -------------------------------------------------------------------------------- /scripts/game_wrappers/nhl94_display_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/game_wrappers/nhl94_display_debug.py -------------------------------------------------------------------------------- /scripts/game_wrappers/nhl94_display_pvp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/game_wrappers/nhl94_display_pvp.py -------------------------------------------------------------------------------- /scripts/game_wrappers/nhl94_gamestate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/game_wrappers/nhl94_gamestate.py -------------------------------------------------------------------------------- /scripts/game_wrappers/nhl94_mi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/game_wrappers/nhl94_mi.py -------------------------------------------------------------------------------- /scripts/game_wrappers/nhl94_obs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/game_wrappers/nhl94_obs.py -------------------------------------------------------------------------------- /scripts/game_wrappers/nhl94_rf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/game_wrappers/nhl94_rf.py -------------------------------------------------------------------------------- /scripts/game_wrappers/pong_obs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/game_wrappers/pong_obs.py -------------------------------------------------------------------------------- /scripts/game_wrappers_mgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/game_wrappers_mgr.py -------------------------------------------------------------------------------- /scripts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/models.py -------------------------------------------------------------------------------- /scripts/models_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/models_utils.py -------------------------------------------------------------------------------- /scripts/play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/play.py -------------------------------------------------------------------------------- /scripts/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/test.py -------------------------------------------------------------------------------- /scripts/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/train.py -------------------------------------------------------------------------------- /scripts/train_live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatPoliquin/stable-retro-scripts/HEAD/scripts/train_live.py --------------------------------------------------------------------------------