Loading

摘要: 数据预处理 import os os.makedirs(os.path.join('..','data'),exist_ok=True) data_file=os.path.join('..','data','house_tiny.csv') with open(data_file,'w') as 阅读全文
posted @ 2025-01-06 21:04 虾饺爱下棋 阅读(60) 评论(0) 推荐(0)
摘要: 基础详解-part1 import torch x=torch.arange(12) x x.shape x.numel() #数组中元素的总数 # 修改形状 x.reshape(3,4) torch.zeros((2,3,4)) # 两层,三行,四列 print(torch.tensor([[2, 阅读全文
posted @ 2025-01-06 15:11 虾饺爱下棋 阅读(30) 评论(0) 推荐(0)