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
- OpenCV
- Tkinter
- Deep Learning
- 파이썬
- 파이토치
- Python
- 컴퓨터 비전
- k8s
- pytorch
- Docker
- 그래픽 유저 인터페이스
- 웹 프로그래밍
- paper review
- FLASK
- MariaDB
- Django
- vue.js
- 데이터베이스
- tensorflow
- Computer Vision
- POD
- Web Programming
- 딥러닝
- kubernetes
- GUI
- 장고
- yaml
- numpy
- 텐서플로우
- 논문 리뷰
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