Spaces:
Running
on
Zero
Running
on
Zero
Update
Browse files- .python-version +1 -0
- pyproject.toml +50 -0
- uv.lock +0 -0
.python-version
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
3.10
|
pyproject.toml
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[project]
|
2 |
+
name = "gemma-2-9b-it"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = ""
|
5 |
+
readme = "README.md"
|
6 |
+
requires-python = ">=3.10"
|
7 |
+
dependencies = [
|
8 |
+
"accelerate>=1.2.1",
|
9 |
+
"gradio>=5.9.1",
|
10 |
+
"hf-transfer>=0.1.8",
|
11 |
+
"spaces>=0.31.1",
|
12 |
+
"torch==2.4.0",
|
13 |
+
"transformers>=4.47.1",
|
14 |
+
]
|
15 |
+
|
16 |
+
[tool.ruff]
|
17 |
+
line-length = 119
|
18 |
+
|
19 |
+
[tool.ruff.lint]
|
20 |
+
select = ["ALL"]
|
21 |
+
ignore = [
|
22 |
+
"COM812", # missing-trailing-comma
|
23 |
+
"D203", # one-blank-line-before-class
|
24 |
+
"D213", # multi-line-summary-second-line
|
25 |
+
"E501", # line-too-long
|
26 |
+
"SIM117", # multiple-with-statements
|
27 |
+
]
|
28 |
+
extend-ignore = [
|
29 |
+
"D100", # undocumented-public-module
|
30 |
+
"D101", # undocumented-public-class
|
31 |
+
"D102", # undocumented-public-method
|
32 |
+
"D103", # undocumented-public-function
|
33 |
+
"D104", # undocumented-public-package
|
34 |
+
"D105", # undocumented-magic-method
|
35 |
+
"D107", # undocumented-public-init
|
36 |
+
"EM101", # raw-string-in-exception
|
37 |
+
"FBT001", # boolean-type-hint-positional-argument
|
38 |
+
"FBT002", # boolean-default-value-positional-argument
|
39 |
+
"PD901", # pandas-df-variable-name
|
40 |
+
"PGH003", # blanket-type-ignore
|
41 |
+
"PLR0913", # too-many-arguments
|
42 |
+
"PLR0915", # too-many-statements
|
43 |
+
"TRY003", # raise-vanilla-args
|
44 |
+
]
|
45 |
+
unfixable = [
|
46 |
+
"F401", # unused-import
|
47 |
+
]
|
48 |
+
|
49 |
+
[tool.ruff.format]
|
50 |
+
docstring-code-format = true
|
uv.lock
ADDED
The diff for this file is too large to render.
See raw diff
|
|