For use with TensorFlow 2.0 I changed first line of `faced/detector.py` from : `import tensorflow as tf` to `import tensorflow.compat.v1 as tf` and it works. I know it's not ideal, but it works.
For use with TensorFlow 2.0 I changed first line of
faced/detector.pyfrom :import tensorflow as tfto
import tensorflow.compat.v1 as tfand it works. I know it's not ideal, but it works.