Skip to content

Commit a1925ec

Browse files
committed
[keras/layers/preprocessing/hashing.py] Use backticks for defaults in docstrings
1 parent 2aec8c1 commit a1925ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

keras/layers/preprocessing/hashing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,12 +109,12 @@ class Hashing(base_layer.Layer):
109109
bin, so the effective number of bins is `(num_bins - 1)` if `mask_value`
110110
is set.
111111
mask_value: A value that represents masked inputs, which are mapped to
112-
index 0. None means no mask term will be added and the
112+
index 0. `None` means no mask term will be added and the
113113
hashing will start at index 0. Defaults to `None`.
114114
salt: A single unsigned integer or None.
115115
If passed, the hash function used will be SipHash64, with these values
116116
used as an additional input (known as a "salt" in cryptography).
117-
These should be non-zero. If None, uses the FarmHash64 hash function.
117+
These should be non-zero. If `None`, uses the FarmHash64 hash function.
118118
It also supports tuple/list of 2 unsigned integer numbers, see
119119
reference paper for details. Defaults to `None`.
120120
output_mode: Specification for the output of the layer. Values can bes

0 commit comments

Comments
 (0)