Spaces:
Running
on
Zero
Running
on
Zero
File size: 1,174 Bytes
9c3c737 |
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 |
[tool.poetry]
name = "granite-3.1-8b-instruct"
version = "0.1.0"
description = "A demo of the IBM Granite 3.1 8b instruct model"
authors = [
"James Sutton <[email protected]>",
"Graham White <[email protected]>",
"Michael Desmond <[email protected]>",
]
license = "Apache-2.0"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.10,<3.11"
gradio = "5.12.0"
torch = "2.4.0"
spaces = "0.30.4"
transformers = "^4.47.1"
accelerate = "^1.2.1"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.0.1"
git-lint = "^0.1.2"
ruff = "^0.8.3"
pytest = "^8.3.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
select = [
"E", # pycodestyle
"F", # pyflakes
"UP", # pyupgrade
"D", # pydocstyle
"I", # isort
"B", # bugbear
"ANN", # annotations
"N", # pep8-naming
"C4", # Comprehensions
"DTZ", # DatetimeZ
"Q", # Quotes
"SIM", # Simplify
"RUF", # Ruff
]
ignore = ["D203", "D213"]
fixable = ["ALL"]
unfixable = []
line-length = 120
[tool.black]
line-length = 120
[tool.ruff.lint.pydocstyle]
convention = "google"
|