Skip to content

Instantly share code, notes, and snippets.

@awjuliani
Last active October 11, 2022 21:27
Show Gist options
  • Save awjuliani/b5d83fcf3bf2898656be5730f098e08b to your computer and use it in GitHub Desktop.
Save awjuliani/b5d83fcf3bf2898656be5730f098e08b to your computer and use it in GitHub Desktop.
A Policy-Gradient algorithm that solves Contextual Bandit problems.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@lipixun
Copy link

lipixun commented Oct 30, 2017

@Riotpiaole I've re-implement the tutorial codes here, you may take a look at it.

@pooriaPoorsarvi
Copy link

can anyone explain to me why we do not use softmax instead of sigmoid? and also why we don't use bias?(I tried both and it wouldn't work)

@pooriaPoorsarvi
Copy link

@lipixun do you know the answer to my question? it would really help me thanks

@JaeDukSeo
Copy link

@pooriaPoorsarvi as seen above we already got the responsible_weight variable, now we are getting the negative
Log likelihood to optimize for the maxium (tf only can optimize) no need to consider every other classes

@araknadash
Copy link

Instead of using slim, can use tf as:
state_in_OH = tf.one_hot(self.state_in, s_size)
output = tf.layers.dense(state_in_OH, a_size, tf.nn.sigmoid, use_bias=False, kernel_initializer = tf.ones_initializer())

@xkrishnam
Copy link

xkrishnam commented Jul 29, 2020

Thanks Arthur! this is helpful tutorial for beginers like me. Here is tensorflow 2 implementation may be helpful for someone

@daniel-xion
Copy link

Thanks Arthur! this is helpful tutorial for beginers like me. Here is tensorflow 2 implementation may be helpful for someone

Thanks for the implementation. I wonder how is the implementation a policy network? I don't see policy gradient is used.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment