File tree 2 files changed +6
-0
lines changed
cvat/apps/auto_segmentation
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
46
46
- Fixed an issue with large number of instances in instance mask (https://github.com/opencv/cvat/issues/1539 )
47
47
- Fixed full COCO dataset import error with conflicting labels in keypoints and detection (https://github.com/opencv/cvat/pull/1548 )
48
48
- Fixed COCO keypoints skeleton parsing and saving (https://github.com/opencv/cvat/issues/1539 )
49
+ - ` tf.placeholder() is not compatible with eager execution ` exception for auto_segmentation (https://github.com/opencv/cvat/pull/1562 )
49
50
50
51
### Security
51
52
-
Original file line number Diff line number Diff line change @@ -41,6 +41,11 @@ def _convert_to_segmentation(mask):
41
41
42
42
## INITIALIZATION
43
43
44
+ # workarround for tf.placeholder() is not compatible with eager execution
45
+ # https://github.com/tensorflow/tensorflow/issues/18165
46
+ import tensorflow as tf
47
+ tf .compat .v1 .disable_eager_execution ()
48
+
44
49
# Root directory of the project
45
50
ROOT_DIR = os .environ .get ('AUTO_SEGMENTATION_PATH' )
46
51
# Import Mask RCNN
You can’t perform that action at this time.
0 commit comments