#!/bin/bash

all: test

test:
	python PositionEmbedding.py
	python MultiHeadAttention.py
	python FeedForward.py
	python TransformerBlock.py

clean:
	rm -rf ./__pycache__

