Hello,
I am trying to use a NoisyNormalMixture prior function in ContinuousIndexedEntropyModel for a Hyperprior Model.
I found the example for the NoisyLogisticMixture in the GitHub implementation and made some modification given below to fit my requirements.
```
tfc.ContinuousIndexedEntropyModel(
prior_fn=tfc.NoisyNormalMixture,
index_ranges=(64, 64, 64),
parameter_fns=dict(
loc=lambda i: i[..., 0:3],
scale=lambda i: i[…, 3:6],
weight=lambda i: tf.nn.softmax(i[..., 6:9]),
),
coding_rank=3,
channel_axis=-1,
)
```
This runs fine while training, but when I am trying to use this entropy model in testing, it keeps on running for days without throwing any error. Is there something wrong the way I am using the entropy model? Also, if there is any example of use of NoisyNormalMixture in ContinuousIndexedEntropyModel, please let me know.
Thank you!
Best Regards
Mahadev