1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-18 03:46:03 +00:00
freebsd-ports/science/py-skrebate/Makefile
Po-Chuan Hsieh a15ff33a68
science/py-skrebate: Add py-skrebate 0.62
This package includes a scikit-learn-compatible Python implementation of ReBATE,
a suite of Relief-based feature selection algorithms for Machine Learning. These
Relief-Based algorithms (RBAs) are designed for feature weighting/selection as
part of a machine learning pipeline (supervised learning). Presently this
includes the following core RBAs: ReliefF, SURF, SURF*, MultiSURF*, and
MultiSURF. Additionally, an implementation of the iterative TuRF mechanism and
VLSRelief is included.

WWW: https://github.com/EpistasisLab/scikit-rebate
2021-04-26 04:35:07 +08:00

25 lines
632 B
Makefile

# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
PORTNAME= skrebate
PORTVERSION= 0.62
CATEGORIES= science python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Relief-based feature selection algorithms
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>=0,1:math/py-numpy@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}scikit-learn>=0:science/py-scikit-learn@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}scipy>=0:science/py-scipy@${PY_FLAVOR}
USES= python:3.6+
USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes
.include <bsd.port.mk>