随笔分类 -  深度学习-classification

摘要:之前做彭老师的项目(人体属性),就是有这个问题! 例如: a = torch.Tensor((1,2,3)) b = torch.Tensor((3,4,5)) 想要变成[[1,2,3],[3,4,5]] 错误做法: a = np.array(a.data.cpu()) b = np.array(b 阅读全文
posted @ 2019-03-11 14:28 freebirds 阅读(449) 评论(0) 推荐(0)