Skip to content

Commit

Permalink
Fix tiny but consequential bug in excited states
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 577488269
Change-Id: I4c1d3601ac150e6f59f821ce3a50f2659798d82a
  • Loading branch information
dpfau authored and jsspencer committed Nov 24, 2023
1 parent 3fb9e5e commit e9f8c64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ferminet/networks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1476,7 +1476,7 @@ def apply(
jnp.reshape(orbital, (options.states, -1) + orbital.shape[1:])
for orbital in orbitals
]
return batch_logdet_matmul(*orbitals)
return batch_logdet_matmul(orbitals)
else:
return network_blocks.logdet_matmul(orbitals)

Expand Down

0 comments on commit e9f8c64

Please sign in to comment.