Skip to content

Commit

Permalink
remove redundant or
Browse files Browse the repository at this point in the history
  • Loading branch information
eguchi1904 committed Jul 19, 2023
1 parent c86d52f commit 6174110
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/onnion_runtime/convtranspose.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def run(self, x: np.ndarray, W: np.ndarray, b: Optional[np.ndarray] = None) -> L

# define parameters
dim = len(x.shape) - 2
group = self.group or 1
group = self.group
batch = x.shape[0]
in_ch = x.shape[1]
out_ch = W.shape[1]
Expand Down

0 comments on commit 6174110

Please sign in to comment.