Fix SAM autodownload to /weights (#3655)
This commit is contained in:
parent
82920ef7ec
commit
48d7dbdbf9
1 changed files with 1 additions and 1 deletions
|
|
@ -100,7 +100,7 @@ def _build_sam(
|
|||
)
|
||||
sam.eval()
|
||||
if checkpoint is not None:
|
||||
attempt_download_asset(checkpoint)
|
||||
checkpoint = attempt_download_asset(checkpoint)
|
||||
with open(checkpoint, 'rb') as f:
|
||||
state_dict = torch.load(f)
|
||||
sam.load_state_dict(state_dict)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue