#!/bin/bash

all: test

test:
	python ResidualConv1D.py
	python ChannelPooling1D.py
	python SpatialAttention.py
	python SubjectLayer.py
	python SubjectBlock.py
	python Conv1DBlock.py
	python LossLayer.py

clean:
	rm -rf ./__pycache__

