Missing Method under c#

Hello Forum,

i m struggling with KerasNet

I use it with c# and install the latest built from nuget.

I created an Stateful LSTM and my Problem is, i m unable to reset hidden states to change context. Nowhere i find a method called reset_states().

Could you help me, please ?

Thanks

Hi @Pascal567 , I think, In KerasNet (C#), reset_states() is generally not directly exposed on the model.
Instead, You can manage state by creating a session of your model & try to rebuild / reinitialize the model.
Thanks!