Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: activation function for forward layer #891

Merged
Merged
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
22f4648
added optional parameter for forward layer
Gerhardsa0 Jul 2, 2024
1d7f707
linter fixes
Gerhardsa0 Jul 2, 2024
0651df2
style: apply automated linter fixes
megalinter-bot Jul 2, 2024
ce55e4c
Merge branch 'main' into 889-feat-allow-activation-function-parameter…
Gerhardsa0 Jul 8, 2024
69d242c
linter fixes
Gerhardsa0 Jul 12, 2024
556445d
Merge remote-tracking branch 'origin/889-feat-allow-activation-functi…
Gerhardsa0 Jul 12, 2024
4bee8e1
changed docs for forward layer
Gerhardsa0 Jul 12, 2024
578236f
Merge branch 'main' into 889-feat-allow-activation-function-parameter…
Gerhardsa0 Jul 12, 2024
6b25c14
Merge branch 'main' into 889-feat-allow-activation-function-parameter…
Gerhardsa0 Jul 12, 2024
7fa3ecb
added requested changes
Gerhardsa0 Jul 15, 2024
6f55c07
Merge remote-tracking branch 'origin/889-feat-allow-activation-functi…
Gerhardsa0 Jul 15, 2024
bea6cc6
Merge branch 'main' of https://github.com/Safe-DS/Library into 889-fe…
Gerhardsa0 Jul 15, 2024
3bce4e9
merghed
Gerhardsa0 Jul 15, 2024
f0d0ba7
Linter fixes
Gerhardsa0 Jul 15, 2024
16d1901
Linter fixes
Gerhardsa0 Jul 15, 2024
b7ac39a
removed test, because it can not get called with literal
Gerhardsa0 Jul 15, 2024
12577f3
linter fixes
Gerhardsa0 Jul 15, 2024
125fd11
linter fixes
Gerhardsa0 Jul 15, 2024
ed7abb0
style: apply automated linter fixes
megalinter-bot Jul 15, 2024
6fa6740
linter fixes
Gerhardsa0 Jul 15, 2024
488af2c
Merge remote-tracking branch 'origin/889-feat-allow-activation-functi…
Gerhardsa0 Jul 15, 2024
76531d4
code adjustmend
Gerhardsa0 Jul 15, 2024
671f9d6
code adjustmend
Gerhardsa0 Jul 15, 2024
28692a6
style: apply automated linter fixes
megalinter-bot Jul 15, 2024
b059967
style: apply automated linter fixes
megalinter-bot Jul 15, 2024
7900072
fixed dark mode snapshots
Gerhardsa0 Jul 15, 2024
0233f29
Merge remote-tracking branch 'origin/889-feat-allow-activation-functi…
Gerhardsa0 Jul 15, 2024
b942d54
test: removed cuda test for noise as it is not deterministic on diffe…
Marsmaennchen221 Jul 15, 2024
de0ddcc
Merge branch '889-feat-allow-activation-function-parameter-for-forwar…
Marsmaennchen221 Jul 15, 2024
af48f4f
style: apply automated linter fixes
megalinter-bot Jul 15, 2024
0d3665e
fixed tick labels
Gerhardsa0 Jul 15, 2024
0252e6b
Merge remote-tracking branch 'origin/889-feat-allow-activation-functi…
Gerhardsa0 Jul 15, 2024
a3f7c56
style: apply automated linter fixes
megalinter-bot Jul 15, 2024
59f99a7
Merge branch 'main' of https://github.com/Safe-DS/Library into 889-fe…
Gerhardsa0 Jul 15, 2024
af3ab13
added test and resolved merge conflict
Gerhardsa0 Jul 15, 2024
6ec55c2
Merge remote-tracking branch 'origin/889-feat-allow-activation-functi…
Gerhardsa0 Jul 15, 2024
b5c3c8d
linter changes
Gerhardsa0 Jul 15, 2024
a39368b
style: apply automated linter fixes
megalinter-bot Jul 15, 2024
d5527a6
linter changes
Gerhardsa0 Jul 15, 2024
060f0f5
Merge remote-tracking branch 'origin/889-feat-allow-activation-functi…
Gerhardsa0 Jul 15, 2024
e0eb11a
linter changes
Gerhardsa0 Jul 15, 2024
a9c3f35
linter changes
Gerhardsa0 Jul 15, 2024
8722da4
linter changes
Gerhardsa0 Jul 15, 2024
f8646c3
style: apply automated linter fixes
megalinter-bot Jul 15, 2024
4b70549
style: apply automated linter fixes
megalinter-bot Jul 15, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
linter changes
Gerhardsa0 committed Jul 15, 2024
commit a9c3f35e945323eacd54138b95c226ada81a2a45
2 changes: 1 addition & 1 deletion tests/safeds/ml/nn/test_model.py
Original file line number Diff line number Diff line change
@@ -886,7 +886,7 @@ def test_should_assert_that_is_fitted_is_set_correctly_and_check_return_type(
Table.from_dict({"a": [1, 2, 3, 4], "b": [1.0, 2.0, 3.0, 4.0]}).to_tabular_dataset("b"),
optimization_metric=metric,
)
device.type #noqa
device.type
assert fitted_model.is_fitted
assert isinstance(fitted_model, NeuralNetworkRegressor)