mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-14 06:22:38 +02:00
Added gibbs.py, although test is still failing.
This commit is contained in:
parent
549f64892e
commit
bd4c7f34ea
10 changed files with 223 additions and 33 deletions
|
|
@ -26,6 +26,7 @@ class MLP(Mapping):
|
|||
|
||||
def __init__(self, input_dim=1, output_dim=1, hidden_dim=3):
|
||||
Mapping.__init__(self, input_dim=input_dim, output_dim=output_dim)
|
||||
self.name = 'mlp'
|
||||
if isinstance(hidden_dim, int):
|
||||
hidden_dim = [hidden_dim]
|
||||
self.hidden_dim = hidden_dim
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue