Skip to content

Latest commit

 

History

History
397 lines (310 loc) · 26.1 KB

MASTER_PLAN.md

File metadata and controls

397 lines (310 loc) · 26.1 KB

10일 일정 마스터 일정


교육 목표

딥러닝을 이해하고 실제 문제에 적용하여 해결할 수 있다.


교육 상세 목표

  • 딥러닝을 이해한다.
  • 딥러닝을 적용할 수 있는 문제를 이해한다.
  • 딥러닝을 실 문제에 적용하는 방법을 이해한다.
  • 딥러닝에 적용하기 위한 데이터 처리방법을 이해한다.
  • 데이터 처리방법을 파악하고 구현할 수 있다.
  • 딥러닝을 적용하여 실제 문제를 해결한다.

일자별 계획

1일차

  • 인공지능 개념 및 동작 원리의 이해 : deep_learning_intro.pptx

    • Perceptron, MLP, DNN 소개
    • DNN의 학습 이해
    • AI, 머신러닝, 딥러닝의 이해
    • 딥러닝 상세 기술 이해
  • 딥러닝 개발 환경

  • 기본 linux 명령의 이해와 실습 : linux.md


2일차


3일차


4일차


5일차


6일차


7일차

  • 물체 탐지

8일차


9일차


10일차


기타

성능 개선

How-To


환경


기타 자료


교육에 사용된 외부 자료


딥러닝 활용을 위한 지식 구조

Environment
    jupyter
	colab
	usage
		!, %, run
    GCP virtual machine
linux
	ENV
	command
		cd, pwd, ls
		mkdir, rm, cp
		head, more, tail, cat
	util
		apt
		git, wget
		grep, wc, tree
		tar, unrar, unzip
	gpu
		nvidia-smi

python
	env
		python
			interactive
			execute file
		pip
	syntax
        variable
        data
            tuple
            list
            dict
            set
        loop
        if
        comprehensive list
        function
        class
	module
		import

libray
    numpy
        load
        operation
        shape
        slicing
        reshape
        axis + sum, mean
    pandas
        load
        view
	    operation
        to numpy
    seaborn
        charts
    matplot
        plot
        scatter
        hist
        multi draw
        show image

Deep Learning
    DNN
        concept
            layer, node, weight, bias, activation
            cost function
            GD, BP
        data
            x, y
            train, validate, test
            shuffle
        learning curve : accuracy, loss
        tuning
            overfitting, underfitting
            dropout, batch normalization, regularization
            data augmentation
        Transfer Learning
    type
        supervised
        unsupervised
        reinforcement
    model
        CNN
            vanilla, named CNN
        RNN
        GAN
    task
        Classification
        Object Detection
        Generation
	Segmentation
	Pose Extraction
	Noise Removing
	Super Resolution
	Question answering
	Auto Captioning
    data type
    	attribute data
	image data
	natural language data
	time series data

TensorFlow/Keras
    basic frame
        data preparing
            x, y
            train, valid, test
            normalization
            ImageDataGenerator
        fit
        evaluate
        predict
    model
        activation function
        initializer
    tuning
        learning rate
        regularizer
        dropout
        batch normalization
    save/load
    compile
        optimizer
        loss
        metric