英文: How can I have a multi-indexed torch Dataset? 问题 我有几个时间序列我想用循环神经网络进行分类。我想让 get_item 方法接受一个字典或元组,...
为什么这个深度学习卷积模型不能泛化?
英文: Why is this deep learning convolutional model not generalizing? 问题 我正在使用PyTorch训练一个卷积神经网络,用于处理3D...
将TensorFlow模型转换为PyTorch模型 – 模型没有学习
英文: Convert Tensoflow model to PyTorch model - model isn't learning 问题 以下是您要翻译的代码部分: import pand...
‘tuple’ object does not support item assignment in torch.cat()
英文: 'tuple' object does not support item assignment in torch.cat() 问题 I am trying to use the...
向量连接
英文: Vectors Concatenation 问题 假设我有三个向量 A、B、C > 向量大小为 256 > 向量大小为 256 > 向量大小为 256 现在我想按以下方式进行...
Pytorch自定义数据集具有多种返回数据类型。
英文: Pytorch Custom Dataset with multiple return datatypes 问题 在__getitem__()函数中,你可以选择分别返回每个元素,如 retur...
How to resume a pytorch training of a deep learning model while training stopped due to power issues or some other interrpts
英文: How to resume a pytorch training of a deep learning model while training stopped due to power is...
如何在PyTorch的conv2D层中指定批处理维度
英文: How to specify the batch dimension in a conv2D layer with pyTorch 问题 我有一个包含600x600灰度图像的数据集,通过数据加...
PyTorch是如何自动知道我的模型参数是什么的?
英文: How does pytorch automatically know what are my model's parameters? 问题 我已经定义了自定义类如下: class M...
separation of training data pyTorch
英文: separation of training data pyTorch 问题 这个错误是由于 torch.utils.data.random_split 函数的参数传递有问题导致的。你可以查看...
24