디시인사이드 갤러리

갤러리 이슈박스, 최근방문 갤러리

갤러리 본문 영역

재획하면서 공부하기 #5

ㅇㅇ갤로그로 이동합니다. 2024.09.02 00:07:34
조회 79 추천 0 댓글 0

재획하면서 공부하기 #1~2 개인 리뷰용 파이썬 코드입니다.




재획하면서 공부하기 #1

https://gall.dcinside.com/board/view/?id=maplestory_new&no=8308815&search_pos=-8270584&s_type=search_subject_memo&s_keyword=%EC%9E%AC%ED%9A%8D%ED%95%98%EB%A9%B4%EC%84%9C&page=1

 


재획하면서 공부하기 #2

https://gall.dcinside.com/board/view/?id=maplestory_new&no=8312042&search_pos=-8280584&s_type=search_subject_memo&s_keyword=%EC%9E%AC%ED%9A%8D%ED%95%98%EB%A9%B4%EC%84%9C&page=1


참조한 유튜브 강의영상



# Linear Regression
# x_training k개의 feature, n개의 data
# y_training 1개의 feature, n개의 data

# 편의상 k=4, n=100

# x_training = ( n x k )
# y_training = ( n x 1 )

import numpy as np

# Generate random data for x_training with k=4 features and n=100 data points
x_training = np.random.rand(100, 4)

# Generate random data for y_training with 1 feature and n=100 data points
y_training = np.random.rand(100)


# y = w0 + w1x1 + w2x2 + w3x3 + w4x4 의 형태의 모델을 만드는 것이 목적
# w = (xtx)-1 xt y


# Add a column of ones to x_training for the bias term (w0)
X = np.c_[np.ones(x_training.shape[0]), x_training]



# closed-form solution 을 이용해 구하는 방법
# Calculate the weights (w) using the normal equation
w = np.linalg.inv(X.T @ X) @ X.T @ y_training


# gradient descent 를 이용해 구하는 방법
# Set the learning rate
learning_rate = 0.01
# Set the number of iterations
num_iterations = 1000
# Initialize the weights
w = np.zeros(X.shape[1])
print(w)
# Perform gradient descent
for i in range(num_iterations):
  # Calculate the predictions
  y_pred = X @ w
  # Calculate the error
  error = y_pred - y_training
  # Calculate the gradient
  gradient = X.T @ error / len(y_training)
  # Update the weights
  w = w - learning_rate * gradient




# classification - logistic regression

# Generate random data for x_training with k=4 features and n=100 data points
x_training = np.random.rand(100, 4)

# Generate random data for y_training with 1 feature and n=100 data points
y_training = np.random.randint(2, size=100)


# iterative reweight least squre 방법을 사용하여 구하기
# Add a column of ones to x_training for the bias term (w0)
X = np.c_[np.ones(x_training.shape[0]), x_training]

# Set the number of iterations
num_iterations = 100

# Initialize the weights
w = np.zeros(X.shape[1])

# Perform iterative reweighted least squares
for i in range(num_iterations):
  # Calculate the predictions
  y_pred = 1 / (1 + np.exp(-X @ w))

  # Calculate the weights
  weights = y_pred * (1 - y_pred)

  # Calculate the Hessian matrix
  hessian = X.T @ (weights[:, np.newaxis] * X)



# conjugate gradient 를 사용하여 구하기
# Add a column of ones to x_training for the bias term (w0)
X = np.c_[np.ones(x_training.shape[0]), x_training]

# Initialize the weights
w = np.zeros(X.shape[1])

# Set the number of iterations
num_iterations = 100

# Set the tolerance
tol = 1e-6

# Perform conjugate gradient
for i in range(num_iterations):
  # Calculate the predictions
  y_pred = 1 / (1 + np.exp(-X @ w))

  # Calculate the gradient
  gradient = X.T @ (y_pred - y_training)

  # Calculate the Hessian matrix
  H = X.T @ (y_pred * (1 - y_pred) * X)

  # Calculate the search direction
  if i == 0:
    d = -gradient
  else:
    beta = np.dot(gradient, gradient) / np.dot(gradient_old, gradient_old)
    d = -gradient + beta * d

  # Calculate the step size
  alpha = -np.dot(gradient, d) / np.dot(d, H @ d)

  # Update the weights
  w = w + alpha * d

  # Check for convergence
  if np.linalg.norm(gradient) < tol:
    break

  # Store the gradient for the next iteration
  gradient_old = gradient





