Skip to content

[mypy] fix compression folder #4290

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

Merged
Merged
Changes from 2 commits
Commits
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
5 changes: 3 additions & 2 deletions neural_network/2_hidden_layers_neural_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,9 @@ def example() -> int:
In this example the output is divided into 2 classes i.e. binary classification,
the two classes are represented by '0' and '1'.

>>> example()
1
>>> result = example()
>>> result == 0 or result == 1
True
"""
# Input values.
input = numpy.array(
Expand Down