tensorflow 입력 대기 열 을 사용 하여 파일 을 읽 는 중 오류 가 발생 했 습 니 다.
1675 단어 tensorflow
input_queue = tf.train.string_input_producer([filenames_file], shuffle=False)
line_reader = tf.TextLineReader()
_, line = line_reader.read(input_queue)
split_line = tf.string_split([line]).values
center_image_path = tf.string_join([self.data_path, '/',split_line[0]])
top_image_path = tf.string_join([self.data_path,'/', split_line[1]])
bottom_image_path = tf.string_join([self.data_path,'/', split_line[2]])
horizonal_image_path0 = tf.string_join([self.data_path,'/', split_line[3]])
horizonal_image_path1 = tf.string_join([self.data_path,'/', split_line[4]]
2018-10-08 20:26:26.408728: W tensorflow/core/framework/op_kernel.cc:1318] OP_REQUIRES failed at strided_slice_op.cc:105 : Invalid argument: slice index 0 of dimension 0 out of bounds. 2018-10-08 20:26:26.408813: W tensorflow/core/framework/op_kernel.cc:1318] OP_REQUIRES failed at strided_slice_op.cc:105 : Invalid argument: slice index 3 of dimension 0 out of bounds. 2018-10-08 20:26:26.408830: W tensorflow/core/framework/op_kernel.cc:1318] OP_REQUIRES failed at strided_slice_op.cc:105 : Invalid argument: slice index 4 of dimension 0 out of bounds. 2018-10-08 20:26:26.408843: W tensorflow/core/framework/op_kernel.cc:1318] OP_REQUIRES failed at strided_slice_op.cc:105 : Invalid argument: slice index 2 of dimension 0 out of bounds. 2018-10-08 20:26:26.408857: W tensorflow/core/framework/op_kernel.cc:1318] OP_REQUIRES failed at strided_slice_op.cc:105 : Invalid argument: slice index 1 of dimension 0 out of bounds.
이 경우 txt 파일 한 줄 을 읽 을 때 슬라이스 를 하기 때문에 슬라이스 한 데이터 가 부족 할 수 있 습 니 다.이 때 대기 열 에서 읽 은 파일 이 잘못 생 성 되 었 는 지 확인 해 야 합 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Mediapipe를 사용한 맞춤형 인간 포즈 분류OpenCV의 도움으로 Mediapipe를 사용하여 사용자 지정 포즈 분류 만들기 Yoga Pose Dataset을 사용하여 사용자 정의 인간 포즈 분류를 생성하겠습니다. 1. 리포지토리 복제: 데이터세트 다운로드:...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.