250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- POD
- OpenCV
- paper review
- GUI
- MariaDB
- numpy
- 파이썬
- Computer Vision
- FLASK
- kubernetes
- tensorflow
- Django
- 장고
- Docker
- 컴퓨터 비전
- 논문 리뷰
- Web Programming
- pytorch
- Tkinter
- Deep Learning
- 텐서플로우
- yaml
- vue.js
- Python
- 파이토치
- 웹 프로그래밍
- 딥러닝
- 그래픽 유저 인터페이스
- k8s
- 데이터베이스
Archives
- Today
- Total
목록Callback (1)
Maxima's Lab
[Python, Tensorflow] Custom Callback 만들기 (Classification)
안녕하세요, 오늘은 Tensorflow 2에서 Classification 모델 학습 시 Callback을 Customize 하는 방법에 대해서 알아보겠습니다. MNIST 데이터 셋을 활용하여, 모델 학습하는 예시 입니다. import tensorflow as tf from tensorflow.keras.datasets import mnist from tensorflow.keras.models import Sequential from tensorflow.keras.layers import Flatten, Dense from tensorflow.keras.callbacks import Callback import numpy as np class SimpleCallBack(Callback): def __ini..
Python/Tensorflow
2024. 1. 30. 21:57