Ryan Peach

Results 46 issues of Ryan Peach

What are your best practices for dealing with NaN's in the output. I've decided to use masking in the reduce mean for finite values only: `tf.reduce_mean(tf.boolean_mask(out, tf.is_finite(out))` I'm thinking of...

Hi, I'm trying to implement a version of [RND](https://blog.openai.com/reinforcement-learning-with-prediction-based-rewards/#RNDjump) for implicit rewards. I'd like it to be both environment agnostic and agent agnostic. The idea was to implement it as...

priority/p3

One notable exception from the Observation spaces as they are is that of arbitrary length sequences, such as nlp or coding problems. The old games that were text IO are...

priority/p3

> /usr/local/Cellar/python3/3.6.4_2/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/altair/utils/core.py:81: UserWarning: I don't know how to infer vegalite type from 'empty'. Defaulting to nominal. Maybe we should test as to whether or not there are edges or nodes...

So, I have a quick feature request that I've just spent basically all day trying to implement with no success, because I really can't for the life of me figure...

When running. ``` hadoop distcp \ -Dfs.s3n.awsAccessKeyId='...' \ -Dfs.s3n.awsSecretAccessKey='...' \ s3n://hadoopbook/ncdc/all input/ncdc/all ``` As recommended [here](http://hadoopbook.com/code.html), from an EC2 Cluster, I get the following error: ``` 2018-01-08 19:31:57,776 INFO tools.DistCp:...

This prevents FitnessMax and Individual from being created as classes on each worker node, overriding their past declaration.

``` assert self.max_iter >= 10000, "'n_iter' should be greater than 10000." ``` This line in QLearning is inconvenient and arbitrary. It should be either removed or turned into a warning....

From my comment in: tiangolo#88 Allows command to be used with async. Let me know if using *args, **kwargs is ok or if it needs to be typed. *args, **kwargs...

So this seems to be an implementation of the tree as described in the paper, however, how then do we distill the knowledge from a neural network into the tree?...