Spaces:
Runtime error
Runtime error
File size: 715 Bytes
b69ee8e 335a9c9 b69ee8e 7be2867 b69ee8e d23e0ab b69ee8e d23e0ab b69ee8e 1c4c40f b69ee8e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
[project]
name = "color-textual-inversion"
version = "0.1.3"
description = ""
authors = [
{name = "Bingsu", email = "ks2515@naver.com"},
]
dependencies = [
"torch",
"torchvision",
"accelerate",
"ftfy",
"tensorboard",
"modelcards",
"transformers>=4.21.0",
"diffusers",
"streamlit==1.10.0",
]
license = {text = "MIT"}
requires-python = ">=3.9"
[tool]
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"black>=22.10.0",
"isort>=5.10.1",
"mypy>=0.991",
"flake8-bugbear>=22.12.6",
"ipywidgets>=8.0.3",
]
[tool.pdm.scripts]
st = "streamlit run app.py"
black = "black ."
isort = "isort ."
format = {composite = ["isort", "black"]}
[tool.isort]
profile = "black"
|