run *name:
    python3 ./model.py -n "{{ name }}"

fmt:
    black ./*.py

lint:
    ruff check ./model.py

clean:
    rm -rf output
