summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-03-26 20:28:19 -0700
committerDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-03-26 20:28:19 -0700
commit94f732558c9edb8646fd2184f397775662375148 (patch)
treefa874a3ea5f5ff5a6ff940fa2554c34af3f26ba1
parenta2d5786e19838788ad0d7305ec2bcfc4972d3e64 (diff)
Fix bugs
-rw-r--r--ml_exp/krr.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ml_exp/krr.py b/ml_exp/krr.py
index 68aef8828..dd6df7092 100644
--- a/ml_exp/krr.py
+++ b/ml_exp/krr.py
@@ -360,7 +360,7 @@ def multi_krr(db_path='data',
test_size=test_size,
sigma=sigma,
identifier='LJM',
- laplauss='gaussian',
+ kernel='gaussian',
use_tf=use_tf,
show_msgs=show_msgs)
if 'AM' in identifiers:
@@ -370,7 +370,7 @@ def multi_krr(db_path='data',
test_size=test_size,
sigma=sigma,
identifier='AM',
- laplauss='gaussian',
+ kernel='gaussian',
use_tf=use_tf,
show_msgs=show_msgs)
if 'BOB' in identifiers:
@@ -380,7 +380,7 @@ def multi_krr(db_path='data',
test_size=test_size,
sigma=sigma,
identifier='BOB',
- laplauss='laplacian',
+ kernel='laplacian',
use_tf=use_tf,
show_msgs=show_msgs)