feat: implement comprehensive land cover classification pipeline with model benchmarking and experiment logging
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
import torch
|
||||
checkpoint = torch.load('cloud_removal_model/cloud_removal_unet_best.pth', map_location='cpu')
|
||||
print(checkpoint.keys())
|
||||
print("in_channels in checkpoint:", 'in_channels' in checkpoint)
|
||||
if 'in_channels' in checkpoint:
|
||||
print(checkpoint['in_channels'])
|
||||
print("Shape of inc.double_conv.0.weight:", checkpoint['model_state_dict']['inc.double_conv.0.weight'].shape)
|
||||
Reference in New Issue
Block a user