#!/bin/bash

all: test

test:
	python lasso_glm.py

clean:
	rm -rf ./*.asv
	rm -rf ./__pycache__
	rm -rf ./__image__

