- fixed v_to_ph parameter consideration

- matrix: use different random implementations
This commit is contained in:
2025-12-18 15:49:18 +01:00
parent 855c392970
commit 3b68b9ad79
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ class Entity:
def v_to_ph(self, v: np.ndarray) -> np.ndarray:
state = self.state.v_to_h(v)
if self.params.do_gaussian_visible:
if self.params.do_gaussian_hidden:
return state
return prob(state)