-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (56 loc) · 1.31 KB
/
pyproject.toml
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.pylint]
disable = "missing-module-docstring, missing-function-docstring, missing-class-docstring, too-few-public-methods, inconsistent-return-statements"
notes="FIXME,XXX"
good-names="df,i,j,k,ax"
extension-pkg-allow-list="kenlm"
generated-members="torch.*"
known-third-party = ["wandb"]
max-args=8
max-locals=18
max-attributes=8
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
line_length = 100
known_third_party = ["wandb"]
[tool.jupytext]
formats = "ipynb,py:percent"
[[tool.mypy.overrides]]
module = [
"datasets",
"fasttext",
"kenlm",
"transformers",
"huggingface_hub",
"huggingface_hub.file_download",
"transformers.modeling_utils",
"scipy",
"absl",
"evaluate",
"dacy",
"safetensors.torch",
"simple_term_menu",
"transformers.models.auto.auto_factory",
"transformers.tokenization_utils_base",
"nltk",
"bs4",
"seqeval.metrics",
"seaborn",
"sklearn.metrics",
"augmenty",
"augmenty.character.replace",
"augmenty.util",
"dacy.datasets",
"danlp.models",
"trl",
"trl.trainer",
"accelerate",
"google.auth",
"google",
"vertexai",
"vertexai.preview.generative_models",
"vertexai.generative_models._generative_models",
"google.cloud.aiplatform_v1beta1"
]
ignore_missing_imports = true