This: -fixed line where device for training was always cuda device
This commit is contained in:
parent
26c99ddc55
commit
34bfe78218
@ -14,7 +14,7 @@ fertilizer = {labels[0]: 'kompost', labels[1]: 'saletra amonowa', labels[2]: 'su
|
|||||||
|
|
||||||
torch.manual_seed(42)
|
torch.manual_seed(42)
|
||||||
|
|
||||||
device = torch.device('cuda')
|
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
||||||
|
|
||||||
def getTransformation():
|
def getTransformation():
|
||||||
transform=transforms.Compose([
|
transform=transforms.Compose([
|
||||||
|
Loading…
Reference in New Issue
Block a user