Spaces:
Sleeping
Sleeping
File size: 775 Bytes
c1e08a0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | .PHONY: install
install:
poetry install
.PHONY: run
run:
poetry run python main.py
.PHONY: lint
lint:
poetry run pflake8 improvisation_lab scripts tests main.py
poetry run mypy improvisation_lab scripts tests main.py
poetry run pydocstyle improvisation_lab scripts tests main.py
.PHONY: format
format:
poetry run black improvisation_lab scripts tests main.py
poetry run isort improvisation_lab scripts tests main.py
.PHONY: test
test:
poetry run pytest -vs tests
.PHONY: pitch-demo-web pitch-demo-direct
pitch-demo-web:
poetry run python scripts/pitch_detection_demo.py --input web
pitch-demo-direct:
poetry run python scripts/pitch_detection_demo.py --input direct
# Target alias (Default: input voice via web)
.PHONY: pitch-demo
pitch-demo: pitch-demo-web
|