cart-elc

Source code for CART-ELC
git clone git://git.laack.co/cart-elc.git
Log | Files | Refs | README | LICENSE

Makefile (398B)


      1 test:
      2 	g++ -O3 ./tests/testing.cpp ./src/ELCClassifier.cpp ./src/TreeNode.cpp -o build/test.out
      3 
      4 so:
      5 	python3 ./src/setup.py build
      6 	mv ./build/lib*/dec* ./examples/cart-elc-experiments/decision_tree.so
      7 clean:
      8 	rm -rf ./build/* 2>/dev/null
      9 
     10 
     11 
     12 experiments:
     13 	python3 ./src/setup.py build
     14 	mv ./build/lib*/dec* ./examples/cart-elc-experiments/decision_tree.so
     15 	cd examples/cart-elc-experiments && make