## Training Models ### ์ ๊ท ๋ฐฉ์ ์์ ํ์ฉํ ์ ํ ํ๊ท ```python import numpy as np X = 2 * np.random.rand(100, 1) y = 4 + 3 * X + np.random.randn(100, 1) ``` ํ ์คํธ ์ฉ์ผ๋ก ๋ฐ์ดํฐ๋ฅผ ๋ง๋ค์ด ๋ณด๊ฒ ์ต๋๋ค. ```python plt.plot(X, y, "...
ReadClassification 2 ## ROC ์ปค๋ธ ROC ์ปค๋ธ๋ Binary Classification์์ ๊ฐ์ฅ ์ ์ฌ์ฉํ๋ ๊ฒ์ฆ๊ธฐ๋ค. ์ผ์ชฝ ์๋ก ๊ทธ๋ํ๊ฐ ์์นํด ์์ ์๋ก (์ฐํ๋จ ๋ฉด์ ์ด ๋์ ์๋ก) ์ข์ ๋ถ๋ฅ๊ธฐ๋ผ๊ณ ํ ์ ์๋ค. ```py # ROC ์ปค๋ธ๋ binary classifiers์์ ์ ์ฌ์ฉํ๋ ๊ฒ์ฆ๊ธฐ๋ค. # ์ผ์ชฝ ์๋ก ๊ทธ๋ํ๋ก ์ฌ๋ผ๊ฐ ์...
Read## Classification [MNIST](http://yann.lecun.com/exdb/mnist/)๋ ๊ฐ ์ซ์๋ฅผ ์์ผ๋ก ์ด ์ด๋ฏธ์ง๋ฅผ ๋ชจ์๋์ ๋ฐ์ดํฐ ์ ์ ๋๋ค. ์ด ๋ฐ์ดํฐ ์ ์ ํ์ต์์ผ์, ์ด ์๊ธ์จ๊ฐ ๊ณผ์ฐ ์ซ์ ๋ช์ ์๋ฏธํ๋์ง ํ๋ณ ํ ์ ์๋๋ก ํ์ต์์ผ ๋ณด๊ฒ ์ต๋๋ค. ### 1. ๋ฐ์ดํฐ ๋ถ๋ฌ์ค๊ธฐ ์๋๋๋ก ๋ผ๋ฉด, sklearn์์ ๋ฐ์ดํฐ๋ฅผ ์ ...
ReadCalifornia Housing ๋ฐ์ดํฐ๋ฅผ ๋ฐํ์ผ๋ก scikt-learn์ ํ์ฉํ ๋จธ์ ๋ฌ๋ ์์ . ## 1. ๊ธฐ๋ณธ์ ์ธ ๋ฐ์ดํฐ ๋ก๋ฉ ํ๋ก์ ํ๊ฒฝ์ด๋ผ, ํ๋ก์๋ฅผ ํธ๋ค๋ฌ์ ์ถ๊ฐํ์์ต๋๋ค. ```python import os import tarfile from six.moves import urllib import numpy as np import panda...
Read