CS(Computer Science)45 2. OSI Model and TCP/IP Protocol Suite OSI 7계층 1계층 Physical 2계층 Data link 3계층 Network 4계층 Transport 5계층 Session 6계층 Presentation 7계층 Application TCP/IP Protocol Suite 1계층 Physical - Underlying LAN and WAN 기술 2계층 Data link - Underlying LAN and WAN 기술 3계층 Network - Internet Protocol & helping Protocols 4계층 Transport - Serveral transport Protocols 5계층 Application - Serveral application Protocols Physical Layer에서 통신 단위는 bit Data Link Lay.. 2023. 4. 7. 1. Introduction network : connected, communicating devices들의 그룹 (computers, printers ...) internet : 2개 이상의 network들이 서로 communicate할 수 있는 것 the internet : hundreds of thousands of interconnected networks Standards : cooperation of standards creation committes , forums , government regulatory agencies에서 개발됨 표준기관 - 국제 표준 : ITU, ISO , IEC , JTC1 - 지역 표준 : ETSI(유럽) ... - 국가 표준 : KATS(한국), ANSI(미국), BSI(영국) - 단체 표준.. 2023. 4. 6. 9. 과대적합, 과소적합, 규제, 교차 검증 과대적합(Overfitting) : 학습 데이터에 대해서는 높은 성능을 보이지만, 새로운 데이터에 대해서는 낮은 성능을 보이는 문제 모델이 학습 데이터에만 너무 적합해져서 일반화하지 못하는 문제 과소적합(Underfitting) : 모델이 데이터에 대한 패턴을 제대로 파악하지 못해 학습 데이터와 테스트 데이터 모두 성능이 낮은 상태, 모델이 너무 간단하거나 학습 데이터가 적어서 발생 규제(Regulation) : 과대적합 문제를 해결하기 위한 방법, 모델의 복잡도를 제한하여 과대 적합을 방지한다. L1, L2 규제가 있다. 교차 검증(Cross Validation) : 모델의 일반화 성능을 평가하기 위한 방법 중 하나, 데이터를 여러 개의 폴드(fold)로 나누어 각각을 테스트 데이터로 사용하고 나머지 .. 2023. 3. 19. 8. 사이킷런 경사하강법 사이킷런 (sklearn.linear_model)에서 제공하는 경사하강법 모듈 from sklearn.linear_model import SGDClassifier from sklearn.datasets import load_breast_cancer from sklearn.model_selection import train_test_split import numpy as np import matplotlib.pyplot as plt cancer = load_breast_cancer() x = cancer.data y = cancer.target x_train, x_test, y_train, y_test = train_test_split(x,y,stratify=y, test_size=0.2, random_s.. 2023. 3. 19. 이전 1 ··· 4 5 6 7 8 9 10 ··· 12 다음 728x90