일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- TensorFlow
- deeplearning
- DataSet
- 딥러닝
- TFRecord
- TF
- loss
- opencv
- dtype
- 유로화
- qtdesigner
- 세계사
- itksnap
- Inference
- error
- pyqt
- Training
- 브렉시트
- 세계대전
- 유가 급등
- keras
- 비트코인
- Python
- numpy
- Perceptron
- img
- terminal
- cv2
- 퍼셉트론
- 블록체인
Archives
- Today
- Total
목록TFRecord (2)
활연개랑
[Tensorflow] TFrecord parsing 이후 dimension이 바뀌는 문제
해결법: tfrecord를 만들 때와 parsing할 때, 또는 그 이후 decode할 때 비트가 어떻게 되는지 잘 확인하세요. 예를들어서 int64로 통일이 되어있지 않은지 확인하시면 됩니다.
카테고리 없음
2022. 4. 8. 11:36
[Tensorflow] TypeError: Input 'bytes' of 'DecodeRaw' Op has type int64 that does not match expected type of string.
tfrecord를 만들 때 발생하는 에러 TypeError: Input 'bytes' of 'DecodeRaw' Op has type int64 that does not match expected type of string. parsing하는 과정에서 label parsing을 다음과 같이 했을 때 위 오류가 발생했다. label = tf.io.decode_raw(features['train/label'], tf.int64) label = tf.cast(label, tf.int64) 하지만, label에서는 decode_raw를 사용할 필요 없이 label = features['train/label'] 이렇게만 작성해주면 된다.
Python
2022. 4. 8. 10:52