This repository contains all the programs taught in the Artificial Intelligence & Machine Learning (AIML) Lab at SDMCET (2025).
GitHub only displays output values from print statements in Jupyter Notebooks and does not show input values. To view the complete notebooks with inputs, it is highly recommended to clone the repository or download the notebooks locally.
To run the AIML Lab programs on your local machine, follow the steps below:
Make sure Python is installed on your system.
- Download Python from the official website: https://www.python.org/downloads/
- During installation, check the box "Add Python to PATH".
- After installation, verify it by running:
python --version
With Python installed, open your terminal or command prompt and run:
pip install notebook
To confirm Jupyter is installed:
jupyter notebook
If Jupyter opens in your browser, it’s ready to use.
Now, clone this repository to your local machine using:
git clone https://github.com/JoyM268/sdmcet-aiml.git
Or download the ZIP file and extract it manually.
Change into the cloned project directory:
cd sdmcet-aiml
Start Jupyter Notebook with:
jupyter notebook
Your default browser will open. From there, you can open any .ipynb
file to view and run the lab programs.