DrawingProcess
드프 DrawingProcess
DrawingProcess
전체 방문자
오늘
어제
«   2025/06   »
일 월 화 수 목 금 토
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30
  • 분류 전체보기 (967)
    • Profile & Branding (25)
      • Career (18)
    • IT Trends (254)
      • Conference, Faire (Experien.. (31)
      • News (187)
      • Youtube (19)
      • TED (8)
      • Web Page (2)
      • IT: Etc... (6)
    • Contents (97)
      • Book (66)
      • Lecture (31)
    • Project Process (94)
      • Ideation (0)
      • Study Report (34)
      • Challenge & Award (22)
      • 1Day1Process (5)
      • Making (5)
      • KRC-FTC (Team TC(5031, 5048.. (10)
      • GCP (GlobalCitizenProject) (15)
    • Study: ComputerScience(CS) (72)
      • CS: Basic (9)
      • CS: Database(SQL) (5)
      • CS: Network (14)
      • CS: OperatingSystem (3)
      • CS: Linux (39)
      • CS: Etc... (2)
    • Study: Software(SW) (95)
      • SW: Language (29)
      • SW: Algorithms (1)
      • SW: DataStructure & DesignP.. (1)
      • SW: Opensource (15)
      • SW: Error Bug Fix (43)
      • SW: Etc... (6)
    • Study: Artificial Intellige.. (149)
      • AI: Research (1)
      • AI: 2D Vision(Det, Seg, Tra.. (35)
      • AI: 3D Vision (70)
      • AI: MultiModal (3)
      • AI: SLAM (0)
      • AI: Light Weight(LW) (3)
      • AI: Data Pipeline (7)
      • AI: Machine Learning(ML) (1)
    • Study: Robotics(Robot) (33)
      • Robot: ROS(Robot Operating .. (9)
      • Robot: Positioning (8)
      • Robot: Planning & Control (7)
    • Study: DeveloperTools(DevTo.. (83)
      • DevTool: Git (12)
      • DevTool: CMake (13)
      • DevTool: NoSQL(Elastic, Mon.. (25)
      • DevTool: Container (17)
      • DevTool: IDE (11)
      • DevTool: CloudComputing (4)
    • 인생을 살면서 (64)
      • 나의 취미들 (7)
      • 나의 생각들 (42)
      • 여행을 떠나자~ (10)
      • 분기별 회고 (5)

개발자 명언

“ 매주 목요일마다 당신이 항상 하던대로 신발끈을 묶으면 신발이 폭발한다고 생각해보라.
컴퓨터를 사용할 때는 이런 일이 항상 일어나는데도 아무도 불평할 생각을 안 한다. ”

- Jef Raskin

맥의 아버지 - 애플컴퓨터의 매킨토시 프로젝트를 주도

인기 글

최근 글

최근 댓글

티스토리

hELLO · Designed By 정상우.
DrawingProcess

드프 DrawingProcess

[AI] Sequential, Functional, Model sub-classing using Keras and TensorFlow 2.0
Study: Artificial Intelligence(AI)

[AI] Sequential, Functional, Model sub-classing using Keras and TensorFlow 2.0

2020. 9. 8. 21:32
반응형

 

Keras and TensorFlow 2.0 provide you with three methods to implement your own neural network architectures:

  1. Sequential API
  2. Functional API
  3. Model subclassing

Summary

In this tutorial you learned the three ways to implement a neural network architecture using Keras and TensorFlow 2.0:

  • Sequential: Used for implementing simple layer-by-layer architectures without multiple inputs, multiple outputs, or layer branches. Typically the first model API you use when getting started with Keras.
  • Functional: The most popular Keras model implementation API. Allows everything inside the Sequential API, but also facilitates substantially more complex architectures which include multiple inputs and outputs, branching, etc. Best of all, the syntax for Keras’ Functional API is clean and easy to use.
  • Model subclassing: Utilized when a deep learning researcher/practitioner needs full control over model, layer, and training procedure implementation. Code is verbose, harder to write, and even harder to debug. Most deep learning practitioners won’t need to subclass models using Keras, but if you’re doing research or custom implementation, model subclassing is there if you need it!

If you’re interested in diving head-first into the world of computer vision/deep learning and discovering how to:

  • Design and train Convolutional Neural Networks for your project on your own custom datasets.
  • Learn deep learning fundamentals, rules of thumb, and best practices.
  • Replicate the results of state-of-the-art papers, including ResNet, SqueezeNet, VGGNet, and others.
  • Train your own custom Faster R-CNN, Single Shot Detectors (SSDs), and RetinaNet object detectors.
  • Use Mask R-CNN to train your own instance segmentation networks.

# 참고 : https://www.pyimagesearch.com/2019/10/28/3-ways-to-create-a-keras-model-with-tensorflow-2-0-sequential-functional-and-model-subclassing/

 

3 ways to create a Keras model with TensorFlow 2.0 (Sequential, Functional, and Model Subclassing) - PyImageSearch

Keras and TensorFlow 2.0 provide you with three methods to implement your own neural network architectures:, Sequential API, Functional API, and Model subclassing. Inside of this tutorial you’ll learn how to utilize each of these methods, including how t

www.pyimagesearch.com

 

반응형
저작자표시 비영리 변경금지 (새창열림)

'Study: Artificial Intelligence(AI)' 카테고리의 다른 글

[논문리뷰] MSKVS: Adaptive mean shift-based keyframe extraction for video summarization and a new objective verification approach (JVCI 2018)  (0) 2021.05.25
[논문리뷰] A Survey on Video Summarization Techniques (IJCA 2015)  (0) 2021.05.25
[AI] back-propagation supplementary explanation  (0) 2020.09.01
[Vision] 용어정리(epoch, batch size, )  (0) 2020.09.01
[논문리뷰] colorBased Hands Tracking System for sign language recognition ( IEEE 1998 )  (0) 2020.02.04
    'Study: Artificial Intelligence(AI)' 카테고리의 다른 글
    • [논문리뷰] MSKVS: Adaptive mean shift-based keyframe extraction for video summarization and a new objective verification approach (JVCI 2018)
    • [논문리뷰] A Survey on Video Summarization Techniques (IJCA 2015)
    • [AI] back-propagation supplementary explanation
    • [Vision] 용어정리(epoch, batch size, )
    DrawingProcess
    DrawingProcess
    과정을 그리자!

    티스토리툴바