※ Tensorflow Hub : 일반화된 문제들에 대해서 모델의 재사용성을 극대화 하기 위해 구글에서 공개한 API, 미리 훈련된 모델을 FIne Tuning하여 쉽게 사용할 수 있음. ※ hub 설치 pip install tensorflow-hub ※ tfds 서치 pip install tensorflow_datasets Tensorflow Hub를 이용해서 기존 text classficiation 을 해봅니다. Code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 import numpy as np import tensorflow as tf i..