[google colab error] AttributeError: module ‘tensorflow’ has no attribute ‘placeholder’

less than 1 minute read

AttributeError: module ‘tensorflow’ has no attribute ‘placeholder’ 에러 발생했을 경우

  • 원인: tensorflow의 버전 1.0에서 사용되던 placeholder가 버전 2.0으로 업그레이드되면서 인식되지 않음
  • 해결 방안:

    import tensorflow as tf
    

    대신 아래 코드 입력

    import tensorflow.compat.v1 as tf
    tf.disable_v2_behavior()