Skip to content

Commit 5c8c45a

Browse files
committed
Fix namespacing
1 parent 3ebecdb commit 5c8c45a

53 files changed

Lines changed: 53 additions & 53 deletions

Some content is hidden

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

tests/NeuralNet/ActivationFunctions/ELUTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types = 1);
44

5-
namespace Rubix\ML\Tests\NeuralNet\ActivationFunctions\ELU;
5+
namespace Rubix\ML\Tests\NeuralNet\ActivationFunctions;
66

77
use Generator;
88
use NDArray;

tests/NeuralNet/ActivationFunctions/GELUTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types = 1);
44

5-
namespace Rubix\ML\Tests\NeuralNet\ActivationFunctions\GELU;
5+
namespace Rubix\ML\Tests\NeuralNet\ActivationFunctions;
66

77
use Generator;
88
use NDArray;

tests/NeuralNet/ActivationFunctions/HardSiLUTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types = 1);
44

5-
namespace Rubix\ML\Tests\NeuralNet\ActivationFunctions\HardSiLU;
5+
namespace Rubix\ML\Tests\NeuralNet\ActivationFunctions;
66

77
use Generator;
88
use NDArray;

tests/NeuralNet/ActivationFunctions/HardSigmoidTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types = 1);
44

5-
namespace Rubix\ML\Tests\NeuralNet\ActivationFunctions\HardSigmoid;
5+
namespace Rubix\ML\Tests\NeuralNet\ActivationFunctions;
66

77
use Generator;
88
use NDArray;

tests/NeuralNet/ActivationFunctions/HyperbolicTangentTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types = 1);
44

5-
namespace Rubix\ML\Tests\NeuralNet\ActivationFunctions\HyperbolicTangent;
5+
namespace Rubix\ML\Tests\NeuralNet\ActivationFunctions;
66

77
use Generator;
88
use NumPower;

tests/NeuralNet/ActivationFunctions/LeakyReLUTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types = 1);
44

5-
namespace Rubix\ML\Tests\NeuralNet\ActivationFunctions\LeakyReLU;
5+
namespace Rubix\ML\Tests\NeuralNet\ActivationFunctions;
66

77
use Generator;
88
use NDArray;

tests/NeuralNet/ActivationFunctions/ReLU6Test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types = 1);
44

5-
namespace Rubix\ML\Tests\NeuralNet\ActivationFunctions\ReLU6;
5+
namespace Rubix\ML\Tests\NeuralNet\ActivationFunctions;
66

77
use Generator;
88
use NDArray;

tests/NeuralNet/ActivationFunctions/ReLUTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types = 1);
44

5-
namespace Rubix\ML\Tests\NeuralNet\ActivationFunctions\ReLU;
5+
namespace Rubix\ML\Tests\NeuralNet\ActivationFunctions;
66

77
use Generator;
88
use NDArray;

tests/NeuralNet/ActivationFunctions/SELUTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types = 1);
44

5-
namespace Rubix\ML\Tests\NeuralNet\ActivationFunctions\SELU;
5+
namespace Rubix\ML\Tests\NeuralNet\ActivationFunctions;
66

77
use Generator;
88
use NDArray;

tests/NeuralNet/ActivationFunctions/SiLUTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types = 1);
44

5-
namespace Rubix\ML\Tests\NeuralNet\ActivationFunctions\SiLU;
5+
namespace Rubix\ML\Tests\NeuralNet\ActivationFunctions;
66

77
use Generator;
88
use NDArray;

0 commit comments

Comments
 (0)