Skip to content

Latest commit

 

History

History
62 lines (47 loc) · 3.06 KB

README.md

File metadata and controls

62 lines (47 loc) · 3.06 KB

Machine Learning Implementations in Python

This repository contains different machine learning algorithm implementations, inspired from resources. It is using Jupyter notebooks and JupyterLab.

Usage

Install dependencies

poetry update

Start JupyterLab

poetry run jupyter lab

or

poetry shell
jupyter lab

Implemented Algorithms

Links & Resources

Package Management

This project is using poetry Python package and dependency manager.

  • Init interactively poetry init
  • Add package poetry add package-name
  • Remove package poetry remove package-name
  • Install dependencies poetry install
  • Update dependencies poetry update
  • Show available packages poetry show
  • Run a command in the virtualenv poetry run command
  • Open virtualenv poetry shell