Eric Liu
Eric Liu
At the moment, I don't see a great way to apply a transform to a `carray` besides re-allocating all of the data, like: ``` my_ctable['f0'] = my_ctable.eval('f0 + 1', cparams=my_ctable.cparams)...
Could we have fluffy show the rough date/time when the user hits "paste"? I think it'd be useful to see what fluffies are old or new--relevant when they show batch/query/cli/etc...
Python 2.7 is pretty much at the end of it's support life-span (and way past the end of development). We dev'd for 2.7 originally b/c of external constraints in our...
This would be nice before OS or before we have a ton of users--changing versions early on affects fewer people. That said, this change isn't a huge deal. Currently the...
We currently use gcc 4.7.3 for MOE/C++ stuff; this choice was kind of arbitrary and made just b/c that's what m/fsaric used and I borrowed it from them. Unfortunately gcc...
Our tests/build is failing on Travis for unknown reasons (e.g., import errors from scipy/numpy internals). My guess is due to dependency on out of date packages (or too new packages)...
When you run: ``` docker build ``` docker builds an image with `` as the context; i.e., the contents of the current directory are copied to Docker. If the current...
@rmcgibbo was kind enough to set us up with a conda build in: https://github.com/Yelp/MOE/pull/417 Right now we don't have a place to host common binaries for people so they can...
The requirements yaml, `conda-recipe/moe/meta.yaml` for MOE, duplicates information in requirements.txt. It also doesn't include version info which can be important (although everything works right now). It'd be nice to auto-produce...
MOE currently has no healthcheck, let's add one. Things to consider: - pyramid multithreaded by default? don't want healthcheck to fail b/c machine is busy doing heavy optimization work -...