mirror of
https://github.com/THUDM/CogVideo.git
synced 2025-04-05 11:28:37 +08:00
[chore] Update gitignore patterns and project dependencies
This commit is contained in:
parent
d9e2a415e8
commit
4dac252c63
12
.gitignore
vendored
12
.gitignore
vendored
@ -23,3 +23,15 @@ venv
|
|||||||
**/*.mp4
|
**/*.mp4
|
||||||
**/validation_set
|
**/validation_set
|
||||||
CogVideo-1.0
|
CogVideo-1.0
|
||||||
|
|
||||||
|
**/**foo**
|
||||||
|
**/sat
|
||||||
|
**/train_results
|
||||||
|
**/train_res*
|
||||||
|
|
||||||
|
**/**foo**
|
||||||
|
**/sat
|
||||||
|
**/train_results
|
||||||
|
**/train_res*
|
||||||
|
|
||||||
|
**/uv.lock
|
@ -1,27 +1,43 @@
|
|||||||
|
[project]
|
||||||
|
name = "cogvideo"
|
||||||
|
version = "0.1.0"
|
||||||
|
readme = "README.md"
|
||||||
|
requires-python = ">=3.8"
|
||||||
|
dependencies = [
|
||||||
|
"datasets>=2.14.4",
|
||||||
|
"decord>=0.6.0",
|
||||||
|
"deepspeed>=0.16.4",
|
||||||
|
"diffusers>=0.32.2",
|
||||||
|
"opencv-python>=4.11.0.86",
|
||||||
|
"peft>=0.13.2",
|
||||||
|
"pydantic>=2.10.6",
|
||||||
|
"sentencepiece>=0.2.0",
|
||||||
|
"torch>=2.5.1",
|
||||||
|
"torchvision>=0.20.1",
|
||||||
|
"transformers>=4.46.3",
|
||||||
|
"wandb>=0.19.7",
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
[tool.ruff]
|
[tool.ruff]
|
||||||
line-length = 119
|
exclude = ['.git', '.mypy_cache', '.ruff_cache', '.venv', 'dist']
|
||||||
|
target-version = 'py310'
|
||||||
[tool.ruff.lint]
|
line-length = 100
|
||||||
# Never enforce `E501` (line length violations).
|
|
||||||
ignore = ["C901", "E501", "E741", "F402", "F823"]
|
|
||||||
select = ["C", "E", "F", "I", "W"]
|
|
||||||
|
|
||||||
# Ignore import violations in all `__init__.py` files.
|
|
||||||
[tool.ruff.lint.per-file-ignores]
|
|
||||||
"__init__.py" = ["E402", "F401", "F403", "F811"]
|
|
||||||
|
|
||||||
[tool.ruff.lint.isort]
|
|
||||||
lines-after-imports = 2
|
|
||||||
|
|
||||||
[tool.ruff.format]
|
[tool.ruff.format]
|
||||||
# Like Black, use double quotes for strings.
|
line-ending = 'lf'
|
||||||
quote-style = "double"
|
quote-style = 'preserve'
|
||||||
|
|
||||||
# Like Black, indent with spaces, rather than tabs.
|
[tool.ruff.lint]
|
||||||
indent-style = "space"
|
select = ["E", "W"]
|
||||||
|
ignore = [
|
||||||
# Like Black, respect magic trailing commas.
|
"E999",
|
||||||
skip-magic-trailing-comma = false
|
"EXE001",
|
||||||
|
"UP009",
|
||||||
# Like Black, automatically detect the appropriate line ending.
|
"F401",
|
||||||
line-ending = "auto"
|
"TID252",
|
||||||
|
"F403",
|
||||||
|
"F841",
|
||||||
|
"E501",
|
||||||
|
"W293",
|
||||||
|
]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user