
深度学习
数学工具构造器
这个作者很懒,什么都没留下…
展开
-
理解keras的CNN中padding='causal'
This is a great concise explanation about what is “causal” padding:One thing that Conv1D does allow us to specify is padding=“causal”. This simply pads the layer’s input with zeros in the front so t...原创 2020-01-19 20:01:49 · 4801 阅读 · 2 评论 -
keras example
文章目录CNNmnist_cnn.pyAEmnist_denoising_autoencoder.pyRNNGANCNNmnist_cnn.py'''Trains a simple convnet on the MNIST dataset.Gets to 99.25% test accuracy after 12 epochs(there is still a lot of margi...原创 2020-01-17 21:25:00 · 669 阅读 · 0 评论 -
自组织神经网络(Self Organize feature Map,SOM)
相关资料SOM(自组织映射神经网络)——理论篇SOM(自组织映射神经网络)——案例篇已经实现的库MiniSomSOMPYRSOMKohonen_SOM_TensorflowSelfOrganizingMaps代码实现#%%!pip install minisom#%%from sklearn import datasetsfrom sklearn.model_selec...原创 2019-11-02 22:03:05 · 1384 阅读 · 0 评论 -
RBF径向基神经网络
git clone git@github.com:PetraVidnerova/rbf_keras.git今天学习了RBF径向基神经网络。分为初始化径向基参数训练得到隐层参数其中1由无监督预训练得到,2由监督学习得到。1:随机选取中心法自组织选取法有监督选取重心法正交最小二乘法比较常用的是Kmeans聚类得到RBF的中心点和方差。方差的计算公式:σi=cmax2...原创 2019-11-02 17:08:23 · 576 阅读 · 0 评论