Skip to content

Instantly share code, notes, and snippets.

Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@pablocastilla
pablocastilla / OpenAIGym-LunaLander-Evolutionary-Parallel.py
Last active June 20, 2017 20:36
Evolutionary resolution of lunar lander v2
## Evolutionary resolution of lunar lander v2
import gym
from gym import wrappers
import numpy as np
import concurrent.futures
import logging
import threading
@EveningShen
EveningShen / llnn.py
Last active August 12, 2018 17:39
Lunar Lander Neural Network
import gym
from gym.wrappers import Monitor
import itertools
import numpy as np
import os
import random
import sys
import tensorflow as tf
from collections import deque