tensorflow / tensorflow/models

Before training, skipping some FeatureExtractors, inserting some FakeQuants, also missing variables!!!

Open
#9,074 0 comments 0 reactions 3 assignees View on GitHub

@pkulzc is already working on this.

Since Sep 3, 2020.

models:research:odapi type:support
Dominant language
Python
Stars
77.7k
Forks
44.8k
PR merge metrics
No merged PRs in 30d

Description

System information

*What is the top-level directory of the model you are using: models/research/object_detection/g3doc/tf1_detection_zoo.md
Have I written custom code (as opposed to using a stock example script provided in TensorFlow): No
OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Linux Ubuntu 18.04
TensorFlow installed from (source or binary): pip
TensorFlow version (use command below): tensorflow-gpu 1.15.2
CUDA/cuDNN version: CUDA 10.2, cuDNN 10.2 (not sure about this one)
GPU model and memory: NVIDIA GeForce GTX 1080

Hey there, I'm using Tensorflow Object Detection API for training MobilenetV3-small-SSD.
My TensorFlow version is 1.15.2 as suggested on many tutorials.
Also, the model has been recently downloaded from TensorFlow's tf1_detection_zoo.
The training works, it trains, and the output looks ok.
However, since I have to get the most out of the model for my task, I started reviewing the warnings ant etc.

I notice there's a modification on the model going on before the model is loaded completely and the training begins.
I searched over the internet for days and couldn't find a decent explanation for this.
Hope you guys can give me a hand.

The Command I used:
python model_main.py --model_dir=2020-08-05_MobilenetV3-small-SSD/training/train_cache/ --pipeline_config_path=2020-08-05_MobilenetV3-small-SSD/training/pipeline.config I also tried train.py, same story.

The slightly-modified config file. (no change on structure, just some data augmentation, path correction, and also loss modifications).

# SSDLite with Mobilenet v3 large feature extractor.
# Trained on COCO14, initialized from scratch.
# TPU-compatible.
# Users should configure the fine_tune_checkpoint field in the train config as
# well as the label_map_path and input_path fields in the train_input_reader and
# eval_input_reader. Search for "PATH_TO_BE_CONFIGURED" to find the fields that
# should be configured.

model {
  ssd {
    inplace_batchnorm_update: true
    freeze_batchnorm: false
    num_classes: 6
    box_coder {
      faster_rcnn_box_coder {
        y_scale: 10.0
        x_scale: 10.0
        height_scale: 5.0
        width_scale: 5.0
      }
    }
    matcher {
      argmax_matcher {
        matched_threshold: 0.5
        unmatched_threshold: 0.5
        ignore_thresholds: false
        negatives_lower_than_unmatched: true
        force_match_for_each_row: true
        use_matmul_gather: true
      }
    }
    similarity_calculator {
      iou_similarity {
      }
    }
    encode_background_as_zeros: true
    anchor_generator {
      ssd_anchor_generator {
        num_layers: 6
        min_scale: 0.2
        max_scale: 0.95
        aspect_ratios: 1.0
        aspect_ratios: 2.0
        aspect_ratios: 0.5
        aspect_ratios: 3.0
        aspect_ratios: 0.3333
      }
    }
    image_resizer {
      fixed_shape_resizer {
        height: 320
        width: 320
      }
    }
    box_predictor {
      convolutional_box_predictor {
        min_depth: 0
        max_depth: 0
        num_layers_before_predictor: 0
        use_dropout: true
        dropout_keep_probability: 0.8
        kernel_size: 3
        use_depthwise: true
        box_code_size: 4
        apply_sigmoid_to_scores: false
        class_prediction_bias_init: -4.6
        conv_hyperparams {
          activation: RELU_6,
          regularizer {
            l2_regularizer {
              weight: 0.00004
            }
          }
          initializer {
            random_normal_initializer {
              stddev: 0.03
              mean: 0.0
            }
          }
          batch_norm {
            train: true,
            scale: true,
            center: true,
            decay: 0.97,
            epsilon: 0.001,
          }
        }
      }
    }
    feature_extractor {
      type: 'ssd_mobilenet_v3_small'
      min_depth: 16
      depth_multiplier: 1.0
      use_depthwise: true
      conv_hyperparams {
        activation: RELU_6,
        regularizer {
          l2_regularizer {
            weight: 0.00004
          }
        }
        initializer {
          truncated_normal_initializer {
            stddev: 0.03
            mean: 0.0
          }
        }
        batch_norm {
          train: true,
          scale: true,
          center: true,
          decay: 0.97,
          epsilon: 0.001,
        }
      }
      override_base_feature_extractor_hyperparams: true
    }
    loss {
      classification_loss {
        weighted_sigmoid_focal {
          alpha: 0.75,
          gamma: 2.0
        }
      }
      localization_loss {
        weighted_smooth_l1 {
          delta: 1.0
        }
      }
      classification_weight: 0.7
      localization_weight: 1.0
    }
    normalize_loss_by_num_matches: true
    normalize_loc_loss_by_codesize: true
    post_processing {
      batch_non_max_suppression {
        score_threshold: 1e-8
        iou_threshold: 0.6
        max_detections_per_class: 100
        max_total_detections: 100
        use_static_shapes: true
      }
      score_converter: SIGMOID
    }
    
  }
}

