Skip to content

Commit f982d85

Browse files
committed
v0.2.2
1 parent 5b5c764 commit f982d85

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fast_ctc_decode"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
authors = ["Vlado Boza <[email protected]>", "Chris Seymour <[email protected]>"]
55
edition = "2018"
66

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ $ pip install fast-ctc-decode
1515
>>>
1616
>>> beam_size = 5
1717
>>> alphabet = "NACGT"
18-
>>> beam_prune_threshold = 0.1 # < 1 / len(alphabet)
18+
>>> beam_prune_threshold = 0.1
1919
>>> posteriors = np.random.rand(100, len(alphabet)).astype(np.float32)
2020
>>>
2121
>>> seq, path = beam_search(posteriors, alphabet, beam_size, beam_prune_threshold)

0 commit comments

Comments
 (0)