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