Skip to content

Commit

Permalink
Update tensor_prod.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Spinachboul authored Jan 14, 2024
1 parent 0e7bf66 commit c605735
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/src/tensor_prod.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ a: A constant parameter

# Generating Data and Plotting

```@example
```@example tensor
function tensor_product_function(x, a)
return prod(cos.(a * π * xi) for xi in x)
end
Expand Down Expand Up @@ -46,7 +46,7 @@ plot_data_and_true_function(x_train, y_train, x_test, y_test, a, lb, ub)
# Training various Surrogates
Now let's train various surrogate models and evaluate their performance on the test data

```@example
```@example tensor
# Train different surrogate models
function train_surrogates(x_train, y_train, lb, ub, alpha=2.0, n=6)
loba = LobachevskySurrogate(x_train, y_train, lb, ub, alpha=alpha, n=n)
Expand Down Expand Up @@ -82,7 +82,7 @@ plot_surrogate_predictions(loba_pred, krig_pred, x_test, y_test, 2.0, lb, ub)
# Reporting the best Surrogate Model
To determine the best surrogate, you can compare their accuracy and performance metrics on the test data. For instance, you can calculate and compare the mean squared error (MSE) or any other relevant metric

```@example
```@example tensor
using Statistics
# Evaluate performance metrics
Expand Down

0 comments on commit c605735

Please sign in to comment.