# ConvNet Requirements
# Core dependencies for the CNN framework

# Essential numerical computing
numpy>=1.20.0

# Progress bars for training visualization
tqdm>=4.60.0

# JAX for JIT compilation and GPU/TPU acceleration
jax>=0.4.0
jaxlib>=0.4.0

# Model serialization (HDF5 format)
h5py>=3.0.0

# Optional: GPU acceleration (uncomment for CUDA support)
# pip install jax[cuda12]

# Note: tkinter is required for the GUI demo (mnist_gui.py)
# It's usually included with Python, but on some Linux distributions:
# Ubuntu/Debian: sudo apt-get install python3-tk
# Fedora: sudo dnf install python3-tkinter
