-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 1.05 KB
/
composer.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
33
34
{
"name": "jenutka/titanic_php",
"type": "project",
"description": "An example project that predicts if Titanic passenger survives for a Kaggle competition using a Random Forest classifier.",
"homepage": "https://github.com/jenutka/titanic_php",
"license": "MIT",
"keywords": [
"dataset", "data science", "ensemble", "example project", "gbm", "random forest",
"gradient boosted machine", "imputation", "machine learning", "ml", "php", "php ml",
"prediction", "regression", "classification", "rubix ml", "rubixml",
"tutorial"
],
"authors": [
{
"name": "Jan Prokes",
"homepage": "https://github.com/jenutka",
"role": "ML Engineer"
}
],
"require": {
"php": ">=7.4",
"rubix/ml": "^2.3"
},
"scripts": {
"predict": "@php predict.php",
"train": "@php train.php"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}