update dllib-mlflow.py
All checks were successful
s444356-evaluation/pipeline/head This commit looks good
s444356-training/pipeline/head This commit looks good

This commit is contained in:
Maciej Czajka 2022-05-11 19:06:07 +02:00
parent 26b0736758
commit b865d30572

View File

@ -31,10 +31,10 @@ class Model(nn.Module):
self.layer3 = nn.Linear(40, 3)
def forward(self, x):
x = F.relu(self.layer1(x))
x = F.relu(self.layer2(x))
x = F.softmax(self.layer3(x)) # To check with the loss function
return x
x = F.relu(self.layer1(x.float()))
x = F.relu(self.layer2(x.float()))
x = F.softmax(self.layer3(x.float())) # To check with the loss function
return x.float()
# funkcja usuwająca wiersze zawierające platformę "Stadia"
def delete_stadia(games):