Skip to content

elffuhs/ml101

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ML 101

This repository contains the materials of the classes from the UNAVE ML 101 course (2022). The course is divided into seven different parts:

  1. Refresher
  2. Data Pre-Processing
  3. Classical ML Models
  4. Model Evaluation and Validation
  5. Clustering
  6. Deep-learning
  7. Text and Stream Mining

Google Drive

In this link you have access to the material of the class in a shared google drive folder.

Slides

  1. Refresher
  2. Pre-processing
  3. Models
  4. Evaluation
  5. Unsupervised
  6. Deep Learning
  7. Time Series/Text Mining

Setup

All of the materials were written in python, using the commonly used libraries. The materials themselves are organized in Jupyter Notebooks to ease the execution of the same. To set up the environment, execute the following commands:

python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
jupyter-notebook 

Setup for local Colab

The time series project needs access to the local network to publish the predictions within a local MQTT server. To achieve this, we can run the colab on a local instance. Follow this steps to prepare the local virtual environment:

python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
jupyter serverextension enable --py jupyter_http_over_ws
jupyter notebook \
  --NotebookApp.allow_origin='https://colab.research.google.com' \
  --port=8888 \
  --NotebookApp.port_retries=0

Authors

License

This project is licensed under the MIT License - see the LICENSE file for details

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 100.0%