基于LIF模型的SNN脉冲神经网络的verilog程序开发
Posted fpga&matlab
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基于LIF模型的SNN脉冲神经网络的verilog程序开发相关的知识,希望对你有一定的参考价值。
`timescale 1ns / 1ps
//
// Company:
// Engineer:
//
// Create Date: 2020/07/13 05:46:04
// Design Name:
// Module Name: LIF_Vt
// Project Name:
// Target Devices:
// Tool Versions:
// Description:
//
// Dependencies:
//
// Revision:
// Revision 0.01 - File Created
// Additional Comments:
//
//
module LIF_Vt(
input i_clk,
input i_rst,
input signed[15:0]i_Vtn,
input signed[15:0]i_deltat,
input signed[15:0]i_tao,
input signed[15:0]i_stn1,i_stn2,i_stn3,
input signed[15:0]i_W1j,i_W2j,i_W3j,
output signed[15:0]o_Vtn1,
//test
output signed[15:0]o_exp,
output signed[15:0]o_dat1,
output signed[15:0]o_dat2,
以上是关于基于LIF模型的SNN脉冲神经网络的verilog程序开发的主要内容,如果未能解决你的问题,请参考以下文章
基于SNN脉冲神经网络的Hebbian学习训练过程matlab仿真