Skip to content

Commit 3ebecdb

Browse files
committed
More progress
1 parent 87b63a7 commit 3ebecdb

181 files changed

Lines changed: 4759 additions & 10369 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
run: composer phplint
7979

8080
- name: Static Analysis
81-
run: composer analyze-ci
81+
run: composer analyze
8282

8383
- name: Unit Tests
8484
run: composer test

benchmarks/NeuralNet/ActivationFunctions/SoftPlusBench.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Rubix\ML\Benchmarks\NeuralNet\ActivationFunctions;
44

55
use Tensor\Matrix;
6-
use Rubix\ML\NeuralNet\ActivationFunctions\SoftPlus;
6+
use Rubix\ML\NeuralNet\ActivationFunctions\Softplus;
77

88
/**
99
* @Groups({"ActivationFunctions"})

composer.json

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,13 @@
3131
}
3232
],
3333
"require": {
34-
"php": ">=8.4",
34+
"php": ">=8.3",
3535
"ext-json": "*",
36-
"ext-rubixnumpower": ">=0.7",
3736
"amphp/parallel": "^1.3",
3837
"andrewdalpino/okbloomer": "^1.0",
3938
"psr/log": "^1.1|^2.0|^3.0",
4039
"rubix/tensor": "^3.0",
4140
"symfony/polyfill-mbstring": "^1.0",
42-
"symfony/polyfill-php80": "^1.17",
43-
"symfony/polyfill-php82": "^1.27",
44-
"symfony/polyfill-php83": "^1.27",
4541
"wamania/php-stemmer": "^4.0"
4642
},
4743
"require-dev": {
@@ -84,7 +80,6 @@
8480
"@check"
8581
],
8682
"analyze": "phpstan analyse -c phpstan.neon --memory-limit 1G",
87-
"analyze-ci": "phpstan analyse -c phpstan-ci.neon --memory-limit 1G",
8883
"benchmark": "phpbench run --report=aggregate",
8984
"check": [
9085
"php-cs-fixer fix --config=.php-cs-fixer.dist.php -vvv --dry-run --using-cache=no --sequential --show-progress=dots --stop-on-violation"

0 commit comments

Comments
 (0)