On Mon, Mar 24, 2014 at 06:54:45AM -0400, Hamzeh Alsalhi wrote: > The changes I am making reside mostly in the Cython .pyx source code for the > tree. I need to build and compile my changes to use in a small rf classifier > script. So it seems like I need to go through the regular build process with > "python setup.py build_ext --inplace" and that before I also need to compile > the tree Cython code by doing "cython -a _tree.pyx". Can someone confirm that > this is the correct way to compile my changes?
It is. > Finally I want to make sure scripts I am writing that import scikit learn > modules use the build of scikit learn that I am editing source for, how can I > make sure scripts I write use this build and not pre existing system > installations of scikit learn? Raise an error in the code path that you think you are covering and chck that it is actually raised? That the most fail safe method I know for making sure that you are running the code you think you are. G ------------------------------------------------------------------------------ Learn Graph Databases - Download FREE O'Reilly Book "Graph Databases" is the definitive new guide to graph databases and their applications. Written by three acclaimed leaders in the field, this first edition is now available. Download your free book today! http://p.sf.net/sfu/13534_NeoTech _______________________________________________ Scikit-learn-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/scikit-learn-general
