Skip to content
Snippets Groups Projects
Commit ab5d681a authored by Tizian Wenzel's avatar Tizian Wenzel
Browse files

Fixed imports.

parent 94818a2c
No related branches found
No related tags found
No related merge requests found
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
import numpy as np import numpy as np
from matplotlib import pyplot as plt from matplotlib import pyplot as plt
from vkoga_2l import kernels, tkernels from vkoga_2L import kernels, tkernels
from vkoga_2l.vkoga_2L import VKOGA_2L from vkoga_2L.vkoga_2L import VKOGA_2L
np.random.seed(1) np.random.seed(1)
......
#!/usr/bin/env python3 #!/usr/bin/env python3
from vkoga_2l.kernels import Matern from vkoga_2L.kernels import Matern
import numpy as np import numpy as np
from sklearn.base import BaseEstimator from sklearn.base import BaseEstimator
from sklearn.utils.validation import check_X_y, check_array, check_is_fitted from sklearn.utils.validation import check_X_y, check_array, check_is_fitted
from scipy.spatial import distance_matrix from scipy.spatial import distance_matrix
import torch import torch
from vkoga_2l.utilities import OptimizedKernel from vkoga_2L.utilities import OptimizedKernel
# VKOGA implementation # VKOGA implementation
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment