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.

파일 탐색기

  • README.md

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

mypy

설명 보기 ▼

Python 코드의 타입을 검사.
더 많은 정보: <https://mypy.readthedocs.io/en/stable/running_mypy.html>.

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

특정 파일의 타입 검사:

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

특정 [m]모듈의 타입 검사:

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

특정 [p]패키지의 타입 검사:

🔍

poetry

설명 보기 ▼

Python 패키지 및 의존성을 관리.
관련 항목: `asdf`, `pipenv`, `hatch`.
더 많은 정보: <https://python-poetry.org/docs/cli/>.

poetry new {{project_name}}

특정 이름으로 디렉토리에 새 Poetry 프로젝트 생성:

poetry add {{dependency}}

현재 디렉토리의 `pyproject.toml` 파일에 의존성과 그 하위 의존성 설치 및 추가:

poetry install

현재 디렉토리의 `pyproject.toml` 파일을 사용하여 프로젝트 의존성 설치:

🔍

pytest

설명 보기 ▼

Python 테스트 실행.
더 많은 정보: <https://docs.pytest.org/en/latest/how-to/usage.html>.

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

특정 파일에서 테스트 실행:

pytest -k {{expression}}

특정 [k]eyword 표현식과 일치하는 테스트 실행:

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

테스트가 실패하거나 오류가 발생하면 즉시 종료:

# 프로젝트 배지

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