-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.18 KB
/
Copy pathcomposer.json
File metadata and controls
36 lines (36 loc) · 1.18 KB
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
36
{
"name": "rubix/cifar-10",
"type": "project",
"description": "Use the famous CIFAR-10 dataset to train a multi-layer neural network to recognize images of cats, dogs, and other things.",
"homepage": "https://github.com/RubixML/CIFAR10",
"license": "MIT",
"keywords": [
"batch norm", "cifar 10", "cifar-10", "classification", "cross validation", "dataset",
"data science", "dropout", "elu", "example project", "exponential linear unit",
"feed forward", "image recognition", "image classification", "machine learning", "ml",
"multilayer perceptron", "neural network", "php", "php ml", "rubix ml", "rubixml",
"tutorial"
],
"authors": [
{
"name": "Andrew DalPino",
"homepage": "https://github.com/andrewdalpino",
"role": "Lead Engineer"
}
],
"require": {
"php": ">=7.4",
"ext-gd": "*",
"rubix/ml": "^1.0"
},
"scripts": {
"train": "@php train.php",
"test": "@php validate.php"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}