Soup

(★ 2,632)

Fine-tune LLMs from one YAML. Layer streaming trains an 8B model on a 4 GB laptop GPU.

파일 탐색기

  • .dockerignore
  • .gitignore
  • .mailmap
  • .pre-commit-config.yaml
  • AGENTS.md
  • CHANGELOG.md
  • CODE_OF_CONDUCT.md
  • CODEOWNERS
  • CONTRIBUTING.md
  • CONTRIBUTORS.md
  • docker-compose.yml
  • Dockerfile
  • LICENSE
  • NOTICE
  • pyproject.toml
  • README.md
  • SECURITY.md
  • soup.png
  • soup_logo_svg.svg

# CDN으로 사용하기

jsDelivr

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

명령어 용어집

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

🔍

dict

설명 보기 ▼

DICT 프로토콜을 사용하는 명령줄 사전.
더 많은 정보: <https://manned.org/dict>.

dict {{[-D|--dbs]}}

사용 가능한 데이터베이스 목록 나열:

dict {{[-i|--info]}} {{database_name}}

데이터베이스에 대한 정보 얻기:

dict {{[-d|--database]}} {{database_name}} {{word}}

특정 데이터베이스에서 단어를 검색:

🔍

docker compose up

설명 보기 ▼

Start and run Docker services defined in a Compose file.

docker compose up

Start all services defined in the docker-compose file:

docker compose up {{[-d|--detach]}}

Start services in the background (detached mode):

docker compose up --build

Start services and rebuild images before starting:

🔍

docker pull

설명 보기 ▼

This command is an alias of `docker image pull`.

tldr docker image pull

View documentation for the original command:

🔍

eval

설명 보기 ▼

현재 쉘에서 인수를 단일 명령으로 실행하고 그 결과를 반환.
더 많은 정보: <https://www.gnu.org/software/bash/manual/bash.html#index-eval>.

eval "{{echo foo}}"

"foo" 인수를 사용하여 `echo`를 호출:

eval "{{foo=bar}}"

현재 쉘에서 변수를 설정:

🔍

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:

🔍

moe

설명 보기 ▼

ISO-8859-15로 인코딩된 텍스트를 위한 WYSIWYG 텍스트 편집기.
더 많은 정보: <https://www.gnu.org/software/moe/moe.html>.

moe {{path/to/file}}

moe를 열고 편집 내용을 저장할 때 백업 파일(파일~) 생성:

moe {{[-o|--read-only]}} {{path/to/file}}

파일을 읽기 전용으로 열기:

moe {{[-B|--no-backup]}} {{path/to/file}}

백업 파일을 생성하지 않고 파일 편집:

🔍

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 show

설명 보기 ▼

Show information about installed packages.

pip show {{package}}

Show information about a package:

pip show {{[-v|--verbose]}} {{package}}

Show all information about a package:

pip show {{[-f|--files]}} {{package}}

Show all installed files for a package:

🔍

pre-commit

설명 보기 ▼

커밋 전에 실행되는 Git 훅을 생성.
더 많은 정보: <https://pre-commit.com/#command-line-interface>.

pre-commit install

Git 훅에 pre-commit 설치:

pre-commit run

모든 스테이지된 파일에 pre-commit 훅 실행:

pre-commit run --all-files

스테이지 여부와 상관없이 모든 파일에 pre-commit 훅 실행:

🔍

regex

설명 보기 ▼

정규 표현식 (`regex`)은 텍스트에서 특정 패턴을 찾거나 일치시키고 조작하는 데 사용하는 표현식.
참고: `regex`는 명령이 아니라, 다른 명령에서 사용하는 문법 .
관련 항목: `egrep`, `glob`.
더 많은 정보: <https://cheatography.com/davechild/cheat-sheets/regular-expressions/>.

.

임의의 한 문자와 일치:

^{{hello}}

줄의 시작과 일치:

{{world}}$

줄의 끝과 일치:

🔍

ruff check

설명 보기 ▼

An extremely fast Python linter. `check` is the default command - it can be omitted everywhere.
If no files or directories are specified, the current working directory is used by default.

ruff check {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}

Run the linter on the given files or directories:

ruff check --fix

Apply the suggested fixes, modifying the files in-place:

ruff check --watch

Run the linter and re-lint on change:

🔍

serve

설명 보기 ▼

정적 파일 제공 및 디렉토리 목록화 도구.
더 많은 정보: <https://github.com/vercel/serve>.

serve

기본 포트에서 현재 디렉토리를 제공하는 HTTP 서버 시작:

serve -p {{port}} {{path/to/directory}}

특정 [p]포트에서 특정 디렉토리를 제공하는 HTTP 서버 시작:

serve {{[-C|--cors]}}

모든 응답에 `Access-Control-Allow-Origin: *` 헤더를 포함하여 CORS가 활성화된 HTTP 서버 시작:

// repository documentation