train_config: {
  batch_size: 32
  sync_replicas: true
  startup_delay_steps: 0
  replicas_to_aggregate: 1
  num_steps: 800000
  data_augmentation_options {
    random_horizontal_flip {
    }
  }
  data_augmentation_options {
    random_jitter_boxes {
      ratio: 0.02
    }
  }
  data_augmentation_options {
    random_image_scale {
      min_scale_ratio: 0.5
      max_scale_ratio: 2
    }
  }
  data_augmentation_options {
    random_adjust_brightness {
      max_delta: 0.1
    }
  }
  data_augmentation_options {
    random_adjust_contrast {
      min_delta: 0.8
      max_delta: 1.25
    }
  }
  data_augmentation_options {
    ssd_random_crop {
    }
  }
  fine_tune_checkpoint: "/home/amin/tensorflow/models/research/object_detection/2020-08-05_MobilenetV3-small-SSD/training/model.ckpt"
  fine_tune_checkpoint_type: "detection"
  optimizer {
    momentum_optimizer: {
      learning_rate: {
        cosine_decay_learning_rate {
          learning_rate_base: 0.4
          total_steps: 800000
          warmup_learning_rate: 0.13333
          warmup_steps: 2000
        }
      }
      momentum_optimizer_value: 0.9
    }
    use_moving_average: false
  }
  max_number_of_boxes: 12
  unpad_groundtruth_tensors: false
}

train_input_reader: {
  tf_record_input_reader {
    input_path: "/home/amin/tensorflow/models/research/object_detection/2020-08-05_MobilenetV3-small-SSD/training/train.record"
  }
  label_map_path: "/home/amin/tensorflow/models/research/object_detection/2020-08-05_MobilenetV3-small-SSD/training/labelmap.pbtxt"

  shuffle: true
}

eval_config: {
  num_examples: 8000
  # Note: The below line limits the evaluation process to 10 evaluations.
  # Remove the below line to evaluate indefinitely.
  max_evals: 10
}

eval_input_reader: {
  tf_record_input_reader {
    input_path: "/home/amin/tensorflow/models/research/object_detection/2020-08-05_MobilenetV3-small-SSD/training/test.record"
  }
  label_map_path: "/home/amin/tensorflow/models/research/object_detection/2020-08-05_MobilenetV3-small-SSD/training/labelmap.pbtxt"
  shuffle: true
  num_readers: 1
}

graph_rewriter {
  quantization {
    delay: 60000
    weight_bits: 8
    activation_bits: 8
  }
}

Here are the two main parts of the log that I'm seriously worried about: (This is going to be long!)


INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/Conv/hard_swish/add, because its followed by an activation.
I0808 02:27:08.155282 139811309721408 quantize.py:201] Skipping FeatureExtractor/MobilenetV3/Conv/hard_swish/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/expanded_conv_3/expand/hard_swish/add, because its followed by an activation.
I0808 02:27:08.311344 139811309721408 quantize.py:201] Skipping FeatureExtractor/MobilenetV3/expanded_conv_3/expand/hard_swish/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/expanded_conv_3/depthwise/hard_swish/add, because its followed by an activation.
I0808 02:27:08.368817 139811309721408 quantize.py:201] Skipping FeatureExtractor/MobilenetV3/expanded_conv_3/depthwise/hard_swish/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/expanded_conv_4/expand/hard_swish/add, because its followed by an activation.
I0808 02:27:08.426101 139811309721408 quantize.py:201] Skipping FeatureExtractor/MobilenetV3/expanded_conv_4/expand/hard_swish/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/expanded_conv_4/depthwise/hard_swish/add, because its followed by an activation.
I0808 02:27:08.483662 139811309721408 quantize.py:201] Skipping FeatureExtractor/MobilenetV3/expanded_conv_4/depthwise/hard_swish/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/expanded_conv_5/expand/hard_swish/add, because its followed by an activation.
I0808 02:27:08.640421 139811309721408 quantize.py:201] Skipping FeatureExtractor/MobilenetV3/expanded_conv_5/expand/hard_swish/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/expanded_conv_5/depthwise/hard_swish/add, because its followed by an activation.
I0808 02:27:08.699747 139811309721408 quantize.py:201] Skipping FeatureExtractor/MobilenetV3/expanded_conv_5/depthwise/hard_swish/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/expanded_conv_6/expand/hard_swish/add, because its followed by an activation.
I0808 02:27:08.857294 139811309721408 quantize.py:201] Skipping FeatureExtractor/MobilenetV3/expanded_conv_6/expand/hard_swish/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/expanded_conv_6/depthwise/hard_swish/add, because its followed by an activation.
I0808 02:27:08.915234 139811309721408 quantize.py:201] Skipping FeatureExtractor/MobilenetV3/expanded_conv_6/depthwise/hard_swish/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/expanded_conv_7/expand/hard_swish/add, because its followed by an activation.
I0808 02:27:08.973108 139811309721408 quantize.py:201] Skipping FeatureExtractor/MobilenetV3/expanded_conv_7/expand/hard_swish/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/expanded_conv_7/depthwise/hard_swish/add, because its followed by an activation.
I0808 02:27:09.030695 139811309721408 quantize.py:201] Skipping FeatureExtractor/MobilenetV3/expanded_conv_7/depthwise/hard_swish/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/expanded_conv_8/expand/hard_swish/add, because its followed by an activation.
I0808 02:27:09.188159 139811309721408 quantize.py:201] Skipping FeatureExtractor/MobilenetV3/expanded_conv_8/expand/hard_swish/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/expanded_conv_8/depthwise/hard_swish/add, because its followed by an activation.
I0808 02:27:09.246340 139811309721408 quantize.py:201] Skipping FeatureExtractor/MobilenetV3/expanded_conv_8/depthwise/hard_swish/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/expanded_conv_9/expand/hard_swish/add, because its followed by an activation.
I0808 02:27:09.304409 139811309721408 quantize.py:201] Skipping FeatureExtractor/MobilenetV3/expanded_conv_9/expand/hard_swish/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/expanded_conv_9/depthwise/hard_swish/add, because its followed by an activation.
I0808 02:27:09.362384 139811309721408 quantize.py:201] Skipping FeatureExtractor/MobilenetV3/expanded_conv_9/depthwise/hard_swish/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/expanded_conv_10/expand/hard_swish/add, because its followed by an activation.
I0808 02:27:09.531945 139811309721408 quantize.py:201] Skipping FeatureExtractor/MobilenetV3/expanded_conv_10/expand/hard_swish/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/expanded_conv_10/depthwise/hard_swish/add, because its followed by an activation.
I0808 02:27:09.591341 139811309721408 quantize.py:201] Skipping FeatureExtractor/MobilenetV3/expanded_conv_10/depthwise/hard_swish/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/Conv_1/hard_swish/add, because its followed by an activation.
I0808 02:27:09.769979 139811309721408 quantize.py:201] Skipping FeatureExtractor/MobilenetV3/Conv_1/hard_swish/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/add, because its followed by an activation.
I0808 02:27:09.989243 139811309721408 quantize.py:166] Skipping FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/expanded_conv_3/squeeze_excite/Conv_1/add, because its followed by an activation.
I0808 02:27:10.522199 139811309721408 quantize.py:166] Skipping FeatureExtractor/MobilenetV3/expanded_conv_3/squeeze_excite/Conv_1/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/expanded_conv_4/squeeze_excite/Conv_1/add, because its followed by an activation.
I0808 02:27:10.741324 139811309721408 quantize.py:166] Skipping FeatureExtractor/MobilenetV3/expanded_conv_4/squeeze_excite/Conv_1/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/expanded_conv_5/squeeze_excite/Conv_1/add, because its followed by an activation.
I0808 02:27:10.902289 139811309721408 quantize.py:166] Skipping FeatureExtractor/MobilenetV3/expanded_conv_5/squeeze_excite/Conv_1/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/expanded_conv_6/squeeze_excite/Conv_1/add, because its followed by an activation.
I0808 02:27:11.063435 139811309721408 quantize.py:166] Skipping FeatureExtractor/MobilenetV3/expanded_conv_6/squeeze_excite/Conv_1/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/expanded_conv_7/squeeze_excite/Conv_1/add, because its followed by an activation.
I0808 02:27:11.283698 139811309721408 quantize.py:166] Skipping FeatureExtractor/MobilenetV3/expanded_conv_7/squeeze_excite/Conv_1/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/expanded_conv_8/squeeze_excite/Conv_1/add, because its followed by an activation.
I0808 02:27:11.445605 139811309721408 quantize.py:166] Skipping FeatureExtractor/MobilenetV3/expanded_conv_8/squeeze_excite/Conv_1/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/expanded_conv_9/squeeze_excite/Conv_1/add, because its followed by an activation.
I0808 02:27:11.667905 139811309721408 quantize.py:166] Skipping FeatureExtractor/MobilenetV3/expanded_conv_9/squeeze_excite/Conv_1/add, because its followed by an activation.
INFO:tensorflow:Skipping FeatureExtractor/MobilenetV3/expanded_conv_10/squeeze_excite/Conv_1/add, because its followed by an activation.
I0808 02:27:11.830743 139811309721408 quantize.py:166] Skipping FeatureExtractor/MobilenetV3/expanded_conv_10/squeeze_excite/Conv_1/add, because its followed by an activation.
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/Conv/hard_swish/add
I0808 02:27:14.394576 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/Conv/hard_swish/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/Conv/hard_swish/mul
I0808 02:27:14.395066 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/Conv/hard_swish/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/Conv/hard_swish/mul_1
I0808 02:27:14.442390 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/Conv/hard_swish/mul_1
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/add
I0808 02:27:14.488854 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/mul
I0808 02:27:14.489007 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/mul
I0808 02:27:14.534632 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/mul
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_3/expand/hard_swish/add
I0808 02:27:14.581454 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_3/expand/hard_swish/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_3/expand/hard_swish/mul
I0808 02:27:14.581624 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_3/expand/hard_swish/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_3/expand/hard_swish/mul_1
I0808 02:27:14.629275 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_3/expand/hard_swish/mul_1
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_3/depthwise/hard_swish/add
I0808 02:27:14.675815 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_3/depthwise/hard_swish/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_3/depthwise/hard_swish/mul
I0808 02:27:14.676040 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_3/depthwise/hard_swish/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_3/depthwise/hard_swish/mul_1
I0808 02:27:14.722226 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_3/depthwise/hard_swish/mul_1
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_3/squeeze_excite/Conv_1/add
I0808 02:27:14.768392 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_3/squeeze_excite/Conv_1/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_3/squeeze_excite/Conv_1/mul
I0808 02:27:14.768562 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_3/squeeze_excite/Conv_1/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_3/squeeze_excite/mul
I0808 02:27:14.814337 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_3/squeeze_excite/mul
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_4/expand/hard_swish/add
I0808 02:27:14.861367 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_4/expand/hard_swish/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_4/expand/hard_swish/mul
I0808 02:27:14.861537 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_4/expand/hard_swish/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_4/expand/hard_swish/mul_1
I0808 02:27:14.907705 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_4/expand/hard_swish/mul_1
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_4/depthwise/hard_swish/add
I0808 02:27:14.954111 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_4/depthwise/hard_swish/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_4/depthwise/hard_swish/mul
I0808 02:27:14.954287 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_4/depthwise/hard_swish/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_4/depthwise/hard_swish/mul_1
I0808 02:27:15.001044 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_4/depthwise/hard_swish/mul_1
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_4/squeeze_excite/Conv_1/add
I0808 02:27:15.047806 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_4/squeeze_excite/Conv_1/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_4/squeeze_excite/Conv_1/mul
I0808 02:27:15.048027 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_4/squeeze_excite/Conv_1/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_4/squeeze_excite/mul
I0808 02:27:15.094590 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_4/squeeze_excite/mul
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_5/expand/hard_swish/add
I0808 02:27:15.141356 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_5/expand/hard_swish/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_5/expand/hard_swish/mul
I0808 02:27:15.141513 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_5/expand/hard_swish/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_5/expand/hard_swish/mul_1
I0808 02:27:15.189704 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_5/expand/hard_swish/mul_1
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_5/depthwise/hard_swish/add
I0808 02:27:15.236077 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_5/depthwise/hard_swish/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_5/depthwise/hard_swish/mul
I0808 02:27:15.236231 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_5/depthwise/hard_swish/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_5/depthwise/hard_swish/mul_1
I0808 02:27:15.282872 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_5/depthwise/hard_swish/mul_1
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_5/squeeze_excite/Conv_1/add
I0808 02:27:15.329769 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_5/squeeze_excite/Conv_1/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_5/squeeze_excite/Conv_1/mul
I0808 02:27:15.329921 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_5/squeeze_excite/Conv_1/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_5/squeeze_excite/mul
I0808 02:27:15.376314 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_5/squeeze_excite/mul
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_6/expand/hard_swish/add
I0808 02:27:15.422902 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_6/expand/hard_swish/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_6/expand/hard_swish/mul
I0808 02:27:15.423070 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_6/expand/hard_swish/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_6/expand/hard_swish/mul_1
I0808 02:27:15.469361 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_6/expand/hard_swish/mul_1
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_6/depthwise/hard_swish/add
I0808 02:27:15.516226 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_6/depthwise/hard_swish/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_6/depthwise/hard_swish/mul
I0808 02:27:15.516376 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_6/depthwise/hard_swish/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_6/depthwise/hard_swish/mul_1
I0808 02:27:15.563430 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_6/depthwise/hard_swish/mul_1
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_6/squeeze_excite/Conv_1/add
I0808 02:27:15.610552 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_6/squeeze_excite/Conv_1/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_6/squeeze_excite/Conv_1/mul
I0808 02:27:15.610724 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_6/squeeze_excite/Conv_1/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_6/squeeze_excite/mul
I0808 02:27:15.658073 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_6/squeeze_excite/mul
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_7/expand/hard_swish/add
I0808 02:27:15.705121 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_7/expand/hard_swish/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_7/expand/hard_swish/mul
I0808 02:27:15.705272 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_7/expand/hard_swish/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_7/expand/hard_swish/mul_1
I0808 02:27:15.752293 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_7/expand/hard_swish/mul_1
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_7/depthwise/hard_swish/add
I0808 02:27:15.799257 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_7/depthwise/hard_swish/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_7/depthwise/hard_swish/mul
I0808 02:27:15.799406 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_7/depthwise/hard_swish/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_7/depthwise/hard_swish/mul_1
I0808 02:27:15.846132 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_7/depthwise/hard_swish/mul_1
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_7/squeeze_excite/Conv_1/add
I0808 02:27:15.893301 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_7/squeeze_excite/Conv_1/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_7/squeeze_excite/Conv_1/mul
I0808 02:27:15.893451 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_7/squeeze_excite/Conv_1/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_7/squeeze_excite/mul
I0808 02:27:15.940633 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_7/squeeze_excite/mul
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_8/expand/hard_swish/add
I0808 02:27:15.988340 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_8/expand/hard_swish/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_8/expand/hard_swish/mul
I0808 02:27:15.988488 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_8/expand/hard_swish/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_8/expand/hard_swish/mul_1
I0808 02:27:16.035798 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_8/expand/hard_swish/mul_1
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_8/depthwise/hard_swish/add
I0808 02:27:16.083267 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_8/depthwise/hard_swish/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_8/depthwise/hard_swish/mul
I0808 02:27:16.083416 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_8/depthwise/hard_swish/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_8/depthwise/hard_swish/mul_1
I0808 02:27:16.131348 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_8/depthwise/hard_swish/mul_1
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_8/squeeze_excite/Conv_1/add
I0808 02:27:16.179001 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_8/squeeze_excite/Conv_1/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_8/squeeze_excite/Conv_1/mul
I0808 02:27:16.179173 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_8/squeeze_excite/Conv_1/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_8/squeeze_excite/mul
I0808 02:27:16.226521 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_8/squeeze_excite/mul
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_9/expand/hard_swish/add
I0808 02:27:16.274022 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_9/expand/hard_swish/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_9/expand/hard_swish/mul
I0808 02:27:16.274195 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_9/expand/hard_swish/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_9/expand/hard_swish/mul_1
I0808 02:27:16.321545 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_9/expand/hard_swish/mul_1
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_9/depthwise/hard_swish/add
I0808 02:27:16.368725 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_9/depthwise/hard_swish/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_9/depthwise/hard_swish/mul
I0808 02:27:16.368875 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_9/depthwise/hard_swish/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_9/depthwise/hard_swish/mul_1
I0808 02:27:16.416003 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_9/depthwise/hard_swish/mul_1
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_9/squeeze_excite/Conv_1/add
I0808 02:27:16.463221 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_9/squeeze_excite/Conv_1/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_9/squeeze_excite/Conv_1/mul
I0808 02:27:16.463379 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_9/squeeze_excite/Conv_1/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_9/squeeze_excite/mul
I0808 02:27:16.510498 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_9/squeeze_excite/mul
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_10/expand/hard_swish/add
I0808 02:27:16.558084 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_10/expand/hard_swish/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_10/expand/hard_swish/mul
I0808 02:27:16.558233 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_10/expand/hard_swish/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_10/expand/hard_swish/mul_1
I0808 02:27:16.605659 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_10/expand/hard_swish/mul_1
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_10/depthwise/hard_swish/add
I0808 02:27:16.653202 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_10/depthwise/hard_swish/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_10/depthwise/hard_swish/mul
I0808 02:27:16.653356 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_10/depthwise/hard_swish/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_10/depthwise/hard_swish/mul_1
I0808 02:27:16.701845 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_10/depthwise/hard_swish/mul_1
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_10/squeeze_excite/Conv_1/add
I0808 02:27:16.749600 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/expanded_conv_10/squeeze_excite/Conv_1/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_10/squeeze_excite/Conv_1/mul
I0808 02:27:16.749753 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_10/squeeze_excite/Conv_1/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_10/squeeze_excite/mul
I0808 02:27:16.797258 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/expanded_conv_10/squeeze_excite/mul
INFO:tensorflow:Skipping quant after FeatureExtractor/MobilenetV3/Conv_1/hard_swish/add
I0808 02:27:16.845223 139811309721408 quantize.py:299] Skipping quant after FeatureExtractor/MobilenetV3/Conv_1/hard_swish/add
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/Conv_1/hard_swish/mul
I0808 02:27:16.845414 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/Conv_1/hard_swish/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/Conv_1/hard_swish/mul_1
I0808 02:27:16.892717 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after FeatureExtractor/MobilenetV3/Conv_1/hard_swish/mul_1
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after BoxPredictor_0/Dropout/dropout_1/mul
I0808 02:27:16.945306 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after BoxPredictor_0/Dropout/dropout_1/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after BoxPredictor_0/Dropout/dropout_1/mul_1
I0808 02:27:16.992816 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after BoxPredictor_0/Dropout/dropout_1/mul_1
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after BoxPredictor_1/Dropout/dropout_1/mul
I0808 02:27:17.041281 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after BoxPredictor_1/Dropout/dropout_1/mul
INFO:tensorflow:Inserting fake quant op activation_Mul_quant after BoxPredictor_1/Dropout/dropout_1/mul_1
I0808 02:27:17.088376 139811309721408 quantize.py:262] Inserting fake quant op activation_Mul_quant after BoxPredictor_1/Dropout/dropout_1/mul_1

