Spaces:
Paused
Paused
[tool.poetry] | |
name = "space-stormy-7b-10ep" | |
version = "0.1.0" | |
description = "" | |
authors = ["Masanori HIRANO <[email protected]>"] | |
license = "MIT" | |
readme = "README.md" | |
[tool.poetry.dependencies] | |
python = "^3.8.1" | |
peft = "^0.3.0" | |
transformers = "4.28.1" | |
gradio = "3.23.0" | |
torch = "^2.0.1" | |
huggingface-hub = "^0.14.1" | |
bitsandbytes = "^0.38.1" | |
accelerate = "^0.19.0" | |
fschat = "0.2.8" | |
sentencepiece = "^0.1.99" | |
[tool.poetry.group.dev.dependencies] | |
black = "^23.3.0" | |
isort = "^5.12.0" | |
mypy = "^1.3.0" | |
flake8 = "^6.0.0" | |
pyproject-flake8 = "^6.0.0.post1" | |
[build-system] | |
requires = ["poetry-core"] | |
build-backend = "poetry.core.masonry.api" | |
[tool.isort] | |
profile = 'black' | |
force_single_line = true | |
skip = [ | |
".git", | |
"__pycache__", | |
"docs", | |
"build", | |
"dist", | |
"examples", | |
".venv", | |
"tests/examples" | |
] | |
[tool.mypy] | |
disallow_untyped_defs = true | |
ignore_missing_imports = true | |
[tool.flake8] | |
ignore = "E203,E231,E501,W503" | |
max-line-length = 88 | |
exclude = [ | |
".git", | |
"__pycache__", | |
"docs", | |
"build", | |
"dist", | |
"examples", | |
".venv", | |
"__init__.py" | |
] | |
select = "B,B950,C,E,F,W" | |