Skip to content
Snippets Groups Projects
Commit deaa32b4 authored by Konstantin Gerd Eyhorn's avatar Konstantin Gerd Eyhorn
Browse files

stop checkpoints polluting git history ;)

parent 793491a5
No related branches found
No related tags found
No related merge requests found
# Pytorch Checkpoints
*.pth
\ No newline at end of file
...@@ -208,6 +208,9 @@ def main(): ...@@ -208,6 +208,9 @@ def main():
X, y = prepare_data() X, y = prepare_data()
model = train_model(X, y) model = train_model(X, y)
# print parameter count of model
print(f"Parameter count: {sum(p.numel() for p in model.parameters())}")
if __name__ == "__main__": if __name__ == "__main__":
main() main()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment