TensorFlow Object Detectionパイプライン構成のdata_augmentation_optionsに可能な値は何ですか?

privard:

ここに記載されているサンプル構成を使用して、TensorFlowでオブジェクト検出モデルを正常にトレーニングしました:https : //github.com/tensorflow/models/tree/master/object_detection/samples/configs

より良い結果を得るために、構成を微調整したいと思います。私がそこに見る有望なオプションの1つは、「train_config」の下にある「data_augmentation_options」です。現在、次のようになっています。

train_config: {
  batch_size: 1
  ...
  data_augmentation_options {
    random_horizontal_flip {
    }
  }
}

ランダムスケーリング、トリミング、または明るさの微調整を行う他のオプションはありますか?

Najih Km:

オプションのリストはpreprocessor.protoにあります

NormalizeImage normalize_image = 1;
RandomHorizontalFlip random_horizontal_flip = 2;
RandomPixelValueScale random_pixel_value_scale = 3;
RandomImageScale random_image_scale = 4;
RandomRGBtoGray random_rgb_to_gray = 5;
RandomAdjustBrightness random_adjust_brightness = 6;
RandomAdjustContrast random_adjust_contrast = 7;
RandomAdjustHue random_adjust_hue = 8;
RandomAdjustSaturation random_adjust_saturation = 9;
RandomDistortColor random_distort_color = 10;
RandomJitterBoxes random_jitter_boxes = 11;
RandomCropImage random_crop_image = 12;
RandomPadImage random_pad_image = 13;
RandomCropPadImage random_crop_pad_image = 14;
RandomCropToAspectRatio random_crop_to_aspect_ratio = 15;
RandomBlackPatches random_black_patches = 16;
RandomResizeMethod random_resize_method = 17;
ScaleBoxesToPixelCoordinates scale_boxes_to_pixel_coordinates = 18;
ResizeImage resize_image = 19;
SubtractChannelMean subtract_channel_mean = 20;
SSDRandomCrop ssd_random_crop = 21;
SSDRandomCropPad ssd_random_crop_pad = 22;
SSDRandomCropFixedAspectRatio ssd_random_crop_fixed_aspect_ratio = 23;

各オプションの詳細はpreprocessor.pyで確認できます引数は、キーと値のペアとして提供できます。

  data_augmentation_options {
    ssd_random_crop {
    }
  }
  data_augmentation_options {
    random_pixel_value_scale {
      minval: 0.6
    }
  }

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

TensorFlow Object Detectionパイプライン構成のdata_augmentation_optionsに可能な値は何ですか?

分類Dev

TensorFlow Object Detectionパイプライン構成のdata_augmentation_optionsに可能な値は何ですか?

分類Dev

Overfitting in Tensorflow Object detection API

分類Dev

Tensorflow Object Detection API Data Augmentation Bounding Boxes

分類Dev

Tensorflow Object Detection API model for use in TensorFlow.js

分類Dev

Tensorflow object detection: how to detect on batch

分類Dev

Tensorflow Object Detection APIで予測値のパーセンテージを取得する方法は?

分類Dev

TensorFlow Object Detection API:評価mAPは奇妙に動作しますか?

分類Dev

Convert Tensorflow models from Object Detection API to uff

分類Dev

Store Tensorflow object detection API image output with boxes in CSV format

分類Dev

Which Tensorflow object detection model suits satellite images best?

分類Dev

How to only detect humans in object detection API Tensorflow

分類Dev

Repeating images in training dataset for tensorflow object detection models

分類Dev

Tensorflow Object DetectionAPIでのデータ拡張

分類Dev

Tensorflow Object DetectionAPIのPASCALVocを作成する

分類Dev

最新の5つだけでなく、最高のモデルのチェックポイントをTensorflow Object Detection APIに保存するにはどうすればよいですか?

分類Dev

'TypeError:整数スカラー配列のみをスカラーインデックスに変換できます' TensorFlow Object Detection API

分類Dev

Tensorflow Object Detection APIで畳み込みレイヤーの重みを初期化する方法は?

分類Dev

Tensorflow Object Detection-.pbファイルをtfliteに変換します

分類Dev

Tensorflow Object Detection APIのトレーニング中に学習率を変更できますか?

分類Dev

Tensorflow Object Detection API-実際にtest.recordは何に使用されていますか?

分類Dev

object_detection tensorflow api は特定の画像寸法を使用しますか?

分類Dev

Tensorflow Object Detectionは、同じモデルチェックポイントでの2つの評価で異なる結果を取得しました

分類Dev

Tensorflow Object DetectionAPI内でのGPUオプションの定義

分類Dev

TensorFlow Object Detection API-オブジェクト検出APIでの損失はどういう意味ですか?

分類Dev

Tensorflow Object Detection APIにtrain.pyファイルがありません

分類Dev

Tensorflow Object-Detection API-モデルの微調整はどのように機能しますか?

分類Dev

Tensorflow Object Detection API `indices [3] = 3 is not in [0、3)`エラー

分類Dev

TensorFlow Object Detection APIの画像で見つかったオブジェクトをコンソールに出力

Related 関連記事

  1. 1

    TensorFlow Object Detectionパイプライン構成のdata_augmentation_optionsに可能な値は何ですか?

  2. 2

    TensorFlow Object Detectionパイプライン構成のdata_augmentation_optionsに可能な値は何ですか?

  3. 3

    Overfitting in Tensorflow Object detection API

  4. 4

    Tensorflow Object Detection API Data Augmentation Bounding Boxes

  5. 5

    Tensorflow Object Detection API model for use in TensorFlow.js

  6. 6

    Tensorflow object detection: how to detect on batch

  7. 7

    Tensorflow Object Detection APIで予測値のパーセンテージを取得する方法は?

  8. 8

    TensorFlow Object Detection API:評価mAPは奇妙に動作しますか?

  9. 9

    Convert Tensorflow models from Object Detection API to uff

  10. 10

    Store Tensorflow object detection API image output with boxes in CSV format

  11. 11

    Which Tensorflow object detection model suits satellite images best?

  12. 12

    How to only detect humans in object detection API Tensorflow

  13. 13

    Repeating images in training dataset for tensorflow object detection models

  14. 14

    Tensorflow Object DetectionAPIでのデータ拡張

  15. 15

    Tensorflow Object DetectionAPIのPASCALVocを作成する

  16. 16

    最新の5つだけでなく、最高のモデルのチェックポイントをTensorflow Object Detection APIに保存するにはどうすればよいですか?

  17. 17

    'TypeError:整数スカラー配列のみをスカラーインデックスに変換できます' TensorFlow Object Detection API

  18. 18

    Tensorflow Object Detection APIで畳み込みレイヤーの重みを初期化する方法は?

  19. 19

    Tensorflow Object Detection-.pbファイルをtfliteに変換します

  20. 20

    Tensorflow Object Detection APIのトレーニング中に学習率を変更できますか?

  21. 21

    Tensorflow Object Detection API-実際にtest.recordは何に使用されていますか?

  22. 22

    object_detection tensorflow api は特定の画像寸法を使用しますか?

  23. 23

    Tensorflow Object Detectionは、同じモデルチェックポイントでの2つの評価で異なる結果を取得しました

  24. 24

    Tensorflow Object DetectionAPI内でのGPUオプションの定義

  25. 25

    TensorFlow Object Detection API-オブジェクト検出APIでの損失はどういう意味ですか?

  26. 26

    Tensorflow Object Detection APIにtrain.pyファイルがありません

  27. 27

    Tensorflow Object-Detection API-モデルの微調整はどのように機能しますか?

  28. 28

    Tensorflow Object Detection API `indices [3] = 3 is not in [0、3)`エラー

  29. 29

    TensorFlow Object Detection APIの画像で見つかったオブジェクトをコンソールに出力

ホットタグ

アーカイブ