You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While running test tasks on 'mol_building_env', I encountered 'invalid_losses'. After investigating, I discovered that the shape of non_edge_index was incorrect. This issue can be easily fixed by setting non_edge_index = np.zeros((0, 2), dtype=np.int64). The correct shape is needed for line 382, where non_edge_index.shape[0] is used.
The text was updated successfully, but these errors were encountered:
gflownet/src/gflownet/envs/mol_building_env.py
Line 355 in f106cde
While running test tasks on 'mol_building_env', I encountered 'invalid_losses'. After investigating, I discovered that the shape of
non_edge_index
was incorrect. This issue can be easily fixed by settingnon_edge_index = np.zeros((0, 2), dtype=np.int64)
. The correct shape is needed for line 382, wherenon_edge_index.shape[0]
is used.The text was updated successfully, but these errors were encountered: