06 2023 档案
非常离奇的BUG
摘要:### 一、背景 在使用cmd或者xshell链接远程服务器的时候,输入指令没有回显,效果如下:  这个
阅读全文
einsum方法
摘要:## einsum求矩阵运算 #### einsum是什么 使用chatGPT解读官方的[文档](https://pytorch.org/docs/stable/generated/torch.einsum.html): ``` Einsum允许使用基于Einstein求和约定的简写格式来计算许多常
阅读全文
einops方法
摘要:#### einops方法 该方法可以快速实现矩阵的快速变化。 ``` import torch import torch.nn as nn from einops import rearrange # 快速矩阵变化 class TestAttentionQKV: def __init__(self
阅读全文