Parcourir la source

Fix tf.py `LoadImages()` dataloader return values (#5455)

modifyDataloader
Glenn Jocher GitHub il y a 2 ans
Parent
révision
042f02ff9b
Aucune clé connue n'a été trouvée dans la base pour cette signature ID de la clé GPG: 4AEE18F83AFDEB23
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      models/tf.py

+ 1
- 1
models/tf.py Voir le fichier

@@ -411,7 +411,7 @@ class AgnosticNMS(keras.layers.Layer):

def representative_dataset_gen(dataset, ncalib=100):
# Representative dataset generator for use with converter.representative_dataset, returns a generator of np arrays
for n, (path, img, im0s, vid_cap) in enumerate(dataset):
for n, (path, img, im0s, vid_cap, string) in enumerate(dataset):
input = np.transpose(img, [1, 2, 0])
input = np.expand_dims(input, axis=0).astype(np.float32)
input /= 255.0

Chargement…
Annuler
Enregistrer