Skip to content

Commit

Permalink
Update model.R
Browse files Browse the repository at this point in the history
  • Loading branch information
D-Maar authored Oct 22, 2024
1 parent f5ef138 commit 69795e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions R/model.R
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ inceptionBlock_A_2D = torch::nn_module(
# print(branchBRes$size())
# print(branchCRes$size())
# print(branchDRes$size())
res = torch_cat(list(branchARes, branchBRes, branchCRes, branchDRes),2L)
res = torch::torch_cat(list(branchARes, branchBRes, branchCRes, branchDRes),2L)
res
}
)
Expand Down Expand Up @@ -298,7 +298,7 @@ inceptionBlock_A_2D_reduction = torch::nn_module(
# print(branchBRes$size())
# print(branchCRes$size())
# print(branchDRes$size())
res = torch_cat(list(branchARes, branchBRes, branchCRes, branchDRes),2L)
res = torch::torch_cat(list(branchARes, branchBRes, branchCRes, branchDRes),2L)
res
}
)
Expand Down Expand Up @@ -392,7 +392,7 @@ inceptionBlock_A_1D = torch::nn_module(
# print(branchBRes$size())
# print(branchCRes$size())
# print(branchDRes$size())
res = torch_cat(list(branchARes, branchBRes, branchCRes, branchDRes),2L)
res = torch::torch_cat(list(branchARes, branchBRes, branchCRes, branchDRes),2L)
res
}
)
Expand Down

0 comments on commit 69795e0

Please sign in to comment.