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
- GUI
- paper review
- 파이썬
- 웹 프로그래밍
- tensorflow
- POD
- Deep Learning
- 장고
- FLASK
- pytorch
- 데이터베이스
- kubernetes
- Python
- 컴퓨터 비전
- Computer Vision
- vue.js
- Django
- 딥러닝
- Web Programming
- MariaDB
- 파이토치
- 텐서플로우
- k8s
- OpenCV
- 논문 리뷰
- numpy
- 그래픽 유저 인터페이스
- Docker
- yaml
- Tkinter
Archives
- Today
- Total
목록tf.argmin (1)
Maxima's Lab
[Python, Tensorflow] tensorflow.math (tf.abs, tf.add, tf.multiply, tf.argmax, tf.argmin)
오늘은 Tensorflow 내 Math 함수들에 대해서 알아보겠습니다. tensorflow.math 내 사용해 볼 함수들은 다음과 같습니다. tf.abs() : Tensor 내 각 성분들의 절대값을 계산하여 Tensor로 반환 tf.add() : 서로 다른 두 Tensor들의 각 성분들을 더하여 Tensor로 반환 tf.multiply() : 서로 다른 두 Tensor들의 각 성분들을 곱하여 Tensor로 변환 tf.argmax(), tf.argmin() : Tensor 내 특정 축(axis)를 기준으로 각각 최대값과 최소값의 인덱스들을 찾아 Tensor로 반환 # tf.abs() import tensorflow as tf x = tf.constant([-1.5]) print(tf.abs(x)) tf.T..
Python/Tensorflow
2022. 7. 10. 01:03