NeuroCalculator is a simple neural network model designed to perform basic addition operations. It takes two numbers as input and predicts their sum.
- Great accuracy on a very small dataset.
- Accepts two single-digit numbers as input.
- Trains a neural network to predict the sum of the inputs.
- Demonstrates the use of deep learning for basic arithmetic tasks.
- Python 3.x
- TensorFlow or PyTorch (depending on your preferred framework)
- NumPy
- Matplotlib (optional, for visualization)
-
Clone the repository:
git clone https://github.com/Arpon-programmer/NeuroCalculator.git cd NeuroCalculator -
Install the required dependencies:
pip install -r requirements.txt
-
Train the model:
python train.py
-
Test the model:
python test.py
-
Use the model for predictions:
python predict.py --num1 <number1> --num2 <number2>
python predict.py --num1 3 --num2 5
# Output: The predicted sum is 8.Contributions are welcome! Feel free to open issues or submit pull requests.
This project is licensed under the MIT License. See the LICENSE file for details.