forked from tensorflow/addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (69 loc) · 2.64 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
63
64
65
66
67
68
69
[tool.black]
target-version = ['py35', 'py36', 'py37']
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| setup.py
| tensorflow_addons/activations/gelu.py
| tensorflow_addons/activations/gelu_test.py
| tensorflow_addons/activations/rrelu.py
| tensorflow_addons/activations/rrelu_test.py
| tensorflow_addons/callbacks/tqdm_progress_bar.py
| tensorflow_addons/image/filters.py
| tensorflow_addons/image/filters_test.py
| tensorflow_addons/image/sparse_image_warp.py
| tensorflow_addons/image/sparse_image_warp_test.py
| tensorflow_addons/layers/gelu.py
| tensorflow_addons/layers/gelu_test.py
| tensorflow_addons/layers/maxout.py
| tensorflow_addons/layers/maxout_test.py
| tensorflow_addons/layers/normalizations.py
| tensorflow_addons/layers/normalizations_test.py
| tensorflow_addons/layers/optical_flow.py
| tensorflow_addons/layers/optical_flow_test.py
| tensorflow_addons/layers/wrappers.py
| tensorflow_addons/layers/wrappers_test.py
| tensorflow_addons/losses/__init__.py
| tensorflow_addons/losses/focal_loss.py
| tensorflow_addons/losses/focal_loss_test.py
| tensorflow_addons/losses/giou_loss.py
| tensorflow_addons/losses/giou_loss_test.py
| tensorflow_addons/metrics/cohens_kappa.py
| tensorflow_addons/metrics/cohens_kappa_test.py
| tensorflow_addons/metrics/matthews_correlation_coefficient.py
| tensorflow_addons/metrics/matthews_correlation_coefficient_test.py
| tensorflow_addons/metrics/multilabel_confusion_matrix.py
| tensorflow_addons/metrics/multilabel_confusion_matrix_test.py
| tensorflow_addons/metrics/r_square.py
| tensorflow_addons/metrics/r_square_test.py
| tensorflow_addons/optimizers/__init__.py
| tensorflow_addons/optimizers/lamb.py
| tensorflow_addons/optimizers/lamb_test.py
| tensorflow_addons/optimizers/lookahead.py
| tensorflow_addons/optimizers/lookahead_test.py
| tensorflow_addons/optimizers/moving_average.py
| tensorflow_addons/optimizers/moving_average_test.py
| tensorflow_addons/optimizers/weight_decay_optimizers.py
| tensorflow_addons/optimizers/weight_decay_optimizers_test.py
| tensorflow_addons/rnn/cell.py
| tensorflow_addons/rnn/cell_test.py
| tensorflow_addons/seq2seq/attention_wrapper.py
| tensorflow_addons/seq2seq/attention_wrapper_test.py
| tensorflow_addons/text/__init__.py
| tensorflow_addons/text/crf.py
| tensorflow_addons/text/crf_test.py
| tensorflow_addons/image/distance_transform_test.py
| tensorflow_addons/optimizers/lazy_adam_test.py
)
'''