-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b2a4c64
commit ca61b17
Showing
4 changed files
with
6 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"type": "project", | ||
"description": "Build a classifier to predict the outcome of Dota 2 games with the Naive Bayes algorithm and the results of 102,944 sample games.", | ||
"homepage": "https://github.com/RubixML/Dota2", | ||
"license": "Apache-2.0", | ||
"license": "MIT", | ||
"keywords": [ | ||
"classification", "cross validation", "dataset", "data science", "dota", "dota 2", | ||
"example project", "game outcome prediciton", "machine learning", "ml", "naive bayes", | ||
|
@@ -12,14 +12,13 @@ | |
"authors": [ | ||
{ | ||
"name": "Andrew DalPino", | ||
"email": "[email protected]", | ||
"homepage": "https://andrewdalpino.com", | ||
"homepage": "https://github.com/andrewdalpino", | ||
"role": "Lead Engineer" | ||
} | ||
], | ||
"require": { | ||
"php": ">=7.2", | ||
"rubix/ml": "^0.1.0" | ||
"rubix/ml": "^0.3.0" | ||
}, | ||
"scripts": { | ||
"train": "@php train.php", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,4 +22,4 @@ | |
|
||
if (strtolower(readline('Save this model? (y|[n]): ')) === 'y') { | ||
$estimator->save(); | ||
} | ||
} |