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
- Python
- SSH
- 기타 연주
- JSON
- pandas
- label
- OpenCV
- Visual Studio
- pip
- mysql
- Linux
- 핑거스타일
- error
- 채보
- YOLO
- Selenium
- 프로그래머스
- windows forms
- VS Code
- 명령어
- Numpy
- C++
- 오류
- C
- LIST
- C#
- Docker
- ubuntu
- paramiko
- pytorch
Archives
- Today
- Total
기계는 거짓말하지 않는다
TensorFlow keras model fit UnimplementedError: Graph execution error 본문
AI
TensorFlow keras model fit UnimplementedError: Graph execution error
KillinTime 2023. 5. 5. 21:57Tensorflow 2.10 GPU 버전을 사용하였다.
keras 모델 fit 함수에서 오류가 발생했다.
아래는 오류 내용이다.
tensors = pywrap_tfe.TFE_Py_Execute(ctx._handle, device_name, op_name,
tensorflow.python.framework.errors_impl.UnimplementedError: Graph execution error:
...
Deterministic GPU implementation of unsorted segment reduction op not available.
[[{{node gradient_tape/sparse_categorical_crossentropy/SparseSoftmaxCrossEntropyWithLogits/UnsortedSegmentSum}}]] [Op:__inference_train_function_1210]
segment reduction 연산은 TensorFlow에서 분산 학습을 수행할 때 사용되는 연산 중 하나라고 한다.
이 경우 예외가 발생할 수 있는데 이를 비활성화할 수 있다.
os.environ['TF_DISABLE_SEGMENT_REDUCTION_OP_DETERMINISM_EXCEPTIONS'] = '1'
'AI' 카테고리의 다른 글
YOLO 텍스트 라벨을 이미지에 bbox 표시, 시각화 (0) | 2023.12.25 |
---|---|
Pytorch RuntimeError: Input type (~) and weight type (~) should be the same (0) | 2023.05.13 |
torch load_state_dict model key 변경 (0) | 2023.02.03 |
Darknet make libdarknet.so (0) | 2022.11.04 |
Labelme JSON data label 명 변경 (0) | 2022.10.28 |
Comments