This Repository Contains Projects I Made During My Learning Journey of Machine Learning, These projects are parts of my journey of reading Hands On machine learning 3rd edition book.
To set up the virtual environment, follow these steps:
-
Open your terminal/command prompt.
-
Run the following command to create a virtual environment named "ML_Projects":
python3 -m venv ML_Projects
-
Activate the virtual environment:
- For Linux/Mac:
source ./ML_Projects/bin/activate
- For Windows:
.\ML_Projects\Scripts\activate
After activating the virtual environment, you can install the project requirements using pip. Simply run the following command:
pip install -r requirements.txt