2017/05

    Linear Regression

    import tensorflow as tf import numpy as np import matplotlib.pyplot as plt #The numbers of data num_points = 1000 # DataSet vectors_set = [] for i in range(num_points): x1 = np.random.normal(0.0, 0.55) y1 = 0.1 * x1 + 0.3 + np.random.normal(0.0, 0.03) # h(x) = theta * x + b vectors_set.append([x1, y1]) x_data = [v[0] for v in vectors_set] y_data = [v[1] for v in vectors_set] theta = tf.Variable(..

    Display Panel Tensorboard

    TensorFlow의 시각화 툴인 Tensorboard 이용하기 $ tensorboard --logdir={directory path}I tensorflow/stream_executor/dso_loader.cc:135] successfully opened CUDA library libcublas.so.8.0 locallyI tensorflow/stream_executor/dso_loader.cc:135] successfully opened CUDA library libcudnn.so.5 locallyI tensorflow/stream_executor/dso_loader.cc:135] successfully opened CUDA library libcufft.so.8.0 locallyI tensorflow..

    GAME DATA MINING COMPETITION 2017

    Blade & Soul user data 분석을 통한 예측 시스템 구현Competition URL : https://cilab.sejong.ac.kr/gdmc2017/

    Old csproj to new csproj: Visual Studio 2017 upgrade guide

    http://www.natemcmaster.com/blog/2017/03/09/vs2015-to-vs2017-upgrade/

    Linux hardware info 확인 위한 Command 모음

    http://www.binarytides.com/linux-commands-hardware-info/

    pwndbg

    https://github.com/pwndbg/pwndbghttp://blog.naver.com/PostView.nhn?blogId=shilf1&logNo=220944138541&beginTime=0&jumpingVid=&from=search&redirect=Log&widgetTypeCall=true

    Git Tip

    [Show your branch name on the Linux promp]https://www.leaseweb.com/labs/2013/08/git-tip-show-your-branch-name-on-the-linux-prompt/

});