#!/bin/bash

all: test

test:
	python pretrain.py
	python finetune.py

clean:
	rm -rf ./__pycache__

