일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- rocksdb
- ssd
- 키워드
- memory
- USENIX
- Flash Memory
- deep learning
- kernel
- Operating System
- performance
- 시스템 프로그래밍
- software
- framework
- Machine Learning
- FTL
- storage system
- linux
- 시스템 소프트웨어
- hardware
- github
- overflow
- Intel
- Samsung
- 포트 번호 변경
- Cache
- core dumped
- 커널 프로그래밍
- Git
Archives
- Today
- Total
목록neural network (1)
Happy to visit my research note ^^

이번 챕터에서는 Neural Network를 공부하면서 해당 연습 문제를 학습한 과정을 보여드립니다. Create Neural Network Model using Keras import keras from keras.models import Sequential from keras.layers import Dense, Activation 위 코드는 keras를 사용해서 Neural Network model을 구성하는 코드이다. 우선, 'keras' modul을 import 해야한다. 그리고 'Sequential' model을 생성한다. 'Sequential' model은 layer를 sequential하게 차례대로 쌓아서 만드는 가장 간단한 neural network model이다. 다음으로, 'Dense..
AI & Machine Learning
2023. 4. 27. 18:08