Introduction to Machine Learning with Scikit Learn in Python - onlineInfo Location Additional Items Contact More Info Course Information![]() A one day introduction to machine learning using Scikit Learn in Python. Learners will be introduced to several machine learning techniques including regression, clustering, dimensionality reduction, and neural networks. The course also includes a brief overview of the ethics and implications of machine learning. The course covers:
By the end of the course participants will:
IMPORTANT: Please note that this course includes computer workshops. Before registering please check that you will be able to access the software noted below. Please bear in mind minimum system requirements to run software and administration restrictions imposed by your institution or employer with may block the installation of software. Pre-requisites: A basic understanding of Python. You will need to know how to write a for loop, if statement, use functions, libraries and perform basic arithmetic. The ‘Introduction to Software Development’ covers sufficient background. Payment using the Online Store can only be completed via Visa and Mastercard Credit/Debit Card or PayPal. AMEX is not accepted. Course CodeDSIMLSLP Course LeaderDr Sam Mangham and Dr Edward Parkinson (subject to change based on availability)
Location![]()
Additional Items
Additional InformationIMPORTANT: Please note that this course includes computer workshops. Before registering please check that you will be able to access the software noted below. Please bear in mind minimum system requirements to run software and administration restrictions imposed by your institution or employer with may block the installation of software. Pre-requisites: A basic understanding of Python. You will need to know how to write a for loop, if statement, use functions, libraries and perform basic arithmetic. The ‘Introduction to Software Development’ covers sufficient background. Setup Instructions: You will need a terminal, Python 3.8+, and the ability to create Python virtual environments. To install Python, follow the Beginner’s Guide or head straight to the download page. You will need the MatPlotLib, Pandas, Numpy and OpenCV packages. Create a new directory for the workshop, then launch a terminal in it: mkdir workshop-ml cd workshop-ml Creating a new Virtual Environment We’ll install the prerequisites in a virtual environment, to prevent them from cluttering up your Python environment and causing conflicts. To create a new virtual environment (“venv”) called “intro_ml” for the project, open the terminal (Max/Linux), Git Bash (Windows) or Anacomda Prompt (Windows), and type one of the below OS-specific options: python3 -m venv intro_ml # mac/linux python -m venv intro_ml # windows If you’re on Linux and this doesn’t work, you may need to install venv first. Try running sudo apt-get install python3-venv first, then python3 -m venv intro_ml Activate environment To activate the environment, run the following OS-specific commands in Terminal (Mac/Linux) or Git Bash (Windows) or Anaconda Prompt (Windows):
Install the prerequisites pip install numpy pandas matplotlib opencv-python scikit-learn |