https://github.com/dmlc/gluon-cv
Raw File
Tip revision: 567775619f3b97d47e7c360748912a4fd883ff52 authored by Yi Zhu on 19 January 2023, 00:37:33 UTC
Update readme with AutoGluon (#1766)
Tip revision: 5677756
Makefile
ROOTDIR = $(CURDIR)

lint: cpplint pylint

cpplint:
				tests/lint.py gluoncv cpp src

pylint:
				pylint --rcfile=$(ROOTDIR)/tests/pylintrc --ignore-patterns=".*\.so$$,.*\.dll$$,.*\.dylib$$" gluoncv

doc: docs

clean: clean_build

clean_docs:
						make -C docs clean

clean_build:
						rm -rf dist gluoncv.egg-info build | true
back to top