AttributeError: module 'tensorflow' has no attribute 'placeholder'
config = CustomConfig()
model = modellib.MaskRCNN (mode= "training", config=config, model_dir=DEFAULT_LOGS_DIR)
weights_path = COCO_WEIGHTS_PATH # Download weights file
if not os.path.exists(weights_path):
utils.download_trained_weights(weights_path)
model.load_weights(weights_path, by_name=True, exclude=["mrcnn_class_logits",
"mrcnn_bbox_fc","mrcnn_bbox",
"mrcnn_mask"])
Can anyone please tell me how to fix this attribute error.
I am using
!pip install keras==2.2.5
%tensorflow_version 2.x
It is possible that the error is generated by the configuration that you use as a parameter
config
in MaskRCNN, which has some slight differences depending on the stages (test, training), you can find more information in coco.pyno train