Skip to content
/ pyML Public

Machine Learning with Python

License

Notifications You must be signed in to change notification settings

tekrei/pyML

Repository files navigation

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