Skip to content

Conversation

AHuzail
Copy link

@AHuzail AHuzail commented Oct 7, 2024

Simple Artificial Neural Network (ANN) Implementation

Description:

This PR adds a basic implementation of a feedforward Artificial Neural Network (ANN) using Python and NumPy. The network consists of one hidden layer and uses Sigmoid activation, backpropagation with gradient descent, and Mean Squared Error (MSE) as the loss function. It demonstrates a solution to the XOR problem, commonly used in introductory neural network tutorials.

Key Features:

  • Feedforward neural network with 1 hidden layer.
  • Sigmoid activation function.
  • Gradient Descent optimizer for weight updates.
  • Mean Squared Error (MSE) loss function.
  • Example provided to solve the XOR problem.
  • Add an algorithm?

Checklist:

  • I have read CONTRIBUTING.md.
  • This pull request is all my own work -- I have not plagiarized.
  • I know that pull requests will not be merged if they fail the automated tests.
  • This PR only changes one algorithm file. To ease review, please open separate PRs for separate algorithms.
  • All new Python files are placed inside an existing directory.
  • All filenames are in all lowercase characters with no spaces or dashes.
  • All functions and variable names follow Python naming conventions.
  • All function parameters and return values are annotated with Python type hints.
  • All functions have doctests that pass the automated testing.
  • All new algorithms include at least one URL that points to Wikipedia or another similar explanation.

@algorithms-keeper algorithms-keeper bot added awaiting reviews This PR is ready to be reviewed tests are failing Do not merge until tests pass labels Oct 7, 2024
@AHuzail AHuzail closed this Oct 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

awaiting reviews This PR is ready to be reviewed tests are failing Do not merge until tests pass

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant