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
- 웹 프로그래밍
- numpy
- k8s
- yaml
- GUI
- FLASK
- pytorch
- 딥러닝
- 논문 리뷰
- Python
- 컴퓨터 비전
- tensorflow
- MariaDB
- Tkinter
- 데이터베이스
- paper review
- Computer Vision
- 파이토치
- Deep Learning
- OpenCV
- Django
- 그래픽 유저 인터페이스
- 장고
- Web Programming
- kubernetes
- vue.js
- POD
- 텐서플로우
- Docker
- 파이썬
Archives
- Today
- Total
목록이미지 추가 (1)
Maxima's Lab
[Python, Tensorflow] Tensorboard 내 이미지 추가 방법 (Classficiation)
안녕하세요, 오늘은 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