This repository was created to document and practice the knowledge acquired in the Math for Machine Learning and Data Science course (DeepLearning.AI / Coursera).
The course covers essential topics such as linear algebra, calculus, probability, and statistics, with a focus on their practical application in real-world AI problems.
Follow these steps to set up the project:
python3 -m venv venv
source venv/bin/activate # On Linux or macOS
# venv\Scripts\activate # On Windowspip install -r requirements.txtpython -m src.nnMake sure you are in the project's root directory when running the command.
To execute all unit tests, simply run:
pytestThis will automatically discover and run all test files inside the tests/ folder.
