일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- bingai
- supervised ml
- AI
- coursera
- Supervised Learning
- neural network
- Deep Learning
- 언어모델
- nlp
- ChatGPT
- LLM
- feature engineering
- Machine Learning
- Unsupervised Learning
- 챗지피티
- Regression
- prompt
- 프롬프트 엔지니어링
- 머신러닝
- Scikitlearn
- feature scaling
- AI 트렌드
- 인공지능
- GPT
- 인공신경망
- llama
- learning algorithms
- ML
- Andrew Ng
- 딥러닝
- Today
- Total
목록Deep Learning (3)
My Progress

1. IntuitionLinear Regression is not a good method for Classification Problem.Why?One outlier on the right changes the linear regression function. It moves decision boundary dramatically. 2. Logistic Regression2.1 FormulaLogistic function allows the function to be curved unlike the linear regression. This is a sigmoid function aka logistic function. x-axis represents the number z. It outputs a v..

1. Intuition House example: Lets say we are predicting the price of a house based on its size and number of bed rooms. Number for size of a house is relatively larger than the number of bed rooms. This large difference between numbers will make it hard to accurately predict the price. How is this related to gradient descent? Since the number for size is large, it takes smaller w value to make a ..

1. Linear Regression Purpose: To predict the output based on the given examples or dataset 1. 1 Terminology Univariate linear regression: Linear regression with one(single feature x) variable fw,b(x) = wx + b 1.2 Code Necessary Libraries #Numpy, a popular library for scientific computing import numpy as np #Matplotlib, a popular library for plotting data import matplotlib.pyplot as plt x_train =..