# Newton's method 를 이용하여 구하기
# Initialize the weights
w = np.zeros(X.shape[1])

# Set the number of iterations
num_iterations = 100

# Set the tolerance
tol = 1e-6

# Perform Newton's method
for i in range(num_iterations):
  # Calculate the predictions
  y_pred = 1 / (1 + np.exp(-X @ w))

  # Calculate the gradient
  gradient = X.T @ (y_pred - y_training)

  # Calculate the Hessian matrix
  H = X.T @ (y_pred * (1 - y_pred) * X)

  # Calculate the update
  update = np.linalg.solve(H, -gradient)

  # Update the weights
  w = w + update

  # Check for convergence
  if np.linalg.norm(gradient) < tol:
    break





# Calculate the predictions
y_pred = 1 / (1 + np.exp(-X @ w))

# Convert probabilities to binary predictions
y_pred_binary = (y_pred > 0.5).astype(int)





# AND gate 를 로지스틱 회귀모델로 학습하기
# Define the input data
X = np.array([[0, 0], [0, 1], [1, 0], [1, 1]])

# Define the output data
y = np.array([0, 0, 0, 1])

# Add a column of ones to X for the bias term
X = np.c_[np.ones(X.shape[0]), X]

# Initialize the weights
w = np.zeros(X.shape[1])

# Set the learning rate
learning_rate = 0.1

# Set the number of iterations
num_iterations = 1000

# Perform gradient descent
for i in range(num_iterations):
  # Calculate the predictions
  y_pred = 1 / (1 + np.exp(-X @ w))
  # Calculate the error
  error = y_pred - y
  # Calculate the gradient
  gradient = X.T @ error / len(y)
  # Update the weights
  w = w - learning_rate * gradient

# Calculate the predictions
y_pred = 1 / (1 + np.exp(-X @ w))

# Print the predictions
print(y_pred)

# Define the validation data
X_val = np.array([[0, 0], [0, 1], [1, 0], [1, 1]])

# Define the output data
y_val = np.array([0, 0, 0, 1])

# Add a column of ones to X_val for the bias term
X_val = np.c_[np.ones(X_val.shape[0]), X_val]

# Calculate the predictions for the validation data
y_pred_val = 1 / (1 + np.exp(-X_val @ w))

# Convert probabilities to binary predictions
y_pred_binary = (y_pred_val > 0.5).astype(int)

# Compare the predictions to the actual values
print(y_pred_binary == y_val)






# 뉴럴 네트워크
# 1개의 입력층, 1개의 은닉층, 1개의 출력층

import numpy as np

# Define the sigmoid activation function
def sigmoid(x):
  return 1 / (1 + np.exp(-x))

# Define the derivative of the sigmoid function
def sigmoid_derivative(x):
  return x * (1 - x)

# Define the neural network class
class NeuralNetwork:
  def __init__(self, input_size, hidden_size, output_size):
    # Initialize the weights
    self.weights1 = np.random.randn(input_size, hidden_size)
    self.weights2 = np.random.randn(hidden_size, output_size)

  def forward(self, X):
    # Calculate the output of the hidden layer
    self.hidden_layer_output = sigmoid(np.dot(X, self.weights1))
    # Calculate the output of the output layer
    self.output = sigmoid(np.dot(self.hidden_layer_output, self.weights2))
    return self.output

  def backward(self, X, y, output):
    # Calculate the error in the output layer
    self.output_error = y - output
    # Calculate the derivative of the output layer
    self.output_delta = self.output_error * sigmoid_derivative(output)
    # Calculate the error in the hidden layer
    self.hidden_layer_error = self.output_delta.dot(self.weights2.T)
    # Calculate the derivative of the hidden layer
    self.hidden_layer_delta = self.hidden_layer_error * sigmoid_derivative(self.hidden_layer_output)
    # Update the weights
    self.weights2 += self.hidden_layer_output.T.dot(self.output_delta)
    self.weights1 += X.T.dot(self.hidden_layer_delta)

  def train(self, X, y, num_iterations):
    for i in range(num_iterations):
      # Perform forward propagation
      output = self.forward(X)
      # Perform backward propagation
      self.backward(X, y, output)



