-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e6567ac
commit a7e2ded
Showing
3 changed files
with
54 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,15 @@ | ||
# | ||
# author: Jungtaek Kim ([email protected]) | ||
# last updated: March 22, 2021 | ||
# author: Jungtaek Kim ([email protected]) | ||
# last updated: November 15, 2024 | ||
# | ||
"""test_gp""" | ||
"""test_gp_gp""" | ||
|
||
import typing | ||
import pytest | ||
import numpy as np | ||
|
||
from bayeso import constants | ||
from bayeso.gp import gp as package_target | ||
from bayeso.gp import gp_kernel | ||
from bayeso.utils import utils_covariance | ||
|
||
|
||
TEST_EPSILON = 1e-7 | ||
|
||
|
||
def test_sample_functions_typing(): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters