분류 전체보기(118)
-
[고려대 정보보호대학원] 암호수학
목차 1. 암호학 개론 2. 정수론 3. 암호수학과 암호 응용 4. 대수학 중점분야 소수, 서로소, mod 연산, 합동 유클리드 알고리즘 페르마 정리/오일러 함수 중국인의 나머지 정리 유한체 연산 : 다항식 간의 사칙연산 ※필자의 경험결과, 암호수학은 정수론과 관련이 깊다. Algebric (대수학) : 수학 구조의 일반적 성질을 연구하는 분야 정수의 표현방법 ( b 진법 ) 1.공약수 (Def) e|a, e는 a의 약수이다. 2.Euclidean Algorithm (Theorem) 만일 A,B가 정수이고 A=BQ+R (Q,R은 정수) 이면, gcd(A,B)=gcd(B,R) 이다. gcd(작은 피제수,나머지) 나머지가 0이 될 때의 피제수 = gcd(A,B)이다 (Proof) ①gcd(A,B)= G ②g..
2020.07.27 -
[논문읽기] How Does Batch Normalization Help Optimization?
How Does Batch Normalization Help Optimization? 구성 0. Abstract 1. Introduction 2. Batch normalization and internal covariate shift ** 2.1 Does BatchNorm’s performance stem from controlling internal covariate shift?** 2.2 Is BatchNorm reducing internal covariate shift? 3 Why does BatchNorm work? 3.1 The smoothing effect of BatchNorm 3.2 Exploration of the optimization landscape 3.3 Is BatchNorm t..
2020.07.21 -
[Packt] Install Web server
link : XAMPP package XAMPP Installers and Downloads for Apache Friends What is XAMPP? XAMPP is the most popular PHP development environment XAMPP is a completely free, easy to install Apache distribution containing MariaDB, PHP, and Perl. The XAMPP open source package has been set up to be incredibly easy to install and to us www.apachefriends.org Locate the folder named htdocs. This is the fold..
2020.07.19 -
[OSS] Git/GitHub 고급 실습
실습준비 : git 설치하기 (git bash) https://git-scm.com/downloads Git - Downloads Downloads Mac OS X Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. GUI Clients Git comes with built-in GUI tools (git-gui, gitk), but there are several third-party tools for users looking for a platform-specific git-scm.com 1. Rebase 실습 할 GitHub 저장소 Clone 하기 # Rebase 실습할 GitHub 저장..
2020.07.18 -
[OSS] Git/GitHub 기본
실습 준비: 1) 깃허브 회원가입 2) 구름 io 회원가입 실습자료 링크 : bitly.kr/QaVcr4cS3pL 오픈소스 참여를 위한 Git / GitHub 기본 1 오픈소스 참여를 위한 Git/GitHub 기본실습 리얼리눅스 송태웅 docs.google.com 1. Commit 이란? 2. Fork & clone Git clone 1. Fork 부터 진행. # Commit 이란 : 소스파일의 변화분. 변화된 내용이 정리가 되어서 # Fork : GitHub 상에서 복사를 하는 것. (Push 권한 없고, local 환경 사라질 수 도 있어서) #( forked from pytorch/pytorch) # Clone : 다운로드 # 복사를해서 다운로드 받는게 정석. # 오픈소스 pytorch exampl..
2020.07.18 -
[Packt] JS
JS는 ECMAScript(ES) 사양을 따름. 현재는 ES9 버전 https://www.ecma-international.org/publications/standards/Ecma-262.htm Standard ECMA-262 Standard ECMA-262 ECMAScript® 2020 Language Specification 11th edition (June 2020) This Standard defines the ECMAScript 2020 general-purpose programming language. The following files can be freely downloaded: File name Size (Bytes) Content ECMA-262 editio www.ecma-intern..
2020.07.14