Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 873 Bytes

readme.md

File metadata and controls

31 lines (26 loc) · 873 Bytes

AICrafter

Project Overview

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.

Features

  • Handwritten digit classification using the MNIST dataset.
  • Simple neural network with two layers (fully connected).
  • Uses TensorFlow and Keras for easy model creation and training.

Installation

  • 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