Skip to content

Instantly share code, notes, and snippets.

View rishotics's full-sized avatar
🎯
Focusing

Rishabh Gupta rishotics

🎯
Focusing
  • Rize Labs, ex-Goldman Sachs
  • Bangalore
  • X @rishotics
View GitHub Profile
@malzantot
malzantot / frozenlake_genetic_algorithm.py
Created June 7, 2017 23:06
Solution of the FrozenLake problem using Genetic Algorithm
import numpy as np
import random
import time
import gym
from gym import wrappers
def run_episode(env, policy, episode_len=100):
total_reward = 0
obs = env.reset()
for t in range(episode_len):
@PurpleBooth
PurpleBooth / README-Template.md
Last active June 15, 2024 13:00
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites