Exercise helps the brain: BBC News Review legendary very famous and well known • Michael Jackson was a legendary figure in pop music. • You haven't seen Citizen Kane!? It's absolutely legendary! geek person with highly detailed knowledge about a subject • Dan's a comic book geek. Ask him anything and he'll know the answer. • You're such a geek! No one else knows half of the stuff you do! the God..
#20190328 Couple breaking time -> Whenever a couple breaks up I don't want to break up you -> I don't want to break up with you We have a hang out for 3 years -> We've been hanging out for 3 years now In case of my ex boyfriend -> in the case of my ex boyfriend. I still felt like crying whenever I think of that sad situation. Fecal matter Many people have thought that talking about fecal matter,..
make space for - "Come on, Kitty", I make space for her between my legs, and she climbs in. * If the Quarantine limit is reached, the oldest quarantined files will be removed to make space for new infected files. 검역 제한에 도달하면 가장 오래된 검역 파일이 제거되어 감염된 새 파일을 위한 공간이 확보됩니다. frig - "But you never said anything! Not one frigging word, LaLa Jean!" * 빈둥빈둥[쓸데없이] 시간을 보내다 crack up (중압감을 못 이기고 정신적으로나 육체적으로) 무너..
문장모음 I pull my jeans up What the hell has it got to do with him? She is dancing her ass off. Out to He holds his hand out to me, and now I'm hesitant to take it. Out of What do I get out of this? I am so out of my depth here. He turns right out of the playroom He climbs out of the car I murmur as I climb out of the car. Chapter 7 (p.98-108) Cornice (장식용) 처마[천장] 돌림띠 Ambient (명사 앞에만 씀) (전문 용어) 주위[..
27단원 Boom in The anthem booms in my ears Record profits in the retail market indicate a boom in the economy. (소매 시장의 기록적인 수익은 경제가 호황임을 나타낸다) The bitcoin boom in South Korea created bitcoin zombies. (한국의 비트코인 붐은 비트코인 좀비들을 만들었다. ) Bob (특히 물 위에서) 깐닥거리다, 까닥거리다 Tiny boats bobed up and down in the harbour Flaunt 과시하다 Flaunted the moment with the berries in the Capitol's face? He did not believe in fla..
MNIST 데이터베이스 (Modified National Institute of Standards and Technology database) - 손으로 쓴 숫자들로 이루어진 대형 데이터 베이스 - 기계학습분야의 트레이닝 및 테스트에 널리 사용된다 유명한 MNIST 데이터를 사용한 코드이다. 인터넷에는 분류만 많이 있지 regression은 없어 구현해 보았다. 결과값 [[6.7332497]] 눈에 보이는 값 7 ====> 오차가 별로 나지 않는다. 전체코드 github https://github.com/YoujeongPark/mnist_regression_ex YoujeongPark/mnist_regression_ex Contribute to YoujeongPark/mnist_regression_ex ..
CNN을 통해서 기본적인 regression을 하는 방법을 설명하겠다. 기본적으로 python에서 숫자를때 차원을 제대로 고려하는 것이 중요하다. 데이터 셋은 다음과 같다. 1 2 3 # define dataset X = array([[10, 20, 30], [20, 30, 40], [30, 40, 50], [40, 50, 60]]) y = array([40, 50, 60, 70]) Colored by Color Scripter cs 위의 데이터 셋은 차원을 아는 것이 중요하다. X데이터의 경우 차원이 (4,3,1) Y데이터 경우 차원이 (4,)이 도출된다. 왼쪽 4라는 숫자를 맞춰주어야 한다. 1 2 print("X.shape", X.shape) #X.shape (4, 3, 1) print("Y.sha..
케라스를 이용하여 하는 mlp 기본 예제 코드이다. 기본적인 데이터는 다음과 같다. X : [10,20,30] -> Y : [40,50] 1 2 X = array([[10, 20, 30], [20, 30, 40], [30, 40, 50], [40, 50, 60]]) y = array([[40, 50],[50,60],[60, 70],[70,80]]) cs 100개의 뉴런을 사용하여 output을 두개 도출한다. 이때 데이터는 3개이기 때문에 input_dim = 3으로 도출되고 Dense(2)로 설정한다. optimizer은 adam으로 설정하였고 회귀이기 때문에 loss는 mse로 설정하였다. 1 2 3 4 5 6 7 # define model model = Sequential() model.add(De..
python - matplot(1) 기본
1. Deep learning에서 CNN은 학습하거나 TEST 하려는 이미지의 크기가 모두 동일해야 함 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 from PIL import Image import numpy as np img = Image.open("colorwheel.png") pix1 = np.array(img) # 이미지 1의 pixel 값 width, height = img.size # 이미지의 width와 height print(width, height) resize_image = img.resize((500, 1000)) # 이미지 resize pix2 = np.array(resize_image) width, height = resize_ima..