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
- 웹 프로그래밍
- Tkinter
- 컴퓨터 비전
- Django
- OpenCV
- tensorflow
- paper review
- 파이토치
- k8s
- pytorch
- vue.js
- 파이썬
- kubernetes
- POD
- FLASK
- 텐서플로우
- Deep Learning
- 딥러닝
- yaml
- Docker
- Python
- 데이터베이스
- GUI
- Web Programming
- numpy
- Computer Vision
- 장고
- 그래픽 유저 인터페이스
- 논문 리뷰
- MariaDB
Archives
- Today
- Total
목록tf.reduce_max (1)
Maxima's Lab
[Python, Tensorflow] tensorflow.math (tf.reduce_max, tf.reduce_mean, tf.reduce_min, tf.reduce_prod, tf.reduce_sum)
오늘은 Tensorflow 내 Math 함수들에 대해서 알아보겠습니다. tensorflow.math 내 사용해 볼 함수들은 다음과 같습니다. tf.reduce_max(), tf.reduce_mean(), tf.reduce_min() : Tensor 내 특정 축(axis)를 기준으로 각각 최대값, 평균값, 최소값을 Tensor로 반환 tf.reduce_prod(), tf.reduce_sum() : Tensor 내 측정 축(axis)를 기준으로 각각 곱하는(더하는) 연산을 하여 Tensor로 반환 # tf.reduce_max(), tf.reduce_mean(), tf.reduce_min() x = tf.constant([[1.0, 0.5, -5.0, 5.0], [0.5, 7.0, -3.0, -9.0]]) p..
Python/Tensorflow
2022. 7. 10. 01:04