Date: Thu, 17 Jan 2019 19:20:56 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r490584 - in head/math: . py-bayesian-optimization Message-ID: <201901171920.x0HJKuxS006665@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Thu Jan 17 19:20:56 2019 New Revision: 490584 URL: https://svnweb.freebsd.org/changeset/ports/490584 Log: Add py-bayesian-optimization 1.0.0 Bayesian Optimization is a pure Python implementation of bayesian global optimization with gaussian processes. This is a constrained global optimization package built upon bayesian inference and gaussian process, that attempts to find the maximum value of an unknown function in as few iterations as possible. This technique is particularly suited for optimization of high cost functions, situations where the balance between exploration and exploitation is important. WWW: https://github.com/fmfn/BayesianOptimization Added: head/math/py-bayesian-optimization/ head/math/py-bayesian-optimization/Makefile (contents, props changed) head/math/py-bayesian-optimization/distinfo (contents, props changed) head/math/py-bayesian-optimization/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Thu Jan 17 19:20:50 2019 (r490583) +++ head/math/Makefile Thu Jan 17 19:20:56 2019 (r490584) @@ -686,6 +686,7 @@ SUBDIR += py-apgl SUBDIR += py-basemap SUBDIR += py-basemap-data + SUBDIR += py-bayesian-optimization SUBDIR += py-bitmath SUBDIR += py-bitvector SUBDIR += py-bottleneck Added: head/math/py-bayesian-optimization/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-bayesian-optimization/Makefile Thu Jan 17 19:20:56 2019 (r490584) @@ -0,0 +1,24 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= bayesian-optimization +PORTVERSION= 1.0.0 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Bayesian Optimization package + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>=1.9.0:math/py-numpy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}scikit-learn>=0.18.0:science/py-scikit-learn@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}scipy>=0.14.0:science/py-scipy@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/math/py-bayesian-optimization/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-bayesian-optimization/distinfo Thu Jan 17 19:20:56 2019 (r490584) @@ -0,0 +1,3 @@ +TIMESTAMP = 1547722783 +SHA256 (bayesian-optimization-1.0.0.tar.gz) = 14a626073cd0c8de8bceb1f0c52f2d016b5ad976473905abb82a5c3e28467037 +SIZE (bayesian-optimization-1.0.0.tar.gz) = 12739 Added: head/math/py-bayesian-optimization/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-bayesian-optimization/pkg-descr Thu Jan 17 19:20:56 2019 (r490584) @@ -0,0 +1,10 @@ +Bayesian Optimization is a pure Python implementation of bayesian global +optimization with gaussian processes. + +This is a constrained global optimization package built upon bayesian inference +and gaussian process, that attempts to find the maximum value of an unknown +function in as few iterations as possible. This technique is particularly suited +for optimization of high cost functions, situations where the balance between +exploration and exploitation is important. + +WWW: https://github.com/fmfn/BayesianOptimization
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901171920.x0HJKuxS006665>