- 博客(5)
- 资源 (5)
- 收藏
- 关注
原创 原始GAN读代码过程中的分散知识点
1、关于噪声z的维度大小在论文《Effective data generation for imbalanced learning using Conditional Generative Adversarial Networks》 中提到,噪声z的维度dz,以及G和D内部隐藏层的数量是超参数GAN源代码是这样定义z的:# 噪声z是一个随机变量,服从[0,1]的正态分布,维度为(图像的高度*隐层的维度)z = Variable(Tensor(np.random.normal(0, 1, (.
2024-05-22 17:28:52 564 1
原创 Classification metrics can‘t handle a mix of continuous and multiclass targets
显示Classification metrics can't handle a mix of continuous and multiclass targets。于是看了一下y_true, y_pred的数据,发现经过CNN预测得到的y_pred不是整数,而y_true是整数。在用CNN网络做故障诊断时想要获取混淆矩阵,但是系统却报错了,原代码长这样。indexes长这样。
2024-05-22 17:28:12 413 1
原创 关于pytorch中view的用法
在读dcgan代码的过程中看到了一个nn.upsample的函数,于是打开函数释义看了一下,发现了一个view(1,1,2,2)的用法,不知其意,所以简单做了个试验(学习进度就是这样被落下的……)释义中的代码为:>>> input = torch.arange(1, 5, dtype=torch.float32).view(1, 1, 2, 2)>>> inputtensor([[[[ 1., 2.], [ 3., 4.]]]])..
2021-12-11 23:27:43 820 1
转载 sklearn的train_test_split()各函数参数含义解释(转载自博客园The-Chosen-One)
sklearn之train_test_split()函数各参数含义(非常全)在机器学习中,我们通常将原始数据按照比例分割为“测试集”和“训练集”,从 sklearn.model_selection 中调用train_test_split 函数简单用法如下:X_train,X_test, y_train, y_test =sklearn.model_selection.train_test_split(train_data,train_target,test_size=0.4, random_s.
2021-07-31 01:04:59 463
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人