-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
35 lines (35 loc) · 1.14 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
35
{
"name": "rubix/har",
"type": "project",
"description": "Recognize one of six human activities such as standing, sitting, and walking using a Softmax Classifier trained on mobile phone sensor data.",
"homepage": "https://github.com/RubixML/HAR",
"license": "MIT",
"readme": "README.md",
"keywords": [
"classification", "classifier", "cross validation", "dataset", "data science",
"dimensionality reduction", "example project", "har", "human activity recognition",
"imu sensor", "machine learning", "ml", "mobile phone sensor", "momentum", "php", "php ml",
"rubix ml", "rubixml", "softmax", "tutorial"
],
"authors": [
{
"name": "Andrew DalPino",
"homepage": "https://github.com/andrewdalpino",
"role": "Lead Engineer"
}
],
"require": {
"php": ">=7.4",
"rubix/ml": "^2.0"
},
"scripts": {
"train": "@php train.php",
"test": "@php validate.php"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}