How to modify freezed layers in training using Tensorflow's Object Detection API?

前端 未结 1 921
忘了有多久
忘了有多久 2020-12-29 17:27

I am using Tensorflow\'s Object Detection API in training.

In which file, the freezed layers are defined to fine-tune the model in training. I need to experiment cha

1条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2020-12-29 17:34

    That certainly you can do.

    By reading the proto file for training, there is a field called freeze_variables, this is supposed to be a list containing all variables that you want to freeze, e.g. excluding them during the training.

    Supposed you want to freeze the weights from the first bottleneck in the first unit of the first block, you can do it by adding

    freeze_variables: ["resnet_v1_50/block1/unit_1/bottleneck_v1/conv1/weights"]
    

    so your config flie looks like this:

    train_config: {
      batch_size: 1
      freeze_variables: ["resnet_v1_50/block1/unit_1/bottleneck_v1/conv1/weights"]
      ...
    

    You can verify that the weights are in fact freezed by checking the tensorflow graph.

    As shown, the weights do not have train operation anymore.

    By choosing specific patterns for freeze_variables, you can freeze variables very flexibly (you can get layer names from the tensorflow graph).

    Btw, here is the actual filtering operation.

    0 讨论(0)
提交回复
热议问题