hwang2006's picture
Upload folder using huggingface_hub
68fd4e1 verified
raw
history blame contribute delete
218 Bytes
install:
pip install --upgrade pip &&\
pip install -r requirements.txt
test:
python -m pytest -vv --cov=hello test_hello.py
format:
black *.py
lint:
pylint --disable=R,C hello.py
all: install lint test format