Project setup

This commit is contained in:
Craig
2025-04-29 10:19:22 +01:00
parent dd4583d737
commit 608c345ee3
5 changed files with 1852 additions and 0 deletions

8
main.py Normal file
View File

@@ -0,0 +1,8 @@
import torch
def main():
print(torch.__version__)
print("Hello from attention-from-scratch!")
if __name__ == "__main__":
main()