Cameron Trotter
Cameron Trotter
@bth5032 my hunch as to what was causing the issue may be incorrect, it was simply based on the fact that the code was failing to create batches just for...
Great stuff, thank you for taking the time to test that. I ran into this issue but solved it by changing the split of my train-test set. This is a...
Update: I fixed the above error by calling ``` car_concept_features.requires_grad_() cloud_concept_features.requires_grad_() ``` Before ``` # Where is the car in the image with GradCAM(model=model, target_layers=target_layers, use_cuda=False) as cam: car_grayscale_cam =...
Hi @jacobgil, I tried the suggestion but the same error occurs: ``` target_layers = [loaded_model.module.convnet[-2]] car_targets = [SimilarityToConceptTarget(car_concept_features)] cloud_targets = [SimilarityToConceptTarget(cloud_concept_features)] # Where is the car in the image with...
Hi, also sorry for my late reply. printing `target_layers` shows as: `[Conv2d(59, 59, kernel_size=(5, 5), stride=(1, 1))]` Using `torchsummary` to get the expected output for a (3, 300, 300) image:...
> Hi everyone, How can we resume the training when the last saved checkpoint is corrupted? My computer restarted and when I checked the last checkpoint showed 0-byte size. I...
Hi, Can you confirm you're running in an environment with the following versions of packages installed: numpy==1.19.0 tensorflow==1.14.0 tensorflow-estimator==1.14.0 tensorflow-gpu==1.14.0 matplotlib==3.0.3 scikit_learn==0.24.1