전체 글
Exprolation 17 난 스케치를 할 테니 너는 채색을 하거라 조건 없는 생성모델(Unconditional Generative Model), GAN 만약 GAN으로 MNIST data를 생성해낸다면 아래와 같이 생성될 것이다. 여기서 우리는 7이라는 숫자가 생성되기를 원하지만 GAN은 일정 확률로 0~9까지의 숫자를 만든다. 따라서 우리가 원하는 7이라는 값을 얻기 위해서는 수많은 노이즈를 생성해 넣어야할지도 모른다. 즉 일반적인 GAN과 같은 unconditioned generative model은 내가 생성하고자 하는 데이터에 대해 제어하기 힘들었다. 조건 있는 생성모델(Conditional Generative model), cGAN Conditional Generative Adversarial..
Lecture 11 | Detection and Segmentation Computer Vision Tasks Semantic Segmentation → 입력은 이미지이고 출력은 이미지의 모든 픽셀에 카테고리를 정한다. classification처럼 카테고리가 있지만 이미지 전체가 아니라 각각의 픽셀에 카테고리가 매겨진다. Classification + Localization → 이미지 분류 + 이미지 내에 객체가 어디에 있는지 네모박스를 그리는 것, Localization문제에서는 이미지내에 하나의 객체가 존재한다고 가정한다. 따라서 기본적으로 이미지내에 객체 하나만 찾아서 레이블을 매기고 위치를 찾아낸다. Object Detection → object detection의 task는 이미지에 나타나는 ..
Matrix vector products Matrix vector products Define $A\vec{x}$ Example the other way 자료: https://www.khanacademy.org/math/linear-algebra Linear Algebra | Khan Academy Learn linear algebra for free—vectors, matrices, transformations, and more. www.khanacademy.org
Exploration 16 다음에 볼 영화 예측하기 Session-Based Recommendation Session-Based Recommendation이란? 세션 데이터를 기반으로 유저가 다음에 클릭 또는 구매할 아이템응ㄹ 예측하는 추천 Session: 유저가 서비스를 이용하면서 발생하는 중요한 정보를 담은 데이터를 말하며, 블라우저가 조료되기 전까지 유저의 행동을 담은 시퀀스 데이터 사용데이터: YOOCHOOSE, 추천 엔진 솔류션 회사에서 공개한 E-Commerce데이터 유저에 대한 정보를 전혀 알 수 없다.(성별, 나이, 장소, 마지막 접속 낳짜, 이전 구매 내역 등등) 아이템에 대한 정보도 전혀 알 수 없다.(실제로 어떤 물건인지, 사진이나 설명, 가격) 비로그인 상태로 탐색하는 유저가 많다...
Lecture 10 | Recurrent Neural Networks RNN(Recurrent Nueral Network) RNN의 형태 RNN은 input, output의 형태에 따라 쓰임이 다르다. 종류 one to one: Vanilla Neural Network, 입력하나가 hidden layer를 거쳐 하나의 출력을 내보냄 one to many: Image captioning, 입력은 이미지와 같은 단일입력, 출력은 caption과 같은 가변출력 many to one: Sentiment Classification, 입력은 텍스트와 같은 가변입력, 출력은 하나의 감정과같은 단일 출력 many to many: Machine Translation, 가변입력과 가변출력 many to many: Vide..
Fundamental 31 뉴스기사 크롤링 및 분류 HTML과 태그 크롤링(crawling)이란? 웹 페이지로부터 데이터를 추출하는 행위를 말한다. 크롤링하는 소프트웨어는 크롤러(crawler)라고 부른다. 우리는 인터넷 익스플로러, 크롬등과 같은 인터넷 브라우저를 사용하여 인터넷 세상으 돌아다닌다. 이 웝 사이트들은 실은 HTML(HyperText Markup Language)이라는 마크업 언어롤 작성된 문서로 구성되어 있다. HTML과 태그(Tag) 이것은 HTML 문서입니다! HTML 문서는 기본적으로 정해진 문법을 지키며 작성되어 있다. 네이버 HTML 소스코드의 일부 네이버뉴스 연예 스포츠 선택자 선택자(Selector) 원활한 크롤링을 위해서는 HTML 문서 내의 선택자(Selector)를 이..
Vector triple product expansion Vector triple product expansion 자료: https://www.khanacademy.org/math/linear-algebra Linear Algebra | Khan Academy Learn linear algebra for free—vectors, matrices, transformations, and more. www.khanacademy.org
Exploration 15 문자를 읽을 수 있는 딥러닝 기계가 읽을 수 있나요? 사람이 문자를 읽는 방법 문자를 인식 인식한 문자를 해독 컴퓨터 비전에서의 용어 Detection Recognition 구글 OCR API def detect_text(path): """Detects text in the file.""" from google.cloud import vision import io client = vision.ImageAnnotatorClient() with io.open(path, 'rb') as image_file: content = image_file.read() image = vision.Image(content=content) response = client.text_detection(..
Solving linear systems with matrices Using matrix row-echelon form in order to show a linear system has no solutions Solving linear systems with matrices Using matrix row-echelon form in order to show a linear system has no solutions 자료: https://www.khanacademy.org/math/linear-algebra Linear Algebra | Khan Academy Learn linear algebra for free—vectors, matrices, transformations, and more. www.kh..



