摘要: 一、torch.nn.modules 网络模型构建于一系列:nn.Conv2d、AvgPool2d、ReLU6、BatchNorm2d、CrossEntropyLoss等,由此基本操作组成。先看操作类型,再看操作组成方式。 1、属于nn.modules的操作类型 ① class torch.nn.C 阅读全文
posted @ 2022-01-31 00:14 shines87 阅读(425) 评论(0) 推荐(0) 编辑
摘要: 简介: 特征列(feature columns)是原始数据和 Estimator 之间的媒介,特征列形式丰富多样 但需要转换为神经网络唯一可以处理的类型。 常见的特征预处理方法包括:连续变量分箱化、离散变量one-hot、离散指标embedding等。在feature_column接口实现的9种不同 阅读全文
posted @ 2021-09-06 14:19 shines87 阅读(578) 评论(0) 推荐(0) 编辑
摘要: 接上https://www.cnblogs.com/shines87/p/15140744.html 一、代码整理 项目执行命令: object_detection>python model_main.py \ --logtostderr \ --model_dir=../image/ \ --pi 阅读全文
posted @ 2021-09-04 00:13 shines87 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 学号:SA20225516 姓名:徐川 实验与收获 -- 对课程的思考 一、Visual Studio Code编辑工具 使用优点:类比Jet Brain全家桶的产品几乎每一款软件只针对一门语言,而且安装体积庞大。VS Code则体积非常小,简洁实用;通过插件扩展功能并保证与原功能一样优秀,能编辑执 阅读全文
posted @ 2021-07-16 00:05 shines87 阅读(84) 评论(1) 推荐(0) 编辑
摘要: 环境 :window10 、IDEA 2018.2.4、jdk1.8.0_131、Mysql。 使用springboot框架,mybits作数据处理,Thymeleaf作试图渲染。参考文章 、 项目地址 。 一、创建项目 1、new/create project -> 选择spring initil 阅读全文
posted @ 2019-07-04 17:46 shines87 阅读(495) 评论(0) 推荐(0) 编辑
摘要: 先附上实例: 1 #pragma once 2 //dma.h -- inheritance and dynamic memory allocation 3 #ifndef DMA_H_ 4 #define DMA_H__ 5 #include<iostream> 6 #include<cstrin 阅读全文
posted @ 2019-01-17 23:34 shines87 阅读(2298) 评论(0) 推荐(0) 编辑
摘要: 先附上实例: 1 #pragma once 2 //String.h -- fixed and augmented string class define 3 #ifndef String_h_ 4 #define String_h_ 5 #include <iostream> 6 using st 阅读全文
posted @ 2019-01-17 12:33 shines87 阅读(415) 评论(0) 推荐(0) 编辑