摘要: 0001,常识1 计算机视觉的任务很多,有图像分类、目标检测、语义分割、实例分割和全景分割等,那它们的区别是什么呢?1、Image Classification(图像分类)图像分类(下图左)就是对图像判断出所属的分类,比如在学习分类中数据集有人(person)、羊(sheep)、狗(dog)和猫(c 阅读全文
posted @ 2019-03-14 20:12 Augustone 阅读(19061) 评论(0) 推荐(2)
摘要: 1,原文:https://blog.csdn.net/u010725283/article/details/78593410 感受野(receptive field)被称作是CNN中最重要的概念之一。为什么要研究感受野呐?主要是因为在学习SSD,Faster RCNN框架时,其中prior box和 阅读全文
posted @ 2019-03-14 09:27 Augustone 阅读(1815) 评论(0) 推荐(1)
摘要: 1,introduction Estimator 会封装下列操作: 训练 评估 预测 导出以供使用 预创建的 Estimator,也可以编写自定义 Estimator。所有 Estimator(无论是预创建的还是自定义)都是基于 tf.estimator.Estimator 类的类 2,Estima 阅读全文
posted @ 2019-03-12 22:36 Augustone 阅读(408) 评论(0) 推荐(0)
摘要: 1,tf-data两个新的抽象类 dataset表示一系列元素,其中每个元素包含一个或多个 Tensor 对象 创建来源(例如 Dataset.from_tensor_slices()),以通过一个或多个 tf.Tensor 对象构建数据集。 应用转换(例如 Dataset.batch()),以通过 阅读全文
posted @ 2019-03-12 22:23 Augustone 阅读(1485) 评论(0) 推荐(0)
摘要: 1,Goodness An intuitive interface—Structure your code naturally and use Python data structures. Quickly iterate on small models and small data. Easier 阅读全文
posted @ 2019-03-12 18:59 Augustone 阅读(288) 评论(0) 推荐(0)
摘要: 1,Sequential model model = tf.keras.Sequential() # Adds a densely-connected layer with 64 units to the model:model.add(layers.Dense(64, activation='re 阅读全文
posted @ 2019-03-12 18:25 Augustone 阅读(384) 评论(0) 推荐(0)
摘要: 1,获取数据 imdb = keras.datasets.imdb(train_data, train_labels), (test_data, test_labels) = imdb.load_data(num_words=10000) 2,查看处理变形数据 2.1,查看 print(train_ 阅读全文
posted @ 2019-03-11 20:48 Augustone 阅读(1502) 评论(0) 推荐(0)
摘要: 1,数据集下载 2,一系列数据检查 这一条特别 3,Create feature columns and input functions,特征列和输入函数 3.1,one-hot-encoding, normalization, and bucketization 3.2,数字型和分类型 fc = 阅读全文
posted @ 2019-03-11 20:43 Augustone 阅读(823) 评论(0) 推荐(0)
摘要: 1,机器学习的基本步骤 Import and parse the data sets. Select the type of model. Train the model. Evaluate the model's effectiveness. Use the trained model to ma 阅读全文
posted @ 2019-03-11 16:22 Augustone 阅读(1199) 评论(0) 推荐(0)
摘要: 1,一般描述 we saw that the accuracy of our model on the validation data would peak after training for a number of epochs, and would then start decreasing. 阅读全文
posted @ 2019-03-10 22:51 Augustone 阅读(1467) 评论(0) 推荐(0)