์ผ | ์ | ํ | ์ | ๋ชฉ | ๊ธ | ํ |
---|---|---|---|---|---|---|
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 |
- well known ํฌํธ
- ๋น์ฃผ๊ธฐ์ ํธ
- ์ฝ๋ฉํ ์คํธ์ค๋น
- ํฐ์คํ ๋ฆฌ์ฑ๋ฆฐ์ง
- ๋ฐ์ดํฐ ์ ์ก
- ๊ทธ๋ฆฌ๋ ์๊ณ ๋ฆฌ์ฆ
- ์ฐ๋ถํฌdb
- tcp ํ๋กํ ์ฝ
- ์ฃผ๊ธฐ์ ํธ
- ํ๋ก์ด๋์์
- ์ค๋ธ์
- mariadb
- ํ๋ ์ ๊ตฌ์กฐ
- reducible
- i-type
- xv6
- ์ค๋ฅ๊ฒ์ถ
- git merge
- ์ค๋ ๋
- til
- IEEE 802
- ์์๋ฒํธ
- ๊ฐ๋ฐ์์ทจ์
- ์ค๋ฅ์ ์ด
- leetcode
- ์๋น์ค ํ๋ฆฌ๋ฏธํฐ๋ธ
- 99ํด๋ฝ
- ํ ํฐ ๋ฒ์ค
- ํญํด99
- tcp ์ธ๊ทธ๋จผํธ
- Today
- Total
๋ชฉ๋ก๋ถ๋ฅ ์ ์ฒด๋ณด๊ธฐ (165)
Unfazedโ๏ธ๐ฏ
Bias(ํธํฅ) : Gap between the real problem and our model / The expected error created by using a model to apporoximate a real world function/relationship. ๋ชจ๋ธ์ ํตํด ์ป์ ์์ธก๊ฐ๊ณผ ์ค์ ์ ๋ต๊ณผ์ ์ฐจ์ด์ ํ๊ท f hat(x) : predicted value f(x) : true value Bias[^f(x)]=E[^f(x)−f(x)] Variance(๋ถ์ฐ) : change for different training data sets / The amount our predicted values would change if we had a differenct training dataset. It..
Criteria Logistic Regression Naive Bayes Classifier Linear Discriminant Analysis (LDA) Quadratic Discriminant Analysis (QDA) Model Type Parametric Parametric Parametric Parametric Assumption about Data Distribution None on distribution, assumes a linear relationship between log odds and features Assumes independence between features, with specific distribution per class Assumes Gaussian distribu..

Testing for Conflict Serializability Consider a schedule with transactions T1, T2, ..., Tn Precedence graph –A direct graph where the vertices are the transactions –We draw an arc from Ti to Tj if the two transactions conflict, and Ti accesses the data item on which the conflict arises earlier –We may label the arc by the item that is accessed Precedence Graph Example 1 ์ค์ผ์ค์ ๋ํ ์ ํ ๊ทธ๋ํ๋ฅผ ์์ฑํ ์์ ์ด๋ค...

Assessing Model Accuracy So many machine learning methods! • A single best method for all data sets? Nope! • One method may work best on a particular data set. • But, some other method may work better on a similar but different data set How to compare Methods? • Given a set of data, which method will produce the best result? • In other words, how to compare different learning methods? Measuring ..

Correct Execution •What are correct criteria of concurrent executed transactions??? •Two widely-accepted criteria –Conflict serializable –View serializable Note, serial execution of transactions is always correct (why???) ์ฌ๋ฐ๋ฅธ ์คํ ๋ค์๊ฐ์ ํธ๋์ญ์ ์ ๋์์ ์ํํ ๋ ์ฌ๋ฐ๋ฅธ ํธ๋์ญ์ ์คํ์ ๋ฌด์์ธ๊ฐ๋ฅผ ๊ฒฐ์ ํ์ฌ์ผ ํ๋ค. ํธ๋์ญ์ ์ ๋ค์ ๊ฐ์ ๋ฐ์ดํฐ๋ฒ ์ด์ค ์ฐ์ฐ์ผ๋ก ๊ตฌ์ฑ์ด ๋๋ฉฐ, ๋ค์๊ฐ์ ํธ๋์ญ์ ์ด ๋์์ ์ํ์ด ๋๋ฉด ํ ํธ๋์ญ์ ์ ์ํ ์ฐ์ฐ๊ณผ ์๋ก ํผํฉ๋์ด ์ํ์ด ๋ ๊ฒ์ด๋ฉฐ, ์ฌ๋ฐ๋ฅธ ํธ๋์ญ์ ์คํ์ ๋ํ ์ ํํ ์ ์๊ฐ ํ์ํ๋ค. ์ฐธ..

