William

Results 9 comments of William

Any update here?

I've checked out https://github.com/mathieu1/zappa_conda I have python3.6 installed via conda `Python 3.6.3 |Anaconda, Inc.`. Changing the `environment.yml` file to require `python=3.6` results in: ```UnsatisfiableError: The following specifications were found to...

My comment was in reference to Hinton's paper on [A Practical Guide to Training Restricted Boltzmann Machines](http://www.cs.toronto.edu/~hinton/absps/guideTR.pdf), though I seem to recall a Bengio paper where he _didn't_ do it,...

@Flanco1 I'm trying to do something similar. Two questions: 1) why did you choose to build/install pycurl from the fork `ycq0125` instead of the main project? 2) when setting the...

I took the docker image for curl-impersonate and modified it so it wouldn't delete the `build/` folder. I then rebuilt the container successfully. Inside this container I tried: ```bash apt...

@jcrist we originally started with the remote scheduler but found this doubled our failure footprint as if *either* the node running the Scheduler or the Application Master failed, the cluster...

> If the scheduler goes down and restarts, how do you handle that from your client code? This is essentially the problem I'm trying to mitigate - I'm trying to...

I too am seeing this issue. Only with proxies though.

+1 I was able to fix the issue for the `HiveStep` by adding in `action_on_failure` as a default argument to the function that is passed to the Super: This is...