Kaynağa Gözat

ONNX export bug fix #93

5.0
Glenn Jocher 4 yıl önce
ebeveyn
işleme
e1e3399286
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. +1
    -1
      models/onnx_export.py

+ 1
- 1
models/onnx_export.py Dosyayı Görüntüle

@@ -25,7 +25,7 @@ if __name__ == '__main__':

# Load pytorch model
google_utils.attempt_download(opt.weights)
model = torch.load(opt.weights, map_location=torch.device('cpu'))['model']
model = torch.load(opt.weights, map_location=torch.device('cpu'))['model'].float()
model.eval()
model.fuse()


Yükleniyor…
İptal
Kaydet