Gen-L-Video
The official implementation for "Gen-L-Video: Multi-Text to Long Video Generation via Temporal Co-Denoising".
파일 탐색기
- girl-glass.mp4
- hike.mp4
- hike.mp4
- hike.mp4
- girl.mp4
- hike.mp4
- hike.mp4
- group.mp4
- hike.mp4
- hike.mp4
- hike.mp4
- hike.mp4
- group.yaml
- hike.yaml
- girl-glass.yaml
- girl.yaml
- girl-glass.yaml
- car-turn.yaml
- car-turn.mp4
- girl-glass.mp4
- girl.mp4
- dataset.py
- attention.py
- resnet.py
- unet.py
- unet_blocks.py
- attention.py
- resnet.py
- unet.py
- unet_blocks.py
- attention.py
- controlnet.py
- resnet.py
- unet.py
- unet_blocks.py
- pipeline_fyp_long.py
- pipeline_one_shot_tuning.py
- pipeline_tuning_free.py
- pipeline_tuning_free_control.py
- pipeline_tuning_free_inpaint.py
- lora_util.py
- util.py
- glv_colab.ipynb
- download_pretrained_models.sh
- boat-walk-mix.gif
- car-moving-iso.gif
- car-moving.gif
- car-turn-beach-mix.gif
- car-turn-snow-mix.gif
- car-turn-source.gif
- cat-in-the-sun-depth.gif
- compress.py
- cow.gif
- demon-slayer-girl.gif
- demon-slayer-source.gif
- dog-in-the-sun.gif
- fight.gif
- fire-tennis.gif
- girl-glass-cyberpunk.gif
- girl-glass-goggles.gif
- girl-glass-mask.gif
- girl-glass-pink.gif
- girl-glass-source.gif
- girl-glass.gif
- girl-in-the-sun.gif
- girl.gif
- group.gif
- hike.gif
- iron-man-tennis.gif
- kun.gif
- lion-cat-mix.gif
- mabaoguo.gif
- man-surfing-batman.gif
- man-surfing-ironman.gif
- man-surfing-mask.gif
- man-surfing-source.gif
- monkey-drinking-iso.gif
- monkey-drinking.gif
- rain.gif
- ride-horse-2.gif
- ride-horse-4.gif
- ride-horse-iso-1.gif
- ride-horse-iso-2.gif
- road-driving.gif
- surf-skiing-mix.gif
- surf-skiing.gif
- tennis-pose.gif
- tiger-in-the-sun.gif
- tower.gif
- vangogh-tennis.gif
- example.png
- logo.png
- lvdm.png
- demon_slayer.mp4
- demon_slayer_resize.mp4
- hike.mp4
- .gitignore
- follow-your-pose-long.py
- LICENSE
- one-shot-tuning.py
- process_data.py
- README.md
- requirements.txt
- requirements.yml
- tuning-free-control.py
- tuning-free-inpaint.py
- tuning-free-mix.py
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
accelerate
설명 보기 ▼
accelerate
Accelerate는 동일한 PyTorch 코드를 모든 분산 환경 구성에서 실행할 수 있게 해주는 라이브러리입니다.
더 많은 정보: <https://huggingface.co/docs/accelerate/index>.
accelerate env
실행환경 정보 출력:
accelerate config
대화형으로 구성 파일 생성:
accelerate estimate-memory {{name/model}}
다양한 데이터 타입을 사용하여 Hugging Face 모델을 실행하는 데 필요한 예상 GPU 메모리 비용을 출력:
conda activate
설명 보기 ▼
conda activate
Activate a conda environment.
See also: `conda deactivate`.
conda activate myenv
Activate an existing environment named `myenv`:
conda activate {{path/to/myenv}}
Activate an existing environment located at custom path:
conda activate --stack myenv
Stack `myenv` environment on top of a previous environment making libraries/commands/variables from both accessible:
conda env
설명 보기 ▼
conda env
Manage conda environments.
conda env create {{[-f|--file]}} {{path/to/file}}
Create an environment from an environment file (YAML, TXT, etc.):
conda env remove {{[-n|--name]}} {{environment_name}}
Delete an environment and everything in it:
conda env update {{[-f|--file]}} {{path/to/file}} --prune
Update an environment based on an environment file:
conda install
설명 보기 ▼
conda install
Install packages into an existing conda environment.
conda install {{package1 package2 ...}}
Install one or more package into the currently active conda environment:
conda install {{[-c|--channel]}} conda-forge {{package}}
Install a single package into the currently active conda environment using channel conda-forge:
conda install {{[-c|--channel]}} conda-forge --override-channels {{package}}
Install a single package into the currently active conda environment using channel conda-forge and ignoring other channels:
git checkout
설명 보기 ▼
git checkout
Checkout a branch or paths to the working tree.
git checkout -b {{branch_name}}
Create and switch to a new branch:
git checkout -b {{branch_name}} {{reference}}
Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):
git checkout {{branch_name}}
Switch to an existing local branch:
git clone
설명 보기 ▼
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
설명 보기 ▼
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:
python
설명 보기 ▼
python
Python 언어 인터프리터.
더 많은 정보: <https://docs.python.org/using/cmdline.html>.
python
REPL(대화형 셸) 시작:
python {{path/to/file.py}}
특정 Python 파일 실행:
python -i {{path/to/file.py}}
특정 Python 파일 실행 후 REPL 시작:
vim
설명 보기 ▼
vim
Vim (Vi IMproved)는 다양한 텍스트 조작을 위한 여러 모드를 제공하는 명령줄 텍스트 편집기입니다.
일반 모드에서 `<i>`를 눌러 삽입 모드로 진입합니다. `<Esc>`를 눌러 다시 일반 모드로 돌아가면 Vim 명령을 사용할 수 있습니다.
관련 항목: `vimdiff`, `vimtutor`, `nvim`, `gvim`.
더 많은 정보: <https://www.vim.org/>.
vim {{path/to/file}}
파일 열기:
vim +{{line_number}} {{path/to/file}}
지정한 줄 번호에서 파일 열기:
<:>help<Enter>
Vim 메뉴얼 보기:
