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