And here's the second part:


W0808 02:27:31.077585 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv/act_quant/FeatureExtractor/MobilenetV3/Conv/act_quant/max/biased] is not available in checkpoint
W0808 02:27:31.077691 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv/act_quant/FeatureExtractor/MobilenetV3/Conv/act_quant/max/local_step] is not available in checkpoint
W0808 02:27:31.077792 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv/act_quant/FeatureExtractor/MobilenetV3/Conv/act_quant/min/biased] is not available in checkpoint
W0808 02:27:31.077854 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv/act_quant/FeatureExtractor/MobilenetV3/Conv/act_quant/min/local_step] is not available in checkpoint
W0808 02:27:31.077928 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv/act_quant/max] is not available in checkpoint
W0808 02:27:31.077997 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv/act_quant/min] is not available in checkpoint
W0808 02:27:31.078055 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv/hard_swish/mul/activation_Mul_quant/FeatureExtractor/MobilenetV3/Conv/hard_swish/mul/activation_Mul_quant/max/biased] is not available in checkpoint
W0808 02:27:31.078113 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv/hard_swish/mul/activation_Mul_quant/FeatureExtractor/MobilenetV3/Conv/hard_swish/mul/activation_Mul_quant/max/local_step] is not available in checkpoint
W0808 02:27:31.078171 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv/hard_swish/mul/activation_Mul_quant/FeatureExtractor/MobilenetV3/Conv/hard_swish/mul/activation_Mul_quant/min/biased] is not available in checkpoint
W0808 02:27:31.078257 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv/hard_swish/mul/activation_Mul_quant/FeatureExtractor/MobilenetV3/Conv/hard_swish/mul/activation_Mul_quant/min/local_step] is not available in checkpoint
W0808 02:27:31.078313 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv/hard_swish/mul/activation_Mul_quant/max] is not available in checkpoint
W0808 02:27:31.078373 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv/hard_swish/mul/activation_Mul_quant/min] is not available in checkpoint
W0808 02:27:31.078429 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv/hard_swish/mul_1/activation_Mul_quant/FeatureExtractor/MobilenetV3/Conv/hard_swish/mul_1/activation_Mul_quant/max/biased] is not available in checkpoint
W0808 02:27:31.078485 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv/hard_swish/mul_1/activation_Mul_quant/FeatureExtractor/MobilenetV3/Conv/hard_swish/mul_1/activation_Mul_quant/max/local_step] is not available in checkpoint
W0808 02:27:31.078541 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv/hard_swish/mul_1/activation_Mul_quant/FeatureExtractor/MobilenetV3/Conv/hard_swish/mul_1/activation_Mul_quant/min/biased] is not available in checkpoint
W0808 02:27:31.078597 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv/hard_swish/mul_1/activation_Mul_quant/FeatureExtractor/MobilenetV3/Conv/hard_swish/mul_1/activation_Mul_quant/min/local_step] is not available in checkpoint
W0808 02:27:31.078652 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv/hard_swish/mul_1/activation_Mul_quant/max] is not available in checkpoint
W0808 02:27:31.078708 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv/hard_swish/mul_1/activation_Mul_quant/min] is not available in checkpoint
W0808 02:27:31.078774 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv/weights_quant/max] is not available in checkpoint
W0808 02:27:31.078831 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv/weights_quant/min] is not available in checkpoint
W0808 02:27:31.078906 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv_1/act_quant/FeatureExtractor/MobilenetV3/Conv_1/act_quant/max/biased] is not available in checkpoint
W0808 02:27:31.078963 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv_1/act_quant/FeatureExtractor/MobilenetV3/Conv_1/act_quant/max/local_step] is not available in checkpoint
W0808 02:27:31.079036 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv_1/act_quant/FeatureExtractor/MobilenetV3/Conv_1/act_quant/min/biased] is not available in checkpoint
W0808 02:27:31.079094 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv_1/act_quant/FeatureExtractor/MobilenetV3/Conv_1/act_quant/min/local_step] is not available in checkpoint
W0808 02:27:31.079157 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv_1/act_quant/max] is not available in checkpoint
W0808 02:27:31.079216 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv_1/act_quant/min] is not available in checkpoint
W0808 02:27:31.079287 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv_1/hard_swish/mul/activation_Mul_quant/FeatureExtractor/MobilenetV3/Conv_1/hard_swish/mul/activation_Mul_quant/max/biased] is not available in checkpoint
W0808 02:27:31.079374 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv_1/hard_swish/mul/activation_Mul_quant/FeatureExtractor/MobilenetV3/Conv_1/hard_swish/mul/activation_Mul_quant/max/local_step] is not available in checkpoint
W0808 02:27:31.079430 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv_1/hard_swish/mul/activation_Mul_quant/FeatureExtractor/MobilenetV3/Conv_1/hard_swish/mul/activation_Mul_quant/min/biased] is not available in checkpoint
W0808 02:27:31.079485 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv_1/hard_swish/mul/activation_Mul_quant/FeatureExtractor/MobilenetV3/Conv_1/hard_swish/mul/activation_Mul_quant/min/local_step] is not available in checkpoint
W0808 02:27:31.079540 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv_1/hard_swish/mul/activation_Mul_quant/max] is not available in checkpoint
W0808 02:27:31.079629 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv_1/hard_swish/mul/activation_Mul_quant/min] is not available in checkpoint
W0808 02:27:31.079689 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv_1/hard_swish/mul_1/activation_Mul_quant/FeatureExtractor/MobilenetV3/Conv_1/hard_swish/mul_1/activation_Mul_quant/max/biased] is not available in checkpoint
W0808 02:27:31.079749 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv_1/hard_swish/mul_1/activation_Mul_quant/FeatureExtractor/MobilenetV3/Conv_1/hard_swish/mul_1/activation_Mul_quant/max/local_step] is not available in checkpoint
W0808 02:27:31.079808 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv_1/hard_swish/mul_1/activation_Mul_quant/FeatureExtractor/MobilenetV3/Conv_1/hard_swish/mul_1/activation_Mul_quant/min/biased] is not available in checkpoint
W0808 02:27:31.079881 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv_1/hard_swish/mul_1/activation_Mul_quant/FeatureExtractor/MobilenetV3/Conv_1/hard_swish/mul_1/activation_Mul_quant/min/local_step] is not available in checkpoint
W0808 02:27:31.079938 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv_1/hard_swish/mul_1/activation_Mul_quant/max] is not available in checkpoint
W0808 02:27:31.079995 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv_1/hard_swish/mul_1/activation_Mul_quant/min] is not available in checkpoint
W0808 02:27:31.080062 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv_1/weights_quant/max] is not available in checkpoint
W0808 02:27:31.080121 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/Conv_1/weights_quant/min] is not available in checkpoint
W0808 02:27:31.080196 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/depthwise/act_quant/FeatureExtractor/MobilenetV3/expanded_conv/depthwise/act_quant/max/biased] is not available in checkpoint
W0808 02:27:31.080256 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/depthwise/act_quant/FeatureExtractor/MobilenetV3/expanded_conv/depthwise/act_quant/max/local_step] is not available in checkpoint
W0808 02:27:31.080315 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/depthwise/act_quant/FeatureExtractor/MobilenetV3/expanded_conv/depthwise/act_quant/min/biased] is not available in checkpoint
W0808 02:27:31.080379 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/depthwise/act_quant/FeatureExtractor/MobilenetV3/expanded_conv/depthwise/act_quant/min/local_step] is not available in checkpoint
W0808 02:27:31.080438 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/depthwise/act_quant/max] is not available in checkpoint
W0808 02:27:31.080495 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/depthwise/act_quant/min] is not available in checkpoint
W0808 02:27:31.080562 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/depthwise/weights_quant/max] is not available in checkpoint
W0808 02:27:31.080620 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/depthwise/weights_quant/min] is not available in checkpoint
W0808 02:27:31.080694 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/project/act_quant/FeatureExtractor/MobilenetV3/expanded_conv/project/act_quant/max/biased] is not available in checkpoint
W0808 02:27:31.080759 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/project/act_quant/FeatureExtractor/MobilenetV3/expanded_conv/project/act_quant/max/local_step] is not available in checkpoint
W0808 02:27:31.080817 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/project/act_quant/FeatureExtractor/MobilenetV3/expanded_conv/project/act_quant/min/biased] is not available in checkpoint
W0808 02:27:31.080875 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/project/act_quant/FeatureExtractor/MobilenetV3/expanded_conv/project/act_quant/min/local_step] is not available in checkpoint
W0808 02:27:31.080933 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/project/act_quant/max] is not available in checkpoint
W0808 02:27:31.080990 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/project/act_quant/min] is not available in checkpoint
W0808 02:27:31.081070 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/project/weights_quant/max] is not available in checkpoint
W0808 02:27:31.081127 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/project/weights_quant/min] is not available in checkpoint
W0808 02:27:31.081197 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv/act_quant/FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv/act_quant/max/biased] is not available in checkpoint
W0808 02:27:31.081255 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv/act_quant/FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv/act_quant/max/local_step] is not available in checkpoint
W0808 02:27:31.081313 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv/act_quant/FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv/act_quant/min/biased] is not available in checkpoint
W0808 02:27:31.081371 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv/act_quant/FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv/act_quant/min/local_step] is not available in checkpoint
W0808 02:27:31.081428 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv/act_quant/max] is not available in checkpoint
W0808 02:27:31.081484 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv/act_quant/min] is not available in checkpoint
W0808 02:27:31.081561 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv/weights_quant/max] is not available in checkpoint
W0808 02:27:31.081620 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv/weights_quant/min] is not available in checkpoint
W0808 02:27:31.081685 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/conv_quant/FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/conv_quant/max/biased] is not available in checkpoint
W0808 02:27:31.081743 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/conv_quant/FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/conv_quant/max/local_step] is not available in checkpoint
W0808 02:27:31.081801 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/conv_quant/FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/conv_quant/min/biased] is not available in checkpoint
W0808 02:27:31.081859 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/conv_quant/FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/conv_quant/min/local_step] is not available in checkpoint
W0808 02:27:31.081916 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/conv_quant/max] is not available in checkpoint
W0808 02:27:31.081973 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/conv_quant/min] is not available in checkpoint
W0808 02:27:31.082030 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/mul/activation_Mul_quant/FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/mul/activation_Mul_quant/max/biased] is not available in checkpoint
W0808 02:27:31.082087 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/mul/activation_Mul_quant/FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/mul/activation_Mul_quant/max/local_step] is not available in checkpoint
W0808 02:27:31.082144 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/mul/activation_Mul_quant/FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/mul/activation_Mul_quant/min/biased] is not available in checkpoint
W0808 02:27:31.082201 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/mul/activation_Mul_quant/FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/mul/activation_Mul_quant/min/local_step] is not available in checkpoint
W0808 02:27:31.082258 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/mul/activation_Mul_quant/max] is not available in checkpoint
W0808 02:27:31.082316 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/mul/activation_Mul_quant/min] is not available in checkpoint
W0808 02:27:31.082382 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/weights_quant/max] is not available in checkpoint
W0808 02:27:31.082451 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/Conv_1/weights_quant/min] is not available in checkpoint
W0808 02:27:31.082507 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/act_quant/FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/act_quant/max/biased] is not available in checkpoint
W0808 02:27:31.082562 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/act_quant/FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/act_quant/max/local_step] is not available in checkpoint
W0808 02:27:31.082622 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/act_quant/FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/act_quant/min/biased] is not available in checkpoint
W0808 02:27:31.082690 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/act_quant/FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/act_quant/min/local_step] is not available in checkpoint
W0808 02:27:31.082748 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/act_quant/max] is not available in checkpoint
W0808 02:27:31.082805 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/act_quant/min] is not available in checkpoint
W0808 02:27:31.082862 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/mul/activation_Mul_quant/FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/mul/activation_Mul_quant/max/biased] is not available in checkpoint
W0808 02:27:31.082920 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/mul/activation_Mul_quant/FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/mul/activation_Mul_quant/max/local_step] is not available in checkpoint
W0808 02:27:31.082977 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/mul/activation_Mul_quant/FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/mul/activation_Mul_quant/min/biased] is not available in checkpoint
W0808 02:27:31.083035 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/mul/activation_Mul_quant/FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/mul/activation_Mul_quant/min/local_step] is not available in checkpoint
W0808 02:27:31.083091 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/mul/activation_Mul_quant/max] is not available in checkpoint
W0808 02:27:31.083148 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv/squeeze_excite/mul/activation_Mul_quant/min] is not available in checkpoint
W0808 02:27:31.083223 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv_1/depthwise/act_quant/FeatureExtractor/MobilenetV3/expanded_conv_1/depthwise/act_quant/max/biased] is not available in checkpoint
W0808 02:27:31.083282 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv_1/depthwise/act_quant/FeatureExtractor/MobilenetV3/expanded_conv_1/depthwise/act_quant/max/local_step] is not available in checkpoint
W0808 02:27:31.083339 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv_1/depthwise/act_quant/FeatureExtractor/MobilenetV3/expanded_conv_1/depthwise/act_quant/min/biased] is not available in checkpoint
W0808 02:27:31.083396 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv_1/depthwise/act_quant/FeatureExtractor/MobilenetV3/expanded_conv_1/depthwise/act_quant/min/local_step] is not available in checkpoint
W0808 02:27:31.083453 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv_1/depthwise/act_quant/max] is not available in checkpoint
W0808 02:27:31.083509 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv_1/depthwise/act_quant/min] is not available in checkpoint
W0808 02:27:31.083613 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv_1/depthwise/weights_quant/max] is not available in checkpoint
W0808 02:27:31.083680 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv_1/depthwise/weights_quant/min] is not available in checkpoint
W0808 02:27:31.083757 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv_1/expand/act_quant/FeatureExtractor/MobilenetV3/expanded_conv_1/expand/act_quant/max/biased] is not available in checkpoint
W0808 02:27:31.083818 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv_1/expand/act_quant/FeatureExtractor/MobilenetV3/expanded_conv_1/expand/act_quant/max/local_step] is not available in checkpoint
W0808 02:27:31.083892 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv_1/expand/act_quant/FeatureExtractor/MobilenetV3/expanded_conv_1/expand/act_quant/min/biased] is not available in checkpoint
W0808 02:27:31.083963 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv_1/expand/act_quant/FeatureExtractor/MobilenetV3/expanded_conv_1/expand/act_quant/min/local_step] is not available in checkpoint
W0808 02:27:31.084018 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv_1/expand/act_quant/max] is not available in checkpoint
W0808 02:27:31.084090 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv_1/expand/act_quant/min] is not available in checkpoint
W0808 02:27:31.084157 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv_1/expand/weights_quant/max] is not available in checkpoint
W0808 02:27:31.084215 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv_1/expand/weights_quant/min] is not available in checkpoint
W0808 02:27:31.084289 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv_1/project/act_quant/FeatureExtractor/MobilenetV3/expanded_conv_1/project/act_quant/max/biased] is not available in checkpoint
W0808 02:27:31.084348 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv_1/project/act_quant/FeatureExtractor/MobilenetV3/expanded_conv_1/project/act_quant/max/local_step] is not available in checkpoint
W0808 02:27:31.084434 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv_1/project/act_quant/FeatureExtractor/MobilenetV3/expanded_conv_1/project/act_quant/min/biased] is not available in checkpoint
W0808 02:27:31.084491 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv_1/project/act_quant/FeatureExtractor/MobilenetV3/expanded_conv_1/project/act_quant/min/local_step] is not available in checkpoint
W0808 02:27:31.084549 139811309721408 variables_helper.py:157] Variable [FeatureExtractor/MobilenetV3/expanded_conv_1/project/act_quant/max] is not available in checkpoint
W0808 02:27:31.084605 139811309721408 variables_helper.py:157] Variabl

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.