CoolFace
Apppublic

xTHExBEASTx/gemma-4-e4b-it

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
pyproject.toml62 linesDownload Raw Back to root
1[project]2name = "gemma-4-e4b-it"3version = "0.1.0"4description = "Add your description here"5readme = "README.md"6requires-python = ">=3.12"7dependencies = [8    "accelerate>=1.13.0",9    "gradio>=6.9.0",10    "spaces>=0.47.0",11    "torch==2.9.1",12    "torchcodec>=0.9.0,<0.10",13    "torchvision>=0.24.1",14    "transformers>=5.5.0",15]16 17[tool.ruff]18line-length = 11919 20[tool.ruff.lint]21select = ["ALL"]22ignore = [23    "COM812", # missing-trailing-comma24    "D203",   # one-blank-line-before-class25    "D213",   # multi-line-summary-second-line26    "E501",   # line-too-long27    "SIM117", # multiple-with-statements28    #29    "D100",    # undocumented-public-module30    "D101",    # undocumented-public-class31    "D102",    # undocumented-public-method32    "D103",    # undocumented-public-function33    "D104",    # undocumented-public-package34    "D105",    # undocumented-magic-method35    "D107",    # undocumented-public-init36    "EM101",   # raw-string-in-exception37    "FBT001",  # boolean-type-hint-positional-argument38    "FBT002",  # boolean-default-value-positional-argument39    "ISC001",  # single-line-implicit-string-concatenation40    "PGH003",  # blanket-type-ignore41    "PLR0913", # too-many-arguments42    "PLR0915", # too-many-statements43    "TRY003",  # raise-vanilla-args44]45unfixable = [46    "F401", # unused-import47]48 49[tool.ruff.lint.pydocstyle]50convention = "google"51 52[tool.ruff.format]53docstring-code-format = true54 55[dependency-groups]56dev = [57    "ruff>=0.15.5",58]59hf-spaces = [60    "datasets",61]62