mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-06-05 14:55:15 +02:00
Merge branch 'master' into devel
This commit is contained in:
commit
cbcb9208b5
4 changed files with 9 additions and 25 deletions
11
AUTHORS.txt
11
AUTHORS.txt
|
|
@ -1,8 +1,3 @@
|
||||||
James Hensman
|
# This list was out of date, I've put "see contributors" for the moment. Not sure how to fix long term but don't want to be
|
||||||
Nicolo Fusi
|
# embarrassed by some off the great contributors of late being omitted from a list.
|
||||||
Ricardo Andrade
|
See contributors.
|
||||||
Nicolas Durrande
|
|
||||||
Alan Saul
|
|
||||||
Max Zwiessele
|
|
||||||
Neil D. Lawrence
|
|
||||||
Zhenwen Dai
|
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@ class Metropolis_Hastings:
|
||||||
self.model._log_det_jacobian()
|
self.model._log_det_jacobian()
|
||||||
accepted = np.zeros(Ntotal,dtype=np.bool)
|
accepted = np.zeros(Ntotal,dtype=np.bool)
|
||||||
for it in range(Ntotal):
|
for it in range(Ntotal):
|
||||||
print "sample %d of %d\r"%(it,Ntotal),
|
print("sample %d of %d\r"%(it,Ntotal),end="\t")
|
||||||
sys.stdout.flush()
|
sys.stdout.flush()
|
||||||
prop = np.random.multivariate_normal(current, self.cov*self.scale*self.scale)
|
prop = np.random.multivariate_normal(current, self.cov*self.scale*self.scale)
|
||||||
self.model.optimizer_array = prop
|
self.model.optimizer_array = prop
|
||||||
|
|
|
||||||
19
README.md
19
README.md
|
|
@ -14,10 +14,10 @@ Continuous integration status:  "MLPM2012: Machine Learning for Personalized Medicine"
|
* [EU FP7-PEOPLE Project Ref 316861](http://staffwww.dcs.shef.ac.uk/people/N.Lawrence/projects/mlpm/) "MLPM2012: Machine Learning for Personalized Medicine"
|
||||||
|
|
||||||
* [BBSRC Project No BB/K011197/1](http://staffwww.dcs.shef.ac.uk/people/N.Lawrence/projects/recombinant/) "Linking recombinant gene sequence to protein product manufacturability using CHO cell genomic resources"
|
|
||||||
|
|
||||||
* MRC Special Training Fellowship "Bayesian models of expression in the transcriptome for clinical RNA-seq"
|
* MRC Special Training Fellowship "Bayesian models of expression in the transcriptome for clinical RNA-seq"
|
||||||
|
|
||||||
* [EU FP7-KBBE Project Ref 289434](http://staffwww.dcs.shef.ac.uk/people/N.Lawrence/projects/biopredyn/) "From Data to Models: New Bioinformatics Methods and Tools for Data-Driven Predictive Dynamic Modelling in Biotechnological Applications"
|
|
||||||
|
|
||||||
* [EU FP7-ICT Project Ref 612139](http://staffwww.dcs.shef.ac.uk/people/N.Lawrence/projects/wysiwyd/) "WYSIWYD: What You Say is What You Did"
|
* [EU FP7-ICT Project Ref 612139](http://staffwww.dcs.shef.ac.uk/people/N.Lawrence/projects/wysiwyd/) "WYSIWYD: What You Say is What You Did"
|
||||||
|
|
||||||
Previous support for the GPy software came from the following projects:
|
Previous support for the GPy software came from the following projects:
|
||||||
|
* [BBSRC Project No BB/K011197/1](http://staffwww.dcs.shef.ac.uk/people/N.Lawrence/projects/recombinant/) "Linking recombinant gene sequence to protein product manufacturability using CHO cell genomic resources"
|
||||||
|
* [EU FP7-KBBE Project Ref 289434](http://staffwww.dcs.shef.ac.uk/people/N.Lawrence/projects/biopredyn/) "From Data to Models: New Bioinformatics Methods and Tools for Data-Driven Predictive Dynamic Modelling in Biotechnological Applications"
|
||||||
* [BBSRC Project No BB/H018123/2](http://staffwww.dcs.shef.ac.uk/people/N.Lawrence/projects/iterative/) "An iterative pipeline of computational modelling and experimental design for uncovering gene regulatory networks in vertebrates"
|
* [BBSRC Project No BB/H018123/2](http://staffwww.dcs.shef.ac.uk/people/N.Lawrence/projects/iterative/) "An iterative pipeline of computational modelling and experimental design for uncovering gene regulatory networks in vertebrates"
|
||||||
* [Erasysbio](http://staffwww.dcs.shef.ac.uk/people/N.Lawrence/projects/synergy/) "SYNERGY: Systems approach to gene regulation biology through nuclear receptors"
|
* [Erasysbio](http://staffwww.dcs.shef.ac.uk/people/N.Lawrence/projects/synergy/) "SYNERGY: Systems approach to gene regulation biology through nuclear receptors"
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -7,7 +7,7 @@ from setuptools import setup, Extension
|
||||||
import numpy as np
|
import numpy as np
|
||||||
|
|
||||||
# Version number
|
# Version number
|
||||||
version = '0.6.1'
|
version = '0.8'
|
||||||
|
|
||||||
def read(fname):
|
def read(fname):
|
||||||
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue