摘要: tensor to numpy tensor数据在cpu上: 如果tensor数据在cpu上,直接使用.numpy()就可以转化。 例子: 注意:torch 和 numpy 转化后 指向地址相同 如果修改原始数据,那么转换后的数据也会修改,例子: tensor数据在gpu上: 如果tensor数据在 阅读全文
posted @ 2022-07-21 11:27 CharlesLC 阅读(214) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-07-03 23:45 CharlesLC 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-06-23 00:26 CharlesLC 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-06-16 17:43 CharlesLC 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-06-16 01:01 CharlesLC 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-06-05 15:29 CharlesLC 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 前言 为了下次方便查阅,总结了一些常用git操作: git config --global user.name xxx:设置全局用户名,信息记录在~/.gitconfig文件中 后续更新 git config --global user.email xxx@xxx.com:设置全局邮箱地址,信息记录 阅读全文
posted @ 2022-03-20 23:13 CharlesLC 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 写在前面 仅为了方便自己学习,源地址:https://gist.githubusercontent.com/ryerh/14b7c24dfd623ef8edc7/raw/dc1e8a60fcf489c717c7fe05ca6cbf6a270fdc29/tmux-cheatsheet.markdown 阅读全文
posted @ 2022-03-16 16:14 CharlesLC 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 为了便于自己和大家编写,每次忘了可以查,写下了这篇博客。(后续更新) 表格 修改间距问题 表格上下间距 \renewcommand\arraystretch{0.7} 一栏两张图片 \begin{figure}[H] \centering \begin{minipage}{7cm} \centeri 阅读全文
posted @ 2022-03-13 12:29 CharlesLC 阅读(90) 评论(0) 推荐(0) 编辑
摘要: gather pytorch中gather源码形式:torch.gather(input, dim, index, *, sparse_grad = False, out = None) 然后在pytorch官方文档中,写了这样的一个例子,这个例子是三维的 out[i][j][k] = input[ 阅读全文
posted @ 2022-03-10 10:18 CharlesLC 阅读(125) 评论(0) 推荐(0) 编辑