Numpy 정리

2023년 9월 14일
·
0개의 댓글
·

Basics of machine learning concepts

basic machine learning concepts mathematical notations principles of learning linear regression overfitting regularization Vectors, Matrices and Norms

2023년 9월 12일
·
0개의 댓글
·

Search

팩맨dfs bfs

2023년 9월 6일
·
0개의 댓글
·

ML/DL 모델 3-Tier Architecture 구성

2023년 7월 11일
·
0개의 댓글
·

Paging

Paging: Introduction

2023년 6월 3일
·
0개의 댓글
·

Free-Space Management

2023년 6월 3일
·
0개의 댓글
·

Segmentation

2023년 6월 3일
·
0개의 댓글
·
post-thumbnail

Memory Virtualization & Address Space

메모리 가상화OS virtualizes its physical memory.OS provides an illusion memory space per each process.It seems to be seen like each process uses the whole m

2023년 6월 3일
·
0개의 댓글
·
post-thumbnail

File system Implementation

In this chapter, we study very simple file system (vsfs)Basic on-disk structures, access methods, and various policies of vsfsWe will study...How can

2023년 5월 31일
·
0개의 댓글
·
post-thumbnail

Recurrent Neural Network

Feedforward neural network (FFNN) as MLP• Information only flows in one direction.• No sense of time or memory for previous data.Recurrent neural netw

2023년 5월 25일
·
0개의 댓글
·
post-thumbnail

Variational Auto-Encoder

Variational Auto-Encoder (VAE)• AE encoder directly produces a latent vector z (single value for each attribute).Then, AE decoder takes these values t

2023년 5월 25일
·
0개의 댓글
·

Auto-Encoder

Auto-Encoder (AE)• Auto-Encoder is an unsupervised learning for data reconstruction by encoding-decoding.Specifically, its bottleneck network forces a

2023년 5월 25일
·
0개의 댓글
·
post-thumbnail

Generative Adversarial Network

Generative Adversarial Network (GAN)• GenerativeLearn a generative model• AdversarialTrained in an adversarial setting: generator G and discriminator

2023년 5월 25일
·
0개의 댓글
·
post-thumbnail

I/O Devices

I/O is critical to computer system to interact with other systems.Issue :How should I/O be integrated into systems? What are the general mechanisms? H

2023년 5월 18일
·
0개의 댓글
·

마크다운 작성법(수식, 코드)

$yi=x_i^3+x{i-1}^2+x\_{i-2}$배웠다

2023년 5월 17일
·
0개의 댓글
·
post-thumbnail

Attention Mechanism

CNN-LSTM model for Image Captioning > Image Captioning은 이미지를 언어로 설명하는 작업이다. > CNN as an encoder is used to learn features in images. LSTM as a decode

2023년 5월 17일
·
0개의 댓글
·
post-thumbnail

Recurrent Neural Network (RNN)

순환 신경망(Recurrent neural network, RNN)• RNN (LSTM) makes predictions based on current and previous inputs recurrently,while FFNN makes decisions based

2023년 5월 16일
·
0개의 댓글
·
post-thumbnail

Convolutional Neural Network

• CNN has great success in computer vision applications, especially in image classification,based on its shared weights using Convolution and translat

2023년 5월 16일
·
0개의 댓글
·
post-thumbnail

Swapping

Goal of Cache Managementto minimize the number of cache misses.the average memory access time(AMAT)Lead to the fewest number of misses overall.Replace

2023년 5월 16일
·
0개의 댓글
·

NETWORK LAYER

네트워크 계층의 호스트 사이의 통신 서비스 제공네트워크 계층은 트랜스포트 계층이나 애플리케이션 계층과는 달리, 각 호스트와 네트워크의 라우터마다 네트워크 계층의 일부가 존재한다.네트워크 계층은 서로 상호작용하는 데이터 평면Data Plane과 제어 평면Control P

2023년 5월 15일
·
0개의 댓글
·