CoolFace
Apppublic

CNN-RESNET50/detectAdenoid

sourceHugging Faceccupdated 4y agoView on Hugging Face
0likes
Makefile28 linesDownload Raw Back to root
1install:2	pip install --upgrade pip &&\3		pip install -r requirements.txt4 5test:6	python -m pytest -vvv --cov=hello --cov=greeting \7		--cov=smath --cov=web tests8	python -m pytest --nbval notebook.ipynb	#tests our jupyter notebook9	#python -m pytest -v tests/test_web.py #if you just want to test web10 11debug:12	python -m pytest -vv --pdb	#Debugger is invoked13 14one-test:15	python -m pytest -vv tests/test_greeting.py::test_my_name416 17debugthree:18	#not working the way I expect19	python -m pytest -vv --pdb --maxfail=4  # drop to PDB for first three failures20 21format:22	black *.py23 24lint:25	pylint --disable=R,C *.py26 27all: install lint test format28