Coders Packet

Packets submitted by Rhushabh Gedam

Travelling Salesperson Problem using Genetic Algorithm in Python

Travelling Salesperson Problem is a NP-Hard problem. Genetic Algorithms attempt to solve this problem using the Darwin's law of natural selection and survival of the fittest.

Decision Trees in Python using Pandas and Networkx in Python

Decision trees are usually used in Machine Learning classification problems. This program allows you to provide the CSV file & output variable and returns a PNG file of the decision tree.

Snake game Custom environment in Python using OpenAI Gym

Snake-gym is a custom environment of the classic snake game using OpenAI Gym. It is meant to test different Reinforcement Learning Agents. It has a "human" mode to serve as a Single Player game.