Skip to content

Commit

Permalink
v0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
iiSeymour committed Mar 13, 2020
1 parent 5b5c764 commit f982d85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fast_ctc_decode"
version = "0.2.1"
version = "0.2.2"
authors = ["Vlado Boza <[email protected]>", "Chris Seymour <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ $ pip install fast-ctc-decode
>>>
>>> beam_size = 5
>>> alphabet = "NACGT"
>>> beam_prune_threshold = 0.1 # < 1 / len(alphabet)
>>> beam_prune_threshold = 0.1
>>> posteriors = np.random.rand(100, len(alphabet)).astype(np.float32)
>>>
>>> seq, path = beam_search(posteriors, alphabet, beam_size, beam_prune_threshold)
Expand Down

0 comments on commit f982d85

Please sign in to comment.