일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 딥러닝
- nlp
- llama
- 챗지피티
- 인공지능
- bingai
- 인공신경망
- 언어모델
- ChatGPT
- Deep Learning
- coursera
- learning algorithms
- LLM
- Machine Learning
- Supervised Learning
- 머신러닝
- Andrew Ng
- ML
- supervised ml
- prompt
- Regression
- AI 트렌드
- feature scaling
- neural network
- Unsupervised Learning
- GPT
- 프롬프트 엔지니어링
- Scikitlearn
- AI
- feature engineering
- Today
- Total
목록Andrew Ng (3)
My Progress

1. What is Feature Engineering? Using intuition to design new features, by transforming or combinging original features. Example) House price. If we are given the dimension of the house such as length and width, we can create a new variable to include for price prediction of a house. For example, we create a area variable with length and width. 2. Feature engineering in Polynomial Regression We ..

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 =..