AICrafter
is a beginner-friendly AI project
that uses TensorFlow
to classify handwritten digits from the MNIST dataset
. This project demonstrates a basic machine learning pipeline, from data loading to model training and evaluation.
Handwritten digit
classification using the MNIST dataset.Simple neural
network with two layers (fully connected).Uses TensorFlow
andKeras
for easy model creation and training.
- Clone The Repo
git clone https://github.com/your-username/AICrafter.git
cd AICrafter
- Create a virtual environment (optional but recommended)
python -m venv venv
source venv/bin/activate # For Linux/Mac
venv\Scripts\activate # For Windows
- Install dependencies
pip install -r requirements.txt
pip install tensorflow numpy matplotlib