-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
37 lines (37 loc) · 1.31 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
36
37
{
"name": "rubix/sentiment",
"type": "project",
"description": "An example project using a multi layer feed forward neural network for text sentiment classification trained with 25,000 movie reviews from IMDB.",
"homepage": "https://github.com/RubixML/Sentiment",
"license": "MIT",
"readme": "README.md",
"keywords": [
"bag of words", "batch norm", "classification", "dataset", "data science", "example project",
"feed forward", "imdb", "leaky relu", "machine learning", "movie reviews", "multilayer perceptron",
"natural language processing", "neural network", "nlp", "n-gram", "php", "php ml", "prelu",
"relu", "rubix ml", "rubixml", "sentiment analysis", "sentiment prediction", "text mining",
"tf-idf", "tf idf", "tutorial"
],
"authors": [
{
"name": "Andrew DalPino",
"homepage": "https://github.com/andrewdalpino",
"role": "Lead Engineer"
}
],
"require": {
"php": ">=7.4",
"rubix/ml": "^2.2"
},
"scripts": {
"predict": "@php predict.php",
"train": "@php train.php",
"test": "@php validate.php"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}