Skip to content

Commit

Permalink
cleanup rbf
Browse files Browse the repository at this point in the history
  • Loading branch information
mastoffel committed Oct 10, 2024
1 parent 70b974b commit 144b818
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions autoemulate/emulators/radial_basis_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,7 @@ def predict(self, X):

def get_grid_params(self, search_type="random"):
"""Returns the grid parameters of the emulator."""
# param_space_random = {
# #"smoothing": uniform(0.0, 1.0),
# "kernel": ["linear", "thin_plate_spline", "cubic", "quintic", "multiquadric", "inverse_multiquadric", "gaussian"],
# #"epsilon": uniform(0.0, 1.0),
# "degree": randint(0, 5),
# }

param_space_random = [
{
"kernel": ["linear", "multiquadric"],
Expand Down

0 comments on commit 144b818

Please sign in to comment.