텐서플로

    [Tensorflow] 텐서플로우 데이터셋 불러오기 (데이터 변형 x, 전이학습)

    [Tensorflow] 텐서플로우 데이터셋 불러오기 (데이터 변형 x, 전이학습)

    https://www.tensorflow.org/datasets/catalog/overview 데이터세트 | TensorFlow Datasets Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trade www.tensorflow.org 텐서플로우 홈페이지의 있는 데이터셋을 정석적인 방법대로 코랩으로 불러와보자..

    [에러] AttributeError: 'Tensor' object has no attribute 'numpy'

    [에러] AttributeError: 'Tensor' object has no attribute 'numpy'

    (코랩 환경입니다) 코랩 환경이 아닌 상태에서 해당 에러가 뜬다면 아래 게시물을 확인하여 해결하시기 바랍니다. https://outputput.tistory.com/38 [tensorflow]AttributeError: 'Tensor' object has no attribute 'numpy' 해결 import tensorflow as tf #tf.enable_eager_execution() hello = tf.constant(10) print(hello) print(hello.numpy()) 간단한 코드인데 AttributeError: 'Tensor' object has no attribute 'numpy' 가 나오면 서 오류가 난다. 텐서 값도 출력해보면 outputput.tistory.com 나는 위..