Spaces:
Sleeping
Sleeping
File size: 374 Bytes
165ee00 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
import torch
import numpy as np
import math
from botorch.test_functions.synthetic import Michalewicz
device = torch.device("cpu")
dtype = torch.double
def DummyFixConsDim(individuals):
n = individuals.size(0)
GX = torch.rand(n, 20)
Y = torch.rand(n, 1)
return GX, Y
def DummyFixConsDim_Scaling(X):
X_scaled = X
return X_scaled
|