Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 1.21 KB

README.md

File metadata and controls

29 lines (23 loc) · 1.21 KB

VSC (Neural networks and Machine Learning)

Course Description

The course introduces basic approaches to Machine Learning and Deep Learning and classical methods used in the field. Practical use of the methods is demonstrated on solving simple engineering problems.

Projects

  • Project 1 - ANN Clasifier
  • Project 2 - Adaptive ANN model for function approximation

Project 1 - ANN Clasifier

Simple ANN Clasifier. Inputs are coordinates of point x. Output is binary value True/False whether the point is inside or outside of defined ellipse.

Instead of using libraries for machine learning, simple ANN was created using Numpy library.

project_1_gui

Simple ANN clasifier

Project 2 - Adaptive ANN model for function approximation

Adaptive ANN modelling for Rastrigin and Schwefel functions. Nelder-Mead Optimization was used. For this project, Keras API from Tensorflow framework was used.

project_2_gui

Adaptive ANN model