21个项目玩转深度学习

发布时间:2024-11-23 15:40

深度学习项目实战:图像分类 #生活技巧# #学习技巧# #深度学习技巧#

最新推荐文章于 2022-11-03 12:17:31 发布

chde2Wang 于 2019-06-17 19:28:04 发布

File "E:\Deep-Learning-21-Examples\chapter_3\data_prepare\src\tfrecord.py", line 341, in _find_image_files

random.shuffle(shuffled_index)

File "C:\ProgramData\Anaconda3\lib\random.py", line 275, in shuffle

x[i], x[j] = x[j], x[i]

TypeError: 'range' object does not support item assignment

random.shuffle(shuffled_index)
=>random.shuffle(list(shuffled_index))

File "E:\Deep-Learning-21-Examples\chapter_3\data_prepare\src\tfrecord.py", line 259, in _process_image_files

for i in xrange(len(spacing) - 1):

NameError: name 'xrange' is not defined

添加 from six.moves import xrange

File "E:\Deep-Learning-21-Examples\chapter_3\data_prepare\src\tfrecord.py", line 161, in _process_image

image_data = f.read()

UnicodeDecodeError: 'gbk' codec can't decode byte 0xff in position 0: illegal multibyte sequence

 with open(filename, ‘r’) as f:
=>with open(filename, ‘rb’) as f:

File "E:\Deep-Learning-21-Examples\chapter_3\data_prepare\src\tfrecord.py", line 101, in _convert_to_example

'image/colorspace': _bytes_feature(colorspace),

File "E:\Deep-Learning-21-Examples\chapter_3\data_prepare\src\tfrecord.py", line 78, in _bytes_feature

return tf.train.Feature(bytes_list=tf.train.BytesList(value=[value]))

TypeError: 'RGB' has type str, but expected one of: bytes

def _bytes_feature(value): 
    “”“Wrapper for inserting bytes features into Example proto.”“” 
    return tf.train.Feature(bytes_list=tf.train.BytesList(value=[value])) 
=> 
def _bytes_feature(value): 
    “”“Wrapper for inserting bytes features into Example proto.”“” 
    value = tf.compat.as_bytes(value) 
    return tf.train.Feature(bytes_list=tf.train.BytesList(value=[value]))

转载自原文:https://blog.csdn.net/u013099449/article/details/80891364  

网址:21个项目玩转深度学习 https://www.yuejiaxmz.com/news/view/214171

相关内容

项目式学习PBL=做项目?
【深度学习】深度学习语音识别算法的详细解析
旧物回收再捐赠,玩转环保新态度
走向深度学习
深度学习
吴恩达深度学习笔记
吴恩达深度学习课程
教育部答21记者:深入治理幼儿园小学超前超纲教学
Python深度学习实践:深度学习在虚拟助理中的应用
什么是深度学习,促进深度学习的策略 爱问知识人

随便看看