簡體   English   中英

在 tf.data.Dataset.from_generator() 上應用擴充

[英]Apply augmentation on tf.data.Dataset.from_generator()

我有這個擴充代碼:

class CustomAugment(object):
   def __call__(self, sample):        
       sample = self._random_apply(tf.image.flip_left_right, sample, p=0.5)
       sample = self._random_apply(self._color_jitter, sample, p=0.8)
       sample = self._random_apply(self._color_drop, sample, p=0.2)

       return sample

   def _color_jitter(self, x, s=1):
       
       x = tf.image.random_brightness(x, max_delta=0.8*s)
       x = tf.image.random_contrast(x, lower=1-0.8*s, upper=1+0.8*s)
       x = tf.image.random_saturation(x, lower=1-0.8*s, upper=1+0.8*s)
       x = tf.image.random_hue(x, max_delta=0.2*s)
       x = tf.clip_by_value(x, 0, 1)
       return x
   
   def _color_drop(self, x):
       x = tf.image.rgb_to_grayscale(x)
       x = tf.tile(x, [1, 1, 1, 3])
       return x
   
   def _random_apply(self, func, x, p):
       return tf.cond(
         tf.less(tf.random.uniform([], minval=0, maxval=1, dtype=tf.float32),
                 tf.cast(p, tf.float32)),
         lambda: func(x),
         lambda: x)

這就是我導入圖像數據集的方式:

train_ds = tf.data.Dataset.from_generator(path)

我想在我的 train_ds 上應用這種增強功能,請問,我該如何進行?

首先,您應該使用 tf.keras.sequence 的子類創建一個自定義生成器,然后您可以實現__getitem____len__方法。

class CustomGenerator(tf.keras.utils.Sequence):

    def __init__(self, df, X_col, y_col,
             batch_size,
             input_size=(width, height, channels),
             shuffle=True):
    
        self.df = df.copy()
        self.X_col = X_col
        self.y_col = y_col
        self.batch_size = batch_size
        self.input_size = input_size
    
        self.n = len(self.df)
        self.n_name = df[y_col['label']].nunique()
    
    def on_epoch_end(self):
        pass    
    
    def __getitem__(self, index):
        batches = self.df[index * self.batch_size:(index + 1) * 
                          self.batch_size]
        X, y = self.__get_data(batches)        
        return X, y
    
    def __len__(self):
        return self.n // self.batch_size
    
    def __get_output(self, label, num_classes):
        return tf.keras.utils.to_categorical(label, 
                                             num_classes=num_classes)    
    
    def __get_input(self, path, target_size):
        # Load Image using PIL
        img = Image.open(self.base_path + path)
        img = np.array(img)
        
        # Your Augmentation
        img = CustomAugment(img)
        return img /255


    def __get_data(self, batches):
        # Generates data containing batch_size samples

        img_path_batch = batches[self.X_col['img']]
        label_batch = batches[self.y_col['label']]

        X_batch = np.asarray([self.__get_input(x, self.input_size)
                              for x in img_path_batch])
        y_batch = np.asarray([self.__get_output(y)
                              for y in label_batch])

        return X_batch, y_batch

如您所見,您將在__get_input方法中擴充您的樣本。

要使用此 class:

traingen = CustomDataGen(df, base_path=IMGS_DIR,
                     X_col={'img':'img'},
                     y_col={'label': 'label'},
                     max_label_len=11,
                     batch_size=16,
                     input_size=IMAGE_SIZE)

注意:如果您需要在tf.data上使用生成器,您應該像這樣使用它:

train_dataset = tf.data.Dataset.from_generator(lambda: traingen,                                               
                                               output_types = (tf.float32, tf.int32),                                              
                                               output_shapes = ([None, width, height, channels], [None, num_classes]))

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM