-
稀疏自动编码器的matlab代码
本资源是3层的自编码器加上稀疏正则项约束的matlab代码。隐层激活函数选sigmoid函数,输出层选线性函数,程序中以一个标准数据集sonar为例,使用该方法可以做无监督表征学习,数据压缩,多任务学习等(This resource is a 3-layer self-encoder plus matlab code for sparse regular term constraints. The hidden layer activation function selects the sigmoid function, and the output layer selects the linear function. The program uses a standard data set sonar as an example. This method can be used for unsupervised representation learning, data compression, multi-task learning, etc.)
- 2020-07-09 16:28:58下载
- 积分:1
-
10.1115@1.3227494
说明: 燃气轮机建模论文,主要有温度、转速、加速度控制,很详细!(Gas Turbine Modeling Paper)
- 2019-04-17 19:38:07下载
- 积分:1
-
神经网络剥皮
神经系统的源码ea,供大家学习,借鉴,修改(Neural source code EA for everyone to learn, learn, modify)
- 2020-06-30 21:00:02下载
- 积分:1
-
AudioRecording-master
说明: 不错的android录音代码,适合初学者学习(Android recording code is good)
- 2020-06-20 16:00:02下载
- 积分:1
-
24C02网上实例 对24C02的操作。读与写。
24C02网上实例 对24C02的操作。读与写。-24C02-line examples of the operation of the 24C02. Read and write.
- 2022-04-10 07:15:59下载
- 积分:1
-
gif控制
使用labview控制gif格式图片运动和停止(Use LabVIEW to control the motion and stop of the GIF format picture)
- 2018-04-19 12:27:49下载
- 积分:1
-
Gnuplot 5.2 Manual
说明: Gnuplot是一款命令行科学数据绘图软件,功能强大,本文件为gnuplot 5.2官方使用手册,pdf版(Gnuplot is a powerful command-line scientific data mapping software. This document is gnuplot 5.2 official manual, PDF version.)
- 2019-06-11 13:52:51下载
- 积分:1
-
Excelbiaogemima
解Excel表格密码,表格密码破解Excelbiaogemima(Excelbiaogemima Excelbiaogemima)
- 2016-08-13 11:12:48下载
- 积分:1
-
贪吃蛇源代码
一个基于Windows编程的贪吃蛇小游戏,用C/C++编写,适合新手阅读提高编程能力
一个基于Windows编程的贪吃蛇小游戏,用C/C++编写,适合新手阅读提高编程能力
一个基于Windows编程的贪吃蛇小游戏,用C/C++编写,适合新手阅读提高编程能力 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-03-03 21:26:25下载
- 积分:1
-
VC++转换COLORREF值为RGB分量
VC++转换COLORREF值为RGB分量,举个例子,在本例中,是将COLORREF值:0x000080FF转换成:R分量:0xFF、G分量:0x80、B分量:0x00,注意,并不是分离。请看定义:
//R分量
BYTE RED = GetRValue(cr);
//G分量
BYTE GREEN = GetGValue(cr);
//B分量
BYTE BLUE = GetBValue(cr);
CString strText = _T("");
strText.Format(_T("COLORREF值:0x%08X"), cr);
pDC->TextOut(100, 50, strText);
strText.Format(_T("R分量:0x%02X"), RED);
pDC->TextOut(100, 100, strText);
strText.Format(_T("G分量:0x%02X"), GREEN);
pDC->TextOut(100, 150, strText);
strText.Format(_T("B分量:0x%02X"), BLUE);
pDC->TextOut(100, 200, strText);
- 2022-06-13 02:13:45下载
- 积分:1