Recent Posts

Tensorflow one_hot

less than 1 minute read

```python indices = [0, 1, 2] depth = 3 tf.one_hot(indices, depth) # output: [3 x 3] [[1., 0., 0.], [0., 1., 0.], [0., 0., 1.]]

Tensorflow gather

1 minute read

```python tf.gather( params, indices, validate_indices=None, name=None, axis=0 )

python api itertools

less than 1 minute read

itertools API First, let’s get the boring part out of the way: ```python import itertools

Memory Augmented RL

less than 1 minute read

Understand Memory Augmented Reinforcement Learning Can we learn an agent with an external memory? external memory (Read/Write)