# Define the input data
X = np.array([[0, 0], [0, 1], [1, 0], [1, 1]])

# Define the output data
y = np.array([[0], [1], [1], [0]])

# Create a neural network with 2 input neurons, 2 hidden neurons, and 1 output neuron
nn = NeuralNetwork(2, 2, 1)

# Train the neural network
nn.train(X, y, 10000)

# Define the validation data
X_val = np.array([[0, 0], [0, 1], [1, 0], [1, 1]])

# Predict the output for the validation data
y_pred = nn.forward(X_val)

# Print the predictions
print(y_pred)

# Convert probabilities to binary predictions
y_pred_binary = (y_pred > 0.5).astype(int)

# Compare the predictions to the actual values
print(y_pred_binary == y)







추천 비추천

0

고정닉 0

0

댓글 영역

전체 댓글 0
등록순정렬 기준선택
본문 보기

하단 갤러리 리스트 영역

왼쪽 컨텐츠 영역

갤러리 리스트 영역

갤러리 리스트
번호 제목 글쓴이 작성일 조회 추천
설문 지금 결혼하면 스타 하객 많이 올 것 같은 '인맥왕' 스타는? 운영자 24/10/28 - -
8709144 난창뱃드랍율이네배임 [4] 제롱갤로그로 이동합니다. 04:09 66 0
8709143 결속밴드 도플갱어 들어보세요 좋습니다 [2] 박진혁갤로그로 이동합니다. 04:08 69 0
8709142 이번 할로윈은 이벤트없어서 아쉽네.. ssd(221.143) 04:08 21 0
8709141 다른 분재겜도 하루만에가치가20%씩떨어지고그러냐 ㅇㅇ(223.39) 04:08 32 0
8709140 환산9만 날먹하고싶다 ㅇㅇ갤로그로 이동합니다. 04:08 28 0
8709139 김원식 [1] 스톤멍키ㅇㄷ(119.64) 04:07 53 0
8709138 빗소리 개좋다 [5] 행복하고싶다안녕갤로그로 이동합니다. 04:07 49 0
8709137 아티팩트 경험치 몹+1있네 zi존페페캐논갤로그로 이동합니다. 04:07 31 0
8709136 스인미+크오솔 언제씀? ㅇㅇ(222.233) 04:06 22 0
8709135 다혈질에 입이험하고 특정사상 종교혐오하는거 윤혜인갤로그로 이동합니다. 04:06 19 0
8709134 새벽 추천곡 [4] 연필갤로그로 이동합니다. 04:05 34 0
8709130 디시아이디는 예전이 참 재밋엇는데 [11] 메타몽의산책갤로그로 이동합니다. 04:04 62 0
8709129 메소 팔아서 우머나이저 샀음 [2] ㅇㅇ(106.102) 04:04 57 0
8709127 안녕하세요? ㅋㅋ [1] ㅇㅇ갤로그로 이동합니다. 04:03 30 0
8709126 벌써 네시구나 [4] 사용가능한닉네임입니다.갤로그로 이동합니다. 04:03 39 0
8709125 난자취하면 일단 고양이키울거야 [16] 초서갤로그로 이동합니다. 04:02 71 0
8709124 잠재설정 메소화 이후 김창섭 매출 전략 기획 보고서 메겔러1(175.199) 04:02 56 0
8709123 진심 리부트인들의 분노 헤아릴수가없다.. [4] ssd(221.143) 04:02 60 0
8709122 오한별 -> 주화 씹병신 시스템인거 진작알고 gms도입안함 ㅇㅇ(39.7) 04:01 35 0
8709120 이짤허벅지보니까 도트만의꼴림이있네 ㄹㅇ [2] 박진혁갤로그로 이동합니다. 04:00 112 0
8709119 자취하고싶다 [6] 초서갤로그로 이동합니다. 04:00 55 0
8709118 초서애미 머리채잡고 붕붕돌리기 하다가 [1] 메갤러(211.246) 04:00 52 1
8709117 리버지 이제야 깨달아요 [2] ㅇㅇ갤로그로 이동합니다. 03:59 39 0
8709116 와밖에눈온다 [6] 제롱갤로그로 이동합니다. 03:59 38 0
8709115 나잘게 [6] ㅇㅇ갤로그로 이동합니다. 03:59 50 0
8709114 루나 18성 쌍드 파풀마 살분? 메갤러(223.62) 03:59 23 0
8709113 나눈애기ㅇㅅㅇ 메갤러(211.234) 03:59 22 0
8709111 나는쌀먹해도욕하면안됨씨@발 ssd(221.143) 03:58 41 0
8709110 메이플 사냥하면서 보는 영상 목록 ㅇㅇ(211.235) 03:58 51 0
8709109 사냥이 재밌을 수가 없는게 [2] ㅇㅇ(61.84) 03:57 58 0
8709108 스카 지금 훈장값 얼마임? ㅇㅇ(39.7) 03:57 29 0
8709107 근데 말앞에 근데를 자주붙일수록 찐따라더라 [1] 박진혁갤로그로 이동합니다. 03:57 59 0
8709105 와담주에기온한자릿수구나 [10] 메타몽의산책갤로그로 이동합니다. 03:55 51 0
8709104 여기 갤은 쌀먹들 밖에 없나 메갤러(223.62) 03:55 32 0
8709103 ㄹㅇ리부트혐오햇는데 직접 창섭이한테당해보니깐 ㅇㅇ.. [5] ssd(221.143) 03:55 69 2
8709102 근우 이 씨발련아 [1] 메갤러(182.228) 03:55 44 0
8709101 사냥이 재미없다는건 틀린말임 [2] 박진혁갤로그로 이동합니다. 03:54 64 0
8709100 쌀쌀하다 햇더니 밖에 비오는데????? [11] 행복하고싶다안녕갤로그로 이동합니다. 03:54 65 0
8709099 나는 창섭이가 아직도 돈벌생각을 하는게 어이없음 [6] 초서갤로그로 이동합니다. 03:53 76 0
8709098 흐흐.할까요. [2] 스톤멍키갤로그로 이동합니다. 03:53 38 0
8709096 막 메이플이 진짜 와 재밋다 와 갓겜 이런건 아닌데. [12] 아현.갤로그로 이동합니다. 03:52 70 0
8709094 귀에 들어간 벌레 빠짐 ㅅㅅ [6] ㅇㅇ(182.231) 03:52 53 0
8709093 야 뭐냐 웹툰 별점제 사라젔네;; [5] ★!갤로그로 이동합니다. 03:52 87 0
8709091 제일 정보없는 직업이 듀블같누 [2] ㅇㅇ(211.235) 03:51 71 0
8709090 에휴.. 웹툰 최후의모험가 별점1점주다가자야지 [1] ★!갤로그로 이동합니다. 03:51 49 0
8709089 근데 난 메이플망해도할듯.... [2] ㅇㅇ갤로그로 이동합니다. 03:51 45 0
8709088 오늘잇엇던일 ssd(221.143) 03:51 22 1
8709087 메소제한 매일 채우는 새끼들은 뭐임? ㅇㅇ갤로그로 이동합니다. 03:50 58 0
8709086 엥근데<<이말투 보면 ㄹㅇ바로 토할거같네 [16] 메타몽의산책갤로그로 이동합니다. 03:50 69 0
8709085 듀블 좆고아장애인직업 탈출했음? [1] SouthernCross갤로그로 이동합니다. 03:50 52 0
갤러리 내부 검색
제목+내용게시물 정렬 옵션

오른쪽 컨텐츠 영역

실시간 베스트

1/8

뉴스

디시미디어

디시이슈

1/2