python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
auto-py-to-exe cannot get rid of torch and torchvision errors
I've been reading every single post I found here and online with similar problems but none solved my problem.
I am trying to convert my python app to a exe file using auto-py-to-exe.
I got rid of most...
sharkyenergy
Votes: 0
Answers: 1
ConvNeXt torchvision - specify input channels
How do I change the number of input channels in the torchvision ConvNeXt model? I am working with grayscale images and want 1 input channel instead of 3.
import torch
from torchvision.models.convnext ...
Kevin
Votes: 0
Answers: 1
Tranforms from torchvision is not working?
My line of code is
from torchvision import transforms simple_tranform=transforms.Compose([transforms.Resize((224,224)),tranforms.ToTensor(),transforms.Normalize([0.485,0.456,0.406],[0.229,0.224,0.225...
M_m-M99
Votes: 0
Answers: 1
Torchvision RetinaNet predicts unwanted class background
I want to train the pretrained RetinaNet from torchvision with my custom dataset with 2 classes (without background). To train with RetinaNet, I did follow modifications:
num_classes = 3 # num of obje...
jaisme
Votes: 0
Answers: 0