Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 1.26 KB

README.md

File metadata and controls

26 lines (21 loc) · 1.26 KB

Convex Optimisation

This repository contains assignments for the course "Convex Optimisation" and the implementation of different related algorithms in Python/Jupyter Notebook.

Assignment 1: Taylor Approximation & Unconstrained Optimisation

This assignment covers the topic of Taylor's Approximation and Unconstrained Optimisation. The goal of this assignment is to understand the method to solve taylor approximation and an unconstrained optimisation problem and implement them in Python. The following methods are implemented:

  1. Linear and Quadratic approximation
  2. Line Search Subroutine
  3. Combinational Descent

Assignment 2: Constrained Optimisation

This assignment covers the topic of Constrained Optimisation. The goal of this assignment is to understand the method to solve a constrained optimisation problem and implement them in Python. The following methods are implemented:

  1. Barrier Method
  2. Line Search Subroutine
  3. Newton Descent
  4. Interior Point Method

How to Run

The assignments are implemented in Jupyter Notebook. To run the notebooks, make sure you have Jupyter installed and then running in VSCode.

Dependencies

The following dependencies are required to run the code in the notebooks:
NumPy
Matplotlib
Numdifftools
CVXPY