gluonts

(★ 5,227)

Python에서의 확률적 시계열 모델링

파일 탐색기

  • .dockerignore
  • .gitattributes
  • .gitignore
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • dev_setup.sh
  • Justfile
  • LICENSE
  • NOTICE
  • pyproject.toml
  • README.md
  • REFERENCES.md

# 설치 가이드

python
사전 준비물

설치 및 실행 절차

git clone https://github.com/awslabs/gluonts.git

저장소를 로컬에 복제합니다.

cd gluonts

프로젝트 디렉토리로 이동합니다.

uv sync --all-extras

모든 개발 의존성을 포함하여 패키지를 동기화합니다.

핵심 명령어

uv pip install "gluonts[torch]"

PyTorch 모델 지원과 함께 GluonTS를 설치합니다.

uv sync --all-extras

모든 개발 종속성을 포함하여 환경을 설정합니다.

Python 3.10에서 3.14 버전 환경을 권장합니다.

# CDN으로 사용하기

jsDelivr

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

명령어 용어집

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

🔍

git clone

설명 보기 ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

pip install

설명 보기 ▼

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

🔍

pip

설명 보기 ▼

Python 패키지 관리자.
`install`와 같은 일부 하위 명령어는 별도의 사용 문서가 존재.
더 많은 정보: <https://pip.pypa.io/en/stable/cli/pip/>.

pip install {{package}}

패키지 설치 (더 많은 설치 예시는 `pip install`를 참고):

pip install --user {{package}}

시스템 전체 기본 위치 대신 사용자 디렉터리에 패키지 설치:

pip install {{[-U|--upgrade]}} {{package}}

패키지 업그레이드:

🔍

uv pip

설명 보기 ▼

Provides pip-like commands for installing, uninstalling, and managing packages.

uv pip install {{package}}

Install a package:

uv pip install {{[-r|--requirements]}} {{requirements.txt}}

Install packages from a requirements file:

uv pip install {{package==1.2.3}}

Install a package with a specific version:

🔍

uv sync

설명 보기 ▼

Update the project's environment to match the lockfile.

uv sync

Sync the project environment with the lockfile:

uv sync --all-extras

Sync and include all optional dependencies:

uv sync --extra {{extra_name}}

Sync with specific optional dependencies:

# 프로젝트 배지

// repository documentation