Hoyt Koepke
Hoyt Koepke
Currently, our random number generator uses boost random library, which has largely been supplanted by C++11. This PR updates the random number tools to use the C++11 intrinsics. This change...
Current python uses `python -m venv` to run virtualenv. This updates our toolchain setup to reflect this. Also fixes a bug in which creating softlinks can cause the script to...
This PR adds an XCode project that demonstrates how to effectively write a swift ML model while allowing it to be called from C++ or python. The key idea is...
Rearchitecture of the the build system. A vast simplification. Changes - ./configure can produce an XCode project of the Turi source code. - deps/ can be compiled and installed out...
This class proposes a new method for managing extensions. It is meant to replace the bulky and unweildy macro system in use currently. The new code is contained in src/model_server_v2/....
The current tutorial doesn't work off of the master branch of the github repository (found trying to coach a friend through the installation and starting examples.
In the graphlab tutorial at http://docs.graphlab.org/using_graphlab.html, the build environment is not explained at all. It should at least contain or reference the information in the main readme file about using...
In the "Fiber Compatible Remote Requests" section, an example is given as:: ... /\* elsewhere _/ graphlab::remote_future future = fiber_remote_request(1, /_ call to machine 1 */ add_one, 1); This should...
Currently, 'r+' mode is not handled due to assuming that modes starting with 'r' are read only.