File size: 1,144 Bytes
f732d7c d91928f f732d7c 7680f1c e6198e7 0c5534b 7a42c18 6bde6cb f732d7c |
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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
[tool.poetry]
name = "space-llama-13b-japanese-lora-v0-1ep"
version = "0.1.0"
description = ""
authors = ["Masanori HIRANO <masa.hirano.1996@gmail.com>"]
license = "other"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
peft = "^0.3.0"
gradio = "^3.23.0"
torch = "^2.0.1"
huggingface-hub = "^0.14.1"
sentencepiece = "^0.1.99"
bitsandbytes = "^0.38.1"
accelerate = "^0.19.0"
fschat = "0.2.3"
transformers = "4.28.1"
[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"
|