Skip to content

Commit

Permalink
remove duplicate
Browse files Browse the repository at this point in the history
  • Loading branch information
balintlaczko committed Mar 13, 2024
1 parent 7d23a0a commit eb4267e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion frechet_audio_distance/fad.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ def __init__(
self.submodel_name = submodel_name
self.sample_rate = sample_rate
self.channels = channels
self.device = torch.device('cuda') if torch.cuda.is_available() else torch.device('cpu')
self.verbose = verbose
self.device = torch.device(
'cuda') if torch.cuda.is_available() else torch.device('mps') if torch.backends.mps.is_available() else torch.device('cpu')
Expand Down

0 comments on commit eb4267e

Please sign in to comment.