Files
attention-from-scratch/main.py
2025-04-29 10:20:07 +01:00

11 lines
144 B
Python

import torch
def main():
print(torch.__version__)
print("Hello from attention-from-scratch!")
if __name__ == "__main__":
main()