#!/bin/bash

all: test

test:
	python DomainAdversarialTransformer.py
	python SubdomainAdversarialTransformer.py

clean:
	rm -rf ./__pycache__

