mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-09-08 08:34:19 +00:00
Remove unnecessary check
This commit is contained in:
parent
7d457a7781
commit
f6619a0b20
@ -570,7 +570,7 @@ def sample_combined_forward(p: Tensor, K: int, input_is_log: bool) -> Tuple[Tens
|
|||||||
prod_values, prod_indexes = compute_products(values, indexes)
|
prod_values, prod_indexes = compute_products(values, indexes)
|
||||||
|
|
||||||
# combined_values, combined_indexes: (B, K) these are the top-K
|
# combined_values, combined_indexes: (B, K) these are the top-K
|
||||||
# most-probable combinations of (integerized_ probabilities and their
|
# most-probable combinations of (integerized probabilities and their
|
||||||
# indexes, from largest to smallest probability
|
# indexes, from largest to smallest probability
|
||||||
combined_values, combined_indexes = compute_k_largest(prod_values, K)
|
combined_values, combined_indexes = compute_k_largest(prod_values, K)
|
||||||
|
|
||||||
@ -651,8 +651,9 @@ def sample_combined_forward(p: Tensor, K: int, input_is_log: bool) -> Tuple[Tens
|
|||||||
samples)
|
samples)
|
||||||
|
|
||||||
# TODO: could remove the next call
|
# TODO: could remove the next call
|
||||||
check_shifted_samples(combined_cumsums, delta_P,
|
if random.random() < 0.01:
|
||||||
shifted_samples, P_sum_product)
|
check_shifted_samples(combined_cumsums, delta_P,
|
||||||
|
shifted_samples, P_sum_product)
|
||||||
|
|
||||||
indexes = get_indexes_for_samples(P, P_cumsum,
|
indexes = get_indexes_for_samples(P, P_cumsum,
|
||||||
P_cumsum_exclusive,
|
P_cumsum_exclusive,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user