初始化项目,由ModelHub XC社区提供模型

Model: abinayam/gpt-2-tamil
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-07-17 07:06:11 +08:00
commit f301701ac2
55 changed files with 3107 additions and 0 deletions

31
pyproject.toml Normal file
View File

@@ -0,0 +1,31 @@
# Black formatting
[tool.black]
line-length = 85
include = '\.pyi?$'
exclude = '''
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| wandb
| model
| dataset
| notebook
)/
'''
# iSort
[tool.isort]
profile = "black"
line_length = 85
multi_line_output = 3
include_trailing_comma = true
skip_gitignore = true
virtual_env = "venv"