ML-Roadmap-and-Notes

(★ 41)

A carefully curated collection of machine learning notes, resources, projects, and datasets designed to guide you through the ML landscape effectively.

File Explorer

  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

mypy

View Details ▼

Type check Python code.

mypy {{path/to/file.py}}

Type check a specific file:

mypy {{[-m|--module]}} {{module_name}}

Type check a specific module:

mypy {{[-p|--package]}} {{package_name}}

Type check a specific package:

🔍

poetry

View Details ▼

Manage Python packages and dependencies.
Some subcommands such as `about`, `check`, `env`, etc. have their own usage documentation.
See also: `asdf`, `pipenv`, `hatch`.

poetry new {{project_name}}

Create a new Poetry project in the directory with a specific name:

poetry add {{dependency}}

Install and add a dependency and its sub-dependencies to the `pyproject.toml` file in the current directory:

poetry install

Install the project dependencies using the `pyproject.toml` file in the current directory:

🔍

pytest

View Details ▼

Run Python tests.

pytest {{path/to/test_file1.py path/to/test_file2.py ...}}

Run tests from specific files:

pytest -k {{expression}}

Run tests with names matching a specific [k]eyword expression:

pytest {{[-x|--exitfirst]}}

Exit as soon as a test fails or encounters an error:

# Project Badges

  • GitHub stars GitHub stars
  • GitHub forks GitHub forks
  • License License
  • Last Updated Last Updated
// repository documentation