Key terms Y = f(x1, x2, x3) - want to improve sales (Y) of a product -> Y: output variable, dependent variable -control adveritsing budgets : sns(x1), streaming(x2), flier(x3) ->x1, x2, x3 : input variables, independent variables, predictors Key questions 1) What is the relationship between x1, x2, x3 and Y? -> learning 2) How accurately can we predict Y from x1, x2, x3? -> prediction data -- (l..
statistical learning supervised/ unsupervised supervised : given data (x,y), build a model, a mapping Y(input) ~ f(x)(output) - use the model f to predict Y for unknown inputs X' find relationship between factors based on data ex) based on various values year, age, gender ... => wage consider outlier (์ด์์น) https://en.wikipedia.org/wiki/Outlier Outlier - Wikipedia From Wikipedia, the free encyclo..

์ฐ์ ํ ์คํธ๋ฅผ ์ํด ์ฐ๋ถํฌ local์์ db1 ๋ฐ์ดํฐ ๋ฒ ์ด์ค๋ฅผ ์์ฑํด ์ฃผ์๋ค. testuser4๋ก ์๊ฒฉ ์ ์์ ํ ๋ค, show databases; ๋ช ๋ น์ ๊ฒฐ๊ณผ๋ฅผ ๋ณด๋ฉด root ๊ณ์ ์์ ๋ณด์ด๋ 5๊ฐ์ databases๊ฐ ์๋ 1๊ฐ์ db๋ง ์กฐํํ ์ ์๋ค. ์์ ๊ฐ์ด GRANT ALL PRIVILEGES ON d1.* TO 'testuser4'@'%' IDENTIFIED BY 'PASSWORD'; ์ ๋ช ๋ น์ด๋ก 'testuser4'์๊ฒ ๋ฐ์ดํฐ๋ฒ ์ด์ค db1์ ์ํ ๋ชจ๋ ํ ์ด๋ธ(db1.*)์ ๋ํ ๊ถํ์ ๋ถ์ฌํด ์ค ์ ์๋ค. (password๋ ํด๋น ๊ณ์ ์ ๋น๋ฐ๋ฒํธ) ๊ถํ ๋ถ์ฌ ์ดํ flush privileges; ๋ช ๋ น์ ํตํด ์ ๋ณด๋ฅผ ๊ฐฑ์ ํด ์ค๋ค. ๋ค์ ์ธ๋ถ ํฐ๋ฏธ๋๋ก ๋์์ testuser4 ๊ณ์ ์์ 'sh..

mysql, mariadb์์ ๋ฐ์ดํฐ ๋ฒ ์ด์ค ๊ณ์ ์ ์์ฑํด ๋ณด์. ์๋์ ์ฟผ๋ฆฌ๋ฌธ์ ํตํด ๊ณ์ ์ ์์ฑํ ์ ์๋ค. CREATE USER 'username'@'host' IDENTIFIED BY 'password'; 'username' : ๊ณ์ ๋ช 'host' : ํด๋น ๊ณ์ ์ด ๋ฐ์ดํฐ๋ฒ ์ด์ค์ ์ฐ๊ฒฐํ ์ ์๋ ํธ์คํธ ์ง์ 'host'๋ฅผ ์ค์ ํ๋ ๋ฐฉ๋ฒ์๋ ์ฌ๋ฌ ๋ฐฉ์์ด ์๋ค. localhost CREATE USER 'username'@'localhost' IDENTIFIED BY 'password'; ๋ผ๋ฉด, username ๊ณ์ ์ ๋ก์ปฌ ๋จธ์ ์์ ๋ฐ์ดํฐ๋ฒ ์ด์ค ์๋ฒ์ ์ฐ๊ฒฐํ ๋ ์ฌ์ฉ๊ฐ๋ฅํ๋ค. ์ผ๋ฐ์ ์ผ๋ก ๋ฐ์ดํฐ๋ฒ ์ด์ค์ ๊ฐ์ ์๋ฒ์์ ์คํ๋๋ ์ ํ๋ฆฌ์ผ์ด์ ์ ์ฌ์ฉ๋๋ค. ์์ผ๋์นด๋ '%' CREATE USER 'usernam..
์๊ฒฉ์ฆ์ด ๊ฐ๋ฐ ์ค๋ ฅ๊ณผ ๋ฐ์ ํ๊ฒ ์ฐ๊ด๋๋ค๊ณ ํ ์ ์์ง๋ง ํ์ต ๋๊ธฐ๋ถ์ฌ ์ฐจ์์์ ์ฌํด๋ ์๊ฒฉ์ฆ์ ๊พธ์คํ ๋์ ํด๋ณด๋ ค ํ๋ค. ์ ๋ณด์ฒ๋ฆฌ๊ธฐ์ฌ : ์กธ์ ์๊ฑด์๋ ์๊ธฐ ๋๋ฌธ์ ์ฌ์ ๋ก์ธ ๋ ๋นจ๋ฆฌ ์์ํด์ผ๊ฒ ๋ค. => ํ๊ธฐ 5์ ์ค์, ์ค๊ธฐ 8์ ์ด (ํฉ๊ฒฉ)TOPCIT : ํ๊ต์์ ์์๋ฃ๋ ์ง์์ด ๋๊ณ ๊ณ ๋์ ์์๊ฒ ์์๋ํ๋ค๊ณ ํด์ ๋์ ํด๋ณด๋ คํ๋ค. => 5์ ์์ค 3(571์ ) ์ทจ๋, 10์ ์ค์ AWS SAA => 10์ ์ด ์์ (ํฉ๊ฒฉ) SQLD : ํ๊ต์์ ๋ฐ์ดํฐ ๋ฒ ์ด์ค ์์ ์ ํํ๊ธฐ ์๊ฐํ๊ธฐ๋๋ฌธ์ ์ค๋นํด๋ณด๋ ค ํ๋ค. (๋์ด๋๊ฐ ๋ ๋์ SQLP๋ผ๋ ์ํ์ด ์๋ค๊ณ ํ๋๋ฐ ์ด๋ฒํ๊ธฐ DB์์ฉ ์์ ์ ๋ฃ๊ฒ ๋๋ฉด ๊ด์ฌ์ ๊ฐ์ ธ๋ด์ผ๊ฒ ๋ค.) => sqld 5์ 25์ผ (ํฉ๊ฒฉ) ํ ์ต 950+(ielts) : ์ด๊ฑด ๊ฐ๋ฐ๊ณผ ๊ด๋ จ์..