We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The base code for problem 25 is malformed, the import numpy as np and function definitions are jumbled together like this:
import numpy as npdef train_neuron(features: np.ndarray, labels: np.ndarray, initial_weights: np.ndarray, initial_bias: float, learning_rate: float, epochs: int) -> (np.ndarray, float, list[float]):
You can fix this by adding a linebreak after the import numpy as np line.
The text was updated successfully, but these errors were encountered:
thank you for letting us know, it is now fixed (should take about 30 min to update on the site)
Sorry, something went wrong.
No branches or pull requests
The base code for problem 25 is malformed, the import numpy as np and function definitions are jumbled together like this:
import numpy as npdef train_neuron(features: np.ndarray, labels: np.ndarray, initial_weights: np.ndarray, initial_bias: float, learning_rate: float, epochs: int) -> (np.ndarray, float, list[float]):
You can fix this by adding a linebreak after the import numpy as np line.
The text was updated successfully, but these errors were encountered: