Add copyright declaration

This commit is contained in:
Shangtong Zhang
2017-04-20 15:20:23 -06:00
parent e8b469b796
commit bb0429a5da
6 changed files with 36 additions and 0 deletions
+6
View File
@@ -1,3 +1,9 @@
#######################################################################
# Copyright (C) 2017 Shangtong Zhang(zhangshangtong.cpp@gmail.com) #
# Permission given to modify the code as long as you keep this #
# declaration at the top #
#######################################################################
import tensorflow as tf
def fully_connected(model_name, layer_name, var_in, dim_in, dim_out,
+6
View File
@@ -1,3 +1,9 @@
#######################################################################
# Copyright (C) 2017 Shangtong Zhang(zhangshangtong.cpp@gmail.com) #
# Permission given to modify the code as long as you keep this #
# declaration at the top #
#######################################################################
import tensorflow as tf
from network import *
from replay import *
+6
View File
@@ -1,3 +1,9 @@
#######################################################################
# Copyright (C) 2017 Shangtong Zhang(zhangshangtong.cpp@gmail.com) #
# Permission given to modify the code as long as you keep this #
# declaration at the top #
#######################################################################
import tensorflow as tf
from common import *
+6
View File
@@ -1,3 +1,9 @@
#######################################################################
# Copyright (C) 2017 Shangtong Zhang(zhangshangtong.cpp@gmail.com) #
# Permission given to modify the code as long as you keep this #
# declaration at the top #
#######################################################################
import numpy as np
class GreedyPolicy:
+6
View File
@@ -1,3 +1,9 @@
#######################################################################
# Copyright (C) 2017 Shangtong Zhang(zhangshangtong.cpp@gmail.com) #
# Permission given to modify the code as long as you keep this #
# declaration at the top #
#######################################################################
import numpy as np
class Replay:
+6
View File
@@ -1,3 +1,9 @@
#######################################################################
# Copyright (C) 2017 Shangtong Zhang(zhangshangtong.cpp@gmail.com) #
# Permission given to modify the code as long as you keep this #
# declaration at the top #
#######################################################################
import gym
import sys
from dqn_agent import *