├── .gitignore ├── LICENSE ├── README.md ├── decision-tree-demo ├── controls.js ├── demo.html ├── demo_2d.png └── style.css ├── decision-tree-min.js ├── decision-tree.js └── random-forest-demo ├── controls.js ├── demo.html ├── demo_2d.png └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lagodiuk/decision-tree-js/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lagodiuk/decision-tree-js/HEAD/README.md -------------------------------------------------------------------------------- /decision-tree-demo/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lagodiuk/decision-tree-js/HEAD/decision-tree-demo/controls.js -------------------------------------------------------------------------------- /decision-tree-demo/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lagodiuk/decision-tree-js/HEAD/decision-tree-demo/demo.html -------------------------------------------------------------------------------- /decision-tree-demo/demo_2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lagodiuk/decision-tree-js/HEAD/decision-tree-demo/demo_2d.png -------------------------------------------------------------------------------- /decision-tree-demo/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lagodiuk/decision-tree-js/HEAD/decision-tree-demo/style.css -------------------------------------------------------------------------------- /decision-tree-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lagodiuk/decision-tree-js/HEAD/decision-tree-min.js -------------------------------------------------------------------------------- /decision-tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lagodiuk/decision-tree-js/HEAD/decision-tree.js -------------------------------------------------------------------------------- /random-forest-demo/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lagodiuk/decision-tree-js/HEAD/random-forest-demo/controls.js -------------------------------------------------------------------------------- /random-forest-demo/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lagodiuk/decision-tree-js/HEAD/random-forest-demo/demo.html -------------------------------------------------------------------------------- /random-forest-demo/demo_2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lagodiuk/decision-tree-js/HEAD/random-forest-demo/demo_2d.png -------------------------------------------------------------------------------- /random-forest-demo/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lagodiuk/decision-tree-js/HEAD/random-forest-demo/style.css --------------------------------------------------------------------------------