[텐서플로우] dropout의 적용
드롭아웃 기법 : 신경망의 일부만 사용하도록 하여 가중치의 균형을 잡고 과적합 상태를 해결함. keep_prob = tf.placeholder(tf.float32) W1 = tf.Variable(tf.random_normal([784, 256], stddev=0.01)) L1 = tf.nn.relu(tf.matmul(X, W1)) L1 = tf.nn.dropout(L1, keep_prob) W2 =...
황트루치
드롭아웃 기법 : 신경망의 일부만 사용하도록 하여 가중치의 균형을 잡고 과적합 상태를 해결함. keep_prob = tf.placeholder(tf.float32) W1 = tf.Variable(tf.random_normal([784, 256], stddev=0.01)) L1 = tf.nn.relu(tf.matmul(X, W1)) L1 = tf.nn.dropout(L1, keep_prob) W2 =...
텐서플로우 모델 저장 및 재사용, 텐서보드 사용하기 with tf.name_scope(‘layer1′): W1 = tf.Variable(tf.random_uniform([2, 10], -1., 1.), name=’W1’) L1 = tf.nn.relu(tf.matmul(X, W1)) with tf.name_scope(‘layer2′): W2 = tf.Variable(tf.random_uniform([10, 20], -1., 1.), name=’W2’) L2...
https://conda.io/miniconda.html wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh shell에서 실행 sh ./Miniconda3-latest-MacOSX-x86_64.sh conda create -n ml_python python=3.6 source activate ml_python conda install numpy conda install pandas conda install matplotlib conda install jupyter conda install scikit-learn TF설치...
1. 파이썬 설치하기 https://www.python.org/downloads/ 2. 터미널을 열어 파이썬3 pip로 tensorflow를 설치한다. sudo pip3 install –upgrade tensorflow 3. 아래와 같이 버전정보가 출력될 경우 정상. compiletime version 3.5 of module ‘tensorflow.python.framework.fast_tensor_util’ does...
More
최근 댓글