-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
27 lines (27 loc) · 863 Bytes
/
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
{
"name": "rubix/iris",
"type": "project",
"description": "An introduction to machine learning in Rubix ML using the famous Iris dataset and the K Nearest Neighbors classifier.",
"homepage": "https://github.com/RubixML/Iris",
"license": "MIT",
"keywords": [
"php", "machine", "learning", "data", "science", "mining", "predictive", "modeling",
"ai", "ml", "classification", "k-nearest-neighbors", "iris", "dataset", "tutorial"
],
"authors": [
{
"name": "Andrew DalPino",
"email": "me@andrewdalpino.com",
"homepage": "https://andrewdalpino.com",
"role": "Lead Engineer"
}
],
"require": {
"php": ">=7.2",
"rubix/ml": "^0.0.19-beta"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
}
}