Skip to content

Commit

Permalink
Fix a docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
fchollet committed Jan 5, 2018
1 parent c67adf1 commit 0916859
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion keras/preprocessing/text.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,17 @@ def one_hot(text, n,
"""One-hot encodes a text into a list of word indexes of size n.
This is a wrapper to the `hashing_trick` function using `hash` as the
hashing function, unicity of word to index mapping non-guaranteed.
hashing function; unicity of word to index mapping non-guaranteed.
# Arguments
text: Input text (string).
n: Dimension of the hashing space.
filters: Sequence of characters to filter out.
lower: Whether to convert the input to lowercase.
split: Sentence split marker (string).
# Returns
A list of integer word indices (unicity non-guaranteed).
"""
return hashing_trick(text, n,
hash_function=hash,
Expand Down

0 comments on commit 0916859

Please sign in to comment.