일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- supervised learning
- LG
- 분류
- Classification
- ChatGPT
- regression
- GPT-4
- 지도학습
- gpt
- deep learning
- LG Aimers 4th
- 머신러닝
- 오블완
- PCA
- 딥러닝
- OpenAI
- 회귀
- LLM
- AI
- LG Aimers
- 해커톤
- Machine Learning
- 티스토리챌린지
- Today
- Total
목록4학년 1학기 전공 (15)
SYDev

경희대학교 최진우 교수님의 기계학습 수업을 기반으로 정리한 글입니다.

경희대학교 최진우 교수님의 기계학습 수업을 기반으로 정리한 글입니다. 1. ML Definitions 명시적으로 프로그램하지 않아도, 기계가 스스로 무언가 배울 수 있는 능력을 가지도록 연구하는 분야Machine Learning: 기계가 Experience E에 따라서, 특정 Task T를 Performance P만큼의 성능을 수행할 수 있도록 학습시키는 것ex) 손글씨 인식Task T: 손글씨 사진이 어떤 숫자인지 구별하는 것Performance measure P: 100개 중에서 몇 개를 정확히 인식하는지Training experience E: 데이터 2. ML TypesSupervised Learning: 특징 벡터(input) X와 목푯값(output) Y가 모두 주어진 상황회귀 문제(Regres..

Time Series?Time Series: In mathematics, a time series is a series of data points indexed (or listed or graphed) in time orderthus it is a sequence of discrete-time data간격이 동일하지 않으면 Time Series Data X Characteristics of Time Series DataA time series ccan be stationary or non-stationaryStationary Time Series: has statistical properties that are constant over timestatistics like the mean, variance..

경희대학교 허선영 교수님의 컴파일러 수업을 기반으로 정리한 글입니다. OCaml(Objective Caml)Functional Programming Language: 함수의 구성 & 추가로 프로그램이 설계되는 Functional Programming 방식을 사용하는 언어Functional programming language에서 function은 인자로서 전달되고, 자료구조에 저장되고, function calls의 결과로 반환된다. OCaml은 정적 타입 언어 -> 변수와 함수의 타입이 Compile time에 결정됨한 번 변수를 바인딩하면 변경 불가 x = x + 1 형태로 변경 불가값을 바꾸고 싶으면 새롭게 리바인딩해야함 let x = x + 1Syntax- Data Types - Operators-..

경희대학교 허선영 교수님의 컴파일러 수업을 기반으로 정리한 글입니다. 1. Front-end Compilationsource program -> target program 번역 과정에는 IR(Intermediate Representation)이라는 중간 언어 번역 과정 존재Front-end Compilation: source program -> IRLexical AnalysisSyntax AnalysisSemantic AnalysisIR Code GenerationBack-end Compilation: IR -> target program2. Lexical언어를 이해하는 첫 번째 stepwords를 구분 -> the smallest unit above lettersex) This is a sentence..

경희대학교 허선영 교수님의 컴파일러 수업을 기반으로 정리한 글입니다. What is a Compiler?compiler: source language로 작성된 프로그램을 기능적으로 동등한 target language로 작성된 프로그램으로 번역하는 프로그램compiler may support source- and target- independent compilationcompiler can also optimize program to enhanceperformanceprogrammabilitysecurity Compiler vs Interpreter Interpreter: execution + translation을 sequence 단위로 동시에 수행파이썬 사용 시에 최대 성능이 제한됨컴파일된 프로그램은 ..

경희대학교 이성원 교수님의 풀스택 서비스 네트워킹 수업을 기반으로 정리한 글입니다. Computer NetworkWhat is Computer?컴퓨터는 computer programming을 통해서 자동적으로 수학적 혹은 논리적 operations를 수행하는 sequences를 실행할 수 있는 deviceex) Desktop Computer, Server Computer, Tablet Computer, Smart Phones, Smart Watches, Wearable Computers, IoT & Sensor Devices, Comsumer Electronics, Vehicles, More and MoreWhat is Computer Network?컴퓨터 네트워크는 network nodes에 위치한(혹..