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

# create lockfile
uv lock
# sync dependencies
uv sync

Start JupyterLab

uv run jupyter lab

Implemented Algorithms

Links & Resources

Package management

We are using uv Python package and dependency manager.

  • Init interactively uv init
  • Add package uv add package-name
  • Remove package uv remove package-name
  • Create lockfile uv lock
  • Update dependencies uv sync
  • Show available packages uv show
  • Run a command in the virtualenv uv run command