我是靠谱客的博主 自然黑夜,最近开发中收集的这篇文章主要介绍DeepLab V3+:ResourceExhaustedError (see above for traceback): OOM when allocating tensor of shape,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在跑DeepLab V3+时遇到ResourceExhaustedError (see above for traceback): OOM when allocating tensor of shape错误

GPU:1060/6G

github:https://github.com/tensorflow/models/tree/master/research/deeplab

是显存不够了,把local_test.sh文件中

python "${WORK_DIR}"/train.py

--logtostderr

--train_split="trainval"

--model_variant="xception_65"

--atrous_rates=6

--atrous_rates=12

--atrous_rates=18

--output_stride=16

--decoder_output_stride=4

--train_crop_size=513

--train_crop_size=513

--train_batch_size=4

--training_number_of_steps="${NUM_ITERATIONS}"

--fine_tune_batch_norm=true   <==============改这行

--tf_initial_checkpoint="${INIT_FOLDER}/deeplabv3_pascal_train_aug/model.ckpt"

--train_logdir="${TRAIN_LOGDIR}"

--dataset_dir="${PASCAL_DATASET}"

改为

python "${WORK_DIR}"/train.py

--logtostderr

--train_split="trainval"

--model_variant="xception_65"

--atrous_rates=6

--atrous_rates=12

--atrous_rates=18

--output_stride=16

--decoder_output_stride=4

--train_crop_size=513

--train_crop_size=513

--train_batch_size=1

--training_number_of_steps="${NUM_ITERATIONS}"

--fine_tune_batch_norm=false

--tf_initial_checkpoint="${INIT_FOLDER}/deeplabv3_pascal_train_aug/model.ckpt"

--train_logdir="${TRAIN_LOGDIR}"

--dataset_dir="${PASCAL_DATASET}"

之后正常训练

最后

以上就是自然黑夜为你收集整理的DeepLab V3+:ResourceExhaustedError (see above for traceback): OOM when allocating tensor of shape的全部内容,希望文章能够帮你解决DeepLab V3+:ResourceExhaustedError (see above for traceback): OOM when allocating tensor of shape所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部