PyTorch遇到的error2

这篇博客介绍了在升级PyTorch到0.4.0版本后,如何解决关于0-dim tensor的警告问题,并提供了一个多项式拟合的示例,包括构建模型、损失计算、反向传播和参数更新的过程。最后,展示了实际与预测的拟合曲线。
摘要由CSDN通过智能技术生成

廖星宇 多项式拟合

UserWarning: invalid index of a 0-dim tensor. This will be an error in PyTorch 0.5. Use tensor.item() to convert a 0-dim tensor to a Python number 

将pytorch更新到0.4.0最新版后对0.3.1版本代码会有如下警告,它在提醒用户下个版本这将成为一个错误

修改:

#    print_loss = loss.data[0]
    print_loss = loss.item()

#!/usr/bin/env python2
# -*- coding: utf-8 -*-
"""
Created on Fri Sep 14 16:19:59 2018

@author: lthpc
"""

import numpy as np
import matplotlib.pyplot as plt
import torch
from torch.autograd import Variable
from torch import nn,optim

def make_features(x):
    '''Builds features i.e. a matrix with columns [x, x^2, x^3].'''
    x = x.unsqueeze(1)
    return torch.cat([x ** i for i in range(1,4)],1)

W_target = torc

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值