#!/bin/bash

all: test

test:
	python anonymous.py
	python palazzo2020decoding.py
	python gifford2022large.py

clean:
	rm -rf ./__pycache__

