This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Regex whitelist filters provided by qfettes | |
# https://github.com/qfettes | |
# Regular Expressions: | |
# Fixes hulu video start issue | |
ads-[a-za-z0-9]*-darwin.hulustream.com | |
link.morningbrew.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#undiscounted, fast epsilon decay, constant alpha | |
import numpy as np | |
import scipy | |
import gym | |
from collections import defaultdict | |
from gym import wrappers | |
GAMMA = 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import scipy | |
import gym | |
from collections import defaultdict | |
from gym import wrappers | |
GAMMA = 1 | |
ALPHA = 0.1 | |
NUM_EPISODES = 50000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import scipy | |
import gym | |
from collections import defaultdict | |
from gym import wrappers | |
GAMMA = 0.9 | |
ALPHA = 0.1 | |
NUM_EPISODES = 500000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import scipy | |
import gym | |
from collections import defaultdict | |
from gym import wrappers | |
GAMMA = 0.9 | |
ALPHA = 0.1 | |
NUM_EPISODES = 500000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import scipy | |
import gym | |
from collections import defaultdict | |
from gym import wrappers | |
GAMMA = 0.9 | |
ALPHA = 0.1 | |
NUM_EPISODES = 500000 |