All Projects → SheffieldML → Gpyopt

SheffieldML / Gpyopt

Licence: bsd-3-clause
Gaussian Process Optimization using GPy

Projects that are alternatives of or similar to Gpyopt

Coco Caption
Stars: ✭ 712 (-0.56%)
Mutual labels:  jupyter-notebook
Tensorflow 2.x Tutorials
TensorFlow 2.x version's Tutorials and Examples, including CNN, RNN, GAN, Auto-Encoders, FasterRCNN, GPT, BERT examples, etc. TF 2.0版入门实例代码,实战教程。
Stars: ✭ 6,088 (+750.28%)
Mutual labels:  jupyter-notebook
Carnd Lanelines P1
Lane Finding Project for Self-Driving Car ND
Stars: ✭ 717 (+0.14%)
Mutual labels:  jupyter-notebook
Research
Notebooks based on financial machine learning.
Stars: ✭ 714 (-0.28%)
Mutual labels:  jupyter-notebook
Industry Machine Learning
A curated list of applied machine learning and data science notebooks and libraries across different industries (by @firmai)
Stars: ✭ 6,077 (+748.74%)
Mutual labels:  jupyter-notebook
Mingpt
A minimal PyTorch re-implementation of the OpenAI GPT (Generative Pretrained Transformer) training
Stars: ✭ 6,803 (+850.14%)
Mutual labels:  jupyter-notebook
Soft Nms
Object Detection
Stars: ✭ 708 (-1.12%)
Mutual labels:  jupyter-notebook
Tensorflow Workshop
Slides and code from our TensorFlow workshop.
Stars: ✭ 719 (+0.42%)
Mutual labels:  jupyter-notebook
Tensorflow cookbook
Code for Tensorflow Machine Learning Cookbook
Stars: ✭ 5,984 (+735.75%)
Mutual labels:  jupyter-notebook
Gans
Generative Adversarial Networks implemented in PyTorch and Tensorflow
Stars: ✭ 714 (-0.28%)
Mutual labels:  jupyter-notebook
Neural Net With Financial Time Series Data
This solution presents an accessible, non-trivial example of machine learning (Deep learning) with financial time series using TensorFlow
Stars: ✭ 713 (-0.42%)
Mutual labels:  jupyter-notebook
Pymc4
Experimental PyMC interface for TensorFlow Probability. Official work on this project has been discontinued.
Stars: ✭ 716 (+0%)
Mutual labels:  jupyter-notebook
Tensorflow Tutorials
Simple tutorials using Google's TensorFlow Framework
Stars: ✭ 5,912 (+725.7%)
Mutual labels:  jupyter-notebook
Statistical Rethinking With Python And Pymc3
Python/PyMC3 port of the examples in " Statistical Rethinking A Bayesian Course with Examples in R and Stan" by Richard McElreath
Stars: ✭ 713 (-0.42%)
Mutual labels:  jupyter-notebook
Tforce btc trader
TensorForce Bitcoin Trading Bot
Stars: ✭ 717 (+0.14%)
Mutual labels:  jupyter-notebook
Kaggle Titanic
A tutorial for Kaggle's Titanic: Machine Learning from Disaster competition. Demonstrates basic data munging, analysis, and visualization techniques. Shows examples of supervised machine learning techniques.
Stars: ✭ 709 (-0.98%)
Mutual labels:  jupyter-notebook
Notes Python
中文 Python 笔记
Stars: ✭ 6,127 (+755.73%)
Mutual labels:  jupyter-notebook
Activitynet
This repository is intended to host tools and demos for ActivityNet
Stars: ✭ 716 (+0%)
Mutual labels:  jupyter-notebook
Aws Machine Learning University Accelerated Tab
Machine Learning University: Accelerated Tabular Data Class
Stars: ✭ 718 (+0.28%)
Mutual labels:  jupyter-notebook
Densepose
A real-time approach for mapping all human pixels of 2D RGB images to a 3D surface-based model of the body
Stars: ✭ 6,168 (+761.45%)
Mutual labels:  jupyter-notebook

End of maintenance for GPyOpt

Dear GPyOpt community!

We would like to acknowledge the obvious. The core team of GPyOpt has moved on, and over the past months we weren't giving the package nearly as much attention as it deserves. Instead of dragging our feet and giving people only occasional replies and no new features, we feel the time has come to officially declare the end of GPyOpt maintenance.

We would like to thank the community that has formed around GPyOpt. Without your interest, discussions, bug fixes and pull requests the package would never be as successful as it is. We hope we were able to provide you with a useful tool to aid your research and work.

From now on we won't be participating in the issues, merging PRs or developing any new functions. All existing PRs will be closed (but not the issues). The repo itself is not closing though, so feel free to start new discussion threads and forks. We are also still around, so may drop an occasional comment here or there. But no promises.

Finally, if you feel really enthusiastic and would like to take over the package, feel free to drop both of us an email, and who knows, maybe you'll be the one(s) carrying the GPyOpt to new heights!

Sincerely yours, Andrei Paleyes and Javier Gonzalez

GPyOpt

Gaussian process optimization using GPy. Performs global optimization with different acquisition functions. Among other functionalities, it is possible to use GPyOpt to optimize physical experiments (sequentially or in batches) and tune the parameters of Machine Learning algorithms. It is able to handle large data sets via sparse Gaussian process models.

licence develstat covdevel Research software impact

Citation

@Misc{gpyopt2016,
author = {The GPyOpt authors},
title = {{GPyOpt}: A Bayesian Optimization framework in python},
howpublished = {\url{http://github.com/SheffieldML/GPyOpt}},
year = {2016}
}

Getting started

Installing with pip

The simplest way to install GPyOpt is using pip. ubuntu users can do:

sudo apt-get install python-pip
pip install gpyopt

If you'd like to install from source, or want to contribute to the project (e.g. by sending pull requests via github), read on. Clone the repository in GitHub and add it to your $PYTHONPATH.

git clone https://github.com/SheffieldML/GPyOpt.git
cd GPyOpt
python setup.py develop

Dependencies:

  • GPy
  • paramz
  • numpy
  • scipy
  • matplotlib
  • DIRECT (optional)
  • cma (optional)
  • pyDOE (optional)
  • sobol_seq (optional)

You can install dependencies by running:

pip install -r requirements.txt

Funding Acknowledgements

  • BBSRC Project No BB/K011197/1 "Linking recombinant gene sequence to protein product manufacturability using CHO cell genomic resources"

  • See GPy funding Acknowledgements

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].