Skip to content

Commit

Permalink
fix network size issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Corentin-Allaire committed Apr 3, 2024
1 parent 4271243 commit a5aa62a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def train(
torch.save(duplicateClassifier, "duplicateClassifier.pt")
torch.onnx.export(
duplicateClassifier,
input_test,
input_test[0:1],
"duplicateClassifier.onnx",
input_names=["x"],
output_names=["y"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ def train(
torch.save(duplicateClassifier, "seedduplicateClassifier.pt")
torch.onnx.export(
duplicateClassifier,
input_test[0],
input_test[0:1],
"seedduplicateClassifier.onnx",
input_names=["x"],
output_names=["y"],
Expand Down

0 comments on commit a5aa62a

Please sign in to comment.