mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-11 21:12:38 +02:00
Added robot_wireless data set and examples.
This commit is contained in:
parent
c45a80499c
commit
4082f6c02e
4 changed files with 139 additions and 9 deletions
|
|
@ -378,6 +378,17 @@ def stick():
|
|||
|
||||
return m
|
||||
|
||||
def robot_wireless():
|
||||
data = GPy.util.datasets.robot_wireless()
|
||||
# optimize
|
||||
m = GPy.models.GPLVM(data['Y'], 2)
|
||||
m.optimize(messages=1, max_f_eval=10000)
|
||||
m._set_params(m._get_params())
|
||||
plt.clf
|
||||
ax = m.plot_latent()
|
||||
|
||||
return m
|
||||
|
||||
def stick_bgplvm(model=None):
|
||||
data = GPy.util.datasets.osu_run1()
|
||||
Q = 6
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue