分类: 老表

50 篇文章

Linux显示 Unacceptable TLS certificate
ubuntu 添加 flatpak 远端flathub地址。 flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo 出现下面Unacceptable TLS certificate错误。 error: Can't load ur…
ubuntu git-lfs 安装
apt update apt install git-lfs git-lfs 主要用于下载github大文件。 git lfs clone xxxxx
安装使用 nvidia docker
安装使用 nvidia docker 首先确保你自己电脑/服务器中安装了nvidia驱动。 安装方法 distribution=$(. /etc/os-release;echo $ID$VERSION_ID) curl -s -L https://nvidia.github.io/nvidia-docker/gpgkey | sudo apt-ke…
nltk_data搜索路径
nltk_data搜索路径 Searched in: - '/root/nltk_data' - '/root/miniconda3/envs/myconda/nltk_data' - '/root/miniconda3/envs/myconda/share/nltk_data' - '/root/miniconda3/envs/myconda/l…
Pytorch tensor 矩阵转置方法
Pytorch tensor 矩阵转置方法 直接贴官方文档啦 多维矩阵转置: torch.transpose(input, dim0, dim1) → Tensor - input (Tensor) – the input tensor. - dim0 (int) – the first dimension to be transposed - d…