Skip to content

Instantly share code, notes, and snippets.

View sushantkumar23's full-sized avatar
🎯
Focusing

Sushant sushantkumar23

🎯
Focusing
View GitHub Profile
@sushantkumar23
sushantkumar23 / trade_env.py
Last active July 11, 2019 12:11
SineTradeEnv-v0
# trade_env.py
import numpy as np
import gym
class SineEnv(gym.Env):
"""
An Env that trades for n steps and returns rewards and observations by following
a sine curve
"""
def __init__(self, n=200, offset=3, amplitude=0.6, wavelength=0.1):
@sushantkumar23
sushantkumar23 / nes.py
Created September 28, 2017 18:52 — forked from karpathy/nes.py
Natural Evolution Strategies (NES) toy example that optimizes a quadratic function
"""
A bare bones examples of optimizing a black-box function (f) using
Natural Evolution Strategies (NES), where the parameter distribution is a
gaussian of fixed standard deviation.
"""
import numpy as np
np.random.seed(0)
# the function we want to optimize
@sushantkumar23
sushantkumar23 / min-char-rnn.py
Created September 28, 2017 18:51 — forked from karpathy/min-char-rnn.py
Minimal character-level language model with a Vanilla Recurrent Neural Network, in Python/numpy
"""
Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy)
BSD License
"""
import numpy as np
# data I/O
data = open('input.txt', 'r').read() # should be simple plain text file
chars = list(set(data))
data_size, vocab_size = len(data), len(chars)
# Sushant Kumar