Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - NN
Search - NN - List
离散余弦变换(DCT)是一种常用的数字速率变换编码方法。DCT首先将整个图像分割成n×n像素块,然后在n×n像素块上逐帧执行DCT变换。由于图像的高频成分很小,与高频分量对应的系数通常为零,肉眼对高频分量的变化并不敏感, 因此,我们使会用简洁的定量方法。因此,数字传输系数的速率远小于用于传输图像像素的数字速率。到达接收机后,逆离散余弦变换返回到样本值。虽然会有一定的失真,但人眼是可以接受的。(The coefficients of the DCT domain motion compensation error or the original image information convert into blocks are represented by different frequency components. It has two advantages: first, signal 1, most of the energy in the small range is concentrated in the frequency domain. Such a description is an important part of several key points. Second, mapping the frequency domain decomposition process to the human visual system.)
Update : 2024-04-29 Size : 6259712 Publisher : Mrrrrrrrrrrrrrrrr

DL : 0
quickpropagation neural network with java language
Update : 2024-04-29 Size : 5161984 Publisher : victor39

实现C++的Q8等参元程序, //输入问题类型D[0],积分点数H[0] inFile>>D[0]>>H[0]; //输入单元数EN,结点数NN,约束数,FXN、FYN,载荷数SXN,SYN,面载荷数KQ inFile>>NN>>NE>>KU>>KV>>KRX>>KRY>>KQ; //输入材料基本数据 inFile>>EO>>PO>>RU>>RPM; //输入结点坐标points[NN] //输入结点编号JE[8][NE](Q8 isoparametric element program)
Update : 2024-04-29 Size : 4096 Publisher : handan1123

OtherNN
DL : 0
本压缩包内容为神经网络测试代码,基本的神经网络基本框架。neural network(The content of this compressed package is neural network testing code, the basic framework of neural network.)
Update : 2024-04-29 Size : 81920 Publisher : qq2263281768

OtherNN
DL : 0
神经网络应用实例,根据伪距与误差情况判断GPS工作状况(Neural Network Application Example)
Update : 2024-04-29 Size : 4096 Publisher : hdqwje

通信系统的端到端学习是a 引人入胜的新颖概念迄今为止仅被验证 模拟基于块的传输。它允许学习 发射机和接收机实现为深度神经网络 (NN),它们针对任意可区分的端到端进行了优化 performancemetric,例如块错误率(BLER)。在本文中,我们 证明无线传输是可能的:我们建造, 训练,并运行完整的通讯系统 的神经网络使用非同步的现成软件定义无线电 和开源深度学习软件库。(End-to-end learning of communications systems is a fascinating novel concept that has so far only been validated by simulations for block-based transmissions. It allows learning of transmitter and receiver implementations as deep neural networks (NNs) that are optimized for an arbitrary differentiable end-to-end performancemetric, block error rate (BLER). In this paper, we demonstrate that over-the-air transmissions are possible:We build, train, and run a complete communications system solely composed of NNs using unsynchronized off-the-shelf software-defined radios and open-source deep learning software libraries.)
Update : 2024-04-29 Size : 665600 Publisher : 哈互惠哈

DL : 2
使用可变模式分解的神经网络预测模型,可用于风速、电价预测等等。(Neural network prediction model using variable pattern decomposition can be used for wind speed, price forecasting and so on.)
Update : 2024-04-29 Size : 128000 Publisher : Swanna

DL : 0
浙大PTA练习系统NA1004 比较雅各比迭代和高斯塞德尔迭代(Use Jacobi and Gauss-Seidel methods to solve a given n×n linear system A x ⃗ = b ⃗ with an initial approximation x ⃗ (0) . Note: When checking each a ii , first scan downward for the entry with maximum absolute value (a ii included). If that entry is non-zero, swap it to the diagonal. Otherwise if that entry is zero, scan upward for the entry with maximum absolute value. If that entry is non-zero, then add that row to the i-th row.)
Update : 2024-04-29 Size : 110592 Publisher : qiuyingyue

数据挖掘matlab源码,包含机器学习领域中经典算法如ID3,C4 5,NN,CARD,EM等(Data mining matlab source code, including the classical algorithms in the field of machine learning, such as ID3,C4 5 NNNCARDUM, etc.)
Update : 2024-04-29 Size : 665600 Publisher : vidao

AI-NN-PRNN
DL : 1
人工神经网络中的BP算法matlab代码实现(Realization of BP algorithm in artificial neural network)
Update : 2024-04-29 Size : 8050688 Publisher : wangtong421

编码: (1)进行颜色转换,将RGB格式转换为YUV格式。 (2)将待编码的N×N的图像分解成(N/8)^ 2 个大小为8×8的子图像。 (3)对每个子图像进行DCT变换,得到各子图像的变换系数。这一步的实质是把空间域表示的图像转换成频率域表示的图像。 (4)对变换系数进行量化。 (5)进行Z字形重排 (6)使用霍夫曼变长变码编码器对量化的系数进行编码,得到压缩后的图像(数据)。 解码: (1) 对压缩的图像数据进行解码,得到用量化系数表示的图像数据。 (2) 进行反Z字型重排 (3)用与编码时相同的量化函数或量化值表对用量化系数表示的图像数据进行逆量化,得到每个子图像的变换系数。 (4)对逆量化得到的每个子图像的变换系数进行反向正交变换(如反向DCT变换等),得到(N/8)^2 个大小为8×8的子图像。 (5)将(N/8)^2 个大小为8×8的子图像重构成一个N×N的图像。 (6)进行颜色组合,将YUV格式转换为RGB格式图像。(JPEG compression and decompression process)
Update : 2024-04-29 Size : 843776 Publisher : 洪世宽

DL : 0
三层神经网络的Labview,没有使用任何模块,BP误差传递用矩阵实现,并含有MNIST数据集。(NN from Labview, including labview file and MNIST data file.)
Update : 2024-04-29 Size : 15417344 Publisher : 张旭SB

matlabDOA
DL : 1
利用神经网络实现电磁波信号的波达角预测,MATLAB实现方法(Prediction of Signal Arrival Angle of Arrival Using Neural Network)
Update : 2024-04-29 Size : 3072 Publisher : apatuzz

神经网络基础ppt,课件来源于吴恩达老师深度学习课程课件(Ppt of neural network foundation, the courseware comes from the courseware of in-depth learning of teacher Wu enda)
Update : 2024-04-29 Size : 12324864 Publisher : tqp

DL : 0
this code for neural network developed and tested completly
Update : 2024-04-29 Size : 218112 Publisher : mamlooki

Sample neuralnet code
Update : 2022-04-02 Size : 136471 Publisher : Dormin
« 1 2 ... 44 45 46 47 48 49»
DSSZ is the largest source code store in internet!
Contact us :
1999-2046 DSSZ All Rights Reserved.