Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: TheAlgorithms/Python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: HarshVR1947/Python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Oct 14, 2023

  1. Create Artificial_NeuralNet.py

    1. The code loads the "Pima Indians Diabetes" dataset.
    2. It preprocesses the data, which includes cleaning and formatting.
    3. The dataset is split into training and testing sets to evaluate model performance.
    4. Feature standardization is performed to ensure that all features have a mean of 0 and standard deviation of 1.
    5. An artificial neural network (ANN) is created for binary classification.
    6. The ANN is compiled with specified settings such as the optimizer and loss function.
    7. The model is trained on the training data using backpropagation, iteratively updating its weights.
    8. Finally, the code evaluates the model's accuracy on the test data and prints the result.
    9. The code serves as an end-to-end example of building and training a neural network for predicting diabetes based on patient features.
    HarshVR1947 authored Oct 14, 2023
    Configuration menu
    Copy the full SHA
    04086ca View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1 from HarshVR1947/HarshVR1947-patch-1

    Create Artificial_NeuralNet.py
    HarshVR1947 authored Oct 14, 2023
    Configuration menu
    Copy the full SHA
    63375e3 View commit details
    Browse the repository at this point in the history
Loading