├── .gitignore ├── Current_Model_Pool ├── model_new0.keras ├── model_new1.keras ├── model_new10.keras ├── model_new11.keras ├── model_new12.keras ├── model_new13.keras ├── model_new14.keras ├── model_new15.keras ├── model_new16.keras ├── model_new17.keras ├── model_new18.keras ├── model_new19.keras ├── model_new2.keras ├── model_new20.keras ├── model_new21.keras ├── model_new22.keras ├── model_new23.keras ├── model_new24.keras ├── model_new25.keras ├── model_new26.keras ├── model_new27.keras ├── model_new28.keras ├── model_new29.keras ├── model_new3.keras ├── model_new30.keras ├── model_new31.keras ├── model_new32.keras ├── model_new33.keras ├── model_new34.keras ├── model_new35.keras ├── model_new36.keras ├── model_new37.keras ├── model_new38.keras ├── model_new39.keras ├── model_new4.keras ├── model_new40.keras ├── model_new41.keras ├── model_new42.keras ├── model_new43.keras ├── model_new44.keras ├── model_new45.keras ├── model_new46.keras ├── model_new47.keras ├── model_new48.keras ├── model_new49.keras ├── model_new5.keras ├── model_new6.keras ├── model_new7.keras ├── model_new8.keras └── model_new9.keras ├── LICENSE ├── README.md ├── Screenshots ├── trained_final.gif ├── trained_set_initial.gif ├── untrained_initial_states_nospread.gif └── untrained_initial_states_spread.gif ├── TrainedModels ├── Individual_Best_Trained_Models │ ├── model_trained1.keras │ └── model_trained2.keras └── Model_Pool_Trained1 │ ├── model_new0.keras │ ├── model_new1.keras │ ├── model_new10.keras │ ├── model_new11.keras │ ├── model_new12.keras │ ├── model_new13.keras │ ├── model_new14.keras │ ├── model_new15.keras │ ├── model_new16.keras │ ├── model_new17.keras │ ├── model_new18.keras │ ├── model_new19.keras │ ├── model_new2.keras │ ├── model_new20.keras │ ├── model_new21.keras │ ├── model_new22.keras │ ├── model_new23.keras │ ├── model_new24.keras │ ├── model_new25.keras │ ├── model_new26.keras │ ├── model_new27.keras │ ├── model_new28.keras │ ├── model_new29.keras │ ├── model_new3.keras │ ├── model_new30.keras │ ├── model_new31.keras │ ├── model_new32.keras │ ├── model_new33.keras │ ├── model_new34.keras │ ├── model_new35.keras │ ├── model_new36.keras │ ├── model_new37.keras │ ├── model_new38.keras │ ├── model_new39.keras │ ├── model_new4.keras │ ├── model_new40.keras │ ├── model_new41.keras │ ├── model_new42.keras │ ├── model_new43.keras │ ├── model_new44.keras │ ├── model_new45.keras │ ├── model_new46.keras │ ├── model_new47.keras │ ├── model_new48.keras │ ├── model_new49.keras │ ├── model_new5.keras │ ├── model_new6.keras │ ├── model_new7.keras │ ├── model_new8.keras │ └── model_new9.keras ├── assets ├── audio │ ├── die.ogg │ ├── die.wav │ ├── hit.ogg │ ├── hit.wav │ ├── point.ogg │ ├── point.wav │ ├── swoosh.ogg │ ├── swoosh.wav │ ├── wing.ogg │ └── wing.wav └── sprites │ ├── 0.png │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── background-day.png │ ├── background-night.png │ ├── base.png │ ├── bluebird-downflap.png │ ├── bluebird-midflap.png │ ├── bluebird-upflap.png │ ├── gameover.png │ ├── message.png │ ├── pipe-green.png │ ├── pipe-red.png │ ├── redbird-downflap.png │ ├── redbird-midflap.png │ ├── redbird-upflap.png │ ├── yellowbird-downflap.png │ ├── yellowbird-midflap.png │ └── yellowbird-upflap.png ├── flappy.ico └── flappy.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /Current_Model_Pool/model_new0.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new0.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new1.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new1.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new10.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new10.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new11.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new11.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new12.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new12.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new13.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new13.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new14.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new14.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new15.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new15.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new16.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new16.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new17.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new17.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new18.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new18.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new19.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new19.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new2.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new2.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new20.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new20.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new21.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new21.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new22.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new22.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new23.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new23.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new24.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new24.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new25.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new25.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new26.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new26.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new27.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new27.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new28.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new28.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new29.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new29.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new3.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new3.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new30.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new30.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new31.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new31.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new32.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new32.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new33.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new33.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new34.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new34.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new35.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new35.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new36.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new36.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new37.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new37.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new38.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new38.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new39.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new39.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new4.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new4.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new40.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new40.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new41.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new41.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new42.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new42.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new43.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new43.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new44.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new44.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new45.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new45.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new46.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new46.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new47.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new47.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new48.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new48.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new49.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new49.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new5.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new5.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new6.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new6.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new7.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new7.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new8.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new8.keras -------------------------------------------------------------------------------- /Current_Model_Pool/model_new9.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Current_Model_Pool/model_new9.keras -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/trained_final.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Screenshots/trained_final.gif -------------------------------------------------------------------------------- /Screenshots/trained_set_initial.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Screenshots/trained_set_initial.gif -------------------------------------------------------------------------------- /Screenshots/untrained_initial_states_nospread.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Screenshots/untrained_initial_states_nospread.gif -------------------------------------------------------------------------------- /Screenshots/untrained_initial_states_spread.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/Screenshots/untrained_initial_states_spread.gif -------------------------------------------------------------------------------- /TrainedModels/Individual_Best_Trained_Models/model_trained1.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Individual_Best_Trained_Models/model_trained1.keras -------------------------------------------------------------------------------- /TrainedModels/Individual_Best_Trained_Models/model_trained2.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Individual_Best_Trained_Models/model_trained2.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new0.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new0.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new1.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new1.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new10.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new10.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new11.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new11.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new12.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new12.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new13.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new13.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new14.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new14.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new15.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new15.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new16.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new16.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new17.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new17.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new18.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new18.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new19.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new19.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new2.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new2.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new20.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new20.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new21.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new21.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new22.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new22.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new23.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new23.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new24.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new24.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new25.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new25.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new26.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new26.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new27.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new27.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new28.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new28.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new29.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new29.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new3.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new3.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new30.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new30.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new31.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new31.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new32.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new32.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new33.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new33.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new34.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new34.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new35.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new35.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new36.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new36.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new37.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new37.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new38.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new38.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new39.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new39.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new4.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new4.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new40.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new40.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new41.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new41.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new42.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new42.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new43.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new43.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new44.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new44.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new45.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new45.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new46.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new46.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new47.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new47.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new48.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new48.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new49.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new49.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new5.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new5.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new6.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new6.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new7.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new7.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new8.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new8.keras -------------------------------------------------------------------------------- /TrainedModels/Model_Pool_Trained1/model_new9.keras: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/TrainedModels/Model_Pool_Trained1/model_new9.keras -------------------------------------------------------------------------------- /assets/audio/die.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/audio/die.ogg -------------------------------------------------------------------------------- /assets/audio/die.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/audio/die.wav -------------------------------------------------------------------------------- /assets/audio/hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/audio/hit.ogg -------------------------------------------------------------------------------- /assets/audio/hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/audio/hit.wav -------------------------------------------------------------------------------- /assets/audio/point.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/audio/point.ogg -------------------------------------------------------------------------------- /assets/audio/point.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/audio/point.wav -------------------------------------------------------------------------------- /assets/audio/swoosh.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/audio/swoosh.ogg -------------------------------------------------------------------------------- /assets/audio/swoosh.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/audio/swoosh.wav -------------------------------------------------------------------------------- /assets/audio/wing.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/audio/wing.ogg -------------------------------------------------------------------------------- /assets/audio/wing.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/audio/wing.wav -------------------------------------------------------------------------------- /assets/sprites/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/0.png -------------------------------------------------------------------------------- /assets/sprites/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/1.png -------------------------------------------------------------------------------- /assets/sprites/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/2.png -------------------------------------------------------------------------------- /assets/sprites/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/3.png -------------------------------------------------------------------------------- /assets/sprites/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/4.png -------------------------------------------------------------------------------- /assets/sprites/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/5.png -------------------------------------------------------------------------------- /assets/sprites/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/6.png -------------------------------------------------------------------------------- /assets/sprites/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/7.png -------------------------------------------------------------------------------- /assets/sprites/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/8.png -------------------------------------------------------------------------------- /assets/sprites/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/9.png -------------------------------------------------------------------------------- /assets/sprites/background-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/background-day.png -------------------------------------------------------------------------------- /assets/sprites/background-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/background-night.png -------------------------------------------------------------------------------- /assets/sprites/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/base.png -------------------------------------------------------------------------------- /assets/sprites/bluebird-downflap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/bluebird-downflap.png -------------------------------------------------------------------------------- /assets/sprites/bluebird-midflap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/bluebird-midflap.png -------------------------------------------------------------------------------- /assets/sprites/bluebird-upflap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/bluebird-upflap.png -------------------------------------------------------------------------------- /assets/sprites/gameover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/gameover.png -------------------------------------------------------------------------------- /assets/sprites/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/message.png -------------------------------------------------------------------------------- /assets/sprites/pipe-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/pipe-green.png -------------------------------------------------------------------------------- /assets/sprites/pipe-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/pipe-red.png -------------------------------------------------------------------------------- /assets/sprites/redbird-downflap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/redbird-downflap.png -------------------------------------------------------------------------------- /assets/sprites/redbird-midflap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/redbird-midflap.png -------------------------------------------------------------------------------- /assets/sprites/redbird-upflap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/redbird-upflap.png -------------------------------------------------------------------------------- /assets/sprites/yellowbird-downflap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/yellowbird-downflap.png -------------------------------------------------------------------------------- /assets/sprites/yellowbird-midflap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/yellowbird-midflap.png -------------------------------------------------------------------------------- /assets/sprites/yellowbird-upflap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/assets/sprites/yellowbird-upflap.png -------------------------------------------------------------------------------- /flappy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/flappy.ico -------------------------------------------------------------------------------- /flappy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erilyth/Flappy-Bird-Genetic-Algorithms/HEAD/flappy.py --------------------------------------------------------------------------------