https://github.com/dmlc/gluon-cv
Revision a16965408ae6b7c132039ede9e6a6187d4aa4ab1 authored by sallypannn on 10 June 2021, 19:56:55 UTC, committed by GitHub on 10 June 2021, 19:56:55 UTC
* add regression

* modify evaluate

* .

* remove accidentally commited file

* works for regression and binary problems now

* refactor codes

* clean up codes

* set default problem_type

* modify error info

* free base_estimator

* fix

* move problem_type arg to end

* fix negative rmse & predict_proba

* fix predict_proba

* add ImagePrediction class

* add newline to eof & set default fromlist to None

* clean up

* add ImagePredictionDataset

* modify dataset class & add test case

* clean up code

* add space

* free model_zoo

* fix import

Co-authored-by: Ubuntu <ubuntu@ip-172-31-13-7.ap-northeast-1.compute.internal>
Co-authored-by: Joshua Z. Zhang <cheungchih@gmail.com>
1 parent 978d460
Raw File
Tip revision: a16965408ae6b7c132039ede9e6a6187d4aa4ab1 authored by sallypannn on 10 June 2021, 19:56:55 UTC
Add support for regression problems (#1667)
Tip revision: a169654
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