Skip to content

Commit 4bf9c3d

Browse files
seanpmorganfacaiy
authored andcommitted
ENH: Add documentation guidelines (#51)
1 parent 0c2e513 commit 4bf9c3d

File tree

5 files changed

+25
-4
lines changed

5 files changed

+25
-4
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ developments that cannot be integrated into core TensorFlow
1616
| addons.layers | Maxout | https://arxiv.org/abs/1302.4389 |
1717
| addons.layers | PoinareNormalize | https://arxiv.org/abs/1705.08039 |
1818
| addons.layers | WeightNormalization | https://arxiv.org/abs/1602.07868 |
19-
| addons.losses | TripletLoss | https://arxiv.org/abs/1503.03832 |
19+
| addons.losses | LiftedStructLoss | https://arxiv.org/abs/1511.06452 |
20+
| addons.losses | TripletSemiHardLoss | https://arxiv.org/abs/1503.03832 |
2021
| addons.optimizers | LazyAdamOptimizer | https://arxiv.org/abs/1412.6980 |
2122
| addons.text | SkipGrams | https://arxiv.org/abs/1301.3781 |
2223

tensorflow_addons/custom_ops/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,8 @@ must:
2020
expected.
2121
* When applicable, run all unittests with TensorFlow's
2222
`@run_all_in_graph_and_eager_modes` decorator.
23+
24+
#### Documentation Requirements
25+
* Update the table of contents in the project's central README
26+
* Update the table of contents in this sub-project's README
27+

tensorflow_addons/layers/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,7 @@ must:
2222
`@run_all_in_graph_and_eager_modes` decorator.
2323
* Run `keras.testing_utils.layer_test` on the layer.
2424

25+
#### Documentation Requirements
26+
* Update the table of contents in the project's central README
27+
* Update the table of contents in this sub-project's README
28+

tensorflow_addons/losses/README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
## Contents
44
| Loss | Reference |
55
|:----------------------- |:-------------------------------------|
6-
| TripletLoss | https://arxiv.org/abs/1503.03832 |
6+
| LiftedStructLoss | https://arxiv.org/abs/1511.06452 |
7+
| TripletSemiHardLoss | https://arxiv.org/abs/1503.03832 |
78

89

910
## Contribution Guidelines
@@ -18,4 +19,9 @@ must:
1819
* Simple unittests that demonstrate the loss is behaving as expected on
1920
some set of known inputs and outputs.
2021
* When applicable, run all tests with TensorFlow's
21-
`@run_all_in_graph_and_eager_modes` decorator.
22+
`@run_all_in_graph_and_eager_modes` decorator.
23+
24+
#### Documentation Requirements
25+
* Update the table of contents in the project's central README
26+
* Update the table of contents in this sub-project's README
27+

tensorflow_addons/optimizers/README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,9 @@ must:
1616

1717
#### Testing Requirements
1818
* When applicable, run all tests with TensorFlow's
19-
`@run_all_in_graph_and_eager_modes` decorator
19+
`@run_all_in_graph_and_eager_modes` decorator
20+
21+
#### Documentation Requirements
22+
* Update the table of contents in the project's central README
23+
* Update the table of contents in this sub-project's README
24+

0 commit comments

Comments
 (0)