forked from pbalapra/scikit-optimize
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request scikit-optimize#21 from scikit-optimize/master
Fix upstream changes
- Loading branch information
Showing
10 changed files
with
193 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
{ | ||
"title": "scikit-optimize/scikit-optimize", | ||
"description": "Scikit-Optimize, or skopt, is a simple and efficient library to minimize (very) expensive and noisy black-box functions. It implements several methods for sequential model-based optimization. skopt aims to be accessible and easy to use in many contexts.", | ||
"creators": [ | ||
{ | ||
"affiliation": "Wild Tree Tech", | ||
"name": "Head, Tim" | ||
}, | ||
{ | ||
"affiliation": "Google Brain", | ||
"name": "Kumar, Manoj" | ||
}, | ||
{ | ||
"name": "Nahrstaedt, Holger", | ||
"orcid": "0000-0002-4796-1082" | ||
}, | ||
{ | ||
"affiliation": "ULi\u00e8ge", | ||
"name": "Louppe, Gilles" | ||
}, | ||
{ | ||
"affiliation": "Saarland University", | ||
"name": "Shcherbatyi, Iaroslav" | ||
}, | ||
{ | ||
"name": "fcharras" | ||
}, | ||
{ | ||
"name": "Z\u00e9 Vin\u00edcius" | ||
}, | ||
{ | ||
"name": "cmmalone" | ||
}, | ||
{ | ||
"name": "Christopher Schr\u00f6der" | ||
}, | ||
{ | ||
"name": "nel215" | ||
}, | ||
{ | ||
"affiliation": "@yldio", | ||
"name": "Nuno Campos" | ||
}, | ||
{ | ||
"name": "Todd Young" | ||
}, | ||
{ | ||
"affiliation": "Politecnico di Milano", | ||
"name": "Stefano Cereda" | ||
}, | ||
{ | ||
"name": "Thomas Fan" | ||
}, | ||
{ | ||
"name": "rene-rex" | ||
}, | ||
{ | ||
"affiliation": "Columbia University", | ||
"name": "Kejia (KJ) Shi" | ||
}, | ||
{ | ||
"affiliation": "Biomedical Informatics Department, Emory School of Medicine", | ||
"name": "Justus Schwabedal" | ||
}, | ||
{ | ||
"name": "carlosdanielcsantos" | ||
}, | ||
{ | ||
"affiliation": "Hvass Laboratories", | ||
"name": "Hvass-Labs" | ||
}, | ||
{ | ||
"affiliation": "Technical University of Munich", | ||
"name": "Mikhail Pak" | ||
}, | ||
{ | ||
"name": "SoManyUsernamesTaken" | ||
}, | ||
{ | ||
"affiliation": "UC Berkeley", | ||
"name": "Fred Callaway" | ||
}, | ||
{ | ||
"name": "Lo\u00efc Est\u00e8ve" | ||
}, | ||
{ | ||
"affiliation": "ENS de Cachan - Paris Saclay University", | ||
"name": "Lilian Besson" | ||
}, | ||
{ | ||
"name": "Mehdi Cherti" | ||
}, | ||
{ | ||
"affiliation": "Paderborn University", | ||
"name": "Karlson Pfannschmidt" | ||
}, | ||
{ | ||
"affiliation": "Toptal", | ||
"name": "Fabian Linzberger" | ||
}, | ||
{ | ||
"affiliation": "@point8", | ||
"name": "Christophe Cauet" | ||
}, | ||
{ | ||
"affiliation": "10clouds", | ||
"name": "Anna Gut" | ||
}, | ||
{ | ||
"affiliation": "Columbia University Data Science Institute", | ||
"name": "Andreas Mueller" | ||
}, | ||
{ | ||
"affiliation": "DFKI", | ||
"name": "Alexander Fabisch" | ||
} | ||
], | ||
"keywords": [ | ||
"bayesopt", | ||
"optimization", | ||
"scientific-computing", | ||
"python", | ||
"machine-learning", | ||
"hyperparameter", | ||
"bayesian-optimization" | ||
], | ||
"license": "bsd-license", | ||
"upload_type": "software" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,9 +13,9 @@ MSG="Pushing the docs for revision for branch: $CIRCLE_BRANCH, commit $CIRCLE_SH | |
echo "Copying built files" | ||
git clone -b master "[email protected]:scikit-optimize/scikit-optimize.github.io" deploy | ||
cd deploy | ||
git rm -r notebooks/* | ||
git rm -r rtd/* | ||
git rm -r beta/* | ||
git rm -r space | ||
git rm -r optimizer | ||
git rm -r learning | ||
cd .. | ||
for entry in ${HOME}/doc/skopt/* | ||
do | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Version 0.7.1 | ||
============= | ||
|
||
New features | ||
------------ | ||
|
||
* Sphinx documentation | ||
* notebooks are replaced by sphinx-gallery | ||
* New StringEncoder, can be used in Categoricals | ||
* Remove string conversion in Identity | ||
* dtype can be set in Integer and Real | ||
|
||
Bug fixes | ||
--------- | ||
|
||
* Fix categorical space (issue #821) | ||
* int can be set as dtype to fix issue #790 | ||
|
||
Maintenance | ||
----------- | ||
|
||
* Old pdoc scripts are removed and replaced by sphinx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters