#!/bin/bash

all: test

test:
	cd ./layers && make test
	python Embedding.py
	python MultiHeadAttention.py
	python FeedForward.py
	python TransformerBlock.py
	python TransformerStack.py
	python LossLayer.py

clean:
	rm -rf ./__pycache__

