• 大小: 14.03M
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2021-03-08
  • 语言: Matlab
  • 标签: matlab  nestswe  GAN  

资源简介

MATLAB中GAN网络实现,包含minist测试数据

资源截图

代码片段和文件信息

clc
clear
%% 构造真实训练样本 60000个样本 1*784维(28*28展开)
load mnist_uint8;

train_x = double(train_x(1:60000:)) / 255;
% 真实样本认为为标签 [1 0]; 生成样本为[0 1];
train_y = double(ones(size(train_x1)1));
% normalize
train_x = mapminmax(train_x 0 1);

rand(‘state‘0)
%% 构造模拟训练样本 60000个样本 1*100维
test_x = normrnd(01[60000100]); % 0-255的整数
test_x = mapminmax(test_x 0 1);

test_y = double(zeros(size(test_x1)1));
test_y_rel = double(ones(size(test_x1)1));

%%
nn_G_t = nnsetup([100 784]);
nn_G_t.activation_function = ‘sigm‘;
nn_G_t.output = ‘sigm‘;

nn_D = nnsetup([784 100 1]);
nn_D.weightPenaltyL2 = 1e-4;  %  L2 weight decay
nn.dropoutFraction = 0.5;   %  Dropout fraction 
nn.learningRate = 0.01;                %  Sigm require a lower learning rate
nn_D.activation_function = ‘

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       2506  2018-04-17 15:38  GANtest.m

     文件   14735220  2015-12-01 02:29  mnist_uint8.mat

----------- ---------  ---------- -----  ----

             14737726                    2


评论

共有 条评论