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

안녕하세요, 오늘은 Tensorboard 내 학습 중 사용하는 Images를 추가하는 방법에 대해서 알아보겠습니다. 전체 코드는 다음과 같습니다. import tensorflow as tf from tensorflow import keras import numpy as np import datetime class CustomImageLogger(tf.keras.callbacks.Callback): def __init__(self, log_dir, validation_data, num_images=3): super().__init__() self.log_dir = log_dir self.num_images = num_images self.validation_data = validation_data def ..
Python/Tensorflow
2023. 11. 9. 22:44