Skip to content

Commit

Permalink
Fix a bug in quadruple.py
Browse files Browse the repository at this point in the history
  • Loading branch information
anranjiao authored Sep 1, 2024
1 parent 7f1b87f commit 95818cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deepxde/data/quadruple.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def train_next_batch(self, batch_size=None):
self.train_x[0][indices_branch],
self.train_x[1][indices_branch],
self.train_x[2][indices_trunk],
), self.train_y[indices_branch, indices_trunk]
), self.train_y[indices_branch][:, indices_trunk]

def test(self):
return self.test_x, self.test_y

0 comments on commit 95818cc

Please sign in to comment.