forked from jessfraz/random-forest-classifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·32 lines (32 loc) · 934 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "random-forest-classifier",
"version": "0.6.0",
"description": "A random forest classifier. A random forest is a meta estimator that fits a number of decision tree classifiers on various sub-samples of the dataset and use averaging to improve the predictive accuracy and control over-fitting.",
"main": "index.js",
"scripts": {
"test": "tests/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jessfraz/random-forest-classifier"
},
"keywords": [
"random forest",
"machine learning",
"classifier"
],
"author": "Jessica Frazelle",
"license": "MIT",
"bugs": {
"url": "https://github.com/jessfraz/random-forest-classifier/issues"
},
"homepage": "https://github.com/jessfraz/random-forest-classifier",
"dependencies": {
"async": "^0.9.0",
"underscore": "^1.6.0"
},
"devDependencies": {
"ejs": "^1.0.0",
"express": "^4.4.4"
}
}