add: genetic now working

This commit is contained in:
KOSMOGOR
2025-04-07 19:09:24 +03:00
parent c8e540f28b
commit 61276e22b5
3 changed files with 23 additions and 10 deletions
+7
View File
@@ -0,0 +1,7 @@
import torch
import torch.nn as nn
import torch.nn.functional as nnf
import numpy as np
t = torch.tensor([1, 2, 3]).float()
print(torch.argmax(t))