上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 30 下一页
摘要: 1、图片维度增减 tf.expand_dims(input, 0) #(256, 256, 3) -> (1, 256, 256, 3)input[tf.newaxis, ...] #(256, 256, 3) ->(1, 256, 256, 3) 阅读全文
posted @ 2021-08-01 15:46 kuaqi 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 1、显示模型结构(model architecture) generator = Generator() tf.keras.utils.plot_model(generator, show_shapes = True, dpi=64) 2、 阅读全文
posted @ 2021-08-01 00:47 kuaqi 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 安装环境tensorflow2.5+python3.8.8 https://blog.csdn.net/xubuhui/article/details/100915320 1、下载模型源码 下载地址:https://github.com/tensorflow/models 2、安装protoc 地址 阅读全文
posted @ 2021-07-28 19:03 kuaqi 阅读(357) 评论(0) 推荐(0) 编辑
摘要: 一 阅读全文
posted @ 2021-07-24 23:50 kuaqi 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 一、 阅读全文
posted @ 2021-07-24 23:50 kuaqi 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 一、一般模型搭建 1、使用sequential建立模型 data_augmentation = keras.Sequential([ layers.experimental.preprocessing.RandomFlip("horizontal", input_shape=(img_height, 阅读全文
posted @ 2021-07-24 23:47 kuaqi 阅读(318) 评论(0) 推荐(0) 编辑
摘要: 一、数据加载 1、加载文件夹下图片数据:不同类图片放在不同的文件夹下 batch_size = 32 #next(iter(train_ds)),一次迭代32张图片img_height = 224img_width = 224 train_ds = tf.keras.preprocessing.im 阅读全文
posted @ 2021-07-24 23:37 kuaqi 阅读(720) 评论(0) 推荐(0) 编辑
摘要: 1、字符串操作':\\' 替换为 '/' https://blog.csdn.net/qq_38463737/article/details/106965958 '/'.join(str_path.split('\\')) # 直接用str_path.displace('\\', '//')在win 阅读全文
posted @ 2021-07-16 18:26 kuaqi 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 1、排序sorted:将数组按某一值排序 def sort_by_target(mnist): reorder_train = np.array(sorted([(target, i) for i, target in enumerate(mnist.target[:60000])]))[:, 1] 阅读全文
posted @ 2021-07-15 23:27 kuaqi 阅读(190) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_40922744/article/details/102872607:docker安装、docker部署深度学习模型 一 、docker安装 二、使用docker拉取TensorFlow Serving最新版镜像 docker pull te 阅读全文
posted @ 2021-07-15 17:47 kuaqi 阅读(603) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 30 下一页